(Vmost_positive_fixnum, Vmost_negative_fixnum): Renamed
[bpt/emacs.git] / src / ChangeLog
1 2001-12-07 Andreas Schwab <schwab@suse.de>
2
3 * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum): Renamed
4 from most_positive_fixnum and most_negative_fixnum, resp., and
5 type changed to Lisp_Object.
6 (syms_of_data): DEFVAR_LISP them.
7
8 2001-12-07 Richard M. Stallman <rms@gnu.org>
9
10 * callproc.c (init_callproc): Set Vdata_directory based on the source
11 location whenever Emacs was run uninstalled.
12
13 2001-12-06 Paul Eggert <eggert@twinsun.com>
14
15 * config.in (HAVE_WORKING_VFORK): New #undefs.
16 * process.c (create_process):
17 Use HAVE_WORKING_VFORK, not HAVE_VFORK.
18 * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
19 * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
20 * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
21 * m/intel386.h (HAVE_VFORK): Likewise.
22 * m/mips-siemens.h (HAVE_VFORK): Likewise.
23 * m/mips.h (HAVE_VFORK): Likewise.
24 * s/freebsd.h (vfork): Remove #define.
25 * s/lynxos.h (HAVE_VFORK): Remove #undef.
26 * s/usg5-4-2.h: Fix comment about vfork.
27
28 2001-12-06 Richard M. Stallman <rms@gnu.org>
29
30 * s/hpux10.h (random): Add undef.
31 (HAVE_RANDOM): Define it just once.
32
33 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
34
35 * eval.c: Undo last change: the standard syntax is not wanted.
36
37 2001-12-06 Eli Zaretskii <eliz@is.elta.co.il>
38
39 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
40 scroll bars of the frame before deleting the frame itself. If the
41 frame has a widget, delete the frame with XtDestroyWidget, and do
42 not call XDestroyWindow before that.
43
44 2001-12-06 Kim F. Storm <storm@cua.dk>
45
46 * xfns.c (x_report_frame_params): Return actual fringe widths.
47
48 * w32fns.c (x_report_frame_params): Return actual fringe widths.
49
50 2001-12-05 Andrew Innes <andrewi@gnu.org>
51
52 * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
53 excessively large.
54
55 * insdel.c (make_gap_larger): New function.
56 (make_gap_smaller): New function.
57 (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]: Call
58 make_gap_smaller if arg is negative.
59
60 2001-12-04 Stefan Monnier <monnier@cs.yale.edu>
61
62 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
63 Pass a dummy argument when calling interrupt_signal.
64 (parse_menu_item): Mark disabled items before checking for empty def.
65 (read_char_minibuf_menu_prompt): Make safety more visible.
66 (read_key_sequence): Add a `first_unbound' variable.
67 Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
68 unbound prefix as soon as we can detect it.
69
70 * doc.c (Fsnarf_documentation): Add prototype.
71 (get_doc_string): Handle negative arguments.
72 (Fdocumentation): Use AREF and ASIZE.
73 Move the calls to get_doc_string to a single place.
74 Don't confuse an interactive-spec for a docstring reference.
75 (Fdocumentation_property): Take advantage of the fact that
76 get_doc_string now ignores the sign of the docstring position.
77
78 * eval.c: Use standard syntax for usage in docstrings.
79
80 2001-12-03 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
81
82 * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief` an option.
83
84 2001-12-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
85
86 * xterm.c (x_draw_image_relief): Use predefined macro instead of
87 constant when the value of `tool_bar_button_relief' is negative.
88
89 2001-12-02 Richard M. Stallman <rms@gnu.org>
90
91 * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
92 (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
93
94 * fileio.c (read_non_regular): Delete Fsignal call.
95
96 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
97
98 * lisp.h (run_hook_list_with_args): Undo last change.
99
100 2001-12-01 Gerd Moellmann <gerd@gnu.org>
101
102 * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
103
104 2001-12-01 Jason Rumney <jasonr@gnu.org>
105
106 * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
107
108 * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
109 [!WM_MOUSELEAVE]: Define.
110
111 * w32menu.c (current_popup_menu, get_menu_item_info):
112 (set_menu_item_info): New vars.
113 (set_frame_menubar): Doc fix clarifying GC interaction with menus.
114 (w32_menu_show): Set current_popup_menu.
115 (add_menu_item): Allocate new strings for owner-drawn menu items
116 and help strings.
117 Use owner-draw for disabled menu items again.
118 (w32_menu_display_help): Ignore owner-drawn items and popup menus.
119 (w32_free_submenu_strings, w32_free_menu_strings): New functions.
120
121 * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
122 (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
123 <WM_EXITMENULOOP>: Free menu strings.
124 <WM_MOUSELEAVE>: Stop tracking mouse.
125 (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
126
127 * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
128 and mouse face.
129
130 2001-12-01 Kim F. Storm <storm@cua.dk>
131
132 The following changes add left-fringe and right-fringe
133 frame parameters to adjust fringe widths, or remove one or
134 both fringes.
135
136 * frame.h (struct frame): Remove trunc_area_pixel_width and
137 trunc_area_cols fields.
138 (Qleft_fringe, Qright_fringe): Declare.
139 (FRAME_RIGHT_FRINGE_WIDTH): New macro.
140
141 * frame.c (Qleft_fringe, Qright_fringe): New vars.
142 (syms_of_frame): Initialize them.
143
144 * window.c (coordinates_in_window): Handle separate left and right
145 fringe widths.
146
147 * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
148 and fringe_cols fields.
149 (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
150 (FRAME_X_FRINGE_COLS): Use fringe_cols field.
151 (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
152 (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
153 (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
154 (x_compute_fringe_widths): Add prototype.
155
156 * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
157 fill fringe evenly with small dashes.
158 (x_draw_fringe_bitmap): Clear background if necessary. Align and
159 clip the new ZV bitmap to avoid jitter between rows.
160 (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
161 background. Don't draw fringe bitmaps if fringe width is zero.
162 (x_compute_fringe_widths): New function.
163 (x_new_font, x_set_window_size_1): Use it.
164
165 * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
166 (x_set_frame_parameters): Process Process `font' parameter before other
167 parameters as fringe widths depend on it.
168 (x_set_fringe_width): New function.
169 (x_figure_window_size): Use x_compute_fringe_widths.
170 (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
171 parameters.
172
173 * widget.c (set_frame_size): Use x_compute_fringe_widths.
174 (EmacsFrameSetCharSize): Ditto.
175
176 * w32term.h: Merged changes from xterm.h.
177 * w32term.c: Merged changes from xterm.c.
178 * w32fns.c: Merged changes from xfns.c.
179
180 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
181
182 * COPYING: Removed.
183
184 2001-11-29 Dave Love <fx@gnu.org>
185
186 * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
187 extra extra slot.
188 (detect_coding_mask): Fix call of detect_coding_iso2022.
189
190 2001-11-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
191
192 * fileio.c (file-name-coding-system)
193 (default-file-name-coding-system): Doc fix (links to referenced
194 variables added).
195
196 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
197
198 * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
199 Add dummy uses of gcproN variables.
200
201 * category.c (describe_category, describe_category_1)
202 (Fdescribe_categories): Remove. (Moved to lisp/help-fns.el.)
203 (syms_of_category): Don't defsubr Sdescribe_categories.
204
205 2001-11-28 Richard M. Stallman <rms@gnu.org>
206
207 * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
208
209 * Makefile.in (lispdir): New variable, referring to build dir.
210 (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
211
212 2001-11-28 Andrew Innes <andrewi@gnu.org>
213
214 * w32menu.c (w32_menu_display_help): Actually add the new argument
215 OWNER.
216
217 2001-11-28 Jason Rumney <jasonr@gnu.org>
218
219 * w32menu.c (add_menu_item): Do not use owner-draw for disabled
220 menu items. From David Ponce <dponce@wanadoo.fr>.
221 (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
222 conditionally.
223 (w32_menu_display_help): New argument OWNER. Rewritten to store a
224 help event in the owner frame's keyboard buffer.
225
226 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
227 (Fx_show_tip): Don't subtract last width from row width.
228
229 * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
230 (w32_read_socket): Use EQ to compare frames.
231
232 2001-11-28 Gerd Moellmann <gerd@gnu.org>
233
234 * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
235 OVERLAPS_P.
236
237 2001-11-28 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
238
239 * xdisp.c (message_dolog): Remove unused variables `gcpro2',
240 `gcpro3' and `gcpro4'.
241
242 * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
243
244 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
245
246 * ccl.c: Use AREF and ASIZE.
247
248 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
249
250 * lisp.h (run_hook_list_with_args): Remove.
251 (LIST_END_P): Fix call to wrong_type_argument.
252 (make_fixnum_or_float): Use EMACS_INT rather than int.
253
254 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
255
256 * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
257 (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
258
259 * eval.c: Use AREF and ASIZE.
260 (Ffetch_bytecode): Add the file name to the error message.
261
262 * fileio.c (Ffind_file_name_handler): Give precedence to handlers
263 which match the end of the file-name.
264 (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
265 is not a valid env var, but leave it as is instead.
266
267 * keymap.c (access_keymap): Handle t bindings like nil bindings.
268 Make nil bindings in char-tables transparent.
269 (store_in_keymap): Turn a nil binding into a t binding for char-tables.
270
271 2001-11-26 Richard M. Stallman <rms@gnu.org>
272
273 * textprop.c (set_text_properties_1): Allow START, END in either order.
274 Do nothing if range is empty.
275
276 * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
277
278 * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
279 (clean): Not here.
280
281 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
282
283 * textprop.c (set_text_properties_1): Clearly mark that the
284 interval should not be empty.
285
286 * intervals.c (graft_intervals_into_buffer):
287 Don't call set_text_properties_1 on an empty interval.
288
289 2001-11-25 Richard M. Stallman <rms@gnu.org>
290
291 * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
292
293 * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
294 don't lose the data in it.
295
296 2001-11-25 Juanma Barranquero <lektu@terra.es>
297
298 * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
299
300 * buffer.c (Fkill_buffer): Use Frun_hooks, not Vrun_hooks.
301
302 * print.c (temp_output_buffer_setup): Use Frun_hooks, not Vrun_hooks.
303
304 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
305
306 * xfaces.c (merge_face_heights): Coerce back to int explicitly.
307
308 2001-11-25 Eli Zaretskii <eliz@is.elta.co.il>
309
310 * window.c (Fset_window_vscroll): Doc fix. From Kalle Olavi
311 Niemitalo <kon@iki.fi>.
312
313 2001-11-25 Jason Rumney <jasonr@gnu.org>
314
315 * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
316
317 * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
318 (Fx_show_tip): Block input during frame creation.
319 (Fx_show_tip, Fx_hide_tip): Enable.
320
321 2001-11-24 Richard M. Stallman <rms@gnu.org>
322
323 * lread.c (Fload): Detect recursive load error for more than 3
324 nestings of the same file.
325 (Vrecursive_load_depth_limit): Variable deleted.
326 (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
327
328 2001-11-24 Jason Rumney <jasonr@gnu.org>
329
330 * xfns.c (compute_tip_xy): Initialize root_x and root_y from
331 mouse position if either left or top is not specified.
332
333 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
334 <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
335 (my_create_tip_window, Fx_show_tip): Adjust size for external border.
336 (my_create_tip_window): Assign tip_window.
337 (x_create_tip_frame): Use same defaults as X.
338 (compute_tip_xy): Remove unused variable. Use full screen width.
339 (Fx_show_tip): Do not double height. Call ShowWindow directly.
340
341 * w32term.c (x_after_update_window_line): Doc fix.
342 (w32_read_socket): Doc fix. Avoid SET_FRAME_GARBAGED for tip
343 frames.
344 <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
345
346 * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
347 for all Windowed systems.
348
349 2001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
350
351 * msdos.c (IT_clear_screen): If the frame's faces are not yet
352 realized, use the initial screen colors to clear the screen.
353
354 2001-11-23 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
355
356 * textprop.c (Fset_text_properties): Remove unused variables
357 `unchanged', `prev_changed', `s' and `len'.
358
359 * search.c (Freplace_match): Remove unused variable `inslen'.
360
361 * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
362
363 2001-11-22 Jason Rumney <jasonr@gnu.org>
364
365 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
366 (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
367 (my_create_tip_window): New function.
368 (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
369 (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
370
371 2001-11-20 Jason Rumney <jasonr@gnu.org>
372
373 * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
374 (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
375
376 * w32fns.c (Vw32_system_coding_system): Remove.
377 (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
378
379 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
380
381 * fileio.c (Fwrite_region): Move choose_write_coding_system to
382 after build_annotations.
383
384 * syntax.c (describe_syntax): Add dummy arg.
385 (describe_syntax_1): Update call to describe_vector.
386
387 * category.c (describe_category): Add dummy arg.
388 (describe_category_1): Update call to describe_vector.
389
390 * keymap.c (Fdescribe_vector): Add `describer' parameter.
391 (describe_command, describe_translation): Add dummy second param.
392 (describe_map): Call elt_describer with two arguments.
393 (describe_vector_princ): Add `fun' parameter.
394 Call it instead of the hardcoded `princ'.
395 (describe_vector): Add arg `args'.
396 Pass it as a new second argument to elt_describer.
397
398 * keymap.h (describe_vector): Update prototype.
399
400 * frame.c: Don't include keymap.h any more.
401 (keys_of_frame): Remove.
402
403 * lisp.h (keys_of_frame): Remove declaration.
404
405 * emacs.c (main): Don't call `keys_of_frame' any more.
406
407 2001-11-14 Andreas Schwab <schwab@suse.de>
408
409 * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
410 if defined, 0 otherwise.
411 (MAP_FAILED): Define if not defined and use it to test mmap failure.
412 (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
413
414 2001-11-19 Richard M. Stallman <rms@gnu.org>
415
416 * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
417
418 2001-11-18 Jason Rumney <jasonr@gnu.org>
419
420 * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
421 (x_draw_bar_cursor): If the background color of the glyph under
422 the cursor equals the frame's cursor color, use the glyph's
423 foreground color for drawing the bar cursor.
424 (x_after_update_window_line): Clear internal border in different
425 circumstances.
426 (w32_set_vertical_scroll_bar): Check for width and height > 0.
427 (w32_draw_relief_rect): Correct relief by 1 pixel.
428 (x_set_glyph_string_background_width):
429 Set extends_to_end_of_line_p if the row's fill_line_p is set and
430 drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
431 (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
432 if cursor_in_non_selected_windows is false.
433 (show_mouse_face): Clean up. Recognize overwritten cursor differently.
434 (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
435 Notice if cursor gets overwritten.
436 (notice_overwritten_cursor): Renamed from
437 note_overwritten_text_cursor. Rewritten to take glyph widths
438 into account, and to take X positions as parameters.
439 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
440 around call to x_draw_glyphs.
441 (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
442 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
443 color to use for image glyph reliefs.
444 (x_draw_image_relief): Accept zero tool_bar_button_relief.
445 (glyph_rect): Remove unused variable `area'.
446
447 * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
448 some items.
449 (x_set_internal_border_width): Set frame garbaged when window
450 doesn't exist yet.
451 (Fx_create_frame): Accept zero tool_bar_button_relief.
452 (x_clear_image_1, four_corners_best, image_background)
453 (image_background_transparent): New functions.
454 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
455 (gs_format): Add `:background' entry.
456 (lookup_image): Set IMG's background color if specified.
457 (pbm_load, xbm_load_image, png_load): Set IMG's background field
458 when appropriate.
459 (x_clear_image_1): Reset `background_valid' and
460 `background_transparent_valid' fields.
461 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
462 calculating it here. Set IMG's background_transparent field.
463 (enum xpm_keyword_index): Add XPM_BACKGROUND.
464 (enum png_keyword_index): Add PNG_BACKGROUND.
465 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
466 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
467 (enum gif_keyword_index): Add GIF_BACKGROUND.
468 (enum gs_keyword_index): Add GS_BACKGROUND.
469 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
470 Pre-calculate image background color where necessary.
471 (x_create_x_image_and_pixmap, xbm_load, gs_load):
472 Use display info's n_cbits entry for screen depth.
473 (Fx_show_tip): Remove unused variables `buffer', `top',
474 `left', `max_width' and `max_height'.
475
476 * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
477
478 2001-11-18 Gerd Moellmann <gerd@gnu.org>
479
480 * puresize.h (BASE_PURESIZE): Increase to 750000.
481
482 2001-11-18 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
483
484 * frame.c (Fframe_live_p): Doc fix.
485
486 2001-11-18 Richard M. Stallman <rms@gnu.org>
487
488 * xdisp.c (message_dolog_marker1, message_dolog_marker2)
489 (message_dolog_marker3): New static variables hold three markers.
490 (syms_of_xdisp): Initialize and staticpro them.
491 (message_dolog): Use message_dolog_marker1..3 instead of
492 allocating markers each time. Unchain them when done.
493
494 2001-11-17 Richard M. Stallman <rms@gnu.org>
495
496 * doc.c (Fsnarf_documentation): Doc fix.
497
498 2001-11-17 Andreas Schwab <schwab@suse.de>
499
500 * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
501
502 2001-11-17 Richard M. Stallman <rms@gnu.org>
503
504 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
505
506 2001-11-17 Jason Rumney <jasonr@gnu.org>
507
508 * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
509
510 2001-11-17 Gerd Moellmann <gerd@gnu.org>
511
512 * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
513 with invalid position.
514
515 2001-11-16 Richard M. Stallman <rms@gnu.org>
516
517 * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
518
519 * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
520 * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
521 * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
522
523 * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
524
525 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
526
527 * fileio.c (build_annotations): Split off the tail.
528 (build_annotations_2): New fun. Extracted from build_annotations.
529 (Fwrite_region): Split the call to build_annotations into two
530 calls to build_annotations and build_annotations_2.
531
532 2001-11-16 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
533
534 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
535 clear_waiting_for_input with argument.
536
537 * xterm.h (x_update_cursor): Remove duplicated prototype.
538
539 * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
540
541 * xterm.c (waiting_for_input): Remove unnecessary declaration.
542
543 * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
544
545 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
546
547 * fileio.c (choose_write_coding_system): New fun, extracted
548 from Fwrite_region.
549 (Fwrite_region): Use it.
550
551 * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
552 (funcall_lambda, run_hook_with_args): Make static and add prototype.
553 (ml_apply, find_handler_clause): Add prototype.
554
555 2001-11-16 Eli Zaretskii <eliz@gnu.org>
556
557 * config.in: Add #undef HAVE_COFF_H.
558
559 * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
560 Required for ISC 4.1.
561
562 2001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
563
564 * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
565 Andrew Wiseman <a.wiseman@btclick.com>.
566
567 2001-11-16 Kim F. Storm <storm@cua.dk>
568
569 The following changes are made to clean up the various internal
570 references to the fringes to actually use the term `fringe' for
571 them. Previously, they were called `flags areas', `bitmap areas',
572 `left/right side of windows', or implicitly as `flags' or
573 `bitmaps':
574
575 * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
576 Comments fixed. Use renamed symbols.
577
578 * dispnew.c: Comment fix. Use renamed symbols.
579
580 * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
581 (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
582 (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
583
584 * msdos.c: Comment fix.
585
586 * w32fns.c: Use renamed symbols.
587
588 * w32term.c: Comment fixes. Use renamed symbols.
589 (fringe_bitmap_type): Renamed from bitmap_type.
590 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
591 (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
592 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
593
594 * w32term.h: Comment fixes. Use renamed symbols.
595 (fringes_extra): Renamed from flags_areas_extra.
596 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
597 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
598 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
599 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
600 (FRAME_X_LEFT_FRINGE_WIDTH):
601 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
602 (FRAME_X_RIGHT_FRINGE_WIDTH):
603 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
604
605 * widget.c: Use renamed symbols.
606
607 * window.c: Comment fixes. Use renamed symbols.
608 (coordinates-in-window-p): Doc fix.
609
610 * xdisp.c: Comment fixes. Use renamed symbols.
611
612 * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
613
614 * xfns.c: Use renamed symbols.
615
616 * xterm.c: Comment fixes. Use renamed symbols.
617 (fringe_bitmap_type): Renamed from bitmap_type.
618 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
619 (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
620 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
621
622 * xterm.h: Comment fixes. Use renamed symbols.
623 (fringes_extra): Renamed from flags_areas_extra.
624 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
625 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
626 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
627 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
628 (FRAME_X_LEFT_FRINGE_WIDTH):
629 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
630 (FRAME_X_RIGHT_FRINGE_WIDTH):
631 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
632
633 2001-11-15 Jason Rumney <jasonr@gnu.org>
634
635 * w32menu.c (add-menu-item): Make help_echo and radio buttons
636 work for most menu items. From David Ponce
637 <david.ponce@wanadoo.fr>.
638
639 2001-11-15 Gerd Moellmann <gerd@gnu.org>
640
641 * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
642 Some x_set_* function expect to be called even if old and new
643 value are equal.
644
645 * xdisp.c (build_desired_tool_bar_string): Accept zero
646 tool_bar_button_relief.
647
648 * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
649
650 * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
651
652 * xterm.c (x_draw_bar_cursor): If the background color of the
653 glyph under the cursor equals the frame's cursor color, use
654 the glyph's foreground color for drawing the bar cursor.
655
656 * dispnew.c (direct_output_forward_char): Fix character/byte
657 position comparison.
658
659 2001-11-15 Miles Bader <miles@gnu.org>
660
661 * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
662 (Fdelete_field, Ffield_string, Ffield_string_no_properties):
663 Update arguments to find_field.
664 (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
665 (Fconstrain_to_field): Use LIMIT arg to shorten search time.
666 * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
667 * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
668
669 2001-11-14 Richard M. Stallman <rms@gnu.org>
670
671 * editfns.c (Fpropertize): Allow call with 1 arg.
672
673 * dispextern.h (image_background, image_background_transparent):
674 Conditionalize on HAVE_X_WINDOWS.
675
676 2001-11-13 Richard M. Stallman <rms@gnu.org>
677
678 * print.c (Fprin1_to_string): Doc fix.
679
680 * sunfns.c (Fsun_change_cursor_icon): Doc fix.
681
682 * floatfns.c (Fceiling, Ffloor): Doc fixes.
683
684 * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
685
686 * fileio.c (Ffile_accessible_directory_p): Doc fix.
687
688 * eval.c (syms_of_eval): Doc fix.
689
690 * coding.c (syms_of_coding): Doc fix.
691
692 * doc.c (Fsnarf_documentation): Doc fix.
693
694 * dispnew.c (syms_of_display): Doc fix.
695
696 * category.c (Fget_unused_category): Doc fix.
697
698 * buffer.c (syms_of_buffer): Doc fixes.
699
700 2001-11-14 Eli Zaretskii <eliz@is.elta.co.il>
701
702 * print.c (prin1, print): Doc fix.
703
704 2001-11-14 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
705
706 * fontset.h: Remove declarations of variables
707 `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
708
709 * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
710 `Vclip_large_size_font'.
711
712 2001-11-13 Jason Rumney <jasonr@gnu.org>
713
714 * w32fns.c: Doc fix.
715
716 2001-11-13 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
717
718 * xfaces.c (Fface_attributes_as_vector): Doc fix.
719
720 * w32fns.c (Fx_synchronize): Reindent.
721
722 * fns.c: Doc fix.
723
724 * emacs.c: Doc fix.
725
726 * coding.c: Doc fix.
727
728 * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
729 * fontset.c, insdel.c, keymap.c: Change doc-string comments to
730 `new style' [w/`doc:' keyword].
731
732 * xmenu.c (x-popup-menu): Reindent.
733 (x-popup-dialog): Likewise.
734
735 * xfaces.c (Finternal_set_alternative_font_family_alist): Reindent.
736
737 * xdisp.c (Fdump_tool_bar_row): Reindent.
738
739 * minibuf.c (Fminibuffer_complete_word): Reindent.
740 (Fminibuffer_complete_and_exit): Likewise.
741 (Fminibuffer_completion_help): Likewise.
742 (Fminibuffer_message): Likewise.
743
744 * fns.c (Freverse): Reindent.
745
746 * eval.c (Fif): Reindent.
747 (Fand): Likewise.
748
749 * editfns.c (Fuser_real_login_name): Reindent.
750 (Finsert_buffer_substring): Likewise.
751 (Fcompare_buffer_substrings): Likewise.
752 (Fsubst_char_in_region): Likewise.
753
754 * dispnew.c (Fsit_for): Reindent.
755 (Fframe_or_buffer_changed_p): Likewise.
756 (Finternal_show_cursor_p): Likewise.
757 (syms_of_display): Likewise.
758
759 * alloc.c (Flist): Reindent.
760 (Fvector): Likewise.
761
762 2001-11-12 Richard M. Stallman <rms@gnu.org>
763
764 * xterm.c (XTread_socket): Don't update focus for EnterNotify or
765 LeaveNotify events. Only FocusIn and FocusOut do that now.
766 (x_display_and_set_cursor): Do display hollow cursors in active
767 minibuffer windows when they are not selected.
768
769 2001-11-12 Jason Rumney <jasonr@gnu.org>
770
771 * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
772 * w32term.c: Change doc-string comments to `new style'.
773 [w/`doc:' keyword]. Doc fixes.
774
775 * w32fns.c: Don't define max.
776 (Fx_open_connection): Only execute once.
777
778 2001-11-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
779
780 * ccl.c: Change macros to use do-while block instead of if-else.
781 Use braces to follow GNU Coding Standards.
782
783 2001-11-11 Richard M. Stallman <rms@gnu.org>
784
785 * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
786
787 * lread.c (read_escape): Use end_of_file_error for reporting eof.
788
789 * insdel.c (replace_range): Use adjust_markers_for_replace
790 instead of adjust_markers_for_delete and adjust_markers_for_insert.
791
792 * intervals.h: Declare set_text_properties and set_text_properties_1.
793
794 * textprop.c (set_text_properties_1): New subroutine
795 broken out of set_text_properties.
796 (set_text_properties): Use set_text_properties_1.
797
798 * intervals.c (graft_intervals_into_buffer):
799 Use set_text_properties_1 to clear out properties.
800
801 * search.c (Freplace_match): Use replace_range to insert
802 and delete. Don't request property inheritance from
803 surrounding text.
804
805 2001-11-10 Jason Rumney <jasonr@gnu.org>
806
807 * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
808 vertical fonts. Allow them if face name is explicitly specified.
809 Do not give up if we find a font that cannot be converted to an xlfd.
810
811 2001-11-10 Gerd Moellmann <gerd@gnu.org>
812
813 * unexelf.c (unexec): Use mmap/munmap to allocate buffers
814 instead of malloc/free.
815
816 2001-11-09 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
817
818 * xfaces.c (merge_face_vectors): Use braces to follow GNU
819 Coding Standards.
820 (Finternal_set_lisp_face_attribute): Likewise.
821
822 * buffer.c (Fbury_buffer): Likewise.
823
824 * indent.c (current_column_1): Remove unused variable `prev_col'.
825
826 * coding.c (encode_coding): Use precomputed value of `src'.
827 (encode_coding): Remove unused variable `src_end'.
828 (code_convert_region): Remove unused variables `count'.
829
830 2001-11-07 Jason Rumney <jasonr@gnu.org>
831
832 * w32term.c (x_display_and_set_cursor): Do not move system caret
833 if cursor_glyph is NULL.
834
835 2001-11-07 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
836
837 * keymap.c (access_keymap): Fix compilation error.
838
839 2001-11-07 Miles Bader <miles@gnu.org>
840
841 * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
842
843 2001-11-07 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
844
845 * intervals.c (graft_intervals_into_buffer):
846 Remove #ifdef'd-out code.
847 (graft_intervals_into_buffer): Remove unused variable `middle'.
848
849 * lread.c (Feval_region): Remove obsolete #ifdef'd-out
850 code (eval-current-buffer).
851 Change doc-string comments to `new style' [w/`doc:' keyword].
852
853 2001-11-06 Richard M. Stallman <rms@gnu.org>
854
855 * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
856
857 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
858
859 * lread.c (read1): Fix behavior with nested backquoting.
860
861 * keyboard.c (make_lispy_event): Check integerness and fix
862 Lisp_Object/int mixup.
863
864 2001-11-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
865
866 * fns.c (copy_hash_table): Remove unused variable `v'.
867
868 * fontset.c (fontset_font_pattern): Remove unused variable
869 `family_registry'.
870
871 * indent.c (current_column_1): Remove unused variable `prev_col'.
872
873 2001-11-05 Richard M. Stallman <rms@gnu.org>
874
875 * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
876
877 * buffer.c (Fkill_buffer): Don't delete auto save file
878 if buffer is modified.
879
880 2001-11-05 Andrew Innes <andrewi@gnu.org>
881
882 * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
883 CHECK_NUMBER_CDR.
884
885 2001-11-05 Richard M. Stallman <rms@gnu.org>
886
887 * unexelf.c (unexec): Minor changes; clean up comments.
888
889 2001-11-05 Sam Steingold <sds@gnu.org>
890
891 * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
892
893 2001-11-05 Andreas Schwab <schwab@suse.de>
894
895 * sound.c (sound_perror): Save errno from being clobbered.
896
897 2001-11-05 Dale Hagglund <rdh@yottayotta.com>
898
899 * unexelf.c (unexec): Don't use `mmap'. Instead, read and write
900 the program image directly.
901
902 2001-11-05 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
903
904 * buffer.h (Fbuffer_local_value): Add prototype.
905
906 2001-11-04 Richard M. Stallman <rms@gnu.org>
907
908 * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
909 and CHECK_BUFFER.
910
911 * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
912 (record_char): Likewise.
913
914 * keyboard.c (make_lispy_event): Don't insist a drag event must
915 move to a different buffer position. Instead, check for moving at
916 least double_click_fuzz.
917
918 * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
919
920 * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
921
922 * indent.c (current_column_1, Fmove_to_column): Separate the code
923 for display-table glyphs from the code buffer text, to fix
924 bugs in the former.
925
926 2001-11-04 Michael Welsh Duggan <md5i@cs.cmu.edu>
927
928 * buffer.c (Fbuffer_local_value): New function.
929 (syms_of_buffer): Defsubr it.
930
931 * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
932 value of `cursor-in-non-selected-windows'.
933
934 * lisp.h (Qcursor_in_non_selected_windows): New declaration.
935 * xdisp.c (Qcursor_in_non_selected_windows): New variable.
936 (syms_of_xdisp): Initialize it.
937
938 2001-11-04 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
939
940 * xfns.c (Fx_create_frame): Doc fix.
941
942 * coding.c: Change doc-string comments to `new style' [w/`doc:'
943 keyword].
944
945 * eval.c (top_level_value, top_level_set): Remove commented and
946 #ifdef'd-out code.
947 (Fdefvar): Fix usage in doc-string.
948
949 2001-11-03 Richard M. Stallman <rms@gnu.org>
950
951 * xfns.c: Include unistd.h, if it exists.
952
953 * editfns.c: Move the include of ctype.h after unistd.h.
954
955 * gmalloc.c: Test BROKEN_PROTOTYPES.
956
957 2001-11-03 Ken Raeburn <raeburn@gnu.org>
958
959 * lisp.h (CHECK_STRING_CAR): New macro.
960 * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
961 treating XCAR and XCDR as lvalues.
962 (openp): Use CHECK_STRING_CAR.
963 (read_list): Use XSETCDR instead of treating XCDR as lvalue.
964
965 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
966
967 * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
968 (SIGMASKTYPE): Define.
969
970 * syssignal.h (sigunblock): Don't define if already defined.
971
972 2001-11-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
973
974 * eval.c (debugger_may_continue, Vdebug_ignored_errors)
975 (call_debugger, Fcondition_case, skip_debugger, unbind_to):
976 Fix typos in comments.
977
978 * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
979 and #ifdef'd-out code.
980 Fix and reindent comments.
981
982 * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
983
984 * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
985 argument `i' in macros.
986
987 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
988 `i' in macros.
989
990 * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
991 (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
992 (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
993 (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
994 (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
995 (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
996 (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
997 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
998 in macros.
999
1000 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
1001 casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
1002 composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
1003 eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
1004 indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
1005 minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
1006 sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
1007 w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
1008 xfaces.c, xmenu.c, xselect.c : Update usage of CHECK_ macros
1009 (remove unused second argument).
1010
1011 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
1012
1013 * syntax.c (describe_syntax): New wrapper.
1014 (Finternal_describe_syntax_value): Rename from describe_syntax.
1015 Don't insert space at front and \n at the end.
1016 (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
1017
1018 * regex.c (re_wctype): Try to fix some warnings.
1019 (regcomp, regexec): Don't forget the __restrict.
1020
1021 2001-11-02 Richard M. Stallman <rms@gnu.org>
1022
1023 * textprop.c (Fget_char_property): Doc fix.
1024
1025 2001-11-02 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1026
1027 * process.c (Fstart_process): Add usage to doc-string.
1028
1029 * data.c (Fsetq_default): Ditto.
1030
1031 * callint.c (Finteractive): Ditto.
1032
1033 2001-11-01 Stefan Monnier <monnier@cs.yale.edu>
1034
1035 * macros.c: Don't include keymap.h any more.
1036
1037 2001-11-01 Richard M. Stallman <rms@gnu.org>
1038
1039 * data.c (Fmake_local_variable): Doc fix.
1040
1041 * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
1042 (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
1043
1044 * keymap.c (Fdescribe_buffer_bindings): Print character property
1045 bindings along with or instead of the buffer local map.
1046 Make the overriding maps override what they should.
1047
1048 2001-11-01 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1049
1050 * window.c (grow_mini_window): Fix typo in comment.
1051
1052 2001-11-01 Gerd Moellmann <gerd@gnu.org>
1053
1054 * xterm.c (x_scroll_bar_create): Check for width and height > 0.
1055 (XTset_vertical_scroll_bar): Likewise.
1056
1057 * xfns.c (x_build_heuristic_mask): Use four_corners_best
1058 instead of IMAGE_BACKGROUND.
1059
1060 * xfns.c (four_corners_best): Reindent.
1061
1062 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
1063 Handle :box so that it is possible to specify sexprs.
1064
1065 2001-11-01 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1066
1067 * xfaces.c (Finternal_merge_in_global_face): Reindent.
1068 (Fface_font): Ditto.
1069 (Finternal_set_alternative_font_registry_alist): Ditto.
1070 (Ftty_suppress_bold_inverse_default_colors): Ditto.
1071
1072 * xfns.c (x-get-resource): Reindent.
1073
1074 2001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
1075
1076 * s/hpux11.h: New file.
1077
1078 2001-10-31 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1079
1080 * emacs.c (USAGE1): Show command line option --no-window-system
1081 instead of --no-windows in usage.
1082 (standard_args): Rename --no-windows to --no-window-system.
1083 (bug_reporting_address): Follow Emacs coding conventions.
1084
1085 * eval.c (Fcommandp): Doc fix.
1086 Change doc-string comments to `new style' [w/`doc:' keyword].
1087
1088 * frame.c (Fframe_live_p): Doc fix.
1089
1090 * buffer.c (selective-display-ellipses): Doc fix.
1091
1092 2001-10-31 Gerd Moellmann <gerd@gnu.org>
1093
1094 * lread.c (to_multibyte): Fix computation of new read_buffer_size.
1095
1096 * xfaces.c (realize_x_face): If C is not a single-byte character,
1097 set the face's colors_copied_bitwise_p instead of the defaulted_p
1098 members which have a different meaning.
1099 (free_face_colors): Do nothing for a face whose colors have been
1100 copied bitwise.
1101
1102 * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
1103
1104 2001-10-31 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1105
1106 * marker.c, mocklisp.c: Change doc-string comments to `new style'
1107 [w/`doc:' keyword].
1108
1109 2001-10-31 Gerd Moellmann <gerd@gnu.org>
1110
1111 * fns.c (require_unwind): Return Lisp_Object.
1112
1113 2001-10-31 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1114
1115 * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
1116 (last-input-char): Revert doc-string to be the same as the
1117 doc-string of `last-input-event'.
1118
1119 * xdisp.c: Fix typos in comments.
1120
1121 2001-10-31 Gerd Moellmann <gerd@gnu.org>
1122
1123 * window.c (grow_mini_window): Handle case that the root
1124 window is already smaller than the nominal mininum height.
1125
1126 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
1127
1128 * emacs.c (main): Don't call keys_of_macros any more.
1129
1130 * lisp.h (keys_of_macros): Remove.
1131
1132 * macros.c (keys_of_macros): Remove.
1133
1134 * xfaces.c (Fface_attribute_relative_p): Declare args.
1135
1136 2001-10-30 Jason Rumney <jasonr@gnu.org>
1137
1138 * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
1139 (enum_font_cb2): Ignore fonts with vertical orientation.
1140
1141 2001-10-30 Richard M. Stallman <rms@gnu.org>
1142
1143 * keyboard.c (Finput_pending_p): Doc fix.
1144
1145 2001-10-30 Gerd Moellmann <gerd@gnu.org>
1146
1147 * xterm.c (x_after_update_window_line): Don't run the code
1148 clearing in borders for rows whose visible height is 0.
1149
1150 * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
1151 resized_p flag is set. If not set, use the much less flickering
1152 method previously used.
1153
1154 * dispnew.c (change_frame_size_1): Set frame's resized_p.
1155
1156 * frame.h (struct frame) <resized_p>: New member.
1157
1158 * lread.c (to_multibyte): Ensure read_buffer is at least twice
1159 as large as the number of bytes to convert.
1160
1161 * lread.c (to_multibyte): New function.
1162 (read1): Use it.
1163
1164 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
1165
1166 * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
1167
1168 2001-10-30 Gerd Moellmann <gerd@gnu.org>
1169
1170 * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
1171 (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
1172 if the row's fill_line_p is set and drawing the last glyph with
1173 DRAW_IMAGE_{RAISED,SUNKEN}.
1174
1175 * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
1176
1177 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
1178
1179 * xmenu.c: Include coding.h and charset.h.
1180 (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
1181 (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
1182 (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
1183 Explicitly set wv->help. Use `TRUE' rather than `True'.
1184 (menu_help_callback): Use empty_string.
1185
1186 * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
1187 (Fx_popup_dialog): Explicitly init f.
1188 (w32_menu_display_help): Use empty_string.
1189
1190 2001-10-29 Richard M. Stallman <rms@gnu.org>
1191
1192 * fns.c (Frequire): Detect recursive try to require the same
1193 feature 3 or more levels deep, and get error.
1194 (require_unwind): New subroutine.
1195 (require_nesting_list): New variable.
1196 (syms_of_fns): Init and staticpro it.
1197
1198 * print.c (print_object): Clarify indication of insertion type.
1199
1200 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
1201
1202 * coding.c (syms_of_coding): Document that locale-coding-system is
1203 used for decoding input on X.
1204
1205 * window.c (Fscroll_left, Fscroll_right): Doc fix.
1206
1207 2001-10-29 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1208
1209 * keyboard.c (Finput_pending_p): Fix typo in doc-string.
1210 (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
1211
1212 2001-10-29 Gerd Moellmann <gerd@gnu.org>
1213
1214 * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
1215 use NO_CURSOR if cursor_in_non_selected_windows is false.
1216
1217 * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
1218 the slant attribute if FRAME is t.
1219
1220 * xfns.c (x_set_internal_border_width): Set frame garbaged
1221 when X window doesn't exist yet.
1222
1223 * xterm.c (x_after_update_window_line): Clear internal border
1224 in different circumstances.
1225
1226 * xterm.c (XTread_socket) <KeyPress>: Don't use
1227 STRING_CHAR_AND_LENGTH if nchars == nbytes. From Kenichi Handa
1228 <handa@etl.go.jp>.
1229
1230 2001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
1231
1232 * m/ibms390.h: New file. From Adam Thornton
1233 <athornton@sinenomine.net>.
1234
1235 2001-10-28 Gerd Moellmann <gerd@gnu.org>
1236
1237 * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
1238
1239 * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
1240 a loop counter.
1241
1242 2001-10-28 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1243
1244 * emacs.c: Use argv[0] instead of emacs when -t was specified.
1245
1246 * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
1247 keyword].
1248 Fix typos in comments.
1249
1250 * emacs.c (bug_reporting_address): New function.
1251 Use it when displaying usage message.
1252
1253 * minibuf.c (read_minibuf): Remove unused external declaration of
1254 variable `Qread_only'.
1255
1256 * keymap.c (access_keymap): Remove unused variable `charset'.
1257
1258 2001-10-28 Miles Bader <miles@gnu.org>
1259
1260 * xfaces.c (merge_face_heights): Handle TO being relative as well.
1261 Remove #ifdef'd-out code.
1262 (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
1263 (syms_of_xfaces): Initialize them.
1264
1265 2001-10-27 Jason Rumney <jasonr@gnu.org>
1266
1267 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
1268 <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
1269 position using the system caret.
1270
1271 * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
1272 (w32_system_caret_height, w32_system_caret_x)
1273 (w32_system_caret_y): New variables for tracking system caret.
1274 (w32_initialize): Initialize them.
1275 (x_display_and_set_cursor): Make system caret follow the active cursor.
1276
1277 * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
1278 New messages types.
1279
1280 * w32term.c (note_mouse_highlight): Clear old help_echo.
1281
1282 2001-10-27 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1283
1284 * xterm.c: Fix typo in a comment.
1285
1286 * emacs.c: Fix typos in comments.
1287 Remove unnecessary spaces.
1288 Change doc-string comments to `new style' [w/`doc:' keyword].
1289 (USAGE2): Fix typos in usage string.
1290
1291 * xterm.c: Fix typo in a comment.
1292
1293 * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
1294 emacs.c.
1295
1296 2001-10-27 Gerd Moellmann <gerd@gnu.org>
1297
1298 * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
1299 instead of 1/2 line_height in the heuristic for skipping
1300 farther backward when target_y was not reached.
1301
1302 * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
1303 Display errno only if non-zero.
1304 (sound_warning): New function.
1305 (vox_configure): Don't treat failing to set sample rate as error.
1306 (various places): Improve error messages.
1307
1308 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
1309
1310 * fileio.c (Faccess_file): Run the argument filename through
1311 Fexpand_file_name, before using it.
1312
1313 * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
1314 ring-bell-function. Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
1315
1316 2001-10-26 Gerd Moellmann <gerd@gnu.org>
1317
1318 * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
1319
1320 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
1321 Fix clearing in the case of scroll bars on the right.
1322
1323 2001-10-26 Juanma Barranquero <lektu@terra.es>
1324
1325 * w32gui.h (XImage): Add a dummy typedef.
1326
1327 2001-10-26 Gerd Moellmann <gerd@gnu.org>
1328
1329 * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
1330
1331 2001-10-25 Eli Zaretskii <eliz@is.elta.co.il>
1332
1333 * frame.c (Fframe_parameter): Fix last change.
1334
1335 * fileio.c: Revert last change (which removed old commented-out
1336 version of expand-file-name). Add a comment that explains why
1337 this old version should not be removed.
1338
1339 2001-10-25 Gerd Moellmann <gerd@gnu.org>
1340
1341 * frame.c (Fframe_parameter): Fix a bug whereby some
1342 ``artificial'' frame parameters, like `minibuffer' were not
1343 obtained by calling Fframe_parameters.
1344
1345 * xterm.c (show_mouse_face): Clean up. Recognize overwritten
1346 cursor differently.
1347
1348 * xdisp.c (move_it_vertically_backward): Compute line height
1349 differently. Add heuristic to try to be more compatible to 20.x.
1350
1351 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
1352
1353 * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
1354
1355 * editfns.c (text_property_stickiness): Fix Lisp_Object used as
1356 boolean.
1357
1358 2001-10-25 Miles Bader <miles@gnu.org>
1359
1360 * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
1361 BG is a pointer to a structure, not a structure.
1362 (gif_format, png_format): Add missing commas.
1363
1364 2001-10-24 Richard M. Stallman <rms@gnu.org>
1365
1366 * xfaces.c (Fface_attributes_as_vector): New function.
1367 (syms_of_xfaces): Defsubr it.
1368
1369 2001-10-24 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1370
1371 * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
1372 variable `area'.
1373
1374 2001-10-25 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1375
1376 * search.c (scan_newline): Remove unused variable `selective_display'.
1377
1378 2001-10-25 Miles Bader <miles@gnu.org>
1379
1380 * dispextern.h (struct image): Add `background',
1381 `background_valid', and `background_transparent' fields.
1382 (image_background, image_background_transparent): New declarations.
1383 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
1384 * xfns.c (image_background, image_background_transparent)
1385 (four_corners_best): New functions.
1386 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
1387 (gs_format): Add `:background' entry.
1388 (lookup_image): Set IMG's background color if specified.
1389 (pbm_load, xbm_load_image, png_load): Set IMG's background field
1390 when appropriate.
1391 (x_clear_image_1): Reset `background_valid' and
1392 `background_transparent_valid' fields.
1393 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
1394 calculating it here. Set IMG's background_transparent field.
1395 (enum xpm_keyword_index): Add XPM_BACKGROUND.
1396 (enum png_keyword_index): Add PNG_BACKGROUND.
1397 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
1398 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
1399 (enum gif_keyword_index): Add GIF_BACKGROUND.
1400 (enum gs_keyword_index): Add GS_BACKGROUND.
1401 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
1402 Pre-calculate image background color where necessary.
1403 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
1404 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
1405 color to use for image glyph reliefs.
1406
1407 2001-10-24 Gerd Moellmann <gerd@gnu.org>
1408
1409 * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
1410 in full-width rows.
1411
1412 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
1413 Fix clearing of area not covered by scroll bar.
1414
1415 2001-10-24 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1416
1417 * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
1418 and `real_start'.
1419 (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
1420 (glyph_rect): Remove unused variable `area'.
1421
1422 2001-10-24 Gerd Moellmann <gerd@gnu.org>
1423
1424 * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
1425
1426 * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
1427 (row_containing_pos): Take additional argument DY.
1428 Treat rows ending in middle of char differently.
1429 (display_line): Handle tabs on window systems differently.
1430
1431 * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
1432 with additional argument.
1433
1434 * dispextern.h (row_containing_pos): Adjust prototype.
1435
1436 * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
1437 (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
1438 (try_window_id, try_window_reusing_current_matrix)
1439 (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
1440 (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
1441
1442 2001-10-24 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1443
1444 * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
1445 gnuemacs).
1446 (HAVE_BOXES): Fix typo in comment.
1447 (push_menu_pane): Fix typo in comment.
1448
1449 * xdisp.c: (display_prop_string_p): Remove unused local declaration
1450 of `Qwhen'.
1451 (single_display_prop_string_p): Remove unused local declarations
1452 of `Qwhen' and `Qmargin'.
1453 (string_buffer_position): Remove unused variable `around'.
1454 (store_frame_title): Remove unused variable `width'.
1455
1456 * window.c: Don't define max.
1457 (coordinates_in_window): Remove unused variable `uy'.
1458
1459 * widget.c: Don't define max.
1460
1461 * process.c: Don't define max.
1462 (create_process): Remove unused variable `buffer'.
1463
1464 2001-10-23 Gerd Moellmann <gerd@gnu.org>
1465
1466 * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
1467
1468 2001-10-23 Eli Zaretskii <eliz@is.elta.co.il>
1469
1470 * xfaces.c (Finternal_set_lisp_face_attribute)
1471 [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
1472 frame is on a windowed display.
1473
1474 2001-10-23 Gerd Moellmann <gerd@gnu.org>
1475
1476 * dispnew.c (sync_window_with_frame_matrix_rows):
1477 Fix handling of windows which aren't full-width, fix handling
1478 of marginal areas.
1479
1480 * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
1481
1482 2001-10-23 Andreas Schwab <schwab@suse.de>
1483
1484 * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
1485 LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
1486
1487 2001-10-23 Gerd Moellmann <gerd@gnu.org>
1488
1489 * xterm.c (x_draw_glyphs): Remove parameters READ_START and
1490 REAL_END. Notice if cursor gets overwritten.
1491 (notice_overwritten_cursor): Take X positions as parameters.
1492 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
1493 around call to x_draw_glyphs.
1494
1495 2001-10-23 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1496
1497 * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
1498 instead of C) and usage.
1499
1500 * editfns.c (char-to-string): Fix argument names (use CHAR instead
1501 of C) and usage.
1502
1503 * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
1504 `left', `max_width' and `max_height'.
1505
1506 2001-10-23 Gerd Moellmann <gerd@gnu.org>
1507
1508 * xdisp.c (display_line): For a tab continued to the next line,
1509 set row's ends_in_middle_of_char_p.
1510
1511 2001-10-22 Gerd Moellmann <gerd@gnu.org>
1512
1513 * xdisp.c (display_line): Fix computation of continuation lines
1514 width for TABs.
1515
1516 2001-10-22 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1517
1518 * xdisp.c (build_desired_tool_bar_string): Remove unused variable
1519 `Qlaplace'.
1520
1521 * fileio.c: Remove unused code.
1522
1523 2001-10-22 Miles Bader <miles@gnu.org>
1524
1525 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
1526 (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
1527 Remove `DOC_STRINGS_IN_COMMENTS' cases.
1528
1529 2001-10-21 Jason Rumney <jasonr@gnu.org>
1530
1531 * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
1532
1533 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
1534
1535 * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
1536 (Finsert_string): Avoid the multi-line string literals warning.
1537
1538 2001-10-22 Miles Bader <miles@gnu.org>
1539
1540 * doc.c (Vhelp_manyarg_func_alist): Variable removed.
1541 (Fdocumentation): Don't use it.
1542 (syms_of_doc): Don't initialize it.
1543
1544 * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
1545 * print.c (Fwith_output_to_temp_buffer): Likewise.
1546 * window.c (Fsave_window_excursion): Likewise.
1547 * editfns.c (Fsave_excursion, Fsave_current_buffer)
1548 (Fsave_restriction): Likewise.
1549 * eval.c (Frun_hooks, Frun_hook_with_args)
1550 (Frun_hook_with_args_until_failure)
1551 (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
1552 (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
1553 (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
1554 (Funwind_protect, Fcondition_case): Likewise.
1555 * coding.c (Ffind_operation_coding_system): Likewise.
1556 * keyboard.c (Ftrack_mouse): Likewise.
1557
1558 2001-10-21 Miles Bader <miles@gnu.org>
1559
1560 * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
1561 (Fmake_hash_table): Add usage: string to doc string.
1562 * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
1563 (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
1564 (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
1565 * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
1566 (Fml_prefix_argument_loop): Likewise.
1567
1568 2001-10-21 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1569
1570 * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
1571
1572 * sysdep.c (init_sys_modes): Change doc-string comments to `new
1573 style' [w/`doc:' keyword].
1574
1575 * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
1576 * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
1577 comments to `new style' [w/`doc:' keyword].
1578
1579 2001-10-21 Jason Rumney <jasonr@gnu.org>
1580
1581 * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
1582
1583 * w32term.c (remember_mouse_glyph): New function.
1584 (w32_mouse_position): Use it.
1585 (note_mouse_movement): If the mouse moved off the glyph, remember
1586 its new position.
1587
1588 * w32term.h (struct w32_output): Correct spelling of x_compatible.
1589 (w32_display_info): Add mouse_face_overlay.
1590
1591 * w32term.c (notice_overwritten_cursor): Renamed from
1592 note_overwritten_text_cursor. Rewritten to take glyph widths into
1593 account.
1594 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
1595 (fast_find_string_pos): New function.
1596 (fast_find_position): Return the correct vpos. Add parameter
1597 STOP. In the final row, stop before glyphs having STOP as object.
1598 Don't consider glyphs that are not from a buffer.
1599 (fast_find_position) [0]: Add a presumably more correct version
1600 for after 21.1.
1601 (expose_window_tree, expose_frame): Don't compute intersections here.
1602 (expose_window): Do it here instead.
1603 (expose_window_tree, expose_window, expose_line): Return 1 when
1604 overwriting mouse-face.
1605 (expose_window): If W is the window currently being updated, mark
1606 the frame garbaged.
1607 (expose_frame): If mouse-face was overwritten, redo it.
1608 (x_use_underline_position_properties): New variable.
1609 (syms_of_xterm): DEFVAR_BOOL it.
1610 (x_draw_glyph_string): Add comment to use it in future.
1611 (x_draw_glyph_string): Restore clipping after drawing box.
1612 Fix a computation of the underline position.
1613 (w32_get_glyph_string_clip_rect): Minor cleanup.
1614 (x_fill_stretch_glyph_string): Remove an assertion.
1615 (x_produce_glyphs): Don't convert multibyte characters
1616 to unibyte characters in unibyte buffers.
1617 (cursor_in_mouse_face_p): New function.
1618 (x_draw_stretch_glyph_string): Use it to choose a different GC
1619 when drawing a cursor within highlighted text. Don't draw
1620 background again if it has already been drawn.
1621 (x_draw_glyph_string_box): Don't draw a full-width
1622 box just because the glyph row's full_width_p flag is set.
1623 (x_draw_glyphs): Fix computation of rightmost x for
1624 full-width rows.
1625 (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
1626 (w32_draw_relief_rect): Extend left shadow to the bottom and left;
1627 change bottom shadow accordingly. Some cleanup.
1628 (x_update_window_end): Handle overwritten mouse face
1629 also for tool bar windows.
1630 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
1631 DRAW is DRAW_IMAGE_RAISED.
1632 (clear_mouse_face): Return 1 if text with mouse face was
1633 actually redrawn. Make the function static. Reset
1634 dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
1635 optimize away highlighting if we pass over that same overlay again.
1636 (note_mouse_highlight): Call mouse_face_overlay_overlaps
1637 to detect a case where we have to highlight a different region
1638 despite not having left the currently highlighted region.
1639 Set mouse_face_overlay in the x_display_info. Avoid changing the
1640 mouse pointer shape when show_mouse_face has already done it, or
1641 there is no need. Handle mouse-face and help-echo in strings.
1642 (glyph_rect): New function.
1643 (w32_mouse_position): Use it to raise the threshold for mouse
1644 movement event generation.
1645 (w32_initialize_display_info): Initialize the x_display_info's
1646 mouse_face_overlay.
1647 (w32_set_vertical_scroll_bar): Don't clear a zero height
1648 or width area.
1649 (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
1650 a widget to zero height.
1651
1652 * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
1653 Protect unibyte strings created by replacing their multibyte
1654 equivalents in menu_items.
1655 (w32_menu_show): Don't overwrite an item's name with its key
1656 description in case the description is a multibyte string.
1657 (single_submenu): Some cleanup.
1658
1659 * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
1660 (postprocess_image): New function.
1661 (lookup_image): Call it for all image types except PostScript.
1662 (x_kill_gs_process): Call postprocess_image.
1663 (tiff_error_handler, tiff_warning_handler): New functions.
1664 (tiff_load): Install them as handlers.
1665 (x_kill_gs_process): Recognize if someone has cleared the image
1666 cache under us.
1667 (valid_image_p): Protect better against invalid image
1668 specifications. Previous code could signal an error.
1669 (Fx_hide_tip, Fshow_tip): Doc fix.
1670 (Fv_max_tooltip_size): New variable.
1671 (syns_of_xfns): DEFVAR_LISP it.
1672 (Fx_show_tip): Add parameter TEXT. Set the tip frame's root
1673 window buffer to *tip* right after creating the frame. Set frame's
1674 window_width. Use a maximum tooltip size specified by
1675 Vx_max_tooltip_size, if that has valid contents.
1676 (compute_tip_xy): Add parameters WIDTH and HEIGHT.
1677 Make sure the tooltip is completely visible.
1678 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
1679 (Fx_create_frame): Adjust the frame's height for presence
1680 of the tool bar before calling x_figure_window_size.
1681 (x_set_tool_bar_lines): Clear the tool bar window's current matrix
1682 when the window gets smaller.
1683 (x_set_foreground_color): Set frame's cursor_pixel.
1684 (x_set_foreground_color, x_set_background_color): Cleaned up.
1685 (x_set_font): Handle case of x_new_fontset returning the same name
1686 as before, although there was a change in fontsets.
1687
1688 2001-10-21 Miles Bader <miles@gnu.org>
1689
1690 * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
1691 (Flogxor): Add usage: string to doc string.
1692 * charset.c (Fstring): Likewise.
1693 * callproc.c (Fcall_process_region, Fcall_process): Likewise.
1694 * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
1695
1696 2001-10-21 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1697
1698 * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
1699
1700 * alloc.c: Reindent DEFUNs with doc: keywords.
1701
1702 * abbrev.c (Finsert_abbrev_table_description): Reindent.
1703
1704 * frame.c: Change doc-string comments to `new style' [w/`doc:'
1705 keyword].
1706
1707 2001-10-20 Gerd Moellmann <gerd@gnu.org>
1708
1709 * (Version 21.1 released.)
1710
1711 2001-10-20 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1712
1713 * xfns.c (x_laplace_read_row, x_laplace_write_row): Prototypes removed.
1714
1715 * xdisp.c (invisible_text_between_p): Put prototype inside #if
1716 0 because unused.
1717
1718 * bytecode.c, callint.c, callproc.c, casefiddle.c, casetab.c
1719 * category.c, ccl.c, charset.c, process.c, syntax.c, window.c:
1720 Change doc-string comments to `new style' [w/`doc:' keyword].
1721
1722 2001-10-20 Miles Bader <miles@gnu.org>
1723
1724 The following changes remove the glyph_row `inverse_p' field,
1725 which is never set anymore, due to other changes:
1726
1727 * dispextern.h (struct glyph_row): Remove `inverse_p' field.
1728 (reassert_line_highlight, change_line_highlight): Declarations removed.
1729 * dispnew.c (update_frame_line): Don't call reassert_line_highlight.
1730 (line_hash_code, row_equal_p, fake_current_matrices)
1731 (build_frame_matrix_from_leaf_window, update_frame_line)
1732 (update_frame_line, update_frame_line, update_frame_line):
1733 Don't use `inverse_p' field.
1734 * xterm.c (x_initialize): Don't set reassert_line_highlight_hook or
1735 change_line_highlight_hook.
1736 (XTreassert_line_highlight, x_change_line_highlight):
1737 Functions removed.
1738 (x_fix_overlapping_area, x_write_glyphs, expose_area)
1739 (expose_line, x_erase_phys_cursor): Don't use `inverse_p' field.
1740 * xdisp.c (dump_glyph_row, display_mode_line): Don't use
1741 `inverse_p' field.
1742 * w32term.c (x_fix_overlapping_area, x_write_glyphs, expose_area)
1743 (expose_line, x_erase_phys_cursor): Don't use `inverse_p' field.
1744 (w32_reassert_line_highlight, x_change_line_highlight):
1745 Functions removed.
1746 * w32console.c (reassert_line_highlight, change_line_highlight):
1747 Functions removed.
1748 (initialize_w32_display): Don't set reassert_line_highlight_hook
1749 or change_line_highlight_hook.
1750 (hl_mode): Function removed.
1751 (reset_terminal_modes, set_terminal_modes, update_begin)
1752 (update_end, w32_face_attributes, initialize_w32_display):
1753 (clear_frame, ins_del_lines): Don't call it.
1754 * termhooks.h (reassert_line_highlight_hook)
1755 (change_line_highlight_hook): Declarations removed.
1756 * term.c (reassert_line_highlight_hook)
1757 (change_line_highlight_hook): Variables removed.
1758 (reassert_line_highlight, change_line_highlight): Functions removed.
1759 * msdos.c (IT_reassert_line_highlight)
1760 (IT_change_line_highlight): Functions removed.
1761 (internal_terminal_init): Don't set reassert_line_highlight_hook
1762 or change_line_highlight_hook.
1763 (highlight): Variable removed.
1764 (IT_set_face, IT_update_begin, IT_update_end)
1765 (IT_set_terminal_modes): Don't set or use it.
1766
1767 The following changes remove inverse-video support for terminals
1768 that use a `magic cookie' standout mode. Due to changes in the
1769 way mode-lines are displayed, such support no longer works
1770 anyway, and it's probable that almost no one uses such terminals
1771 anymore:
1772
1773 * term.c (standout_requested): Variable removed.
1774 (update_end, highlight_if_desired): Don't use it.
1775 (chars_wasted, copybuf): Variables removed.
1776 (write_standout_marker): Function removed.
1777 (cursor_to, clear_to_end, clear_frame, clear_end_of_line_raw)
1778 (clear_end_of_line_raw, write_glyphs, ins_del_lines):
1779 Don't use `chars_wasted' or `copybuf'.
1780 (calculate_costs): Don't allocate `chars_wasted' or `copybuf'.
1781 Set `costs_set' to true.
1782 (cursor_to, clear_end_of_line): Test `costs_set' instead of
1783 `chars_wasted'.
1784 (clear_end_of_line): Function removed.
1785 (clear_end_of_line_raw): Renamed to `clear_end_of_line'.
1786 (clear_to_end): Call `clear_end_of_line' instead of
1787 `clear_end_of_line_raw'.
1788 (TN_standout_width, TF_xs, TN_magic_cookie_glitch_ul): Vars removed.
1789 (term_init): Don't set them.
1790 Turn off any standout/underline modes that require magic cookies.
1791 (ins_del_lines, highlight_if_desired, background_highlight)
1792 (turn_on_highlight, turn_off_highlight, reset_terminal_modes):
1793 Remove special processing for magic-cookie standout modes.
1794 (turn_off_face, turn_on_face): Remove special processing for
1795 underline magic-cookie glitch.
1796
1797 2001-10-19 Richard M. Stallman <rms@gnu.org>
1798
1799 * eval.c (syms_of_eval): Doc fixes.
1800
1801 2001-10-19 Gerd Moellmann <gerd@gnu.org>
1802
1803 * xdisp.c (redisplay_internal): Don't clear echo area if the
1804 mini-window is selected.
1805
1806 2001-10-19 Miles Bader <miles@gnu.org>
1807
1808 * editfns.c (text_property_stickiness): Non-rear-non-stickiness
1809 doesn't take precedence if the affected property's value is nil.
1810
1811 * editfns.c (Fencode_time): Escape a BOL paren in the doc-string.
1812
1813 * cmds.c (Fbeginning_of_line, Fend_of_line): Clarify interaction
1814 with fields and suggest using `forward-line' to avoid them.
1815 * editfns.c (Fline_beginning_position, Fline_end_position):
1816 Clarify documentation.
1817
1818 2001-10-18 Stefan Monnier <monnier@cs.yale.edu>
1819
1820 * keymap.c (current_minor_maps): `override' only shadows its
1821 correspondent in minor-mode-map-alist, not the whole tail.
1822
1823 2001-10-18 Andrew Innes <andrewi@gnu.org>
1824
1825 * fontset.c (fs_load_font) [WINDOWSNT && _MSC_VER]: Disable
1826 optimization. The fontp->encoding array was not being initialized
1827 correctly when compiled with optimizations by MSVC.
1828
1829 2001-10-18 Gerd Moellmann <gerd@gnu.org>
1830
1831 * xdisp.c (display_line): Indicate empty lines in active mini-window.
1832
1833 2001-10-17 Andrew Innes <andrewi@gnu.org>
1834
1835 * fontset.h (struct font_info) [WINDOWSNT]: Add codepage field.
1836
1837 * w32fns.c (w32_load_system_font): Cache codepage for font, in
1838 font_info.charset field.
1839
1840 * w32term.c (w32_encode_char): Get cached codepage from font_info,
1841 rather than working it out by calling w32_codepage_for_font for
1842 every glyph.
1843
1844 2001-10-17 Andrew Innes <andrewi@gnu.org>
1845
1846 * w32term.c (w32_read_socket): Determine clipping rectangle for
1847 the entire frame, including areas covered by scrollbars and the
1848 menubar. This avoids internal arguments about whether a frame is
1849 fully obscured or not.
1850
1851 2001-10-17 Gerd Moellmann <gerd@gnu.org>
1852
1853 * xdisp.c (try_window_id): Undo last change. Give up if
1854 window ends in strings.
1855
1856 * xdisp.c (try_window_id): Don't display lines after the window
1857 end if the rest of the window after the window end was already blank.
1858
1859 * xdisp.c (try_window_id): Remove code that was only there
1860 for the release of 21.1.
1861
1862 * xdisp.c (display_line): Don't indicate empty lines in mini-windows.
1863
1864 2001-10-17 Miles Bader <miles@gnu.org>
1865
1866 * lisp.h (DEFUN): Remove `DOC_STRINGS_IN_COMMENTS' case.
1867 * xmenu.c, xdisp.c, term.c, dispnew.c, abbrev.c, editfns.c, buffer.c
1868 * xfns.c, alloc.c, minibuf.c, xterm.c, xfaces.c:
1869 Change doc-string comments to `new style' [w/`doc:' keyword].
1870 (DOC_STRINGS_IN_COMMENTS): Macro removed.
1871 * minibuf.c: Remove old commented-out-DEFUN that was used to fake
1872 out make-docfile.
1873
1874 2001-10-16 Miles Bader <miles@gnu.org>
1875
1876 * fns.c: Change doc-string comments to `new style' [w/`doc:' keyword].
1877
1878 2001-10-16 Gerd Moellmann <gerd@gnu.org>
1879
1880 * buffer.c (Fset_buffer_major_mode): Use initial-major-mode for
1881 *scratch*.
1882
1883 2001-10-16 Ken Raeburn <raeburn@gnu.org>
1884
1885 Avoid the assumption that car and cdr slots of cons cells are
1886 addressable lvalues; this allows for easier experimentation with
1887 other lisp implementations that may not permit such accesses for
1888 various reasons. Not quite complete -- buffer.c still needs some
1889 work, and w32/mac files need rechecking -- so compile-time
1890 enforcement is left disabled for now.
1891
1892 * lisp.h (LISP_MAKE_RVALUE): New macro, or function in the case of
1893 gcc with a union-based Lisp object rep. Redefine as no-op for now.
1894 (XCAR_AS_LVALUE, XCDR_AS_LVALUE): Rename from old XCAR, XCDR.
1895 (XCAR, XCDR): Apply LISP_MAKE_RVALUE to the _AS_LVALUE versions.
1896 (XSETCAR, XSETCDR): New macros.
1897 (XSETCARFASTINT, XSETCDRFASTINT): New macros.
1898 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): New macros.
1899 * keyboard.h (POSN_BUFFER_SET_POSN): New macro.
1900 * alloc.c (Fcons, pure_cons, Fgarbage_collect): Use XSETCAR and
1901 XSETCDR.
1902 (mark_buffer): Use XCAR_AS_LVALUE, XCDR_AS_LVALUE.
1903 * buffer.c (record_buffer, Fbury_buffer)
1904 (swap_out_buffer_local_variables, recenter_overlay_lists)
1905 (Foverlay_put): Use XSETCAR and XSETCDR to set the car and cdr
1906 fields of a cons cell respectively.
1907 * callint.c (quotify_args, Fcall_interactively): Likewise.
1908 * ccl.c (Fregister_code_conversion_map): Likewise.
1909 * coding.c (detect_coding_system): Likewise.
1910 * composite.c (get_composition_id, make_composition_value_copy):
1911 Likewise.
1912 * data.c (Fsetcar, Fsetcdr, swap_in_global_binding)
1913 (swap_in_symval_forwarding, set_internal, Fset_default)
1914 (Fmake_variable_buffer_local, Fmake_local_variable)
1915 (Fmake_variable_frame_local): Likewise.
1916 * fns.c (concat, Fcopy_alist, Fwidget_put): Likewise.
1917 * keymap.c (Fset_keymap_parent, store_in_keymap)
1918 (accessible_keymaps_1, where_is_internal_2, Fcopy_keymap): Likewise.
1919 * minibuf.c (get_minibuffer): Likewise.
1920 * search.c (Fmatch_data): Likewise.
1921 * textprop.c (extend_property_ranges): Likewise.
1922 * undo.c (record_insert, Fundo_boundary, truncate_undo_list): Likewise.
1923 * w32fns.c (w32_msg_pump, Fw32_register_hot_key, w32_list_fonts):
1924 Likewise.
1925 * w32term.c (x_delete_display): Likewise.
1926 * xfaces.c (remove_duplicates, Finternal_set_lisp_face_attribute):
1927 Likewise.
1928 * xterm.c (x_list_fonts, x_load_font, x_delete_display): Likewise.
1929 * doc.c (store_function_docstring): Use XSETCARFASTINT.
1930 * fileio.c (Fdo_auto_save): Use XSETCARFASTINT and XSETCDRFASTINT.
1931 (Fread_file_name): Use XSETCAR.
1932 * fontset.c (Fset_fontset_font): Use CHECK_NUMBER_CAR and
1933 CHECK_NUMBER_CDR.
1934 (accumulate_font_info, Ffontset_info): Use XSETCAR and XSETCDR.
1935 * frame.c (Fmake_terminal_frame): Use XSETCDR.
1936 * indent.c (Fcompute_motion): Use CHECK_NUMBER_CAR and
1937 CHECK_NUMBER_CDR.
1938 * keyboard.c (read_char): Alter list traversal to avoid taking the
1939 address of cons cell slots. Use POSN_BUFFER_SET_POSN.
1940 (parse_menu_item): Use XSETCAR and XSETCDR.
1941 (reach_char_x_menu_prompt): Use XSETCAR.
1942 (read_key_sequence): Use POSN_BUFFER_SET_POSN.
1943 (Fcommand_execute): Use XSETCDR.
1944 * lread.c (Fload): Use XSETCARFASTINT and XSETCDRFASTINT.
1945 (openp): Change list traversal to avoid using XCAR as lvalue.
1946 (read_list): Use XSETCDR.
1947 * process.c (wait_reading_process_input): Change wait_for_cell
1948 handling to avoid taking addresses of cons cell slots.
1949 * xselect.c (x_own_selection, x_handle_selection_clear)
1950 (x_clear_frame_selections): Use XSETCDR.
1951 (wait_for_property_change): Use XSETCARFASTINT and XSETCDRFASTINT.
1952 (x_handle_property_notify, x_get_foreign_selection)
1953 (x_handle_selection_notify): Use XSETCAR.
1954
1955 2001-10-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1956
1957 * buffer.c: Put doc strings in comments.
1958
1959 * sound.c: Include <sys/ioctl.h> also on systems without <soundcard.h>.
1960
1961 2001-10-15 Sam Steingold <sds@gnu.org>
1962
1963 * fns.c (Vafter_load_alist): Declare extern (w32 build problem).
1964
1965 2001-10-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1966
1967 * process.c (process-inherit-coding-system-flag)
1968 (get-buffer-process): Do not confuse make-docfile with doc strings
1969 in comment.
1970
1971 * editfns.c (Fchar_to_string): Make doc string consistent with
1972 arguments. Put doc strings in comments.
1973
1974 * abbrev.c, minibuf.c: Put doc strings in comments.
1975
1976 2001-10-15 Gerd Moellmann <gerd@gnu.org>
1977
1978 * window.c (window_loop): Don't check for Fother_buffer returning nil.
1979
1980 * window.c (select_window_1): Unfreeze window start. Remove a
1981 doubled test for WINDOW being live.
1982
1983 2001-10-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1984
1985 * fns.c (Fmapconcat): Fix typo in a doc string.
1986
1987 * dispnew.c (Fsleep_for): Fix typo in a doc string.
1988
1989 2001-10-15 Gerd Moellmann <gerd@gnu.org>
1990
1991 * xterm.c (x_draw_glyph_string): Restore clipping after
1992 drawing box.
1993
1994 2001-10-15 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
1995
1996 * callint.c (prefix-arg, current-prefix-arg): Fix typo in a doc string.
1997
1998 2001-10-14 Stefan Monnier <monnier@cs.yale.edu>
1999
2000 * indent.c (skip_invisible): Use new retval of
2001 TEXT_PROP_MEANS_INVISIBLE.
2002
2003 * keymap.c (access_keymap): Unify handling of `t' and generic-char.
2004 If a parent is reached and noinherit is set, exit immediately.
2005 Use AREF and ASIZE macros. Call get_keyelt before checking KEYMAPP.
2006
2007 * s/ms-w32.h (EXEC_SUFFIXES):
2008 * s/msdos.h (EXEC_SUFFIXES):
2009 * process.h (EXEC_SUFFIXES): Remove.
2010
2011 * callproc.c (syms_of_callproc): Init Vexec_suffixes to Qnil.
2012 (decode_suffixes): Remove.
2013
2014 * intervals.h (TEXT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS)
2015 (TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS, invisible_noellipsis_p)
2016 (invisible_ellipsis_p): Remove.
2017
2018 * xdisp.c (DOLIST, LOOP_PROPVAL): Remove.
2019 (invisible_p): Return 1 or 2 depending on whether an ellipsis is used.
2020 (invisible_ellipsis_p, invisible_noellipsis_p): Remove.
2021 (in_ellipses_for_invisible_text_p, handle_invisible_prop):
2022 Use new retval of TEXT_PROP_MEANS_INVISIBLE.
2023
2024 2001-10-14 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2025
2026 * lisp.h (Ftop_level): Add prototype.
2027
2028 * xterm.c: (xlwmenu_window_p, xlwmenu_redisplay): Add prototypes.
2029 (XTread_socket): Improve style of comments to follow other
2030 comments.
2031
2032 * keyboard.c (Fcommand_execute): Remove unnecessary prototype (it
2033 is already prototyped in included lisp.h).
2034
2035 * frame.c (Fset_mouse_position): Improve style of comment to
2036 follow other comments.
2037 (Fset_mouse_pixel_position): Improve style of comment to follow
2038 other comments.
2039 (Fmake_frame_visible): Doc fix and typo in comment.
2040 (Fmake_frame_invisible): Doc fix and typo in comment.
2041 (Ficonify_frame): Fix typo in comment.
2042
2043 2001-10-14 Gerd Moellmann <gerd@gnu.org>
2044
2045 * xfns.c, dispnew.c, xterm.c, xdisp.c, xfaces.c, xmenu.c
2046 * term.c, alloc.c: Put doc strings in comments.
2047
2048 2001-10-13 Gerd Moellmann <gerd@gnu.org>
2049
2050 * lisp.h (DEFUN, DEFVAR_LISP, ...) [DOC_STRINGS_IN_COMMENTS]:
2051 Provide definitions for doc strings in comments.
2052
2053 * fns.c: Put doc strings in comments.
2054
2055 2001-10-13 Eli Zaretskii <eliz@is.elta.co.il>
2056
2057 * dired.c (file_name_completion): Ignore a candidate directory if
2058 it matches an element in completion-ignored-extensions that ends
2059 in a slash.
2060 (syms_of_dired) <completion-ignored-extensions>: Mention the above
2061 feature in the doc string.
2062 (Ffile_name_completion): Ditto.
2063
2064 2001-10-12 Stefan Monnier <monnier@cs.yale.edu>
2065
2066 * indent.c (skip_invisible): Don't skip "ellipsisized" text.
2067
2068 * xfns.c (syms_of_xfns): Update calls to Fprovide.
2069
2070 * lisp.h (Fprovide): Update prototype.
2071 (Ffeaturep, invisible_p): Remove.
2072
2073 * xdisp.c (init_iterator): Be more strict with bytepos and charpos.
2074 (DOLIST, LOOP_PROPVAL): New macros.
2075 (invisible_p, invisible_ellipsis_p): Use them.
2076 (invisible_noellipsis_p): New function.
2077 (syms_of_xdisp): Use empty_string.
2078
2079 * alloc.c (mark_interval_tree): Use traverse_intervals_noorder.
2080
2081 * lread.c (substitute_object_recurse): Use traverse_intervals_noorder.
2082 (syms_of_lread) <Vafter_load_alist>: Update docstring.
2083
2084 * print.c (Fwith_output_to_temp_buffer): Align with
2085 internal_with_output_to_temp_buffer.
2086 (print_preprocess): Use traverse_intervals_noorder.
2087 (print_object): Update call to traverse_intervals.
2088
2089 * intervals.h (TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS): New macro.
2090 (traverse_intervals_noorder, invisible_noellipsis_p): New funs.
2091
2092 * intervals.c (traverse_intervals_noorder): New function.
2093 (search_for_interval, count_intervals): Use it.
2094 (traverse_intervals): Use less stack space and drop `depth' arg.
2095
2096 * fns.c (Ffeaturep): Add new `subfeature' arg.
2097 (Fprovide): Add new `subfeatures' arg. Use `after-load-alist'.
2098 (Qsubfeatures): New var.
2099 (syms_of_fns): Initialize it.
2100
2101 * keymap.c (Fkey_description): Use empty_string.
2102 (Fdescribe_bindings_internal, describe_buffer_bindings): Remove.
2103 (syms_of_keymap): Setup inheritance between maps.
2104 Don't export Sdescribe_bindings_internal any more.
2105
2106 * minibuf.c (keys_of_minibuf): Eliminate redundant bindings.
2107
2108 2001-10-12 Gerd Moellmann <gerd@gnu.org>
2109
2110 * xterm.c (notice_overwritten_cursor): Renamed from
2111 note_overwritten_text_cursor. Rewritten to take glyph widths into
2112 account.
2113
2114 2001-10-12 Eli Zaretskii <eliz@is.elta.co.il>
2115
2116 * lread.c (syms_of_lread) <load-suffixes>: Fix last change:
2117 multi-line strings without a trailing "\n\".
2118
2119 2001-10-12 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2120
2121 * floatfns.c: float_error() is defined iff FLOAT_CATCH_SIGILL is
2122 defined.
2123
2124 2001-10-11 Stefan Monnier <monnier@cs.yale.edu>
2125
2126 * callint.c (Fcall_interactively): Remove unused code. Use XCAR.
2127
2128 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
2129 * w32proc.c (sys_spawnve):
2130 * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
2131 * w32.c (check_windows_init_file):
2132 * sound.c (Fplay_sound):
2133 * emacs.c (init_cmdargs):
2134 * process.c (Fstart_process): Update calls to openp.
2135
2136 * callproc.c (Vexec_suffixes): New var.
2137 (Fcall_process): Update call to openp.
2138 (decode_suffixes): New function.
2139 (syms_of_callproc): Init exec-suffixes.
2140
2141 * lread.c (Vload_suffixes, default_suffixes): New vars.
2142 (openp): Take a lisp list of suffixes.
2143 Check for file-name-handlers even if the file was absolute already.
2144 (syms_of_lread): Declare load-suffixes.
2145 (Fload): Fix up call to openp.
2146 Don't bother checking for file-name-handler at the very beginning.
2147
2148 * keymap.h (Fcopy_keymap): Don't export.
2149
2150 * lisp.h (empty_string): Declare.
2151 (Vload_suffixes, Vexec_suffixes): Declare.
2152 (openp): Update prototype.
2153
2154 * emacs.c (empty_string): New var.
2155 (syms_of_emacs): Initialize it.
2156
2157 * search.c (wordify): Use it.
2158
2159 * buffer.c (Fbury_buffer): Don't try to remove the buffer from the
2160 selected window if it's not displayed there. Handle the case
2161 when the window is dedicated.
2162 (syms_of_buffer): Fix docstrings not to mention "buffer-local" anymore.
2163
2164 * undo.c (Fprimitive_undo): Use XCAR/XCDR.
2165
2166 * syntax.h (struct gl_state_s): Change the meaning of b_property.
2167 Remove left_ok and right_ok.
2168 (UPDATE_SYNTAX_TABLE_BACKWARD, UPDATE_SYNTAX_TABLE)
2169 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT): Update to the
2170 new meaning of b_property.
2171
2172 * syntax.c (update_syntax_table): Simplify.
2173 (Fforward_comment): Don't skip quoted chars when going backward.
2174
2175 2001-10-11 Gerd Moellmann <gerd@gnu.org>
2176
2177 * lisp.h (FIXNUM_OVERFLOW_P): Cast I to EMACS_INT in comparisons
2178 in case I is of some unsigned type, in which case
2179 MOST_NEGATIVE_FIXNUM will be converted to unsigned, and the
2180 comparison becomes bogus.
2181
2182 * editfns.c (Fuser_uid, Fuser_real_uid): Use make_fixnum_or_float.
2183 (Fuser_full_name): Fix bug treating a float as a fixnum.
2184
2185 * data.c (Fstring_to_number): Use make_fixnum_or_float.
2186
2187 * lisp.h (make_fixnum_or_float): New macro.
2188
2189 * lisp.h (circular_list_error): Add prototype.
2190
2191 * data.c (Qcircular_list): New variable.
2192 (circular_list_error): New function.
2193 (syms_of_data): Initialize it Qcircular_list.
2194
2195 2001-10-10 Stefan Monnier <monnier@cs.yale.edu>
2196
2197 * window.c, syntax.c, macros.c, frame.c, emacs.c, cmds.c, category.c,
2198 casefiddle.c, buffer.c: Include keymap.h.
2199
2200 2001-10-10 Gerd Moellmann <gerd@gnu.org>
2201
2202 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Add `-nointrinsics'
2203 options. From Dave Love <d.love@dl.ac.uk>.
2204
2205 2001-10-09 Gerd Moellmann <gerd@gnu.org>
2206
2207 * regex.c (WIDE_CHAR_SUPPORT): Do not use defined() in macro.
2208 From Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
2209
2210 * editfns.c (Fcurrent_time_zone): Cast isalnum() argument to
2211 unsigned char.
2212 From Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
2213
2214 2001-10-08 Andrew Innes <andrewi@gnu.org>
2215
2216 * lisp.h [max]: Undef min and max before redefining them.
2217
2218 * w32gui.h: Do not undef min and max.
2219
2220 * w32heap.h: Do not undef min and max.
2221
2222 * s/ms-w32.h: Do not undef min and max.
2223
2224 2001-10-08 Stefan Monnier <monnier@cs.yale.edu>
2225
2226 * xdisp.c (handle_fontified_prop): Don't bind after-change-functions.
2227
2228 2001-10-08 Sam Steingold <sds@gnu.org>
2229
2230 * keymap.c (current-active-maps): Quote newlines (compilation error).
2231
2232 2001-10-08 Eli Zaretskii <eliz@is.elta.co.il>
2233
2234 * Makefile.in (lisp, shortlisp): Replace bindings.el with
2235 bindings.elc, since otherwise doc strings in bindings.el get wrong
2236 offsets in etc/DOC.
2237
2238 2001-10-08 Stefan Monnier <monnier@cs.yale.edu>
2239
2240 * lisp.h: Remove the entries for keymap.c (moved to keymap.h).
2241
2242 * keyboard.h (map_prompt): Remove.
2243
2244 * xterm.c, w32term.c, term.c, minibuf.c, keymap.c,
2245 * intervals.c, fns.c, doc.c, callint.c: Include keymap.h.
2246
2247 * xmenu.c (keymap_panes, Fx_popup_menu): Use Fkeymap_prompt.
2248
2249 * w32menu.c (keymap_panes, Fx_popup_menu): Use Fkeymap_prompt.
2250
2251 * keyboard.c (map_prompt): Remove.
2252 (read_char_x_menu_prompt, read_char_minibuf_menu_prompt):
2253 Use Fkeymap_prompt.
2254
2255 * keymap.h: New file. Extracted from lisp.h.
2256
2257 * keymap.c (Fkeymap_prompt, Fcurrent_active_maps): New funs.
2258 (accessible_keymaps_1): New function.
2259 (Faccessible_keymaps, accessible_keymaps_char_table): Use it.
2260 (Fwhere_is_internal): Use Fcurrent_active_maps.
2261 (Fdescribe_buffer_bindings): Renamed from describe_buffer_bindings.
2262 Insert in current buffer rather than standard-output.
2263 Don't call `help-mode'. Export to elisp.
2264 (describe_buffer_bindings): New wrapper.
2265 (syms_of_keymap): Defsubr Skeymap_prompt, Scurrent_active_maps
2266 and Sdescribe_buffer_bindings.
2267
2268 2001-10-08 Gerd Moellmann <gerd@gnu.org>
2269
2270 * atimer.c (alarm_signal_handler) [USG && !POSIX_SIGNALS]:
2271 Remove code setting signal handler.
2272
2273 * sysdep.c (child_setup_tty) [HAVE_TERMIO || HAVE_TERMIOS]:
2274 Clear ICRNL and INLCR. From Daiki Ueno <ueno@unixuser.org>.
2275
2276 2001-10-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2277
2278 * keyboard.c: Don't define min/max.
2279
2280 2001-10-08 Gerd Moellmann <gerd@gnu.org>
2281
2282 * xterm.c, xmenu.c, xfns.c, xdisp.c, window.c:
2283 * w32term.c, w32menu.c, w32console.c, w32bdf.c, w32.c, term.c
2284 * sysdep.c, sound.c, search.c, scroll.c, minibuf.c, keymap.c
2285 * intervals.c, insdel.c, indent.c, fns.c, fileio.c, editfns.c
2286 * dispnew.c, dired.c, charset.c, xfaces.c, alloc.c, atimer.c:
2287 Don't define min/max.
2288
2289 * lisp.h (min, max): New macros.
2290
2291 * puresize.h (BASE_PURESIZE): Increase to 725000.
2292
2293 2001-10-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2294
2295 * xfaces.c (free_frame_menubar): Add prototype.
2296
2297 * lisp.h (init_window): Add prototype.
2298
2299 * editfns.c: Include ctype.h.
2300
2301 * xterm.c: USE_LUCID can be defined iff USE_X_TOOLKIT is defined.
2302 (xm_scroll_callback) [USE_MOTIF]: Remove unused variable `percent'.
2303 (x_set_toolkit_scroll_bar_thumb) [USE_MOTIF]: Remove unused
2304 variable `sb'.
2305
2306 * xfns.c (Fx_hide_tip): Fix typo in a doc string.
2307 (Fx_file_dialog) [USE_MOTIF]: Remove unused variables
2308 `popup_activated_flag' and `title'.
2309
2310 * doc.c (Fdocumentation_property): Fix typo in a doc string.
2311
2312 * emacs.c (main): Remove extra `;'.
2313
2314 * atimer.h (struct atimer): Fix typos in a comment.
2315
2316 * atimer.c: Fix typo.
2317
2318 * Makefile.in: Fix typo.
2319
2320 * README: Remove obsolete part mentioning removed VMS file.
2321
2322 2001-10-07 Miles Bader <miles@gnu.org>
2323
2324 * Makefile.in (lisp, shortlisp): Add `button.elc'.
2325
2326 2001-10-07 Ken Raeburn <raeburn@gnu.org>
2327
2328 * minibuf.c (Fminibuffer_prompt_end): Don't apply make_number to a
2329 Lisp_Object.
2330
2331 * lisp.h (Ffield_end): Declare.
2332
2333 2001-10-07 Gerd Moellmann <gerd@gnu.org>
2334
2335 * keyboard.c (parse_modifiers, apply_modifiers): Use VALMASK.
2336
2337 * insdel.c (make_gap): Use MOST_POSITIVE_FIXNUM.
2338
2339 * floatfns.c (FLOAT_TO_INT2, FLOAT_TO_INT): Use FIXNUM_OVERFLOW_P.
2340
2341 * dired.c (Ffile_attributes): Use FIXNUM_OVERFLOW_P.
2342
2343 * bytecode.c (syms_of_bytecode) [BYTE_CODE_METER]: Doc fix.
2344 (METER_CODE, Fbyte_code): Use MOST_POSITIVE_FIXNUM.
2345
2346 * alloc.c (inhibit_garbage_collection): Simplify.
2347 (Fmemory_use_counts): Ditto.
2348
2349 * data.c (most_positive_fixnum, most_negative_fixnum): New variables.
2350 (syms_of_data): DEFVAR_INT most-positive-fixnum and
2351 most-negative-fixnum.
2352
2353 * lisp.h (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM)
2354 (FIXNUM_OVERFLOW_P): New macros.
2355
2356 2001-10-06 Miles Bader <miles@gnu.org>
2357
2358 * xterm.h (struct x_output): Add scroll_bar_top_shadow_pixel and
2359 scroll_bar_bottom_shadow_pixel fields.
2360 * xterm.c (x_create_toolkit_scroll_bar): Try to allocate colors
2361 for the shadows, and tell the toolkit about them if we succeed.
2362 (x_destroy_window) [USE_TOOLKIT_SCROLL_BARS]:
2363 Free scroll-bar shadow colors.
2364 * xfns.c (x_set_scroll_bar_background) [USE_TOOLKIT_SCROLL_BARS]:
2365 Free scroll-bar shadow colors when the background color changes.
2366 (Fx_create_frame, x_create_tip_frame) [USE_TOOLKIT_SCROLL_BARS]:
2367 Initialize scroll-bar shadow-color fields.
2368
2369 2001-10-05 Gerd Moellmann <gerd@gnu.org>
2370
2371 * fileio.c (Fcopy_file): If NEWNAME is a directory copy FILE there.
2372
2373 2001-10-05 Miles Bader <miles@gnu.org>
2374
2375 * minibuf.c (Fminibuffer_prompt_end, Fminibuffer_contents)
2376 (Fminibuffer_contents_no_properties, Fdelete_minibuffer_contents):
2377 New functions (were in simple.el).
2378 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
2379 (read_minibuf, do_completion, Fminibuffer_completion_help): Use them.
2380 (syms_of_minibuf): Initialize them.
2381
2382 2001-10-05 Gerd Moellmann <gerd@gnu.org>
2383
2384 * xfns.c (tiff_error_handler, tiff_warning_handler): New functions.
2385 (tiff_load): Install them as error and warning handler.
2386
2387 2001-10-04 Andrew Innes <andrewi@gnu.org>
2388
2389 * w32fns.c (x_to_w32_color): Fix argument to alloca.
2390 (w32_load_system_font): Don't believe what GetLanguageFontInfo
2391 says; query codepage info directly to determine if font is double byte.
2392 (x_to_w32_charset): Handle private format for unknown charsets.
2393 Handle wildcards in charset spec, by ignoring them.
2394 (w32_codepage_for_font): Fix argument to alloca. Don't remove
2395 "*-" prefix from charset.
2396 (x_to_w32_font): Enlarge remainder array for safety. Specifically
2397 handle the truncated font spec form constructed by font_list_1, so
2398 that we correctly identify the charset fields. Don't remove "*-"
2399 prefix from charset.
2400 (w32_list_synthesized_fonts): Fix argument to alloca.
2401
2402 2001-10-04 Stefan Monnier <monnier@cs.yale.edu>
2403
2404 * window.h (MINI_WINDOW_P): Use NILP.
2405
2406 * coding.h (ENCODE_SYSTEM, DECODE_SYSTEM): Define also for non-NT.
2407
2408 * termhooks.h (struct input_event): Use proper type for `kind'.
2409
2410 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2411
2412 This handles unknown keysyms better than before. For example,
2413 after `xmodmap -e 'keysym F5 = ccaron' in a Latin-1 environment,
2414 Emacs formerly completely ignored F5. With the change, it derives
2415 a key symbol from the name of the X keysym, `ccaron' in this case.
2416 Reported by Martin Buchholz.
2417
2418 * xterm.c (XTread_socket): Return a non_ascii_keystroke for
2419 unknown keysyms.
2420
2421 * keyboard.c (make_lispy_event) [HAVE_X_WINDOWS]: If we know
2422 that EVENT->code isn't a function key, use the keysym's name.
2423
2424 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2425
2426 FOREACH is a macro that should make it easier to loop over Lisp
2427 lists with checks for cycles and proper lists.
2428
2429 * lisp.h (LIST_END_P, FOREACH): New macros.
2430
2431 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2432
2433 On some systems, XtCloseDisplay seems to cause a SIGSEGV when
2434 called for a lost connection. Prevent dumping core in this case.
2435 Instead print the X error, and exit. On user request.
2436
2437 * xterm.c (error_msg): New variable.
2438 (x_fatal_error_signal): New function.
2439 (x_connection_closed): Set error_msg. Install x_fatal_error_signal
2440 as fatal_error_signal_hook around the call to XtCloseDisplay.
2441
2442 * emacs.c (fatal_error_signal_hook): New variable.
2443 (fatal_error_signal): Call that function.
2444
2445 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2446
2447 With this, Emacs prints how much pure storage it will
2448 approximately need in case pure storage overflows while dumping.
2449
2450 * alloc.c (purebeg, pure_size, pure_bytes_used_before_overflow):
2451 New variables.
2452 (init_alloc_once): Initialize new variables.
2453 (PURE_POINTER_P): Use new variables.
2454 (pure_alloc): If pure storage overflows, allocate from the heap.
2455 (check_pure_size): New function.
2456 (Fgarbage_collect): Don't GC if pure storage has overflowed.
2457
2458 * lisp.h (pure_size) [HAVE_SHM]: Declare extern size_t.
2459 (check_pure_size): Add prototype.
2460
2461 * emacs.c (Fdump_emacs_data, Fdump_emacs): Call check_pure_size.
2462
2463 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2464
2465 This adds a post-gc-hook that's run with GC inhibited.
2466 Requested by Francois Pinard. XEmacs has it. Added to NEWS.
2467
2468 * alloc.c (Vpost_gc_hook, Qpost_gc_hook): New variables.
2469 (syms_of_alloc): DEFVAR_LISP post-gc-hook, initialize Qpost_gc_hook.
2470 (Fgarbage_collect): Run post-gc-hook.
2471
2472 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2473
2474 This adds `defvaralias' and `indirect-variable'. Changes not
2475 directly related to this feature are there to gain the same
2476 performance again as before variable aliases.
2477
2478 You must use the SYMBOL_VALUE and SET_SYMBOL_VALUE macros in C
2479 code to get and set symbol values, to take defvaralias into account.
2480
2481 (Note: the new `constant' bit-flag in symbols would make it
2482 possible to define arbitrary read-only variables, e.g. with
2483 `defconst'.)
2484
2485 Documentation is in lispref/variables.texi. Added to NEWS.
2486
2487 * lisp.h (enum symbol_interned): New enumeration.
2488 (struct Lisp_Symbol): Remove member `obarray', add
2489 `indirect_variable', `constant', and `interned'.
2490 (SYMBOL_INTERNED_P, SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P)
2491 (SYMBOL_CONSTANT_P, SYMBOL_VALUE, SET_SYMBOL_VALUE): New macros.
2492 (indirect_variable): Add prototype.
2493
2494 * print.c (print_preprocess, print_object): Test internedness of
2495 symbols differently.
2496
2497 * lread.c (Fintern, Funintern): Set symbol's interned and constant
2498 bit-fields.
2499 (init_obarray): Likewise for t and nil.
2500
2501 * eval.c Use SYMBOL_VALUE/SET_SYMBOL_VALUE.
2502 (Fdefvaralias): New function.
2503 (specbind): Simplify the test if symbol is a constant.
2504 (syms_of_eval): Defsubr Fdefvaralias.
2505
2506 * data.c: Use SYMBOL_VALUE/SET_SYMBOL_VALUE.
2507 (Qcyclic_variable_indirection): New variable.
2508 (Fkeywordp): Check for internedness differently.
2509 (Fmakunbound): Simplify the test if symbol is a constant.
2510 (indirect_variable, Findirect_variable): New functions.
2511 (swap_in_symval_forwarding): If SYMBOL is an alias, use the
2512 aliased symbol.
2513 (let_shadows_buffer_binding_p): Check for variable aliases.
2514 (set_internal): Simplify the test if SYMBOL is a constant.
2515 If SYMBOL has a buffer-local value and is an alias, use the aliased
2516 symbol instead.
2517 (syms_of_data): Initialize Qcyclic_variable_indirection and defsubr
2518 Sindirect_variable.
2519
2520 * bytecode.c (Fbyte_code) <varref>: Use SYMBOL_VALUE.
2521 (Fbyte_code) <varset>: Simplify the test if symbol's value can be
2522 set directly.
2523
2524 * alloc.c (Fmake_symbol): Adapt to changes of struct Lisp_Symbol.
2525
2526 * abbrev.c, buffer.c, coding.c, fns.c, frame.c, keyboard.c:
2527 * minibuf.c, sunfns.c, w16select.c: Use SYMBOL_VALUE/
2528 SET_SYMBOL_VALUE macros instead of accessing symbol values directly.
2529
2530 2001-10-04 Gerd Moellmann <gerd@gnu.org>
2531
2532 * Branch for 21.1.
2533
2534 2001-10-03 Miles Bader <miles@gnu.org>
2535
2536 * callproc.c (syms_of_callproc): Explicitly state in the
2537 documentation for `process-environment' that earlier entries take
2538 precedence over later ones.
2539
2540 2001-10-02 Miles Bader <miles@gnu.org>
2541
2542 * textprop.c (Fnext_char_property_change)
2543 (Fprevious_char_property_change): Remove reference to non-existant
2544 argument OBJECT from doc-string.
2545
2546 2001-10-01 Gerd Moellmann <gerd@gnu.org>
2547
2548 * xdisp.c (display_line): Set row's ends_in_newline_from_string_p.
2549 (try_window_id): Skip back over lines ending in a newline from a
2550 string.
2551
2552 * dispextern.h (struct glyph_row) <ends_in_newline_from_string_p>:
2553 New bit flag
2554
2555 2001-10-01 Richard M. Stallman <rms@gnu.org>
2556
2557 * search.c (Freplace_match): Doc fix.
2558
2559 2001-09-28 Andrew Innes <andrewi@gnu.org>
2560
2561 * w32menu.c (set_frame_menubar): Take into account that
2562 f->menu_bar_vector can be nil, and not a vector. From Ken Raeburn
2563 <raeburn@gnu.org>.
2564
2565 2001-09-30 Eli Zaretskii <eliz@is.elta.co.il>
2566
2567 * frame.c (syms_of_frame) <default-minibuffer-frame>: Doc fix.
2568
2569 2001-09-28 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
2570
2571 * s/gnu-linux.h: Fix a typo in comment.
2572
2573 2001-09-28 Andreas Schwab <schwab@suse.de>
2574
2575 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Link temacs with -z
2576 nocombreloc, in case -z combreloc is the default.
2577
2578 2001-09-28 Gerd Moellmann <gerd@gnu.org>
2579
2580 * m/macppc.h [DATA_SEG_BITS]: Put in #if 0 until we know what's
2581 really going on here.
2582
2583 2001-09-27 Stefan Monnier <monnier@cs.yale.edu>
2584
2585 * search.c (trivial_regexp_p): Catch \{N,M\} as well.
2586
2587 2001-09-27 Eli Zaretskii <eliz@is.elta.co.il>
2588
2589 * Makefile.in (shortlisp): Resync with loadup.el: add backquote,
2590 utf-8, menu-bar, and latin-N.
2591 (SOME_MACHINE_LISP): Remove menu-bar, since it's loaded
2592 unconditionally now.
2593 (lisp): Add latin-N, since they are preloaded.
2594
2595 2001-09-27 Gerd Moellmann <gerd@gnu.org>
2596
2597 * xterm.c (x_draw_relief_rect): Draw bottom relief 1 pixel more
2598 to the left. Some cleanup.
2599
2600 * xdisp.c (display_mode_element): One more case where a string's
2601 multibyteness should be used for display.
2602
2603 2001-09-26 Gerd Moellmann <gerd@gnu.org>
2604
2605 * fileio.c (Finsert_file_contents): If REPLACE is non-nil, stop
2606 reading at EOF.
2607
2608 * xdisp.c (with_echo_area_buffer): Use echo_kboard instead
2609 of the only temporarily set echoing flag for deciding when
2610 the cancel echoing.
2611
2612 * keyboard.c (echo_kboard): Make externally visible.
2613
2614 * lisp.h (echo_kboard): Declare extern.
2615
2616 * xdisp.c (make_cursor_line_fully_visible): Return 0 and set
2617 fonts_changed_p if we need larger matrices due to vscrolling.
2618 (try_scrolling, try_cursor_movement, redisplay_window): Give up on
2619 this round of redisplay if make_cursor_line_fully_visible fails.
2620 (CURSOR_MOVEMENT_*, SCROLLING_*): New enumerators.
2621 (try_cursor_movement, try_scrolling): Use them instead of integers.
2622
2623 * dispextern.h (required_matrix_width, required_matrix_height):
2624 Add prototypes.
2625
2626 * dispnew.c (required_matrix_width, required_matrix_height):
2627 New functions.
2628 (allocate_matrices_for_window_redisplay)
2629 (allocate_matrices_for_frame_redisplay: Use them.
2630 Remove parameters CH_DIM.
2631
2632 * xdisp.c (display_mode_lines): Temporarily set selected_frame
2633 and selected_window to the frame of the window whose mode-lines
2634 are displayed, and to the window itself.
2635 (redisplay_window, redisplay_mode_lines): Don't set selected_frame
2636 here.
2637
2638 2001-09-25 Gerd Moellmann <gerd@gnu.org>
2639
2640 * xfns.c (x_kill_gs_process): Recognize if someone has cleared
2641 the image cache under us.
2642
2643 * xdisp.c (display_mode_element): If the mode element is a symbol
2644 with a string value, use that string's multibyteness for displaying.
2645
2646 * keyboard.c (read_char): Don't clear a message for a switch-frame
2647 event. From Stefan Monnier <monnier@cs.yale.edu>.
2648
2649 * xterm.c (fast_find_position) [0]: Add a presumably more correct
2650 version for after 21.1.
2651
2652 * xdisp.c (row_containing_pos): Make externally visible.
2653
2654 * dispextern.h (row_containing_pos): Add prototype.
2655
2656 * process.c (send_process): Disable composition if from_byte < 0.
2657 From Kenichi Handa <handa@etl.go.jp>.
2658
2659 2001-09-24 Gerd Moellmann <gerd@gnu.org>
2660
2661 * xterm.c (refreshicon): Function removed.
2662
2663 * Makefile.in (xterm.o): Remove references to sink.h and sinkmask.h.
2664
2665 * sink11.h, sink11mask.h, sink.h, sinkmask.h: Removed.
2666
2667 * xterm.c (toplevel): Remove includes in #if 0.
2668
2669 * process.c (sigchld_handler) [LINUX]: Don't return from
2670 the signal handler at the end of the loop.
2671
2672 2001-09-21 Gerd Moellmann <gerd@gnu.org>
2673
2674 * sysdep.c (wait_for_termination) [POSIX_SIGNALS]:
2675 Terminate only if kill returns -1, and errno is ESRCH.
2676
2677 2001-09-21 Markus Rost <rost@math.ohio-state.edu>
2678
2679 * Makefile.in (shortlisp): Add ../lisp/env.elc.
2680
2681 2001-09-20 Gerd Moellmann <gerd@gnu.org>
2682
2683 * process.c (sigchld_handler): Use GC_CONSP, GC_INTEGERP, GC_EQ
2684 since this function can be called during GC.
2685
2686 * callproc.c (Fcall_process): Handle errors from pipe(2).
2687 (child_setup): Delete code in #ifdef vipc.
2688
2689 2001-09-19 Gerd Moellmann <gerd@gnu.org>
2690
2691 * xdisp.c (decode_mode_spec): Add parameter MULTIBYTE.
2692 (display_mode_element): Display the string from decode_mode_spec
2693 depending on its multibyteness.
2694
2695 * s/netbsd.h (LD_SWITCH_SYSTEM, C_SWITCH_SYSTEM): Add /usr/pkg.
2696
2697 * m/macppc.h (DATA_SEG_BITS): Also define for GCC 3.
2698
2699 2001-09-18 Gerd Moellmann <gerd@gnu.org>
2700
2701 * keyboard.c (Frecursive_edit): Pass (BUFFER . SINGLE-KBOARD) to
2702 recursive_edit_unwind.
2703 (recursive_edit_unwind): Set kboard state according to
2704 SINGLE-KBOARD.
2705
2706 * buffer.c (modify_overlay): Don't do nothing if START == END;
2707 This can still be a modification, for example when an overlay has
2708 a before-string or after-string.
2709 (Fdelete_overlay): Prevent redisplay optimizations when deleting
2710 an overlay with before-string or after-string.
2711
2712 * s/netbsd.h (C_SWITCH_SYSTEM): Add.
2713 (LD_SWITCH_SYSTEM): Include /usr/local/lib.
2714
2715 * xdisp.c (try_window_id) [!GLYPH_DEBUG]: Give up if
2716 first_unchanged_at_end_row is in front of
2717 last_unchanged_at_beg_row. This code should be removed after the
2718 release of 21.1.
2719
2720 2001-09-17 Gerd Moellmann <gerd@gnu.org>
2721
2722 * buffer.h (BUF_COMPUTE_UNCHANGED): Use BUF_MODIFF and
2723 BUF_OVERLAY_MODIFF instead of MODIFF and OVERLAY_MODIFF.
2724
2725 * m/macppc.h (DATA_SEG_BITS) [__linux__]: Define for GCC
2726 versions >= 2.95.
2727
2728 2001-09-14 Eli Zaretskii <eliz@is.elta.co.il>
2729
2730 * dired.c (Ffile_attributes): Doc fix.
2731
2732 2001-09-14 Gerd Moellmann <gerd@gnu.org>
2733
2734 * fileio.c (Ffile_symlink_p): Fix last change.
2735
2736 * filelock.c (current_lock_owner): Fix last change.
2737
2738 2001-09-13 Gerd Moellmann <gerd@gnu.org>
2739
2740 * filelock.c (current_lock_owner): If readlink returns ERANGE,
2741 take that to mean that the buffer is too small.
2742
2743 * fileio.c (Ffile_symlink_p): If readlink returns ERANGE, take
2744 that to mean that the buffer is too small.
2745
2746 * xdisp.c (reseat_1): Set IT's multibyte_p flag according to the
2747 current buffer's multibyteness when discarding the iterator's
2748 stack.
2749
2750 * xfns.c (Fx_window_property): Handle case that property gets
2751 deleted between the two calls to XGetWindowProperty.
2752
2753 2001-09-11 Gerd Moellmann <gerd@gnu.org>
2754
2755 * minibuf.c (read_minibuf_unwind): Bind inhibit-modification-hooks.
2756
2757 * minibuf.c (read_minibuf): Bind inhibit-modification-hooks to t,
2758 in addition to read-only.
2759
2760 * xdisp.c (with_echo_area_buffer): Bind inhibit-modification-hooks
2761 to t in addition to read-only.
2762
2763 * lisp.h (Qinhibit_modification_hooks): Declare.
2764
2765 * insdel.c (Qinhibit_modification_hooks): New variable.
2766 (syms_of_insdel): Initialize and staticpro it.
2767
2768 * textprop.c (verify_interval_modification): Don't run
2769 modification-hooks if inhibit_modification_hooks.
2770
2771 * dispnew.c (set_window_cursor_after_update): Fix code
2772 finding glyph row containing cursor when cursor_in_echo_area
2773 is >= 0.
2774
2775 * xdisp.c (init_from_display_pos): Put some code in #if 0.
2776 (add_to_log): Use bcopy instead of strcpy.
2777 (init_from_display_pos): Use an explicit loop over bytes in
2778 overlay strings instead of calling index.
2779
2780 2001-09-10 Gerd Moellmann <gerd@gnu.org>
2781
2782 * alloc.c (allocate_buffer): Call VALIDATE_LISP_STORAGE.
2783
2784 * dispnew.c (direct_output_for_insert): Don't change IT's
2785 stop_charpos to something in front of its current position.
2786
2787 * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: Take args like
2788 `format'.
2789
2790 2001-09-10 Richard M. Stallman <rms@gnu.org>
2791
2792 * frame.c (Fmouse_position): Doc fix.
2793
2794 2001-09-07 Gerd Moellmann <gerd@gnu.org>
2795
2796 * xdisp.c (init_from_display_pos): Don't compare the result
2797 of calling index with NULL.
2798
2799 2001-09-06 Gerd Moellmann <gerd@gnu.org>
2800
2801 * xfns.c (x_set_background_color): Don't change the colors
2802 of the X window of scroll bar widgets.
2803
2804 2001-09-05 Andrew Innes <andrewi@gnu.org>
2805
2806 * w32fns.c (w32_createwindow): Undo last change.
2807
2808 2001-09-05 Gerd Moellmann <gerd@gnu.org>
2809
2810 * macros.c (store_kbd_macro_char): Fix computation of kbd_macro_end.
2811
2812 * xdisp.c (string_buffer_position): Use *single_char_property*
2813 functions instead of the *single_property* functions.
2814
2815 2001-09-04 Andrew Innes <andrewi@gnu.org>
2816
2817 * w32term.c (w32_read_socket): Add more information to debugging
2818 output.
2819
2820 * w32fns.c (w32_createwindow): Remove the WS_CLIPCHILDREN style
2821 from Emacs frames, so that calls to GetClipBox in w32term.c
2822 correctly report when part of a frame is visible (including
2823 scrollbars, etc). This prevents repeated redrawing of frames when
2824 only a scrollbar is visible.
2825 (w32_wnd_proc): Add more frame information to debugging output.
2826
2827 2001-09-03 Stefan Monnier <monnier@cs.yale.edu>
2828
2829 * xdisp.c (handle_single_display_prop): Fix for int/Lisp_Object mixup.
2830
2831 2001-09-03 Gerd Moellmann <gerd@gnu.org>
2832
2833 * xterm.c (note_mouse_highlight) <help-echo>: When looking for
2834 help-echo for a string which doesn't have help-echo itself, use
2835 get-char-property to obtain the help-echo from the string's buffer
2836 (note_mouse_highlight) <mouse-face>: When on a string that doesn't
2837 have mouse-face, look ``under'' the string for mouse-face from an
2838 overlay.
2839 (fast_find_position): Add parameter STOP. In the final row, stop
2840 before glyphs having STOP as object. Don't consider glyphs that
2841 are not from a buffer.
2842
2843 * buffer.c (syms_of_buffer) <default-directory>: Doc fix.
2844
2845 2001-09-01 Eli Zaretskii <eliz@is.elta.co.il>
2846
2847 * fns.c (Fmd5): Doc fix.
2848
2849 2001-08-31 Gerd Moellmann <gerd@gnu.org>
2850
2851 * composite.c (update_compositions): Do nothing if
2852 inhibit-modification-hooks is set.
2853
2854 2001-08-30 Gerd Moellmann <gerd@gnu.org>
2855
2856 * emacs.c (shut_down_emacs): Don't call check_glyph_memory
2857 and check_message_stack if terminating abnormally. We want
2858 glyph matrices etc. in a core dump.
2859
2860 * xdisp.c (Qbuffer_position, Qposition, Qobject): New variables.
2861 (syms_of_xdisp): Initialize them.
2862 (handle_single_display_prop): Don't change point, bind `object',
2863 `position', and `buffer-position' instead to the object having the
2864 `display' property, position in the object and position in the buffer.
2865
2866 * fileio.c (Finsert_file_contents): Don't change the multibyteness
2867 of the buffer if REPLACE is non-nil.
2868
2869 2001-08-29 Gerd Moellmann <gerd@gnu.org>
2870
2871 * fileio.c (Finsert_file_contents): Undo change of 2001-08-27.
2872
2873 2001-08-28 Eli Zaretskii <eliz@is.elta.co.il>
2874
2875 * w32term.c (x_set_glyph_string_background_width)
2876 (show_mouse_face): Track the last changes in xterm.c.
2877
2878 2001-08-28 Gerd Moellmann <gerd@gnu.org>
2879
2880 * xterm.c (x_set_glyph_string_background_width): Set the glyph
2881 string's background width so that multi-line mouse-face is drawn
2882 to the right edge of the window.
2883 (show_mouse_face): Set the row's mouse_face_p flag after drawing
2884 glyphs.
2885
2886 * dispnew.c (direct_output_for_insert): Set updated_area
2887 before inserting/writing glyphs.
2888
2889 * xdisp.c (display_mode_element): Use string_byte_to_char to
2890 determine character positions in strings, use chars_in_text
2891 instead of strwidth.
2892 (dump_glyph_row) [GLYPH_DEBUG]: Take a glyph row instead of
2893 a matrix as parameter; this is easier to use from GDB.
2894
2895 2001-08-28 Miles Bader <miles@gnu.org>
2896
2897 * textprop.c (Fprevious_single_char_property_change)
2898 (Fnext_single_char_property_change): Doc fixes.
2899
2900 2001-08-27 Gerd Moellmann <gerd@gnu.org>
2901
2902 * fileio.c (Finsert_file_contents): Allocate, restore, and
2903 free composition data in the case of REPLACE not being nil.
2904
2905 * xdisp.c (init_from_display_pos, init_to_row_end): Return 0 if
2906 there exist overlay strings with newlines at POS.
2907 (text_outside_line_unchanged_p): Return 0 if changes start at
2908 START and overlays exist at START. Likewise for END.
2909 (try_window_id): Give up if init_to_row_end returns 0.
2910
2911 * fileio.c (Finsert_file_contents): Call Fset_buffer_multibyte
2912 unconditionally.
2913
2914 2001-08-24 Gerd Moellmann <gerd@gnu.org>
2915
2916 * keymap.c (access_keymap): Return the cdr of the binding of
2917 a generic character instead of its definition (KEY . BINDING).
2918
2919 * fileio.c (Finsert_file_contents): Set coding's dest_multibyte
2920 to 0 also in the REPLACE case.
2921
2922 2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
2923
2924 * fileio.c (Ffile_readable_p) [macintosh]: Call access instead of
2925 open to determine whether file is readable (as for DOS_NT).
2926
2927 2001-08-23 Gerd Moellmann <gerd@gnu.org>
2928
2929 * fileio.c (Finsert_file_contents): If VISIT is non-nil, and
2930 coding.type is coding_type_no_conversion or coding_type_raw_text,
2931 use Fset_buffer_multibyte to make the buffer unibyte if REPLACE is
2932 non-nil instead of just setting enable_multibyte_characters in the
2933 buffer to nil.
2934
2935 2001-08-22 Gerd Moellmann <gerd@gnu.org>
2936
2937 * dispextern.h (struct face_cache): Add member
2938 menu_face_changed_p.
2939
2940 * xfaces.c (menu_face_changed_default): New variable.
2941 (menu_face_changed_count): Variable removed.
2942 (Finternal_set_lisp_face_attribute): Doc fix. If FRAME is t, set
2943 the menu_face_changed_default flag, otherwise set the FRAME's
2944 menu_face_changed_p flag if the `menu' face has been changed.
2945 Prevent calling set_font_frame_param if FRAME is t.
2946 (make_face_cache): Initialize cache's menu_face_changed_p
2947 from menu_face_changed_default.
2948 (realize_basic_faces): Look into the frame's face cache to
2949 determine if the menu appearance needs updating.
2950
2951 * keymap.c (access_keymap): Fix last change to not consider
2952 IDX when it has modifiers.
2953
2954 2001-08-21 Gerd Moellmann <gerd@gnu.org>
2955
2956 * keymap.c (access_keymap): If a binding of the form (GENERIC-CHAR
2957 . BINDING) exists, where GENERIC-CHAR is the generic character of
2958 the charset of IDX, return BINDING unless there exists a binding
2959 for IDX itself.
2960
2961 2001-08-16 Gerd Moellmann <gerd@gnu.org>
2962
2963 * xrdb.c (SYSV): Don't define on Solaris 2.
2964 From Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>.
2965
2966 * xdisp.c (move_it_by_lines) <DVPOS < 0>: Start at the beginning
2967 of the screen line, not text line, containing IT's current position.
2968
2969 2001-08-15 Gerd Moellmann <gerd@gnu.org>
2970
2971 * window.c (window_scroll_pixel_based): Don't recenter if
2972 PT is partially visible in the window.
2973
2974 * xterm.c (expose_window_tree, expose_window, expose_line):
2975 Return 1 when overwriting mouse-face.
2976 (expose_frame): If mouse-face was overwritten, redo it.
2977
2978 * xfaces.c (x_update_menu_appearance): Don't call
2979 set_frame_menubar, let the next redisplay do it.
2980
2981 2001-08-14 Andrew Innes <andrewi@gnu.org>
2982
2983 * w32term.c (x_draw_glyph_string): Draw relief (if any) before
2984 drawing glyph string.
2985
2986 2001-08-14 Eli Zaretskii <eliz@is.elta.co.il>
2987
2988 * s/hiuxwe2.h: New file, for the HITACHI SR2001/SR2201 series
2989 running HI-UX/MPP.
2990
2991 2001-08-14 Gerd Moellmann <gerd@gnu.org>
2992
2993 * xfaces.c (x_update_menu_appearance): Save and restore value of
2994 interrupt_input_blocked.
2995
2996 2001-08-13 Gerd Moellmann <gerd@gnu.org>
2997
2998 * xdisp.c (move_it_by_lines) <DVPOS < 0>: If not already on
2999 a line start, move back to the line start.
3000
3001 * xdisp.c (resize_echo_area_exactly): Don't resize the mini-window
3002 exactly when a mini-buffer is active.
3003
3004 * keyboard.c (make_lispy_event): Interpret double_click_fuzz
3005 in units of 1/8 character on non window-system frames.
3006 (syms_of_keyboard) <double-click-fuzz>: Doc fix.
3007
3008 2001-08-10 Eli Zaretskii <eliz@is.elta.co.il>
3009
3010 * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Fix a typo in
3011 a doc string.
3012
3013 2001-08-09 Gerd Moellmann <gerd@gnu.org>
3014
3015 * keyboard.c (Vpre_help_message): New variable.
3016 (syms_of_keyboard): Initialize and staticpro it.
3017 (show_help_echo): Record current message before displaying a
3018 help-echo, and restore that message when clearing the help.
3019
3020 * xfns.c (x_create_im): Remove prototype.
3021
3022 * xdisp.c (mark_window_display_accurate_1): Remove an assertion.
3023
3024 * dispnew.c (adjust_glyph_matrix): Undo last change.
3025
3026 2001-08-08 Gerd Moellmann <gerd@gnu.org>
3027
3028 * dispnew.c (adjust_glyph_matrix): In the optimization for
3029 windows whose height has changed, disable partially visible lines.
3030
3031 2001-08-07 Gerd Moellmann <gerd@gnu.org>
3032
3033 * window.c (Frecenter): If ARG < 0, and on a window system
3034 frame, count in some empty lines when we can't move -ARG lines down.
3035
3036 * xdisp.c (start_display): Don't try to determine the continuation
3037 lines width if lines are truncated. It's superfluous and leads to
3038 incorrect results if POS is not visible in the window after
3039 reseating the iterator at the previous line start.
3040
3041 2001-08-06 Gerd Moellmann <gerd@gnu.org>
3042
3043 * xterm.c (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
3044
3045 2001-08-06 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
3046
3047 * alloc.c (init_stack): Remove declaration.
3048
3049 2001-08-03 Gerd Moellmann <gerd@gnu.org>
3050
3051 * keyboard.c (read_key_sequence): Check that key is an integer
3052 before comparing it with quit_char.
3053 (add_command_key): Use larger_vector.
3054 (read_char_x_menu_prompt): Instead of converting symbol and
3055 integer events into conses (EVENT . nil), use (EVENT . disabled)
3056 which cannot be confused with valid events.
3057 (read_char): When reading from Vunread_command_events, check for
3058 events of the form (EVENT . disabled) instead of
3059 (EVENT . nil).
3060
3061 * xdisp.c (resize_mini_window): If Vmax_mini_window_height is
3062 a float, determine the max height from the frame's height.
3063
3064 2001-08-02 Gerd Moellmann <gerd@gnu.org>
3065
3066 * xdisp.c (redisplay_internal): Take message_cleared_p into
3067 account only if minibuf_level == 0.
3068
3069 2001-08-01 Gerd Moellmann <gerd@gnu.org>
3070
3071 * xdisp.c (redisplay_internal): Add a check for the last
3072 displayed message.
3073
3074 * xdisp.c (message_cleared_p): New variable.
3075 (clear_message): Set message_cleared_p when clearing the current
3076 message.
3077 (redisplay_internal): Look at message_cleared_p to capture
3078 the case that the echo area should be cleared.
3079
3080 * keyboard.c (command_loop_1): Fix spelling of
3081 resize_echo_area_exactly.
3082
3083 * dispextern.h (resize_echo_area_exactly): Fix typo in function name.
3084
3085 * xdisp.c (resize_echo_area_exactly): Fix typo in function name.
3086
3087 * xfns.c (x_set_tool_bar_lines): Clear the tool bar window's
3088 current matrix when the window gets smaller.
3089
3090 2001-08-01 Eli Zaretskii <eliz@is.elta.co.il>
3091
3092 * print.c (strout): Cast the character passed to insert_char to
3093 unsigned char, to avoid sign extension when it is promoted to int.
3094
3095 2001-07-31 Gerd Moellmann <gerd@gnu.org>
3096
3097 * fileio.c (Finsert_file_contents): Don't treat a return value
3098 of 0 from emacs_read as an IO error.
3099
3100 2001-07-30 Gerd Moellmann <gerd@gnu.org>
3101
3102 * keyboard.c (abs): New macro.
3103 (double_click_fuzz): New variable.
3104 (make_lispy_event): Use it to determine what makes a double-click.
3105 (syms_of_keyboard): DEFVAR_INT it.
3106
3107 * xmenu.c (set_frame_menubar): Take into account that
3108 f->menu_bar_vector can be nil, and not a vector. From Ken Raeburn
3109 <raeburn@gnu.org>.
3110
3111 2001-07-27 Gerd Moellmann <gerd@gnu.org>
3112
3113 * xterm.c (x_get_glyph_string_clip_rect): Minor cleanup.
3114
3115 * dispnew.c (shift_glyph_matrix, blank_row): Fix computation
3116 of row's visible height.
3117
3118 * xdisp.c (init_from_display_pos): If POS is in an overlay string,
3119 deal with the first overlay string having an image `display' property.
3120 (try_window_reusing_current_matrix, compute_line_metrics):
3121 Fix computation of row's visible height for the case that part of the
3122 row is invisible above and part of the row is at the same time
3123 invisible below the window.
3124
3125 2001-07-26 Gerd Moellmann <gerd@gnu.org>
3126
3127 * xfns.c (x-show-tip): Doc fix.
3128
3129 * xfns.c (Vx_max_tooltip_size): New variable.
3130 (syms_of_xfns): DEFVAR_LISP it.
3131 (Fx_show_tip): Set frame's window_width to the width of the
3132 window. Use a maximum tooltip size specified by
3133 Vx_max_tooltip_size, if that has valid contents.
3134 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
3135
3136 2001-07-26 Andrew Innes <andrewi@gnu.org>
3137
3138 * w32term.c (x_display_list): New variable.
3139 (w32_term_init): Set it.
3140
3141 * w32term.h (x_display_list): New extern.
3142
3143 2001-07-26 Gerd Moellmann <gerd@gnu.org>
3144
3145 * xdisp.c (resize_mini_window): Give up when inhibit-redisplay
3146 is non-nil, instead of when redisplaying_p is non-zero.
3147 See comment there.
3148 (mark_window_display_accurate_1): Add an assertion.
3149
3150 2001-07-25 Gerd Moellmann <gerd@gnu.org>
3151
3152 * dispextern.h (struct it): Increase size of ctl_chars to 16.
3153
3154 * xfns.c (Fx_file_dialog): Block/unblock input while processing
3155 events so that we get a chance of processing expose events.
3156
3157 * xdisp.c (resize_mini_window): Don't resize while redisplaying.
3158
3159 2001-07-24 Gerd Moellmann <gerd@gnu.org>
3160
3161 * xfns.c (valid_image_p): Protect better against invalid image
3162 specifications. Previous code could signal an error.
3163
3164 2001-07-23 Gerd Moellmann <gerd@gnu.org>
3165
3166 * indent.c (current_column): Fix column computation in the
3167 presence of display table entries.
3168 (current_column_1, Fmove_to_column, compute_motion): Likewise.
3169
3170 * dispnew.c (adjust_glyph_matrix): In the optimization for
3171 windows whose height has changed, use the new window height
3172 to compute which rows to invalidate.
3173
3174 * editfns.c (toplevel) [STDC_HEADERS]: Include float.h.
3175 (MAX_10_EXP): New macro.
3176 (Fformat): Use it.
3177
3178 * coding.c (code_convert_region): Handle the multibyte case if
3179 decoding ends with CODING_FINISH_INSUFFICIENT_SRC.
3180
3181 2001-07-20 Gerd Moellmann <gerd@gnu.org>
3182
3183 * dispextern.h (struct face): Change type of `stipple' to
3184 int; it's an ID.
3185
3186 * xterm.c (x_fill_stretch_glyph_string): Remove an assertion.
3187
3188 2001-07-19 Gerd Moellmann <gerd@gnu.org>
3189
3190 * dispnew.c (update_window): Don't set the cursor at the end
3191 of the update if display update has been paused.
3192
3193 * composite.h (syms_of_composite): Renamed from syms_of_composition.
3194
3195 2001-07-18 Ken Raeburn <raeburn@gnu.org>
3196
3197 * fns.c (Fset_char_table_default): Check that a charset is defined
3198 before checking its dimension.
3199
3200 2001-07-17 Ken Raeburn <raeburn@gnu.org>
3201
3202 * coding.c (setup_coding_system): Don't do any designation based
3203 on reg_bits if charset is not yet defined.
3204
3205 * lisp.h (XVECTOR): Verify correct object type before returning a
3206 pointer, using eassert.
3207
3208 2001-07-17 Gerd Moellmann <gerd@gnu.org>
3209
3210 * keyboard.c (KBD_BUFFER_SIZE) [!HAVE_WINDOW_SYSTEM]:
3211 Increase to 4096 because of paste problems reported on GNU/Linux.
3212
3213 2001-07-17 Jan Nieuwenhuizen <janneke@gnu.org>
3214
3215 * emacs.c (USAGE1): Add +LINE:COLUMN option help.
3216
3217 2001-07-16 Gerd Moellmann <gerd@gnu.org>
3218
3219 * fileio.c (unwind_read): Function removed.
3220 (read_non_regular, read_non_regular_quit): New functions.
3221 (Finsert_file_contents): When reading from non-regular files,
3222 arrange to catch a `quit' and terminate the loop. Rearrange
3223 code so that a `quit' when reading from a regular file doesn't
3224 insert text in the buffer.
3225
3226 * xfaces.c (clear_face_cache): Clear fonts on a display basis.
3227 Clear faces afterwards.
3228 (clear_font_table): Take a x_display_info parameter. Don't free
3229 fonts being the default font of any frame on the given display.
3230
3231 2001-07-13 Gerd Moellmann <gerd@gnu.org>
3232
3233 * xdisp.c (get_next_display_element): Use CHAR_STRING_NO_SIGNAL
3234 instead of CHAR_STRING which can signal an error.
3235
3236 * charset.c (char_to_string_1): Extracted from char_to_string.
3237 Return -1 instead of signaling an error.
3238 (char_to_string): Use it.
3239
3240 * charset.h (CHAR_STRING_NO_SIGNAL): New macro.
3241
3242 2001-07-12 Stefan Monnier <monnier@cs.yale.edu>
3243
3244 * coding.c (Ffind_coding_systems_region_internal): If safe_codings
3245 is t, don't try to append anything to it.
3246
3247 2001-07-12 Eli Zaretskii <eliz@is.elta.co.il>
3248
3249 * dired.c (file_name_completion): Pass dp->d_name to
3250 Fstring_match, not elt, which is always nil here.
3251
3252 2001-07-12 Gerd Moellmann <gerd@gnu.org>
3253
3254 * xselect.c (x_decline_selection_request): Handle errors
3255 caused by receivers that have vanished.
3256
3257 * xterm.c (XTread_socket) <PropertyNotify>: Put the code
3258 ignoring events on foreign windows in #if 0. Always dispatch
3259 the event after checking it with x_handle_property_notify.
3260
3261 * xselect.c (TRACE0, TRACE1, TRACE2): New macros, defined
3262 depending on TRACE_SELECTION. Replace fprintfs in #if 0 with
3263 TRACE macros to facilitate debugging. Add additional trace statements.
3264 (toplevel): Add prototypes for file-local functions.
3265 (x_atom_to_symbol): Remove DPYINFO parameter.
3266
3267 2001-07-11 Stefan Monnier <monnier@cs.yale.edu>
3268
3269 * w32menu.c (menubar_selection_callback, w32_menu_show):
3270 Initialize `entry' to nil.
3271 (w32_dialog_show): Remove unused `save_wv' variable.
3272 (name_is_separator): Recognize "--:foo" and "--foo-bar".
3273
3274 2001-07-11 Gerd Moellmann <gerd@gnu.org>
3275
3276 * xdisp.c (try_cursor_movement): Prevent a warning from GCC 3.0.
3277
3278 * fileio.c (unwind_read): Print a message when discarding inserted
3279 text or switching the buffer to unibyte. Change parameter.
3280 (Finsert_file_contents): Don't pass VISIT to unwind_read.
3281
3282 * fileio.c (unwind_read): New function.
3283 (Finsert_file_contents): Record it as unwind-function for
3284 the case that reading is interrupted by C-g.
3285
3286 2001-07-10 Gerd Moellmann <gerd@gnu.org>
3287
3288 * dispnew.c (update_window): Don't skip the header-line
3289 update when scrolling_window returns 0.
3290
3291 * xfaces.c (unload_color): Do nothing if PIXEL is -1.
3292
3293 * xfns.c (Fx_create_frame): Initialize frame colors to -1,
3294 for the case that x_decode_color signals an error.
3295
3296 * xdisp.c (add_to_log): Do nothing if called asynchronously.
3297
3298 2001-07-09 Gerd Moellmann <gerd@gnu.org>
3299
3300 * sound.c (toplevel): Include <signal.h> and "syssignal.h".
3301 (vox_configure, vox_close) [SIGIO]: Block/unblock SIGIO
3302 around ioctls.
3303
3304 2001-07-06 Eli Zaretskii <eliz@is.elta.co.il>
3305
3306 * dosfns.c (syms_of_dosfns): Add \n\ at the end of a line in the
3307 doc string line for dos-timezone-offset.
3308
3309 * msdos.c (do_visible_bell): Add \n\ at the end of each line of
3310 inline assembly, to avoid compiler warnings.
3311 (syms_of_msdos): Add \n\ at the end of a line in the doc string
3312 line for dos-unsupported-char-glyph.
3313
3314 * buffer.c (syms_of_buffer) [if 0]: Avoid a warning from GCC 3.0.
3315
3316 2001-07-05 Gerd Moellmann <gerd@gnu.org>
3317
3318 * sound.c: Include Emacs' header files with #include "...".
3319
3320 * eval.c (specbind): Additionally record the buffer that was
3321 current when a buffer-local or frame-local variable was bound.
3322
3323 2001-07-04 Gerd Moellmann <gerd@gnu.org>
3324
3325 * xterm.c (x_produce_glyphs): Don't convert multibyte characters
3326 to unibyte characters in unibyte buffers.
3327
3328 2001-07-03 Gerd Moellmann <gerd@gnu.org>
3329
3330 * eval.c (specbind): If SYMBOL has a frame-local binding, record
3331 the frame on the binding stack. Change format of entries for
3332 local bindings on the binding stack to '(SYMBOL . WHERE)'.
3333 (unbind_to): Handle unbinding a frame-local variable.
3334
3335 * xdisp.c (compute_line_metrics): On ttys, subtract continuation
3336 glyphs and truncation glyphs at the end of a row from its pixel width.
3337 (dump_glyph_row): Print row's continuation_lines_width.
3338 (try_window_id): Take the shortcut if ZV is visible in the
3339 window, but there are actually no changes at ZV.
3340
3341 2001-07-02 Gerd Moellmann <gerd@gnu.org>
3342
3343 * xterm.h (x_free_dpy_colors): Add prototype.
3344
3345 * xterm.c (cvt_pixel_dtor): Call x_free_dpy_colors with the
3346 right number of arguments.
3347
3348 * Makefile.in (tags): Depend on $(lwlibdir)/TAGS.
3349 ($(lwlibdir)TAGS): New target.
3350 (TAGS): Fix dependency list.
3351
3352 * xterm.c (x_list_fonts): Make sure XFreeFont is called
3353 with input blocked.
3354
3355 2001-06-30 Gerd Moellmann <gerd@gnu.org>
3356
3357 * emacs.c (main): Remove extern declaration for sys_nerr, which
3358 isn't used and causes a compilation error with GCC 3.0 on
3359 FreeBSD 4.3.
3360
3361 2001-06-27 Gerd Moellmann <gerd@gnu.org>
3362
3363 * widget.c (EmacsFrameSetCharSize): Turn off atimers and block
3364 SIGIO around the code where Xt might wait for a ConfigureNotifyEvent.
3365 (toplevel): Include <signal.h> and syssignal.h.
3366
3367 * sound.c (vox_configure, vox_close): Turn off atimers
3368 around ioctls.
3369
3370 2001-06-26 Gerd Moellmann <gerd@gnu.org>
3371
3372 * keyboard.c (read_char) <non_reread>: Record the previous idle
3373 start time before calling timer_stop_idle.
3374 (read_char) <reread_first>: After processing a help-echo event,
3375 restore the previous idle start time.
3376
3377 * xdisp.c (handle_invisible_prop): Deal with overlay strings at
3378 the start of invisible text.
3379 (setup_for_ellipsis): New function.
3380 (next_overlay_string): After all overlay strings have been
3381 processed, display an ellipsis if necessary.
3382 (load_overlay_strings, get_overlay_strings): Add parameter CHARPOS.
3383 (push_it): Initialize display_ellipsis_p on the iterator's stack.
3384
3385 * dispextern.h (struct iterator_stack_entry): Add member
3386 display_ellipsis_p.
3387
3388 2001-06-25 Gerd Moellmann <gerd@gnu.org>
3389
3390 * widget.c (EmacsFrameSetCharSize): Set XtNwaitForWm depending
3391 on the value of the wait-for-wm frame parameter.
3392
3393 * xterm.h (struct x_output): Add member wait_for_wm.
3394
3395 * xfns.c (Qwait_for_wm): New variable.
3396 (x_frame_parms): Add entry for `wait-for-wm".
3397 (x_set_wait_for_wm): New function.
3398 (Fx_create_frame): Call x_default_parameter for wait-for-wm.
3399 (syms_of_xfns): Initialize and staticpro Qwait_for_wm.
3400
3401 * xdisp.c (try_window_id) <all changes below window end>: Don't
3402 take this shortcut if ZV is visible in the window.
3403 (try_window_id): When checking for window start being in changed
3404 text, don't check that the buffer's size has changed.
3405
3406 2001-06-23 Richard M. Stallman <rms@gnu.org>
3407
3408 * minibuf.c (Fcompleting_read): Doc fix.
3409
3410 2001-06-19 Gerd Moellmann <gerd@gnu.org>
3411
3412 * composite.c (Ffind_composition_internal): Accept ZV
3413 and a string's end position as POS.
3414
3415 2001-06-18 Gerd Moellmann <gerd@gnu.org>
3416
3417 * composite.c (Ffind_composition_internal): Check POS
3418 for validity.
3419
3420 2001-06-15 Eli Zaretskii <eliz@is.elta.co.il>
3421
3422 * editfns.c (Fmessage_box): If the frame is not under a window
3423 system, output the message in the echo area.
3424
3425 2001-06-14 Richard M. Stallman <rms@gnu.org>
3426
3427 * xdisp.c (try_window_id): When EOB is visible, don't treat
3428 insertion at EOB as if it were "off the bottom of the screen."
3429
3430 2001-06-11 Andrew Innes <andrewi@gnu.org>
3431
3432 * w32proc.c (create_child): Add new parameter is_gui_app.
3433 (w32_executable_type): Add new parameter is_gui_app.
3434 (sys_spawnve): Use it.
3435 (sys_kill): Fake ^C for SIGINT, and ^Break (if possible) for
3436 SIGQUIT. This matches better how the signals are interpreted by
3437 MSVC compiled programs.
3438 (syms_of_ntproc): Update docstring.
3439
3440 2001-06-02 Stefan Monnier <monnier@cs.yale.edu>
3441
3442 * xterm.c (clear_mouse_face): Reset dpyinfo->mouse_face_overlay as
3443 well otherwise note_mouse_highlight might optimize away highlighting
3444 if we pass over that same overlay again.
3445
3446 2001-06-02 Eli Zaretskii <eliz@is.elta.co.il>
3447
3448 * lread.c (Fload): Document that the argument is run via
3449 substitute-in-file-name.
3450
3451 2001-05-31 Gerd Moellmann <gerd@gnu.org>
3452
3453 * Makefile.in (bootstrap-doc): New target.
3454 (bootstrap-emacs): Depend on it.
3455
3456 * fileio.c (Fdo_auto_save): Don't try to create the directory of
3457 auto-save-list-file-name when shutting down Emacs, because
3458 creating the directory might signal an error, and leaves
3459 Emacs in a strange state.
3460
3461 * term.c: (tty_cursor_hidden): New variable.
3462 (update_begin): Don't call tty_hide_cursor. Clean up.
3463 (update_end, set_terminal_window, set_scroll_region): Clean up.
3464 (ring_bell, reset_terminal_modes): Clean up.
3465 (tty_hide_cursor, tty_show_cursor): Hide/show cursor depending
3466 on tty_cursor_hidden.
3467 (write_glyphs): Call tty_hide_cursor.
3468
3469 2001-05-30 Stefan Monnier <monnier@cs.yale.edu>
3470
3471 * buffer.c (copy_overlays): Make ENABLE_CHECKING happy.
3472
3473 2001-05-30 Gerd Moellmann <gerd@gnu.org>
3474
3475 * xfns.c (enum image_value_type): New enumerator
3476 IMAGE_STRING_OR_NIL_VALUE.
3477 (parse_image_spec): Handle it.
3478 (xbm_format, pbm_format): Use it for :foreground and :background.
3479 (xbm_load, pbm_load): Check for nil color names.
3480
3481 * xterm.c (note_mouse_highlight): If an overlapping overlay
3482 exists, but we find that we highlight the same overlay as before,
3483 don't do the highlighting again.
3484
3485 2001-05-29 Gerd Moellmann <gerd@gnu.org>
3486
3487 * xmenu.c (single_submenu, xmenu_show) [!HAVE_MULTILINGUAL_MENU]:
3488 Protect unibyte strings created by replacing their multibyte
3489 equivalents in menu_items.
3490
3491 * keymap.c (Fsingle_key_description): NUL-terminate the string
3492 buffer before calling build_string.
3493
3494 * callproc.c (Fcall_process): Deal with decode_coding returning
3495 CODING_FINISH_INCONSISTENT_EOL.
3496
3497 2001-05-28 Gerd Moellmann <gerd@gnu.org>
3498
3499 * xmenu.c (xmenu_show) [!HAVE_MULTILINGUAL_MENU]: Don't overwrite
3500 an item's name with its key description in case the description
3501 is a multibyte string.
3502
3503 * keymap.c (Fsingle_key_description): Create a multibyte string
3504 only if necessary.
3505
3506 * macros.c (Fstart_kbd_macro): Doc fix.
3507
3508 * xterm.c (cursor_in_mouse_face_p): New function.
3509 (x_draw_stretch_glyph_string): Use it to choose a different GC
3510 when drawing a cursor within highlighted text.
3511
3512 * editfns.c (char_property_eq): Put in #if 0.
3513
3514 * indent.c (string_display_width): Put in #if 0.
3515
3516 * lread.c (Fload): Remove unused label.
3517
3518 * termcap.c (speeds): Put in #if 0.
3519
3520 2001-05-18 Gerd Moellmann <gerd@gnu.org>
3521
3522 * eval.c (call_debugger): Don't bind inhibit-eval-during-redisplay.
3523
3524 * xfaces.c (xlfd_point_size): Don't divide pixel size from
3525 transformation matrix by 10.
3526
3527 2001-05-16 Gerd Moellmann <gerd@gnu.org>
3528
3529 * xfns.c (x_set_foreground_color): Change frame's cursor_pixel
3530 only if it's equal to the former foreground pixel color.
3531 (x_set_foreground_color, x_set_background_color)
3532 (x_set_mouse_color, x_set_cursor_color): Cleaned up.
3533
3534 2001-05-16 Dave Love <fx@gnu.org>
3535
3536 * insdel.c (signal_before_change, signal_after_change): Consider a
3537 local change hook which changes the buffer.
3538
3539 * process.c (read_process_output): Don't call signal_after_change
3540 and update_compositions after insert_from_string_before_markers.
3541
3542 2001-05-16 Gerd Moellmann <gerd@gnu.org>
3543
3544 * xfaces.c (split_font_name): Use the right field when
3545 checking for `[...]' syntax.
3546
3547 * buffer.c (copy_overlays): New function.
3548 (clone_per_buffer_values): Use it.
3549
3550 * buffer.h (OVERLAY_PLIST): New macro.
3551
3552 * keymap.c (Fsingle_key_description): Replace a build_string with
3553 a make_multibyte_string. From Kenichi Handa <handa@etl.go.jp>.
3554
3555 * fontset.c (Ffontset_info): Check that face is non-null
3556 before accessing its fields.
3557
3558 2001-05-15 Gerd Moellmann <gerd@gnu.org>
3559
3560 * keyboard.c (read_key_sequence): Prevent generating a fake
3561 prefix key twice.
3562
3563 * xfaces.c (split_font_name): Handle `[...]' for the right
3564 font name fields.
3565
3566 * ccl.c (ccl_driver): Don't copy remaining bytes in case
3567 of CCL_STAT_INVALID_CMD.
3568
3569 2001-05-14 Stefan Monnier <monnier@cs.yale.edu>
3570
3571 * eval.c (Fdefvar): Only record (defvar <var>) in the load-history
3572 in <var> has no default value yet.
3573
3574 * xfaces.c (try_alternative_families): First try the FAMILY.
3575 And if nothing is found in the end, try again with scalable fonts.
3576 (try_font_list): Let try_alternative_families do a bit more of
3577 the work. Only use FAMILY if it is not nil.
3578 (syms_of_xfaces) <scalable-fonts-allowed>: Fix docstring.
3579
3580 2001-05-14 Gerd Moellmann <gerd@gnu.org>
3581
3582 * xterm.c (note_mouse_highlight): Avoid changing the mouse
3583 pointer shape when show_mouse_face has already done it.
3584
3585 * xterm.c (x_draw_glyphs): Fix computation of rightmost x for
3586 full-width rows.
3587
3588 * xfaces.c (split_font_name): Make sure to leave the loop
3589 with the right value of `i'.
3590
3591 * xfaces.c (split_font_name): Handle matrix transformations
3592 in the pixel and point size fields of XLFD font names.
3593 (xlfd_point_size): Likewise.
3594
3595 2001-05-12 Eli Zaretskii <eliz@is.elta.co.il>
3596
3597 * w32fns.c (w32_to_x_font): Change prototype to fit the declaration.
3598 (x_to_w32_font): Add prototype.
3599
3600 * regex.c (malloc, realloc, free) [emacs]: Undefine before
3601 redefining, to avoid compiler warnings.
3602
3603 * w32proc.c: Include syssignal.h, to avoid compiler warnings.
3604
3605 * w32bdf.c (search_file_line, set_bdf_font_info, seek_char)
3606 (w32_get_bdf_glyph): Cast between unsigned char and char when
3607 passing arguments to subroutines, to shut up compiler warnings.
3608 (w32_get_bdf_glyph): Don't mix signed and unsigned when calling
3609 GET_HEX_VAL.
3610
3611 * xfaces.c: Include keyboard.h before frame.h, not after it.
3612
3613 * widget.c: Include keyboard.h before frame.h.
3614
3615 * w32term.h (struct image, struct face): Forward declaration, to
3616 avoid compiler warnings.
3617
3618 2001-05-11 Gerd Moellmann <gerd@gnu.org>
3619
3620 * keyboard.c (read_key_sequence): Don't modify events when
3621 generating fake prefix keys (mode-line, scroll-bar, ...) since
3622 this prevents proper processing of such events when pushed back
3623 into unread-command-events.
3624
3625 * xterm.c (clear_mouse_face): Return 1 if text with mouse face was
3626 actually redrawn. Make the function static.
3627 (note_mouse_highlight): Fix a case where the mouse cursor
3628 was changed back to the text cursor.
3629
3630 * xterm.h (clear_mouse_face): Remove prototype.
3631
3632 * xdisp.c (try_window_id): Fix the fix and set the right
3633 window_end_vpos.
3634
3635 * xdisp.c (try_window_id): Fix computation of window end in the
3636 case that lines were deleted at the end of the window. Add some
3637 more debug_method_adds.
3638
3639 * xfaces.c (try_alternative_families): New function.
3640 (try_font_list): Use it. If ATTRS specifies a family, check
3641 fonts from that family first.
3642 (choose_face_font): Remove code setting the family part of
3643 the pattern to nil.
3644
3645 2001-05-10 Gerd Moellmann <gerd@gnu.org>
3646
3647 * xdisp.c (try_window_id): Fix case of all changes before
3648 the window start.
3649
3650 * xdisp.c (try_window_id): Add some xasserts.
3651
3652 2001-05-09 Gerd Moellmann <gerd@gnu.org>
3653
3654 * lisp.h (GLYPH_CHAR_VALID_P): Use CHAR_VALID_P.
3655
3656 2001-05-09 Dave Love <fx@gnu.org>
3657
3658 * xdisp.c (GIVE_UP): Fix for K&R C.
3659
3660 2001-05-09 Gerd Moellmann <gerd@gnu.org>
3661
3662 * print.c (syms_of_print) <print-length, print-level>: Doc fix.
3663
3664 * xterm.c (note_mouse_highlight): Don't change the mouse cursor
3665 back to the text cursor shape without need.
3666
3667 2001-05-07 Gerd Moellmann <gerd@gnu.org>
3668
3669 * xfns.c (x_set_foreground_color): Set frame's cursor_pixel.
3670
3671 * dispextern.h (inverse_video): Declare extern.
3672
3673 * keyboard.c (delete_kboard): Handle the case that selected_frame
3674 has been deleted in the course of x_connection_closed.
3675
3676 2001-05-03 Eli Zaretskii <eliz@is.elta.co.il>
3677
3678 * xterm.c (XTread_socket) <Expose> [!USE_TOOLKIT_SCROLL_BARS]:
3679 Fix the change from 2001-04-30.
3680
3681 2001-05-03 Gerd Moellmann <gerd@gnu.org>
3682
3683 * xfns.c (file_dialog_unmap_cb): New function.
3684 (Fx_file_dialog): Use it as XmNunmapCallback to capture the case
3685 where a dialog is closed via the window manager.
3686
3687 * xdisp.c (try_window_id): Cases of changes all in front of
3688 the window start or all below the window end mostly rewritten.
3689 (redisplay_window): Move the tests if try_window_id is
3690 applicable to try_window_id.
3691 (GIVE_UP): New macro.
3692
3693 2001-05-02 Gerd Moellmann <gerd@gnu.org>
3694
3695 * xterm.c (expose_window): Return int. If W is the window
3696 currently being updated, mark the frame garbaged.
3697 Fix computation of rows intersecting the exposed rectangle.
3698 (expose_window_tree): Stop when expose_window returns 0.
3699
3700 * xterm.c (x_draw_stretch_glyph_string): Don't draw background
3701 again if it has already been drawn.
3702
3703 2001-05-01 Stefan Monnier <monnier@cs.yale.edu>
3704
3705 * syntax.c (update_syntax_table): Check that oldi has the same
3706 properties as old_prop before deciding not to invalidate.
3707
3708 2001-04-30 Gerd Moellmann <gerd@gnu.org>
3709
3710 * undo.c (Fprimitive_undo): In a writable buffer, enable undoing
3711 read-only text that is so because of text properties.
3712
3713 * xterm.c (x_window_to_menu_bar) [USE_LUCID]: New function.
3714 (XTread_socket) <Expose> [USE_LUCID]: Handle events for
3715 windows that are components of a Lucid menu bar.
3716
3717 2001-04-27 Gerd Moellmann <gerd@gnu.org>
3718
3719 * term.c (turn_on_face): Fix reverse video handling on terminals
3720 that don't support colors.
3721
3722 2001-04-26 Gerd Moellmann <gerd@gnu.org>
3723
3724 * editfns.c (save_excursion_restore): Don't use XBUFFER on
3725 a non-buffer.
3726
3727 2001-04-25 Gerd Moellmann <gerd@gnu.org>
3728
3729 * term.c (toggle_highlight): New function.
3730 (turn_on_face): Change handling of reverse video.
3731
3732 * process.c (wait_reading_process_input):
3733 Call record_asynch_buffer_change only if a timer really changed buffers.
3734
3735 * buffer.c (mouse_face_overlay_overlaps): Fix the computation
3736 of the number of overlays to check.
3737
3738 * keyboard.c (command_loop_1): Redo change of 2001-03-12.
3739
3740 * xdisp.c (try_window_id): Fix a case where window_end_pos
3741 and window_end_bytepos were not adjusted.
3742
3743 2001-04-23 Gerd Moellmann <gerd@gnu.org>
3744
3745 * xfaces.c (compute_char_face): If buffer is unibyte, set CH to
3746 zero instead of -1.
3747
3748 2001-04-21 Eli Zaretskii <eliz@is.elta.co.il>
3749
3750 * process.c (wait_reading_process_input) [!subprocesses]:
3751 Don't reference waiting_for_user_input_p, it's not defined in the
3752 branch without async subprocesses support.
3753
3754 2001-04-19 Gerd Moellmann <gerd@gnu.org>
3755
3756 * keyboard.c (delete_kboard): Prevent a dangling reference
3757 from current_kboard to KB, which is freed.
3758
3759 * process.c (wait_reading_process_input):
3760 Call record_asynch_buffer_change after running timers, to make
3761 read_key_sequence aware of buffer changes from under it.
3762
3763 2001-04-18 Gerd Moellmann <gerd@gnu.org>
3764
3765 * xfaces.c (Qscalable_fonts_allowed): New variable.
3766 (realizing_basic_faces_p): Removed.
3767 (x_face_list_fonts): Special handling for realizing_basic_faces_p
3768 removed.
3769 (realize_basic_faces): Specbind Qscalable_fonts_allowed to t.
3770 (syms_of_xfaces): Initialize Qscalable_fonts_allowed. Change default
3771 for scalable-fonts-allowed to t.
3772
3773 * fileio.c (Finsert_file_contents): If the file size returned from
3774 stat is zero, set END to READ_BUF_SIZE. This makes sure we can
3775 read from files on a procfs whose contents are generated dynamically.
3776
3777 2001-04-18 Eli Zaretskii <eliz@is.elta.co.il>
3778
3779 * gmalloc.c (__malloc_size_t) [__GNUC__]: If STDC_HEADERS is not
3780 defined, include stddef.h and use __SIZE_TYPE__ instead of size_t.
3781 (__memalign_hook): Make the two prototypes consistent.
3782
3783 2001-04-17 Gerd Moellmann <gerd@gnu.org>
3784
3785 * xdisp.c (redisplay_window): Make sure to clear the desired glyph
3786 matrix of mini-windows.
3787
3788 2001-04-12 Stefan Monnier <monnier@cs.yale.edu>
3789
3790 * intervals.c (find_interval): Don't rebalance during signal handling.
3791
3792 2001-04-11 Gerd Moellmann <gerd@gnu.org>
3793
3794 * fns.c: Include blockinput.h.
3795
3796 * fns.c (Fplist_get): Don't QUIT if interrupt_input_blocked.
3797
3798 2001-04-10 Gerd Moellmann <gerd@gnu.org>
3799
3800 * fns.c (Fcompare_strings): Fix return values.
3801
3802 * window.c (window_scroll): Change the meaning of N to mean
3803 N screen-fulls or N lines.
3804 (window_scroll_pixel_based, window_scroll_line_based)
3805 (scroll_command, Fscroll_other_window): Change accordingly.
3806
3807 * window.c (window_scroll_pixel_based, Frecenter):
3808 Call window_box_height instead of using it.last_visible_y for the
3809 height of the window.
3810
3811 * xdisp.c (redisplay_window) <recenter>: Call window_box_height
3812 instead of using it.last_visible_y for the height of the window.
3813
3814 * w32proc.c (sys_spawnve): Quote more chars for Cygwin.
3815 From Dan Holmsand <dan@eyebee.com>.
3816
3817 * w32.c (sys_open): Try to open file without _O_CREAT first, to be
3818 able to write to hidden and system files. From Dan Holmsand
3819 <dan@eyebee.com>.
3820
3821 * fileio.c (Fcopy_file) [WINDOWSNT]: Use CopyFile. From Dan
3822 Holmsand <dan@eyebee.com>.
3823
3824 2001-04-09 Gerd Moellmann <gerd@gnu.org>
3825
3826 * fns.c (Fplist_get, Fplist_put): Add QUITs.
3827
3828 * window.c (window_internal_height): Return 1 less if the
3829 window has a header line.
3830
3831 * xdisp.c (try_window_id): When scrolling on a terminal, take
3832 the change of window_internal_height into account.
3833
3834 2001-04-09 Eli Zaretskii <eliz@is.elta.co.il>
3835
3836 * gmalloc.c (align): If the argument SIZE would overflow
3837 __malloc_ptrdiff_t, fail right away.
3838
3839 2001-04-06 Gerd Moellmann <gerd@gnu.org>
3840
3841 * xfns.c (compute_tip_xy): Add parameters WIDTH and HEIGHT.
3842 Make sure the tooltip is completely visible.
3843 (x_make_gc): Use FRAME_X_SCREEN_NUMBER.
3844
3845 * xterm.h (FRAME_X_SCREEN_NUMBER): New macro.
3846
3847 * xmenu.c (xmenu_show): Use FRAME_X_SCREEN_NUMBER.
3848
3849 2001-04-06 Dave Love <fx@gnu.org>
3850
3851 * composite.c (update_compositions) <check_mask & CHECK_HEAD>:
3852 Fix test of `from'.
3853
3854 2001-04-06 Gerd Moellmann <gerd@gnu.org>
3855
3856 * composite.h (COMPOSITION_VALID_P): Allow integers as cdrs of PROP.
3857
3858 * xdisp.c (Qinhibit_eval_during_redisplay): Make it a Lisp_Object.
3859
3860 2001-04-05 Gerd Moellmann <gerd@gnu.org>
3861
3862 * sysdep.c (getwd) [!HAVE_GETWD]: Unblock input before returning.
3863
3864 * editfns.c (Fcurrent_time_zone): Accept spaces in timezone names.
3865
3866 * xfns.c (Vmotif_version_string) [USE_MOTIF]: New variable.
3867 (syms_of_xfns): DEFVAR_LISP it. Initialize from XmVERSION_STRING.
3868
3869 * xmenu.c (free_frame_menubar) [USE_MOTIF]: Preserve the
3870 shell widget's position only if it is non-null.
3871
3872 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]:
3873 Set f->output_data.x->widget to null after destroying it.
3874
3875 * fns.c (Frequire): Doc fix. Rename parameter FILE_NAME to
3876 FILENAME to bring it in synch with the documentation.
3877
3878 * xfaces.c (realizing_basic_faces_p): Renamed from
3879 realize_default_face_p.
3880 (realize_basic_faces): Set/clear realizing_basic_faces_p.
3881 (realize_default_face): Don't set the flag.
3882
3883 2001-04-04 Gerd Moellmann <gerd@gnu.org>
3884
3885 * lisp.h (echoing, echo_message_buffer, cancel_echoing): Declare.
3886
3887 * keyboard.c (echoing, echo_message_buffer): Make externally visible.
3888
3889 * xdisp.c (with_echo_area_buffer): Avoid confusion from reusing
3890 the buffer that was used for echoing.
3891
3892 * xfaces.c (best_matching_font): Remove unused parameter PATTERN.
3893 (first_font_matching): Removed unused function.
3894 (x_face_list_fonts): Remove unused parameter SCALABLE_P.
3895 (may_use_scalable_font_p): Remove parameter FONT; rename
3896 parameter NAME to FONT.
3897 (x_face_list_fonts): Fix missing bounds check.
3898 (realizing_default_face_p): New variable.
3899 (realize_default_face): Set and clear that flag.
3900 (x_face_list_fonts): When called during the realization of the
3901 default face, and no matching fonts are found when ignoring
3902 scalable fonts and fonts matching a regexp from
3903 face-ignored-fonts, try without ignoring fonts.
3904
3905 2001-04-03 Gerd Moellmann <gerd@gnu.org>
3906
3907 * xfns.c (postprocess_image): New function.
3908 (lookup_image): Call it for all image types except PostScript.
3909 (x_kill_gs_process): Call postprocess_image.
3910
3911 * xterm.c (x_use_underline_position_properties): New variable.
3912 (x_draw_glyph_string): Use it.
3913 (syms_of_xterm): DEFVAR_BOOL it.
3914
3915 2001-04-02 Gerd Moellmann <gerd@gnu.org>
3916
3917 * xterm.c (x_alloc_nearest_color_1): New function.
3918 (x_alloc_nearest_color): Use it.
3919 (x_color_cells): Take a Display as argument, instead of a frame.
3920 (cvt_string_to_pixel_args, cvt_string_to_pixel_value): New variables.
3921 (cvt_string_to_pixel, cvt_pixel_dtor): New functions.
3922 (x_initialize): Register cvt_string_to_pixel as resource converter
3923 string -> Pixel and cvt_pixel_dtor as pixel resource destructor.
3924
3925 2001-03-30 Gerd Moellmann <gerd@gnu.org>
3926
3927 * xdisp.c (get_overlay_strings): Set iterator's end_charpos.
3928 (set_iterator_to_next): If a string from a display property ends,
3929 consider the case that this might also be the end of an
3930 overlay string having the display property.
3931
3932 * xdisp.c (handle_display_prop): Fix recognition of subproperty lists.
3933
3934 * xdisp.c (reseat_to_string): Undo last change.
3935
3936 * dispnew.c (adjust_glyph_matrix): Don't try to reuse the current
3937 matrix of a window when the header line changes, when
3938 new rows are allocated, or when the width changes.
3939
3940 2001-03-30 Eli Zaretskii <eliz@is.elta.co.il>
3941
3942 * print.c (Fprin1, Fprin1_to_string, Fprinc, Fprint): Fix last change.
3943
3944 2001-03-29 Eli Zaretskii <eliz@is.elta.co.il>
3945
3946 * fileio.c (syms_of_fileio) <directory-sep-char>: Warn that it is
3947 deprecated.
3948
3949 2001-03-29 Gerd Moellmann <gerd@gnu.org>
3950
3951 * data.c (Fsubr_interactive_form): New function.
3952 (syms_of_data): Defsubr it.
3953
3954 * alloc.c (live_string_p, live_cons_p, live_symbol_p)
3955 (live_float_p, live_misc_p): Return 1 only if the offset of the
3956 pointer in its block is >= 0.
3957
3958 2001-03-28 Paul Eggert <eggert@twinsun.com>
3959
3960 * editfns.c (Ffloat_time): Fix off-by-factor-of-10 bug in the
3961 microseconds calcuation. Avoid double-rounding problem.
3962 In doc string, warn that the result is approximate.
3963
3964 2001-03-28 Gerd Moellmann <gerd@gnu.org>
3965
3966 * eval.c (call_debugger): Bind `inhibit-redisplay' to nil, and
3967 bind `inhibit-eval-during-redisplay' to t.
3968
3969 * lisp.h (Qinhibit_eval_during_redisplay): Declare extern.
3970
3971 * xdisp.c (inhibit_eval_during_redisplay)
3972 (Qinhibit_eval_during_redisplay): New variables.
3973 (safe_eval, safe_call): If inhibit_eval_during_redisplay is set,
3974 don't eval, return nil instead.
3975 (syms_of_xdisp): DEFVAR_BOOL inhibit-eval-during-redisplay.
3976 Initialize Qinhibit_eval_during_redisplay.
3977
3978 * xdisp.c (reseat_to_string): If STRING is multibyte, set
3979 the iterator's multibyte_p flag.
3980
3981 * xfaces.c (realize_basic_faces): Decrement menu_face_change_count
3982 instead of setting it to zero; it's incremented for each frame
3983 where the menu face is changed.
3984
3985 * xterm.c (x_draw_relief_rect): Extend left shadow to the bottom;
3986 change bottom shadow accordingly.
3987
3988 * xterm.c (expose_window_tree, expose_frame): Don't compute
3989 intersections here.
3990 (expose_window): Do it here instead.
3991 (x_draw_glyph_string): Fix a computation of the underline position.
3992
3993 * bytecode.c (BYTE_CODE_QUIT): New macro.
3994 (Fbyte_code): Use BYTE_CODE_QUIT instead of QUIT.
3995
3996 2001-03-27 Gerd Moellmann <gerd@gnu.org>
3997
3998 * xdisp.c (try_window_reusing_current_matrix) <scrolling up>:
3999 Give up if matrix starts in an ellipsis.
4000 (init_from_display_pos): Do nothing if POS doesn't specify
4001 a dpvec_index but the iterator has such a position.
4002
4003 * xdisp.c (init_from_display_pos): Remove unwarranted assertion.
4004
4005 * xmenu.c (free_frame_menubar) [USE_MOTIF]: If the shell widget's
4006 x/y position is (0, 0) after destroying the menu bar, restore
4007 its original position.
4008
4009 * xdisp.c (in_ellipses_for_invisible_text_p): New function.
4010 (init_from_display_pos): Use it.
4011 (try_window_reusing_current_matrix): Don't use cursor_row_p.
4012
4013 2001-03-26 Gerd Moellmann <gerd@gnu.org>
4014
4015 * xdisp.c (try_window_id): Undo last change.
4016
4017 2001-03-26 Eli Zaretskii <eliz@is.elta.co.il>
4018
4019 * print.c (Fprin1, Fprin1_to_string, Fprinc, Fprint): Doc fix.
4020
4021 * buffer.c (syms_of_buffer): Doc fix.
4022
4023 2001-03-26 Gerd Moellmann <gerd@gnu.org>
4024
4025 * xfaces.c (x_update_menu_appearance): Use local variable
4026 popup_path for setting font resources.
4027
4028 2001-03-25 Eli Zaretskii <eliz@is.elta.co.il>
4029
4030 * frame.c (Fframe_list): Don't reference tip_frame if
4031 HAVE_WINDOW_SYSTEM is not defined.
4032
4033 * emacs.c (main): Update the copyright year. From Werner LEMBERG
4034 <wl@gnu.org>.
4035
4036 2001-03-25 Gerd Moellmann <gerd@gnu.org>
4037
4038 * xdisp.c (init_from_display_pos): Test invisible property
4039 with TEXT_PROP_MEANS_INVISIBLE instead of NILP.
4040
4041 * xdisp.c (redisplay_internal) <update one window>: Make sure
4042 last_arrow_position and last_arrow_string are set.
4043
4044 * frame.c (Fframe_list): Don't return a tooltip frame.
4045
4046 2001-03-23 Gerd Moellmann <gerd@gnu.org>
4047
4048 * xdisp.c (mark_window_display_accurate_1): New function,
4049 extracted from mark_window_display_accurate.
4050 Compute BUF_UNCHANGED_MODIFIED, BUF_OVERLAY_UNCHANGED_MODIFIED,
4051 BUF_BEG_UNCHANGED, BUF_END_UNCHANGED.
4052 (mark_window_display_accurate): Use it.
4053 (redisplay_internal): Use it for the selected window.
4054 (redisplay_internal): Avoid duplicate mark_window_display_accurate
4055 for the selected frame.
4056
4057 * xdisp.c Use make_number, for readability.
4058 (try_window_id): Disable rows below the window end.
4059 (try_window_reusing_current_matrix): Use cursor_row_p.
4060 (try_window_reusing_current_matrix) <scrolling up>: Fix disabling
4061 of rows.
4062 (init_from_display_pos): If POS specifies a position in a display
4063 vector, maybe get the iterator set up for that ellipsis.
4064
4065 * xdisp.c (dump_glyph_row): Fix output for NGLYPHS == 2.
4066
4067 2001-03-23 Eli Zaretskii <eliz@is.elta.co.il>
4068
4069 * xmenu.c: Include widget.h only if USE_X_TOOLKIT is defined.
4070
4071 2001-03-23 Gerd Moellmann <gerd@gnu.org>
4072
4073 * xfaces.c (x_update_menu_appearance): Use a different path
4074 for Lucid popup menus.
4075
4076 2001-03-22 Stefan Monnier <monnier@cs.yale.edu>
4077
4078 * xterm.c (note_mouse_highlight): Dec the int, not the Lisp_Object.
4079
4080 * xdisp.c (init_iterator): Check WINDOWP before using XWINDOW.
4081 (string_buffer_position): Use `make_number'.
4082
4083 2001-03-22 Gerd Moellmann <gerd@gnu.org>
4084
4085 * xfaces.c (x_update_menu_appearance): Renamed from
4086 x_set_menu_face_resources. Use different resources for popups.
4087
4088 * lisp.h (Vx_resource_name) [HAVE_X_WINDOWS]: Declare extern.
4089 (GC_CHECK_STRING_BYTES): Don't define.
4090
4091 * xfaces.c (x_set_menu_resources_from_menu_face) [USE_X_TOOLKIT]:
4092 Removed, together with subroutines.
4093 (x_set_menu_face_resources) [USE_X_TOOLKIT]: New function.
4094 (realize_basic_faces) [USE_X_TOOLKIT]: Call x_set_menu_face_resources.
4095
4096 * dispextern.h (x_set_menu_resources_from_menu_face):
4097 Remove prototype.
4098
4099 * xmenu.c (update_frame_menubar, set_frame_menubar, xmenu_show):
4100 Remove calls to x_set_menu_resources_from_menu_face.
4101
4102 * xfaces.c (xm_set_menu_resources_from_menu_face):
4103 Remove #ifndef LESSTIF_VERSION.
4104
4105 * xmenu.c: Include widget.h.
4106 (single_submenu): Return int. Some cleanup.
4107 (set_frame_menubar): Call x_set_menu_resources_from_menu_face.
4108
4109 2001-03-21 Gerd Moellmann <gerd@gnu.org>
4110
4111 * xterm.c (x_update_window_end): Handle overwritten mouse face
4112 also for tool bar windows.
4113 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
4114 DRAW is DRAW_IMAGE_RAISED.
4115
4116 2001-03-20 Gerd Moellmann <gerd@gnu.org>
4117
4118 * print.c (syms_of_print): Doc fixes.
4119
4120 * fns.c (Fmd5): Doc fix.
4121
4122 2001-03-19 Gerd Moellmann <gerd@gnu.org>
4123
4124 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
4125 Clear area of the frame not occupied by the scroll bar.
4126
4127 * xfns.c (x_create_tip_frame): Add parameter TEXT. Set the
4128 tip frame's root window buffer to *tip* right after creating
4129 the frame.
4130
4131 * xdisp.c (highlight_trailing_whitespace): Glyphs whose object
4132 is an integer don't have to be for space characters.
4133
4134 2001-03-16 Gerd Moellmann <gerd@gnu.org>
4135
4136 * indent.c (current_column, current_column_1, Fmove_to_column)
4137 (compute_motion): Handle characters from display vectors differently.
4138
4139 2001-03-15 Kenichi Handa <handa@etl.go.jp>
4140
4141 * xterm.c (x_draw_glyph_string): Draw relief (if any) before
4142 drawing glyph string.
4143
4144 2001-03-15 Gerd Moellmann <gerd@gnu.org>
4145
4146 * keyboard.c (timer_check): Preserve the value of deactivate-mark.
4147 (command_loop_1): Undo last change.
4148
4149 * xterm.c (fast_find_position): Return the correct vpos.
4150
4151 * data.c (store_symval_forwarding): Add parameter BUF. If BUF is
4152 non-null, set a per-buffer value in BUF instead of the current buffer.
4153 (swap_in_global_binding, swap_in_symval_forwarding, Fset_default):
4154 Call store_symval_forwarding with BUF null.
4155 (set_internal): Call store_symval_forwarding with the BUF
4156 parameter passed to set_internal. Formerly, the value was always
4157 set in the current buffer; the buffer recorded in specbind for
4158 this case wasn't used.
4159 (arith_driver): Reindent.
4160
4161 * buffer.c (swap_out_buffer_local_variables):
4162 Call store_symval_forwarding with BUF null.
4163
4164 * lisp.h (store_symval_forwarding): Change prototype.
4165
4166 * eval.c (specbind): Call store_symval_forwarding with BUF null.
4167
4168 2001-03-14 Gerd Moellmann <gerd@gnu.org>
4169
4170 * frame.c (do_switch_frame): Remove unused parameter NO_EVENT, add
4171 FOR_DELETION. Avoid resizing the mini-window of the selected
4172 frame if FOR_DELETION is set.
4173 (Fselect_frame, Fhandle_switch_frame, Fdelete_frame)
4174 (Fmake_frame_invisible): Change calls to do_switch_frame for new
4175 signature.
4176
4177 * window.c (Fset_window_configuration): Change call to
4178 do_switch_frame to new format.
4179
4180 * keyboard.c (quit_throw_to_read_char): Change call to
4181 do_switch_frame to new format.
4182
4183 * lisp.h (do_switch_frame): Change prototype.
4184
4185 * frame.c (Fframe_parameters): In the `buffer-list' frame
4186 parameter, store the buffer list of FRAME, not the list of the
4187 selected frame.
4188
4189 * xterm.c (x_draw_glyph_string_box): Don't draw a full-width
4190 box just because the glyph row's full_width_p flag is set.
4191
4192 2001-03-14 Eli Zaretskii <eliz@is.elta.co.il>
4193
4194 * xdisp.c (highlight_trailing_whitespace): On character terminals,
4195 skip the padding blanks inserted in extend_face_to_end_of_line,
4196 before checking for trailing whitespace.
4197
4198 2001-03-13 Gerd Moellmann <gerd@gnu.org>
4199
4200 * xmenu.c (popup_activate_callback, popup_deactivate_callback):
4201 Remove special handling for LessTif/Motif.
4202 (toplevel): Don't include Xm/Xm.h.
4203
4204 * xterm.c (XTread_socket) <LeaveNotify, EnterNotify>:
4205 Remove workaround code for LessTif; it doesn't work anymore.
4206
4207 * xterm.c [USE_TOOLKIT_SCROLL_BARS && USE_MOTIF]: Don't include
4208 Xm/ScrollBarP.h.
4209
4210 * xterm.c (x_set_toolkit_scroll_bar_thumb) [USE_MOTIF]:
4211 Don't access private scroll bar data; it's no longer necessary with
4212 contemporary LessTif.
4213
4214 * xfaces.c (xm_set_menu_resources_from_menu_face):
4215 Change #if 0 to #ifndef LESSTIF_VERSION.
4216
4217 * xmenu.c (xmenu_show) [LESSTIF_VERSION]: Take out the code
4218 removing button grabs.
4219
4220 2001-03-13 Kenichi Handa <handa@etl.go.jp>
4221
4222 * fontset.c (syms_of_fontset): Describe highlight-wrong-size-font
4223 and clip-large-size-font as obsolete.
4224
4225 * lread.c (read_multibyte): Check the validity of multibyte
4226 sequence. If invalid, return the first byte.
4227
4228 2001-03-12 Gerd Moellmann <gerd@gnu.org>
4229
4230 * keyboard.c (command_loop_1): Set Vdeactivate_mark to nil
4231 before running the command; timer functions or process
4232 filters may have set it.
4233
4234 2001-03-12 Eli Zaretskii <eliz@is.elta.co.il>
4235
4236 * keyboard.c (syms_of_keyboard) <overriding-terminal-local-map>:
4237 Doc fix.
4238
4239 2001-03-12 Gerd Moellmann <gerd@gnu.org>
4240
4241 * xrdb.c (x_load_resources) [USE_MOTIF]: Remove extraneous arg
4242 to sprintf.
4243
4244 2001-03-09 Gerd Moellmann <gerd@gnu.org>
4245
4246 * dispextern.h (string_buffer_position): Add prototype.
4247
4248 * xdisp.c (string_buffer_position, display_prop_string_p)
4249 (single_display_prop_string_p): New functions.
4250
4251 * xterm.c (note_mouse_highlight): If there's no help-echo on
4252 a string, look at the buffer text ``under'' it.
4253
4254 * keyboard.c (make_lispy_event): Add string info to the event,
4255 analogous to what's done on mode lines.
4256 (read_key_sequence): For a click on a string, consider `local-map'
4257 and `keymap' of that string.
4258
4259 * keyboard.c (make_lispy_event, make_lispy_movement):
4260 Adjust calls to buffer_posn_from_coords to new format.
4261
4262 * dispextern.h (buffer_posn_from_coords): Adjust prototype.
4263
4264 * dispnew.c (buffer_posn_from_coords): Add parameters OBJECT and
4265 POS; return void.
4266
4267 * fileio.c (Fwrite_region) [DOS_NT]: Remove O_TRUNC from open
4268 flags argument to emacs_open; it seems to conflict with O_EXCL.
4269
4270 2001-03-09 Kenichi Handa <handa@etl.go.jp>
4271
4272 * composite.h (struct composition): Change types of members;
4273 glyph_len to unsigned, width to unsigned short.
4274
4275 2001-03-08 Andrew Innes <andrewi@gnu.org>
4276
4277 * w32menu.c (add_menu_item): Fix problems with using ownerdraw for
4278 menu titles.
4279
4280 2001-03-08 Gerd Moellmann <gerd@gnu.org>
4281
4282 * xdisp.c (handle_display_prop): Use it->w->buffer as object,
4283 instead of nil.
4284
4285 * xterm.c (note_mouse_highlight): Handle mouse-face and
4286 help-echo in strings.
4287 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
4288 (fast_find_string_pos): New function.
4289
4290 * xdisp.c (handle_face_prop, face_before_or_after_it_pos)
4291 (display_string): Call face_at_string_position with new parameter.
4292
4293 * xfaces.c (face_at_string_position): Add parameter MOUSE_P.
4294 Handle `mouse-face'.
4295
4296 * dispextern.h (face_at_string_position): Change prototype.
4297
4298 * dired.c (directory_files_internal): Handle EAGAIN more efficiently.
4299
4300 * keyboard.c (make_lispy_event): Avoid generating drag events
4301 if the mouse hasn't actually moved to another buffer position.
4302
4303 2001-03-08 Dave Love <fx@gnu.org>
4304
4305 * eval.c (syms_of_eval) <debug-on-error>: Doc fix.
4306
4307 2001-03-08 Gerd Moellmann <gerd@gnu.org>
4308
4309 * process.c (Fset_process_window_size): Fix a typo.
4310
4311 2001-03-08 Kenichi Handa <handa@etl.go.jp>
4312
4313 * coding.c (detect_coding_sjis): Do more rigid check.
4314 (detect_coding_big5): Likewise.
4315 (decode_coding_sjis_big5): Likewise.
4316 (Fdetect_coding_region): Call detect_coding_system with tailing
4317 anchor byte `\0' for more rigid detection.
4318 (detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP.
4319 (Fdetect_coding_string): Likewise.
4320
4321 2001-03-07 Stefan Monnier <monnier@cs.yale.edu>
4322
4323 * bytecode.c (Fbyte_code) <Btemp_output_buffer_setup>: Check the arg is
4324 a string before extracting its data.
4325
4326 2001-03-07 Gerd Moellmann <gerd@gnu.org>
4327
4328 * window.c (Frecenter): Rewrite code handling negative values
4329 of ARG on graphical frames.
4330
4331 2001-03-07 Eli Zaretskii <a34785@is.elta.co.il>
4332
4333 * window.c (displayed_window_lines): If W->start is outside the
4334 accessible portion of the buffer, call start_display with BEGV or
4335 ZV instead of W->start.
4336
4337 2001-03-07 Gerd Moellmann <gerd@gnu.org>
4338
4339 * buffer.c (syms_of_buffer) <header-line-format>: Doc fix.
4340
4341 * process.c (Fset_process_filter): Don't crash if the input
4342 file descriptor of PROCESS is closed.
4343 (Fset_process_window_size): Likewise.
4344
4345 2001-03-06 Kenichi Handa <handa@etl.go.jp>
4346
4347 * xterm.c (XTflash): Make the timeout of select shorter, and call
4348 select repeatedly until the desired time expires.
4349
4350 2001-03-06 Gerd Moellmann <gerd@gnu.org>
4351
4352 * w32fns.c (Fx_create_frame): Clear Vwindow_list.
4353
4354 * xfns.c (Fx_create_frame): Clear Vwindow_list.
4355
4356 * lisp.h (Vwindow_list): Declare extern.
4357
4358 2001-03-06 Eli Zaretskii <eliz@is.elta.co.il>
4359
4360 * dispnew.c (syms_of_display) <glyph-table>: Doc fix.
4361
4362 2001-03-06 Gerd Moellmann <gerd@gnu.org>
4363
4364 * xterm.c (note_mouse_highlight): Call mouse_face_overlay_overlaps
4365 to detect a case where we have to highlight a different region
4366 despite not having left the currently highlighted region.
4367 Set mouse_face_overlay in the x_display_info.
4368 (x_term_init): Initialize the x_display_info's mouse_face_overlay.
4369
4370 * xterm.h (struct x_display_info): Add mouse_face_overlay.
4371
4372 * buffer.c (mouse_face_overlay_overlaps): New function.
4373
4374 * lisp.h (mouse_face_overlay_overlaps): Add prototype.
4375 (Qmouse_face): Declare extern.
4376
4377 * xdisp.c (redisplay_internal): Set windows_or_buffers_changed
4378 if face_change_count is non-zero.
4379
4380 2001-03-06 Kenichi Handa <handa@etl.go.jp>
4381
4382 * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>: Fix for the case
4383 that the source is unibyte.
4384
4385 2001-03-05 Dave Love <fx@gnu.org>
4386
4387 * xterm.c (XTmouse_position): Fix typo.
4388
4389 2001-03-05 Gerd Moellmann <gerd@gnu.org>
4390
4391 * minibuf.c (read_minibuf): Clean up the binding stack if
4392 called noninteractively.
4393
4394 2001-03-05 Kenichi Handa <handa@etl.go.jp>
4395
4396 * coding.c (syms_of_coding): Docstring modified.
4397
4398 2001-03-05 Kenichi Handa <handa@etl.go.jp>
4399
4400 * charset.c (char_to_string): If a single byte char has modifier
4401 bits that can't be reflected to the character code, ignore them
4402 instead of signaling an error.
4403
4404 2001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
4405
4406 * s/msdos.h: Update copyright notice.
4407
4408 * dosfns.h: Update copyright notice.
4409
4410 * dosfns.c: Update copyright notice.
4411
4412 * msdos.c: Update copyright notice.
4413
4414 2001-03-02 Gerd Moellmann <gerd@gnu.org>
4415
4416 * xterm.c (glyph_rect): New function.
4417 (XTmouse_position): Use it to raise the threshold for mouse
4418 movement event generation.
4419
4420 2001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
4421
4422 * msdos.c (Fmsdos_remember_default_colors): If default-frame-alist
4423 specifies (reverse . t), reverse the initial screen colors.
4424 (IT_set_frame_parameters): If the property is foreground-color,
4425 but we are reversing the colors, set bg_set, not fg_set.
4426 Likewise for setting background-color and reversing: set fg_set.
4427 Set unspecified-fg and unspecified-bg correctly when (reverse . t) is
4428 in effect.
4429
4430 * xfaces.c (Finternal_set_lisp_face_attribute)
4431 [!HAVE_WINDOW_SYSTEM]: Record the new attribute in the frame's
4432 parameters alist.
4433
4434 2001-03-02 Gerd Moellmann <gerd@gnu.org>
4435
4436 * fileio.c (Fexpand_file_name): Collapse sequences of slashes
4437 to a single slash in the middle of file names.
4438
4439 * editfns.c (Fcurrent_time_zone) [HAVE_TM_ZONE || HAVE_TZNAME]:
4440 Accept only alphanumeric time zone names.
4441
4442 * xterm.c (XTset_vertical_scroll_bar): Don't clear a zero height
4443 or width area.
4444 (XTset_vertical_scroll_bar, x_scroll_bar_create): Don't configure
4445 a widget to zero height.
4446
4447 2001-03-01 Gerd Moellmann <gerd@gnu.org>
4448
4449 * window.c (Fwindow_end): Call move_it_past_eol only if
4450 ending up on a partially visible line.
4451
4452 2001-03-01 Dave Love <fx@gnu.org>
4453
4454 * ccl.c (Fccl_execute): Doc fix.
4455
4456 2001-03-01 Gerd Moellmann <gerd@gnu.org>
4457
4458 * xfns.c (Fx_create_frame): Adjust the frame's height for presence
4459 of the tool bar before calling x_figure_window_size.
4460
4461 * xmenu.c (free_frame_menubar): Set the frame's menubar_widget to
4462 NULL after destroying it, otherwise XTread_socket can access a
4463 destroyed widget when input is unblocked.
4464
4465 * xfns.c (x_set_foreground_color): Set the background of the cursor GC.
4466
4467 * xfns.c (x_set_font): Handle case of x_new_fontset returning the
4468 same name as before, although there was a change in fontsets.
4469
4470 2001-02-28 Ken Raeburn <raeburn@gnu.org>
4471
4472 * lisp.h (Fframe_parameter): Declare.
4473
4474 * window.c (set_window_buffer): Field vscroll is an int, not a
4475 Lisp_Object.
4476
4477 2001-02-28 Gerd Moellmann <gerd@gnu.org>
4478
4479 * xterm.c (x_set_window_size): Don't use `None' with widgets; use
4480 NULL instead.
4481
4482 * xfns.c (Fx_hide_tip): Don't use `None' with widgets; use
4483 NULL instead.
4484
4485 * alloc.c (toplevel): Include process.h.
4486 (enum mem_type): Add MEM_TYPE_PROCESS, MEM_TYPE_HASH_TABLE,
4487 MEM_TYPE_FRAME, MEM_TYPE_WINDOW enumerators.
4488 (allocate_vectorlike): Make it a static function. Add parameter TYPE.
4489 (allocate_vector, allocate_hash_table, allocate_window)
4490 (allocate_frame, allocate_process, allocate_other_vector):
4491 New functions.
4492 (Fmake_vector): Call allocate_vector instead of allocate_vectorlike.
4493 (mark_maybe_pointer): New function.
4494 (mark_memory): Also mark Lisp data to which only pointers
4495 remain and not Lisp_Objects.
4496 (min_heap_address, max_heap_address): New variables.
4497 (mem_find): Return MEM_NIL if START is below min_heap_address or
4498 above max_heap_address.
4499 (mem_insert): Compute min_heap_address and max_heap_address.
4500
4501 * process.c (make_process): Use allocate_process.
4502
4503 * frame.c (make_frame): Use allocate_frame.
4504
4505 * window.c (make_window, make_dummy_parent): Use allocate_window.
4506 (Fcurrent_window_configuration): Use allocate_other_vector.
4507
4508 * lisp.h (allocate_vectorlike): Remove prototype.
4509 (allocate_vector, allocate_other_vector, allocate_frame)
4510 (allocate_window, allocate_process, allocate_hash_table):
4511 Add prototypes.
4512
4513 * fns.c (Fdelete, larger_vector): Use allocate_vector.
4514 (make_hash_table, copy_hash_table): Use allocate_hash_table.
4515
4516 2001-02-27 Kenichi Handa <handa@etl.go.jp>
4517
4518 * coding.c (ccl_coding_driver): If ccl->eight_bit_control is zero,
4519 treat the produced bytes as a valid multibyte sequence.
4520
4521 * ccl.c (CCL_WRITE_MULTIBYTE_CHAR): New macro.
4522 (ccl_driver) <CCL_WriteMultibyteChar2>:
4523 Use CCL_WRITE_MULTIBYTE_CHAR instead of CCL_WRITE_CHAR.
4524 <ccl_finish>: Set ccl->eight_bit_control properly.
4525
4526 * ccl.h (struct ccl_program): New member eight_bit_control.
4527
4528 2001-02-26 Stefan Monnier <monnier@cs.yale.edu>
4529
4530 * keymap.c (Faccessible_keymaps): Pass `is_metized' to
4531 accessible_keymaps_char_table.
4532 (accessible_keymaps_char_table): Obey `is_metized'.
4533 (where_is_internal, Fwhere_is_internal): Don't confuse int and
4534 Lisp_Object.
4535
4536 2001-02-26 Gerd Moellmann <gerd@gnu.org>
4537
4538 * dispnew.c: Check HAVE_TERM_H before including term.h.
4539
4540 2001-02-24 Andrew Innes <andrewi@gnu.org>
4541
4542 * makefile.w32-in: Update copyright notice.
4543
4544 2001-02-24 Stefan Monnier <monnier@cs.yale.edu>
4545
4546 * keymap.c (where_is_internal): Accept non-ascii integer prefixes.
4547
4548 2001-02-24 Kenichi Handa <handa@etl.go.jp>
4549
4550 * Makefile.in (lisp): Add international/utf-8.elc.
4551
4552 * fontset.c (Fnew_fontset): Fix handling of the case that an
4553 element of FONTLIST is a cons of family and registry.
4554
4555 2001-02-23 Jason Rumney <jasonr@gnu.org>
4556
4557 * w32fns.c (Fx_create_frame): Don't add FRAME_TOOL_BAR_LINES
4558 to height unconditionally.
4559
4560 * w32term.c (x_set_glyph_string_background_width): Extend the
4561 background face to the end of the drawing area in the text area, only.
4562 (x_insert_glyphs): Call window_box_left to obtain the left
4563 x-coordinate of the area to shift.
4564
4565 * w32menu.c (set_frame_menubar): Run activate-menu-bar-hook with
4566 safe_run_hooks.
4567
4568 2001-02-22 Andrew Innes <andrewi@gnu.org>
4569
4570 * makefile.nt ($(BLD)\dired.obj): Remove reference to VMS header files.
4571 ($(BLD)\dispnew.obj):
4572 ($(BLD)\editfns.obj):
4573 ($(BLD)\fileio.obj):
4574 ($(BLD)\filelock.obj):
4575 ($(BLD)\keyboard.obj):
4576 ($(BLD)\w32proc.obj):
4577 ($(BLD)\process.obj):
4578 ($(BLD)\sysdep.obj): Ditto.
4579
4580 * makefile.w32-in ($(BLD)/dired.$(O)): Remove reference to VMS
4581 header files.
4582 ($(BLD)/dispnew.$(O)):
4583 ($(BLD)/editfns.$(O)):
4584 ($(BLD)/fileio.$(O)):
4585 ($(BLD)/filelock.$(O)):
4586 ($(BLD)/keyboard.$(O)):
4587 ($(BLD)/w32proc.$(O)):
4588 ($(BLD)/process.$(O)):
4589 ($(BLD)/sysdep.$(O)): Ditto.
4590
4591 2001-02-22 Gerd Moellmann <gerd@gnu.org>
4592
4593 * xdisp.c (forward_to_next_line_start): When taking the shortcut
4594 at the start of the function, check that the \n in it->c is
4595 from the iterator's current position.
4596
4597 * xdisp.c (handle_single_display_prop): Add parameter
4598 DISPLAY_REPLACED_BEFORE_P. If it is non-zero ignore display
4599 properties which replace the display of text with something else.
4600 (handle_display_prop): Call handle_single_display_prop with
4601 additional argument saying if we already replaced text display
4602 with something else. Use AREF.
4603 (with_echo_area_buffer_unwind_data, display_menu_bar)
4604 (decode_mode_spec_coding): Use AREF and ASIZE.
4605
4606 * vms-pp.c, vmsdir.h, vmsmap.c, vmsproc.h, vms-pp.trans, vmsfns.c,
4607 * vmspaths.h, vmstime.c, vms-pwd.h, vmsgmalloc.c, vmsproc.c,
4608 * vmstime.h: Files removed.
4609
4610 * unexencap.c, unexfx2800.c: Files removed.
4611
4612 * dispnew.c (direct_output_for_insert): Give up if we are showing
4613 a message or just cleared the message because we might need to
4614 resize the echo area window or display an empty echo area.
4615
4616 2001-02-21 Gerd Moellmann <gerd@gnu.org>
4617
4618 * xdisp.c (redisplay_internal): Do the
4619 mark_window_display_accurate after all windows have been
4620 redisplayed because this call resets flags in buffers which are
4621 needed for proper redisplay.
4622
4623 * keyboard.c, minibuf.c, lread.c, fns.c, eval.c:
4624 Use display_hourglass_p, start_hourglass, cancel_hourglass instead of
4625 the old names.
4626
4627 * w32term.h (struct x_output): Rename busy_cursor to hourglass_cursor,
4628 busy_window to hourglass_window, busy_p to hourglass_p.
4629
4630 * msdos.h (struct x_output): Rename busy_window to
4631 hourglass_window, busy_p to hourglass_p.
4632
4633 * xterm.h (struct x_output): Rename busy_cursor to hourglass_cursor,
4634 busy_window to hourglass_window, busy_p to hourglass_p.
4635
4636 * xfns.c: Rename everything containing *busy_cursor* and similar
4637 to *hourglass*.
4638 (syms_of_w32fns): Rename x-busy-pointer-shape to
4639 x-hourglass-pointer-shape, display-busy-cursor to
4640 display-hourglass, busy-cursor-delay to hourglass-delay.
4641
4642 * w32fns.c: Rename everything containing *busy_cursor* and similar
4643 to *hourglass*.
4644 (syms_of_w32fns): Rename x-busy-pointer-shape to
4645 x-hourglass-pointer-shape, display-busy-cursor to
4646 display-hourglass, busy-cursor-delay to hourglass-delay.
4647
4648 * xterm.c (XTread_socket): Test x_output's hourglass_p instead
4649 of its busy_p flag.
4650
4651 * dispextern.h (start_hourglass, cancel_hourglass)
4652 (display_hourglass_p): Renamed from *busy_cursor*.
4653
4654 2001-02-20 Gerd Moellmann <gerd@gnu.org>
4655
4656 * keyboard.c (read_char): When an event from unread-command-events
4657 is from the tool or menu bar, set *USE_MOUSE_MENU to 1.
4658
4659 * window.c (Fwindow_end): Handle case that WINDOW's buffer is not
4660 equal to the current buffer.
4661
4662 * xdisp.c (setup_echo_area_for_printing): Set truncate_lines to
4663 nil, otherwise we're left with truncate_lines t when a message
4664 is printed with message-truncate-lines bound to t.
4665
4666 2001-02-19 Gerd Moellmann <gerd@gnu.org>
4667
4668 * window.c (Fmove_to_window_line): Undo last change.
4669 (displayed_window_lines): Call line_bottom_y to determine
4670 the line's bottom position.
4671
4672 * dispextern.h (line_bottom_y): Add prototype.
4673
4674 * xdisp.c (line_bottom_y): New function extracted from pos_visible_p.
4675 (pos_visible_p): Use it.
4676
4677 * keyboard.c (recursive_edit_1): Bind `inhibit-redisplay' and
4678 set redisplaying_p to 0 here instead of in Frecursive_edit.
4679 (Frecursive_edit): Don't bind `inhibit-redisplay' and don't
4680 set redisplaying_p.
4681
4682 * xdisp.c (Qinhibit_menubar_update, inhibit_menubar_update):
4683 New variables.
4684 (syms_of_xdisp): Initialize new variables.
4685 (update_menu_bar): Do nothing if inhibit_menubar_update is set.
4686 Specbind `inhibit-menubar-update' when updating the menu bar.
4687
4688 * xmenu.c (set_frame_menubar): Run activate-menu-bar-hook with
4689 safe_run_hooks.
4690
4691 * xdisp.c (update_menu_bar): Run activate-menu-bar-hook with
4692 safe_run_hooks.
4693
4694 * emacs.c (malloc_initialize_hook): Handle case thet `environ'
4695 is null.
4696
4697 * ralloc.c (__morecore) [!SYSTEM_MALLOC]: Move declaration
4698 to the start of the file.
4699
4700 2001-02-16 Gerd Moellmann <gerd@gnu.org>
4701
4702 * window.c (set_window_buffer): Fix last change.
4703
4704 * window.c (set_window_buffer): Set window's vscroll to 0.
4705
4706 * window.c (coordinates_in_window): Increase width of area
4707 where the vertical line can be dragged.
4708
4709 * xterm.c (x_set_glyph_string_background_width): Extend the
4710 background face to the end of the drawing area in the text
4711 area, only.
4712
4713 * xdisp.c (handle_single_display_prop): Set iterator's position
4714 to where the `display' property starts, like for images.
4715 (dump_glyph): New function.
4716 (dump_glyph_row): Use it. Dump info about marginal areas.
4717
4718 * dispnew.c (direct_output_for_insert): Recognize more cases where
4719 glyphs can be written instead of being inserted.
4720
4721 * xterm.c (x_insert_glyphs): Call window_box_left to obtain
4722 the left x-coordinate of the area to shift.
4723
4724 * dired.c (directory_files_internal): Set result list to nil
4725 before retrying.
4726
4727 2001-02-15 Kenichi Handa <handa@etl.go.jp>
4728
4729 * ccl.c (ccl_driver) [CCL_ReadMultibyteChar2]: If SRC points an
4730 invalid multibyte sequence, treat *SRC as a character of
4731 eight-bit-graphic.
4732
4733 2001-02-15 Eli Zaretskii <eliz@is.elta.co.il>
4734
4735 * textprop.c (Fset_text_properties): Doc fix.
4736
4737 2001-02-15 Gerd Moellmann <gerd@gnu.org>
4738
4739 * dispnew.c (update_text_area): Undo change of 2001-01-12.
4740
4741 2001-02-14 Dave Love <fx@gnu.org>
4742
4743 * coding.c: Doc and message fixes.
4744
4745 2001-02-14 Andrew Innes <andrewi@gnu.org>
4746
4747 * w32fns.c (w32_wnd_proc) <WM_GETMINMAXINFO>: Allow resizing the
4748 Emacs frame above the screen size.
4749
4750 2001-02-14 Gerd Moellmann <gerd@gnu.org>
4751
4752 * xdisp.c (reseat_1): Set iterator's end_charpos to ZV.
4753
4754 2001-02-13 Gerd Moellmann <gerd@gnu.org>
4755
4756 * insdel.c (del_range_1, del_range_byte, del_range_both): Handle
4757 case that TO ends up beyond ZV after running before-change-functions.
4758
4759 * window.c (window_loop) <GET_BUFFER_WINDOW>: Prefer to return
4760 the selected window if it is showing the buffer in question.
4761
4762 * dired.c (directory_files_internal): Initialize errno.
4763 (toplevel): Include errno.h.
4764
4765 2001-02-13 Kenichi Handa <handa@etl.go.jp>
4766
4767 * xfaces.c (best_matching_font): New parameter width_ratio.
4768 Multiply avgwidth by width_ratio.
4769 (choose_face_font): Call best_matching_font with width_ratio
4770 calculated from the column width of C.
4771
4772 2001-02-12 Andrew Innes <andrewi@gnu.org>
4773
4774 The following changes are to draw box lines inside characters area
4775 if line-width is negative.
4776
4777 * w32term.c (x_produce_image_glyph): Pay attention to the case that
4778 face->box_line_width is negative.
4779 (x_produce_stretch_glyph): Likewise.
4780 (x_produce_glyphs): Likewise.
4781 (x_estimate_mode_line_height): Likewise.
4782 (x_draw_glyph_string_background): Likewise.
4783 (x_draw_glyph_string_foreground): Likewise.
4784 (x_draw_composite_glyph_string_foreground): Likewise.
4785 (x_draw_glyph_string_box): Likewise.
4786 (x_draw_image_foreground): Likewise.
4787 (x_draw_image_relief): Likewise.
4788 (x_draw_image_foreground_1): Likewise.
4789 (x_draw_image_glyph_string): Likewise.
4790
4791 2001-02-09 Kenichi Handa <handa@etl.go.jp>
4792
4793 The following changes are to draw box lines inside characters area
4794 if line-width is negative.
4795
4796 * xterm.c (x_produce_image_glyph): Pay attention to the case that
4797 face->box_line_width is negative.
4798 (x_produce_stretch_glyph): Likewise.
4799 (x_produce_glyphs): Likewise.
4800 (x_estimate_mode_line_height): Likewise.
4801 (x_draw_glyph_string_background): Likewise.
4802 (x_draw_glyph_string_foreground): Likewise.
4803 (x_draw_composite_glyph_string_foreground): Likewise.
4804 (x_draw_glyph_string_box): Likewise.
4805 (x_draw_image_foreground): Likewise.
4806 (x_draw_image_relief): Likewise.
4807 (x_draw_image_foreground_1): Likewise.
4808 (x_draw_image_glyph_string): Likewise.
4809
4810 * xfaces.c (Finternal_set_lisp_face_attribute): The value of :box
4811 and :line-width can be negative.
4812 (realize_x_face): The value of attrs[LFACE_BOX_INDEX] can be negative.
4813
4814 2001-02-09 Jason Rumney <jasonr@gnu.org>
4815
4816 * w32term.c (w32_encode_char): Treat eight bit graphic and control
4817 characters the same as ASCII and latin-1.
4818 (x_display_and_set_cursor): Check for the focus frame's selected
4819 window instead of selected_window.
4820 (x_after_update_window_line): Don't clear if frame's internal
4821 border width is zero.
4822 (x_new_font): Don't change a tooltip's size.
4823 (w32_initialize): Set char_ins_del_ok to 1.
4824
4825 * w32fns.c (Fx_show_tip): Fix calls to make_number.
4826 (x_set_font): If font hasn't changed, avoid recomputing
4827 faces and other things.
4828 (x_set_tool_bar_lines): Do nothing if frame is minibuffer-only,
4829 (Fx_create_frame): Add the tool bar height to the frame height.
4830 (x_create_tip_frame): Prevent changing the tooltip's
4831 background color by specifying a color for the default font
4832 in .Xdefaults.
4833 (Qcancel_timer): New variable.
4834 (syms_of_w32fns): Initialize and staticpro it.
4835 (Fx_hide_tip, Fx_show_tip): Use it.
4836 (Fx_show_tip): Make sure to set tip_timer to nil when canceling
4837 the timer.
4838 (toplevel): Lisp code for generating parts of syms_of_w32fns removed.
4839
4840 * w32.c (init_environment): Duplicate local string before putenv.
4841
4842 2001-02-09 ShengHuo ZHU <zsh@cs.rochester.edu>
4843
4844 * charset.c (Fstring): A typo.
4845
4846 2001-02-09 Kenichi Handa <handa@etl.go.jp>
4847
4848 * charset.c (Fstring): If all arguments are less than 256, return
4849 a unibyte string.
4850
4851 * editfns.c (Fchar_to_string): If CHARACTER is less than 256,
4852 return a unibyte string.
4853
4854 * coding.c (code_convert_region): After detecting a coding, if
4855 nothing found, set coding->composing to COMPOSITION_NO.
4856 (decode_coding_string): Likewise.
4857
4858 2001-02-08 Stefan Monnier <monnier@cs.yale.edu>
4859
4860 * w32term.c (w32_set_scroll_bar_thumb): Use `double' for `range'
4861 to avoid overflow.
4862
4863 2001-02-07 Kenichi Handa <handa@etl.go.jp>
4864
4865 * charset.c (parse_str_to_multibyte): New function.
4866
4867 * charset.h (parse_str_to_multibyte): Extern it.
4868
4869 * print.c (print_string): If we are going to print a unibyte
4870 string into a multibyte buffer, convert the string to multibyte by
4871 str_to_multibyte.
4872
4873 2001-02-06 Andrew Innes <andrewi@gnu.org>
4874
4875 * w32xfns.c (select_palette): Do nothing if palette hasn't yet
4876 been created. It seems we can get sent window messages such as
4877 WM_ERASEBKGND before we properly update a frame.
4878
4879 2001-02-06 Gerd Moellmann <gerd@gnu.org>
4880
4881 * dispnew.c (update_frame_line): Rename parameter FRAME to F.
4882 Avoid some unnecessary cursor positioning.
4883
4884 2001-02-05 Gerd Moellmann <gerd@gnu.org>
4885
4886 * xfaces.c (split_font_name): Compute numeric value of XLFD_AVGWIDTH.
4887 (LFACE_AVGWIDTH): New macro.
4888 (LFACEP): Use AREF.
4889 (check_lface_attrs): Check LFACE_AVGWIDTH.
4890 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
4891 (set_lface_from_font_name): Set LFACE_AVGWIDTH.
4892 (merge_face_vectors): Check LFACE_AVGWIDTH.
4893 (Finternal_make_lisp_face): Use AREF.
4894 (xm_set_menu_resources_from_menu_face)
4895 (xl_set_menu_resources_from_menu_face): Check LFACE_AVGWIDTH.
4896 (Finternal_lisp_face_empty_p): Use AREF.
4897 (lface_same_font_attributes_p): Compare LFACE_AVGWIDTH.
4898 (better_font_p, exact_face_match_p): Add parameter AVGWIDTH.
4899 Compare average widths..
4900 (best_matching_font): Arrange for comparing average widths.
4901
4902 * dispextern.h (enum lface_attribute_index):
4903 Add LFACE_AVGWIDTH_INDEX (invisible from Lisp).
4904
4905 2001-02-05 Dave Love <fx@gnu.org>
4906
4907 * puresize.h: Revert last change following loadup.el change.
4908
4909 2001-02-05 Andrew Innes <andrewi@gnu.org>
4910
4911 * makefile.w32-in ($(EMACS)): Use $(THISDIR) instead of . in
4912 invocation of temacs, to work with Windows 2000.
4913 (bootstrap-emacs): Ditto.
4914
4915 2001-02-05 Gerd Moellmann <gerd@gnu.org>
4916
4917 * xterm.c (x_display_and_set_cursor): Check for the focus
4918 frame's selected window instead of selected_window.
4919
4920 * xdisp.c (try_scrolling): If point is in the line below the
4921 window, make sure to move the iterator at least a canonical
4922 char height down.
4923
4924 * window.c (Fmove_to_window_line): Don't add 1 if window is vscrolled.
4925
4926 2001-02-05 Kenichi Handa <handa@etl.go.jp>
4927
4928 * ccl.c (CCL_WRITE_CHAR): Check if CH is valid or not.
4929 If invalid, execute CCL_INVALID_CMD.
4930 (ccl_driver): If the CCL program is terminated because of
4931 CCL_STAT_INVALID_CMD, copy the remaining source data to the
4932 destination instead of throwing them away.
4933
4934 2001-02-02 Gerd Moellmann <gerd@gnu.org>
4935
4936 * xfns.c (x_set_font): If font hasn't changed, avoid recomputing
4937 faces and other things.
4938
4939 * xdisp.c (get_next_display_element): Fix case of empty
4940 display table entry.
4941
4942 2001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
4943
4944 * editfns.c (Fconstrain_to_field): Doc fix.
4945
4946 * xfaces.c (Fclear_face_cache): Rename the `thorougly' argument
4947 into `thoroughly', to make it consistent with the doc string.
4948
4949 * window.c (Fenlarge_window, Fshrink_window): Doc fix.
4950
4951 2001-02-01 Gerd Moellmann <gerd@gnu.org>
4952
4953 * search.c (search_buffer): Call set_search_regs with a byte
4954 position, not a character position.
4955
4956 * xfns.c (x_set_tool_bar_lines): Do nothing if frame is
4957 minibuffer-only,
4958
4959 2001-02-01 Eli Zaretskii <eliz@is.elta.co.il>
4960
4961 * frame.c (Fmodify_frame_parameters): Doc fix.
4962
4963 2001-01-31 Gerd Moellmann <gerd@gnu.org>
4964
4965 * frame.h (EMACS_FRAME_H_INCLUDED): Use an include blocker
4966 identifier which is not reserved by Standard C.
4967
4968 * frame.h (FRAME_RIGHT_SCROLL_BAR_WIDTH): New define.
4969
4970 * window.c (enum window_part): New enumeration.
4971 (Qleft_fringe, Qright_fringe): Replace Qleft_bitmap_area and
4972 Qright_bitmap_area.
4973 (coordinates_in_window): Return an enumerator from enum
4974 window_part. Fix handling of right scroll bar.
4975 (Fcoordinates_in_window_p): Doc fix. Return `left-fringe' and
4976 `right-fringe' instead of `left-bitmap-area' and
4977 `right-bitmap-area'. Use enumerators from enum window_part
4978 instead of hard-coded integers.
4979 (check_window_containing, window_from_coordinates):
4980 Use enumerators from enum window_part instead of hard-coded integers.
4981 (syms_of_window): Replace Qleft_bitmap_area and
4982 Qright_bitmap_area.with Qleft_fringe and Qright_fringe.
4983
4984 2001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
4985
4986 * editfns.c (Fformat_time_string): Doc fix.
4987
4988 2001-01-31 Stefan Monnier <monnier@cs.yale.edu>
4989
4990 * keymap.c (Fwhere_is_internal): Use the first valid binding
4991 if no ascii binding is found (when firstonly is t).
4992
4993 2001-01-31 Gerd Moellmann <gerd@gnu.org>
4994
4995 * window.c (Fscroll_right, Fscroll_left): Use interactive_p
4996 instead of Finteractive_p.
4997
4998 * lisp.h (interactive_p): Add prototype.
4999
5000 * eval.c (interactive_p): New function.
5001 (Finteractive_p): Use it.
5002
5003 * alloc.c (Fmake_list): Add a QUIT in the loop; unroll the loop.
5004
5005 2001-01-31 Dave Love <fx@gnu.org>
5006
5007 * .gdbinit (hook-run): Define to run xreload.
5008
5009 * textprop.c (Fset_text_properties): Fix newline in doc string.
5010
5011 2001-01-30 Gerd Moellmann <gerd@gnu.org>
5012
5013 * xdisp.c (build_desired_tool_bar_string, syms_of_xdisp):
5014 Use DEFAULT_TOOL_BAR_BUTTON_MARGIN and DEFAULT_TOOL_BAR_BUTTON_RELIEF.
5015
5016 * dispextern.h (Vtool_bar_button_margin:): Declare extern.
5017 (DEFAULT_TOOL_BAR_BUTTON_MARGIN, DEFAULT_TOOL_BAR_BUTTON_RELIEF)
5018 (DEFAULT_TOOL_BAR_IMAGE_HEIGHT): New defines.
5019
5020 * xfns.c (Fx_create_frame): Add the tool bar height to the frame
5021 height.
5022
5023 2001-01-30 Dave Love <fx@gnu.org>
5024
5025 * bytecode.c (Fbyte_code) <Bgeq>: Add BEFORE_POTENTIAL_GC and
5026 AFTER_POTENTIAL_GC.
5027
5028 2001-01-29 Gerd Moellmann <gerd@gnu.org>
5029
5030 * bytecode.c (Fbyte_code) <Bcurrent_column>:
5031 Add BEFORE_POTENTIAL_GC and AFTER_POTENTIAL_GC.
5032
5033 2001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
5034
5035 * textprop.c (Fset_text_properties): Doc fix.
5036
5037 2001-01-29 Gerd Moellmann <gerd@gnu.org>
5038
5039 * xdisp.c (forward_to_next_line_start): Remove xassert.
5040
5041 2001-01-29 Jason Rumney <jasonr@gnu.org>
5042
5043 * w32term.c (x_draw_row_bitmaps): Delay obtaining HDC to avoid
5044 returning without releasing it.
5045
5046 2001-01-29 Kenichi Handa <handa@etl.go.jp>
5047
5048 * w32fns.c (w32_font_match): Allocate three more bytes to regex
5049 for '^', '$', and '\0'.
5050
5051 2001-01-28 Andrew Choi <akochoi@i-cable.com>
5052
5053 * fontset.c (fontset_pattern_regexp): Allocate three more bytes to
5054 regex for '^', '$', and '\0'.
5055
5056 * alloc.c (allocate_string) [macintosh]: Call check_string_bytes
5057 only if current_sblock has been initialized.
5058
5059 * frame.c (Fdelete_frame) [macintosh]: Allow deletion of initial
5060 terminal frame even if it is the only visible frame.
5061
5062 2001-01-28 Kenichi Handa <handa@etl.go.jp>
5063
5064 * fontset.c (font_family_registry): Even if FONTNAME conform to
5065 XLFD, if it specifies other fields than family and registry,
5066 return FONTANME. New argument FORCE if nonzero cancel that feature.
5067 (fontset_font_pattern): Call font_family_registry with FORCE 1 for
5068 a signle byte character. Don't set FAMILY part to nil here.
5069 It is handled by the caller choose_face_font.
5070 (Fnew_fontset): Call font_family_registry with FORCE 0.
5071 (Fset_fontset_font): Likewise.
5072
5073 2001-01-27 Gerd Moellmann <gerd@gnu.org>
5074
5075 * xdisp.c (display_line): Don't treat a newline as fitting
5076 on the line.
5077
5078 2001-01-26 Gerd Moellmann <gerd@gnu.org>
5079
5080 * window.c (size_window): Set the window's orig_top to nil when
5081 changing heights, so that a future shrink_mini_window won't
5082 restore a bogus height.
5083
5084 * frame.c (do_switch_frame): If selected frame has a mini-window,
5085 resize that to exact size.
5086
5087 * dispnew.c (adjust_glyph_matrix): Always clear desired matrices.
5088
5089 * xdisp.c (display_line): Simplify check for glyphs fitting
5090 entirely in the line.
5091
5092 * xfns.c (xic_style): New variable.
5093 (create_frame_xic): Move static variable to global scope for
5094 the case that `static' gets defined away.
5095
5096 2001-01-26 Kenichi Handa <handa@etl.go.jp>
5097
5098 * coding.c (decode_coding): Set a flag for inhibiting
5099 inconsistent eol.
5100 (code_convert_region): Always set saved_coding_symbol.
5101 (decode_coding_string): Likewise. Update coding->symbol when we
5102 encounter a inconsistent eol by the same way as code_convert_region.
5103
5104 2001-01-25 Gerd Moellmann <gerd@gnu.org>
5105
5106 * xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of
5107 XClearArea.
5108
5109 * xterm.c (x_after_update_window_line): Don't clear if frame's
5110 internal border width is zero.
5111 (x_clear_area): New function.
5112 (x_after_update_window_line, x_clear_end_of_line)
5113 (x_scroll_bar_create, x_scroll_bar_set_handle)
5114 (XTset_vertical_scroll_bar, x_erase_phys_cursor): Use x_clear_area
5115 instead of XClearArea.
5116
5117 * xterm.h (x_clear_area): Add prototype.
5118
5119 * xfns.c (Fx_file_dialog): Remove a workaround for Lesstif
5120 which doesn't seem necessary anymore with Lesstif 0.92.
5121
5122 2001-01-25 Dave Love <fx@gnu.org>
5123
5124 * puresize.h (BASE_PURESIZE): Up to 720000.
5125
5126 * keymap.c (Fwhere_is_internal): Declare gcpro3, gcpro4.
5127
5128 2001-01-25 Gerd Moellmann <gerd@gnu.org>
5129
5130 * xdisp.c (echo_area_display): Don't call redisplay_internal
5131 when Emacs is shutting down. We can't run hooks etc. that
5132 would be necessary to do a redisplay.
5133
5134 * lread.c (read_integer): Use type EMACS_INT instead of int.
5135
5136 2001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
5137
5138 * ccl.c (ccl_driver): Fix last change.
5139
5140 2001-01-25 Kenichi Handa <handa@etl.go.jp>
5141
5142 * ccl.h (sturct ccl_program): New member suppress_error.
5143
5144 * ccl.c (ccl_driver): If ccl->suppress_error is nonzero, don't
5145 insert error message to the output.
5146 (setup_ccl_program): Initialize ccl->suppress_error to 0.
5147
5148 * coding.h (struct coding_system): New member suppress_error.
5149
5150 * coding.c (ccl_coding_driver): Setup ccl->suppress_error.
5151 (Fset_terminal_coding_system_internal): Set the member
5152 suppress_error to 1.
5153 (Fset_safe_terminal_coding_system_internal): Likewise.
5154
5155 2001-01-24 Stefan Monnier <monnier@cs.yale.edu>
5156
5157 * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
5158 as if it was a `charset'.
5159
5160 2001-01-24 Gerd Moellmann <gerd@gnu.org>
5161
5162 * keymap.c (Fwhere_is_internal): Don't nreverse the cached
5163 value in where_is_cache; the next lookup in the cache returns
5164 something bogus if we do.
5165
5166 2001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
5167
5168 * xdisp.c (syms_of_xdisp) <Stool_bar_lines_needed>: Don't defsubr
5169 if HAVE_WINDOW_SYSTEM isn't defined.
5170
5171 2001-01-24 Gerd Moellmann <gerd@gnu.org>
5172
5173 * fns.c (sweep_weak_table): Fix code taking items out of
5174 the hash collision chain. Some cleanup.
5175
5176 * xterm.c (x_new_font): Don't change a tooltip's size.
5177
5178 * xfns.c (x_create_tip_frame): Prevent changing the tooltip's
5179 background color by specifying a color for the default font
5180 in .Xdefaults.
5181
5182 2001-01-24 Kenichi Handa <handa@etl.go.jp>
5183
5184 * ccl.c (CCL_READ_CHAR): Change the argument name from r to REG as
5185 a workaround for SunOS 4's cc.
5186 (CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
5187 (CCL_SUCCESS, CCL_SUSPEND, CCL_INVALID_CMD): Likewise.
5188 (ccl_driver) <CCL_ReadMultibyteChar2>: Remove unnecessay "do"
5189 statement.
5190
5191 2001-01-23 Gerd Moellmann <gerd@gnu.org>
5192
5193 * xterm.c (x_set_window_size_1): New function extracted from
5194 x_set_window_size.
5195 (x_set_window_size): Use it.
5196 (x_set_window_size) [USE_X_TOOLKIT]: Handle case that window
5197 doesn't have a widget, like tooltips.
5198
5199 2001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
5200
5201 * window.c (syms_of_window) <scroll-preserve-screen-position>: Doc fix.
5202
5203 2001-01-23 Kenichi Handa <handa@etl.go.jp>
5204
5205 * fns.c (Fset_char_table_default): Fix to make sub char-table
5206 correctly.
5207
5208 2001-01-22 Gerd Moellmann <gerd@gnu.org>
5209
5210 * xdisp.c (build_desired_tool_bar_string): Make sure we have
5211 a desired tool bar string, even if there are no tool bar items.
5212
5213 * xdisp.c (Ftool_bar_lines_needed): New function.
5214 (syms_of_xdisp): Defsubr it.
5215
5216 * editfns.c (Fformat): Don't extend text properties from arguments
5217 to padding chars in the result.
5218
5219 2001-01-20 Eli Zaretskii <eliz@is.elta.co.il>
5220
5221 * s/msdos.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS.
5222
5223 2001-01-20 Andrew Innes <andrewi@gnu.org>
5224
5225 * w32term.c (w32_ring_bell): Only support visible bell on w32 frames.
5226 (w32_initialize): Don't set term hooks that aren't actually needed
5227 in windowed mode.
5228
5229 * xfaces.c (realize_default_face):
5230 (realize_face):
5231 (realize_tty_face): Remove references to FRAME_W32_CONSOLE_P.
5232
5233 * xdisp.c (handle_single_display_prop): Remove references to
5234 FRAME_W32_CONSOLE_P.
5235
5236 * dispnew.c (Fredraw_frame): Remove reference to FRAME_W32_CONSOLE_P.
5237
5238 * frame.h (output_method): Remove output_w32_console method.
5239 (FRAME_W32_CONSOLE_P): Remove macro.
5240
5241 * frame.c (Qw32_console): Remove variable.
5242 (Fframep): Remove references to it.
5243 (syms_of_frame): Ditto.
5244 (Fframe_parameters): Remove references to FRAME_W32_CONSOLE_P.
5245
5246 * term.c (FRAME_TERMCAP_P) [WINDOWSNT]: Reinstate original
5247 redefinition.
5248
5249 2001-01-20 Kenichi Handa <handa@etl.go.jp>
5250
5251 * editfns.c (Fformat): Use lisp_string_width instead of strwidth.
5252
5253 2001-01-19 Andrew Innes <andrewi@gnu.org>
5254
5255 * w32.c (init_environment): Add a version-independent site-lisp
5256 directory to EMACSLOADPATH, after the version dependent one.
5257
5258 2001-01-19 Gerd Moellmann <gerd@gnu.org>
5259
5260 * editfns.c (Fbuffer_substring): Doc fix.
5261
5262 * xdisp.c (message_dolog, message2, message2_nolog):
5263 Rename parameter LEN to NBYTES.
5264
5265 2001-01-19 Kenichi Handa <handa@etl.go.jp>
5266
5267 * charset.c (strwidth): Use c_string_width.
5268 (c_string_width): New function.
5269 (lisp_string_width): New arguments PRECISION, NCHARS, NBYTES.
5270 Caller changed.
5271
5272 * charset.h (c_string_width, lisp_string_width): Extern them.
5273
5274 * doprnt.c (doprnt1): Get byte length of Lisp string correctly.
5275
5276 * indent.c (check_composition): Check validity of composition.
5277
5278 * xdisp.c (store_frame_title): Pay attention to width of non-ASCII
5279 characters by calling c_string_width.
5280 (x_consider_frame_title): Get byte length of frame tile string
5281 correctly.
5282 (display_mode_element): Pay attention to width of non-ASCII
5283 characters by calling strwidth.
5284
5285 2001-01-18 Gerd Moellmann <gerd@gnu.org>
5286
5287 * xfns.c (Qcancel_timer): New variable.
5288 (syms_of_xfns): Initialize and staticpro it.
5289 (Fx_hide_tip, Fx_show_tip): Use it.
5290 (Fx_show_tip): Make sure to set tip_timer to nil when canceling
5291 the timer.
5292 (toplevel): Lisp code for generating parts of syms_of_xfns removed.
5293
5294 * window.c (Fwindow_live_p): Use WINDOW_LIVE_P.
5295
5296 * window.h (WINDOW_LIVE_P): New macro.
5297
5298 * window.c (window_size_fixed): New variable.
5299 (syms_of_window): Add a DEFVAR_BOOL for window-size-fixed, for
5300 the doc string.
5301
5302 * eval.c (specbind): If binding a per-buffer variable which
5303 doesn't have a buffer-local value in the current buffer, change
5304 the global value by changing the value of the symbol bound in all
5305 buffers not having their own value, to make it consistent with
5306 what happens with other buffer-local variables.
5307
5308 * xterm.c (x_initialize): Set char_ins_del_ok to 1.
5309
5310 * xdisp.c (forward_to_next_line_start): Stop at end of buffer
5311 when searching for a newline.
5312
5313 2001-01-18 Kenichi Handa <handa@etl.go.jp>
5314
5315 * xdisp.c (display_string): Fix previous change.
5316
5317 2001-01-18 Jason Rumney <jasonr@gnu.org>
5318
5319 * w32term.c (x_produce_stretch_glyph): Only use Qspace when
5320 GLYPH_DEBUG is defined.
5321 (x_produce_glyphs): Don't xassert `it->descent > 0'; this isn't
5322 true for images with `:ascent 100'.
5323 (x_set_mouse_face_gc): If the last used mouse face has gone in the
5324 meantime, use face MOUSE_FACE_ID.
5325 If first glyph isn't a character glyph, use the ASCII NUL
5326 character to determine the face.
5327 (expose_area): Do not treat left margin specially.
5328 (note_mode_line_highlight): If no local_map, check global keymap.
5329 (note_mouse_highlight): Initialize overlay.
5330 (clear_mouse_face): Don't return if tip_frame is non-nil.
5331 (show_scroll_bars): Remove unused function.
5332 (w32_read_socket) [WM_KILLFOCUS]: Set help_echo to Qnil.
5333 (x_draw_bar_cursor): Remove extra test for out of bounds cursor.
5334 Clip to row.
5335 (x_erase_phys_cursor): Don't apply XWINDOW to variable that may be nil.
5336 (x_free_frame_resources): Unload relief colors.
5337
5338 2001-01-17 Gerd Moellmann <gerd@gnu.org>
5339
5340 * xdisp.c (forward_to_next_line_start): Avoid calling
5341 get_next_display_element when the newline is already found.
5342 This may change the iterator's position, when its current position is
5343 equal to the iterator's stop_charpos.
5344
5345 * dispnew.c (direct_output_for_insert): If char_ins_del_ok is
5346 zero, use this method only at the end of a line.
5347
5348 * xfaces.c (x_face_list_fonts): Don't BLOCK_INPUT around the
5349 call to x_list_fonts. Call x_list_fonts with SIZE -1 only
5350 if SCALABLE_FONTS_P is set.
5351
5352 * xfaces.c (x_face_list_fonts): Call x_list_fonts with SIZE -1,
5353 so that scalable fonts are included.
5354
5355 * xterm.c (x_list_fonts): Allow scalable fonts if SIZE is < 0,
5356 In the cache, use a key containing the information if scalable
5357 fonts are included.
5358 (x_load_font): Adapt to change of keys in the font cache.
5359
5360 2001-01-17 Kim F. Storm <storm@filanet.dk>
5361
5362 * xfaces.c (x_face_list_fonts): Use x_list_fonts instead of
5363 XListFonts to take advantage of font caching.
5364
5365 * xterm.c (x_list_fonts): Ensure caching font information when
5366 called for a null frame, which is the case frequently when Emacs
5367 starts.
5368
5369 2001-01-17 Gerd Moellmann <gerd@gnu.org>
5370
5371 * xfns.c (QCconversion): Replaces QCalgorithm.
5372
5373 * w32fns.c (QCconversion): Replaces QCalgorithm. Update copyright.
5374
5375 * xdisp.c (build_desired_tool_bar_string): Use :conversion instead
5376 of :algorithm.
5377
5378 * xdisp.c (redisplay_tool_bar): Change tool bar's height when
5379 not everything could be displayed.
5380
5381 * line.h, x-list-font.c: Files removed because unused.
5382
5383 2001-01-17 Andrew Innes <andrewi@gnu.org>
5384
5385 * dired.c (directory_files_internal): Convert result from readdir
5386 to a unibyte string initially, to avoid possible misinterpretation
5387 of some bytes as the internal form of Emacs characters.
5388
5389 2001-01-17 Kenichi Handa <handa@etl.go.jp>
5390
5391 * fns.c (concat): Be sure to avoid putting the same `composition'
5392 property on the adjacent regions.
5393
5394 2001-01-16 Gerd Moellmann <gerd@gnu.org>
5395
5396 * window.c (Fset_window_hscroll): Don't set window's min_hscroll here.
5397 (Fscroll_right, Fscroll_left): Set it here instead, if called
5398 interactively.
5399
5400 * buffer.c (Fset_buffer_modified_p): Set buffer's
5401 prevent_redisplay_optimizations_p flag.
5402
5403 * dispnew.c, callproc.c, fns.c, keyboard.c, process.c, sunfns.c,
5404 * sysdep.c, vmsproc.c, xselect.c: Call redisplay_preserve_echo_area
5405 with additional arg.
5406
5407 * dispextern.h, lisp.h (redisplay_preserve_echo_area):
5408 Change prototype.
5409
5410 * xdisp.c (redisplay_preserve_echo_area): Add parameter
5411 FROM_WHERE, for debugging.
5412
5413 2001-01-16 Kenichi Handa <handa@etl.go.jp>
5414
5415 * ccl.c (Fregister_ccl_program): Handle the return value of
5416 resolve_symbol_ccl_program correctly.
5417 (CCL_Extension): Fix typo (originally CCL_Extention). Caller changed.
5418
5419 2001-01-15 Gerd Moellmann <gerd@gnu.org>
5420
5421 * xterm.c (x_set_mouse_face_gc): If the last used mouse face
5422 has gone in the meantime, use face MOUSE_FACE_ID.
5423
5424 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]:
5425 If x_display_info_for_display returns null, don't try to close
5426 the display; we didn't open it.
5427
5428 * dispnew.c (save_or_restore_current_matrices): Function removed.
5429 (save_current_matrix, restore_current_matrix): New functions.
5430 (adjust_frame_glyphs_for_frame_redisplay): Use them to save and
5431 restore the frame's current matrix. Due to the glyph pointer
5432 setup done in adjust_glyph_matrix, there is no easy way to make
5433 saving the current matrix in the desired matrix generally correct,
5434 so don't try it.
5435
5436 2001-01-15 Kenichi Handa <handa@etl.go.jp>
5437
5438 * xdisp.c (insert_left_trunc_glyphs): Overwrite padding glyphs by
5439 truncation glyphs.
5440 (display_line): Optimize for wide characters.
5441 (display_string): Don't try to display a multi-column character
5442 partially. On ttys, produce more than one truncation glyph for
5443 multi-column characters that don't fit on the line.
5444
5445 2001-01-13 Kenichi Handa <handa@etl.go.jp>
5446
5447 * md5.c (WORDS_BIG_ENDIAN) [__BYTE_ORDER == __BIG_ENDIAN]:
5448 Define it instead of WORDS_BIGENDIAN. Caller changed.
5449
5450 2001-01-13 Jason Rumney <jasonr@gnu.org>
5451
5452 * w32fns.c (Fimage_size, image_ascent, lookup_image)
5453 (IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, parse_image_spec)
5454 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
5455 (tiff_format, gif_format, gs_format): Adapt to change of image margins.
5456
5457 * w32term.c (x_produce_image_glyph, x_draw_image_foreground)
5458 (x_draw_image_relief, x_draw_image_foreground_1)
5459 (x_draw_image_glyph_string): Adapt to change of image margins.
5460
5461 * w32.c (init_environment, sys_shutdown, sys_pipe): Remove unused
5462 variables.
5463
5464 * w32bdf.c (search_file_line, get_cached_font_char)
5465 (cache_char_offset, create_offscreen_bitmap): Remove unused variables.
5466
5467 * w32inevt.c (w32_console_toggle_lock_key): Add parentheses.
5468
5469 * w32fns.c (x_to_w32_color, x_set_icon_name, xlfd_strip_height)
5470 (w32_list_synthesized_fonts, lookup_image, Fx_file_dialog)
5471 (Fw32_send_sys_command): Remove unused variables.
5472 (w32_msg_pump): Add parentheses.
5473
5474 * w32term.c (w32_fill_rect, w32_read_socket, x_bitmap_icon)
5475 (x_new_fontset, x_calc_absolute_position, x_iconify_frame):
5476 Add parentheses.
5477
5478 2001-01-12 Gerd Moellmann <gerd@gnu.org>
5479
5480 * xdisp.c (Vtool_bar_button_margin): Replaces tool_bar_button_margin.
5481 (build_desired_tool_bar_string): Handle Vtool_bar_button_margin
5482 being a pair of margins.
5483 (syms_of_xdisp): Change DEFVAR_INT of tool-bar-button-margins
5484 to DEFVAR_LISP. Extend doc.
5485
5486 * xfns.c (Fimage_size, image_ascent): Adapt to the change of image
5487 margins.
5488 (lookup_image): If `:margin MARGIN' is specified, and MARGIN is a
5489 pair of integers `(X . Y)', use X for the horizontal and Y for the
5490 vertical margin.
5491 (IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR): New enumerator.
5492 (parse_image_spec): Check it.
5493 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
5494 (tiff_format, gif_format, gs_format):
5495 Use IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR for :margin.
5496
5497 * xterm.c (x_produce_image_glyph, x_draw_image_foreground)
5498 (x_draw_image_relief, x_draw_image_foreground_1)
5499 (x_draw_image_glyph_string): Adapt to the change of image margins.
5500
5501 * dispextern.h (struct image): Replace member `margin' with
5502 `hmargin' and `vmargin'.
5503
5504 * xdisp.c (Fdump_tool_bar_row) [GLYPH_DEBUG]: Add parameters ROW
5505 and GLYPHS.
5506
5507 * dispnew.c (update_text_area): Put code which decrements the
5508 stop position when the row's face extends to the end of the
5509 line in #if 0.
5510
5511 * xfns.c (x_set_mouse_color): Fix color allocation.
5512
5513 * keyboard.c: Call get_local_map with new argument list.
5514
5515 * intervals.c (get_local_map): Change TYPE to Lisp_Object.
5516
5517 * intervals.h (enum map_property): Removed.
5518 (get_local_map): Change prototype.
5519
5520 * keymap.c: Call get_local_map with new argument list.
5521 (Fwhere_is_internal): Rename parameter XKEYMAP to KEYMAP.
5522
5523 2001-01-11 Gerd Moellmann <gerd@gnu.org>
5524
5525 * xdisp.c (build_desired_tool_bar_string): Correct the computation
5526 of the size needed for the tool bar string. For the last image,
5527 use a `display' property that reaches to the end of the string.
5528
5529 * xselect.c (selection_request_dpyinfo): New variable.
5530 (x_handle_selection_request): Set it.
5531 (x_selection_request_lisp_error): Don't call
5532 x_decline_selection_request if selection request's display has
5533 been closed.
5534
5535 * xfaces.c (x_free_colors, x_free_dpy_colors) [DEBUG_X_COLORS]:
5536 Do the unregister_colors before calling XFreeColors.
5537
5538 2001-01-10 Dave Love <fx@gnu.org>
5539
5540 * Makefile.in (${etc}DOC): Depend on ${shortlisp} and
5541 ${SOME_MACHINE_LISP}, not ${lisp}.
5542
5543 2001-01-10 Gerd Moellmann <gerd@gnu.org>
5544
5545 * xdisp.c (display_line): On ttys, produce more than one truncation
5546 glyph for multi-column characters that don't fit on the line.
5547
5548 * xselect.c (x_reply_selection_request): Add a comment.
5549
5550 * xfns.c (Fx_backspace_delete_keys_p): Use XkbGetMap and
5551 XkbGetNames instead of XkbGetKeyboard.
5552
5553 2001-01-10 Dave Love <fx@gnu.org>
5554
5555 * sysdep.c (random): Revert the declaration.
5556
5557 2001-01-09 Gerd Moellmann <gerd@gnu.org>
5558
5559 * lisp.h (STRING_BYTES) [GC_CHECK_STRING_BYTES]:
5560 Call function string_bytes.
5561 (GC_CHECK_STRING_BYTES): Moved here from alloc.c.
5562
5563 * alloc.c (CHECK_STRING_BYTES) [GC_CHECK_STRING_BYTES]: New macro.
5564 (check_sblock, string_bytes) [GC_CHECK_STRING_BYTES]: New functions.
5565 (check_string_bytes) [GC_CHECK_STRING_BYTES]: Add parameter ALL_P.
5566 (allocate_string) [GC_CHECK_STRING_BYTES]: Always check strings in
5567 the current sblock.
5568 (mark_object) [GC_CHECK_STRING_BYTES]: Use CHECK_STRING_BYTES.
5569 (gc_sweep) [GC_CHECK_STRING_BYTES]: Call check_string_bytes
5570 after sweeping strings, and at the end.
5571 (GC_CHECK_STRING_BYTES): Moved to lisp.h.
5572
5573 * alloc.c (Fgarbage_collect): Use a record_unwind_protect to
5574 ensure that pop_message is called.
5575
5576 * keyboard.c (Fexecute_extended_command): Use a
5577 record_unwind_protect to ensure that pop_message is called.
5578
5579 * lisp.h (push_message_unwind): Add prototype.
5580
5581 * xdisp.c (push_message_unwind): New function.
5582
5583 * fileio.c (do_auto_save_unwind): Do the pop_message here
5584 instead of in Fdo_auto_save.
5585 (Fdo_auto_save): Don't call pop_message.
5586
5587 2001-01-08 Ken Raeburn <raeburn@gnu.org>
5588
5589 * xfns.c (xpm_load) [!ALLOC_XPM_COLORS]: Declare local variable I
5590 in inner block.
5591
5592 2001-01-08 Gerd Moellmann <gerd@gnu.org>
5593
5594 * window.c (window_scroll_pixel_based): Adjust glyph matrices
5595 when increasing window's vscroll.
5596
5597 * macros.c (Qkbd_macro_termination_hook): New variable.
5598 (syms_of_macros): Initialize and staticpro it.
5599 (pop_kbd_macro): Run kbd-macro-termination-hook.
5600
5601 * xterm.c (XTread_socket) <LeaveNotify>: Set help_echo to nil.
5602
5603 2001-01-07 Dave Love <fx@gnu.org>
5604
5605 * keyboard.c (Fread_key_sequence_vector): Avoid newline in
5606 arglist, for documentation's sake.
5607
5608 2001-01-06 Andrew Innes <andrewi@gnu.org>
5609
5610 * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
5611 of *.pdb.
5612
5613 2001-01-05 Andrew Innes <andrewi@gnu.org>
5614
5615 * term.c (update_end): Don't check updating_frame; for some reason
5616 this can be 0 sometimes, such as after dismissing a popup menu,
5617 and isn't necessary given the explicit frame argument.
5618
5619 2001-01-05 Gerd Moellmann <gerd@gnu.org>
5620
5621 * sysdep.c: Don't prototype srandom; it takes an unsigned argument
5622 on some systems, and an unsigned long on others, like FreeBSD 4.1.
5623
5624 2001-01-04 Gerd Moellmann <gerd@gnu.org>
5625
5626 * xterm.c (clear_mouse_face): Don't return if tip_frame is non-nil.
5627
5628 * xfns.c (x_create_tip_frame): Preserve the value of
5629 face_change_count around the creation of the tip frame.
5630
5631 * xfns.c (last_show_tip_args): New variable.
5632 (compute_tip_xy): New function.
5633 (Fx_show_tip): Reuse an existing tip frame, if possible.
5634 (syms_of_xfns): Initialize and staticpro last_show_tip_args.
5635
5636 2001-01-04 Dave Love <fx@gnu.org>
5637
5638 * editfns.c (Fformat): Doc fix.
5639
5640 * systime.h (set_file_times): Prototype.
5641
5642 * widget.h (EmacsFrameSetCharSize_): Prototype.
5643
5644 * sysdep.c (random, srandom): Declare explicitly.
5645
5646 * dispextern.h (move_it_vertically_backward): Declare.
5647
5648 2001-01-04 Gerd Moellmann <gerd@gnu.org>
5649
5650 * xfns.c (x_create_tip_frame): Call face-set-after-frame-default,
5651 like in Fx_create_frame.
5652
5653 * xfaces.c (set_font_frame_param): Don't do anything for
5654 non-graphical frames.
5655
5656 * window.c (Fdelete_other_windows): Set window's window_end_valid
5657 to nil when changing the window's start. Don't change the
5658 window's start when its top position hasn't changed. If we do,
5659 this will set the window's optional_new_start, which act's like a
5660 force_start during redisplay with C-x 1 M-> under particular
5661 circumstances (see report from Per Starback to emacs-pretest-bug
5662 from 2000-12-13.).
5663
5664 2001-01-03 Gerd Moellmann <gerd@gnu.org>
5665
5666 * xdisp.c (forward_to_next_line_start): Reset it->c if taking the
5667 short cut at the start of the function. Add an assertion.
5668 (reseat_at_next_visible_line_start): Add an assertion.
5669
5670 * window.c (Frecenter): When changing the window start, set the
5671 window's window_end_valid to nil.
5672 (Fwindow_end): Fix window-end computation when UPDATE is non-nil.
5673
5674 * dispextern.h (move_it_past_eol): Add prototype.
5675
5676 * xdisp.c (move_it_past_eol): New function.
5677
5678 * window.c (Fwindow_end): Doc fix.
5679
5680 2001-01-03 Dave Love <fx@gnu.org>
5681
5682 * dired.c (Ffile_attributes): Fix last change, removing BSD4_3 kluge.
5683
5684 2001-01-03 Gerd Moellmann <gerd@gnu.org>
5685
5686 * xdisp.c (try_window_reusing_current_matrix): Fix bug setting
5687 the enabled_p flag of the glyph row at window_end_vpos to 0.
5688 (handle_single_display_prop): Fix last change.
5689
5690 2001-01-02 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5691
5692 * window.c (Frecenter): Doc fix.
5693
5694 2001-01-02 Andrew Innes <andrewi@gnu.org>
5695
5696 * term.c (FRAME_TERMCAP_P) [WINDOWSNT]: Remove redefinition.
5697
5698 * frame.h (output_method): Add output_w32_console method.
5699 (FRAME_W32_CONSOLE_P): New macro.
5700
5701 * frame.c (make_terminal_frame) [WINDOWSNT]: Make terminal frames
5702 use output_w32_console method.
5703 (Qw32_console): New Lisp_Object.
5704 (Fframep): Return it.
5705 (syms_of_frame): Init it.
5706 (Fframe_parameters): Report w32console as font for w32_console frames.
5707
5708 * xfaces.c (realize_default_face): Set face foreground and
5709 background to unspecified for w32_console frames.
5710 (realize_face): Realize face cache for w32_console frames.
5711 (realize_tty_face): Accept w32_console frames.
5712
5713 * xdisp.c (handle_single_display_prop): Return if frame is w32_console.
5714 (init_iterator) [WINDOWSNT]: Initialize frame face cache if
5715 necessary, even if running interactively.
5716
5717 * dispnew.c (Fredraw_frame): Call set_terminal_modes for
5718 w32_console frames.
5719
5720 * w32term.c (x_update_begin):
5721 (x_update_end):
5722 (x_clear_frame):
5723 (x_ins_del_lines):
5724 (x_change_line_highlight):
5725 (x_delete_glyphs):
5726 (w32_ring_bell):
5727 (x_update_begin):
5728 (x_update_end):
5729 (w32_reassert_line_highlight):
5730 (w32_frame_rehighlight):
5731 (w32_frame_raise_lower): Do nothing if not w32 frame.
5732
5733 * w32xfns.c (get_frame_dc): Abort if called on a non-w32 frame.
5734
5735 * w32fns.c (Fx_display_color_cells): Determine correct value, when
5736 system doesn't tell us directly.
5737 (Fx_display_visual_class): Implement properly.
5738
5739 2001-01-02 Gerd Moellmann <gerd@gnu.org>
5740
5741 * window.c (Frecenter): Handle centering in graphical frames
5742 specially. Centering on the basis of line counts doesn't work
5743 reliably with variable-height lines.
5744
5745 2001-01-02 Eli Zaretskii <eliz@is.elta.co.il>
5746
5747 * widget.c (EmacsFrameSetCharSize): Remove unused variables `ac'
5748 and al[].
5749
5750 * composite.c (run_composition_function): Remove unused var `val'.
5751 (update_compositions): Remove unused variable `hook'.
5752
5753 * intervals.c (get_local_map): Remove unused variable `tem'.
5754
5755 * doprnt.c (doprnt1): Remove unused variable `size'.
5756
5757 * fns.c (Flength): Remove unused variable `tail'.
5758 (Fdelete): Remove unused variable `size'.
5759
5760 * editfns.c (Ftranspose_regions): Remove unused variables `gcpro1'
5761 and `gcpro2'.
5762
5763 * doc.c (Fsnarf_documentation): Remove unused vars `fun' and `tem'.
5764
5765 * data.c (find_symbol_value): Remove extra 3rd argument in the
5766 call to swap_in_symval_forwarding.
5767
5768 * undo.c (Fprimitive_undo): Remove unused block-scope variable `end'.
5769
5770 * search.c (shrink_regexp_cache): Remove unused variable `cpp'.
5771 (trivial_regexp_p): Remove unused variable `c'.
5772 (boyer_moore): Remove unused variable `k'.
5773
5774 * indent.c (current_column): Remove unused variable `stopchar'.
5775 (Fcompute_motion): Remove unused variable `contin'.
5776
5777 * casefiddle.c (casify_object): Remove unused variable `tolen'.
5778
5779 * dired.c (directory_files_internal): Fix a typo in a comment.
5780 Remove an unused variable `handler'.
5781 (file_name_completion): Remove unused function-scope variable `dp'.
5782 (Ffile_attributes) <dirname, sdir>: Make declarations conditioned
5783 on BSD4_2.
5784
5785 * fileio.c (e_write): Remove unused variable `require_encoding_p'.
5786
5787 * marker.c (Fmarker_position): Remove unused variables `pos', `i',
5788 and `buf'.
5789 (Fmarker_insertion_type): Remove unused variable `buf'.
5790
5791 * insdel.c (make_gap): Remove unused variable `result'.
5792
5793 * keyboard.c (record_char): Remove unused function-scope var `help'.
5794 (kbd_buffer_get_event): Remove unused block-scope variable `idx'.
5795 (menu_bar_items): Remove unused function-scope variable `tem'.
5796
5797 * fontset.c (fontset_ref): Remove unused variable `i'.
5798 (fontset_set): Remove unused variables `j' and `tmp'.
5799 (make_fontset): Remove unused variables `i', `j', `elt' and `base_elt'.
5800 (make_fontset_for_ascii_face): Remove unused variable `name'.
5801 (fs_load_font): Remove unused variable `font_idx'.
5802 (fs_query_fontset): Remove unused function-local variable `fontset'.
5803 (list_fontsets): Remove unused variable `tail'.
5804 (Fnew_fontset): Remove unused variables `family' and `registry'.
5805 (accumulate_font_info): Remove unused variable `tmp'.
5806 (Ffontset_font): Remove unused variable `id'.
5807 (syms_of_fontset): Remove unused variable `i'.
5808
5809 * xfns.c (x_display_info_for_name): Cast 0 to "char *" in the call
5810 to x_term_init.
5811 (lookup_image): Remove unused variable `file'.
5812 (xbm_load): Remove unused variables `bitmap_data', `height', and
5813 `width'. Remove function-local variable `i', leave the
5814 block-local one.
5815 (gif_load): Remove unused variable `inc'.
5816
5817 * xterm.c (XTread_socket): Remove unused variables `p' and `pend'.
5818 (XTread_socket) <LeaveNotify>: Remove unused variable `frame',
5819 leave only the one in the inner block.
5820
5821 * xfaces.c (face_fontset, realize_default_face): Remove unused
5822 variable `fontset'.
5823 (face_at_buffer_position): Remove unused variable `multibyte_p'.
5824
5825 * term.c (encode_terminal_code): Remove unused variable `c'.
5826
5827 * ccl.c (Fccl_execute): Cast ccl_driver parameters to `unsigned
5828 char *' instead of `char *'.
5829
5830 * category.c (Fcategory_docstring): Remove unused variable `doc'.
5831 (Fget_unused_category): Remove unused variable `docstring_vector'.
5832 (Fchar_category_set): Remove unused variables `val', `charset',
5833 `c1' and `c2'.
5834
5835 * coding.c (detect_coding_iso2022, setup_coding_system):
5836 Remove unused variable `i'.
5837 (detect_coding_mask): Remove unused variable `idx'.
5838 (detect_coding): Remove unused variable `i'.
5839 (ccl_coding_driver): Remove unused variable `result'.
5840 (run_pre_post_conversion_on_str): Remove unused variable `prev'.
5841 (decode_coding_string): Remove unused variables `to' and `gcpro1'.
5842 (encode_coding_string): Remove unused variables `gcpro1' and
5843 `saved_coding_symbol'.
5844 (Ffind_coding_systems_region_internal): Remove function-local
5845 variable args[], leave only the block-local one.
5846 (code_convert_region1): Remove unused variable `len'.
5847
5848 * charset.c (char_printable_p): Remove unused variable `chars'.
5849 (Fsplit_char, Fchar_bytes): Remove unused variable `val'.
5850 (str_to_multibyte): Remove unused variable `c'.
5851
5852 * window.c (size_window): Remove block-local variable `min_size'.
5853
5854 * xdisp.c (make_cursor_line_fully_visible): Remove unused variable
5855 `header_line_height'.
5856 (append_space, extend_face_to_end_of_line): Declare `saved_what'
5857 enum display_element_type.
5858
5859 2001-01-02 Gerd Moellmann <gerd@gnu.org>
5860
5861 * xterm.c (x_connection_closed): Catch X errors around all
5862 statements that call X. Save away the error message in a local copy.
5863
5864 * xterm.c (x_connection_closed): Set handling_signal to 0 at
5865 the start.
5866
5867 * xdisp.c (pos_visible_p): Take into account that CHARPOS maybe
5868 in or at the start of invisible text.
5869
5870 * dispnew.c (update_window): Don't check_current_matrix_flags.
5871
5872 2001-01-01 Jason Rumney <jasonr@gnu.org>
5873
5874 * w32fns.c (x_figure_window_size): Do not allow new_height and
5875 new_width of frame to override specified values.
5876
5877 2000-12-30 Kenichi Handa <handa@etl.go.jp>
5878
5879 * composite.c (find_composition): Fix a code for searching backward.
5880
5881 2000-12-29 Gerd Moellmann <gerd@gnu.org>
5882
5883 * dispnew.c (check_current_matrix_flags) [GLYPH_DEBUG]: New function.
5884 (update_window) [GLYPH_DEBUG]: Call it.
5885 (scrolling_window): Prevent including current rows which are below
5886 what's displayed in the window.
5887
5888 * xdisp.c (try_window_reusing_current_matrix)
5889 <new start <= old start>: Disable rows in the current matrix
5890 which are below the window after scrolling.
5891
5892 * xdisp.c (move_it_by_lines): Don't do optimizations if NEED_Y_P
5893 is zero. It's not worth the complexity.
5894 (invisible_text_between_p): Put in #if 0 because unused.
5895
5896 2000-12-28 Gerd Moellmann <gerd@gnu.org>
5897
5898 * xfns.c (Fx_backspace_delete_keys_p): Check library and server
5899 XKB versions. Call XkbFreeKeyboard with 2nd arg 0.
5900
5901 * keyboard.c (echo_char): If C is an integer, always call
5902 push_key_description. Former code could signal an invalid
5903 character error.
5904
5905 * keymap.c (push_key_description): Add parameter FORCE_MULTIBYTE.
5906 If set, print multibyte text.
5907 (Fsingle_key_description): Call push_key_description with
5908 FORCE_MULTIBYTE set.
5909 (describe_buffer_bindings): Likewise.
5910
5911 * lisp.h (push_key_description): Add prototype.
5912
5913 * xdisp.c (echo_area_display): Bind redisplay-dont-pause to t
5914 around the call to redisplay_internal.
5915
5916 * xfns.c: Use #if GLYPH_DEBUG instead of #ifdef GLYPH_DEBUG.
5917
5918 * dispnew.c: Use #if GLYPH_DEBUG instead of #ifdef GLYPH_DEBUG.
5919
5920 2000-12-28 Kenichi Handa <handa@etl.go.jp>
5921
5922 * ccl.c (CCL_WRITE_CHAR): Check variable `extra_bytes'.
5923 (ccl_driver): New local variable `extra_bytes'.
5924
5925 * ccl.h (struct ccl_spec): New member eight_bit_carryover.
5926
5927 * coding.c (setup_coding_system):
5928 Initialize coding->spec.ccl.eight_bit_carryover.
5929 (ccl_coding_driver): Pay attention to carried over 8-bit bytes.
5930
5931 2000-12-28 Kenichi Handa <handa@etl.go.jp>
5932
5933 * coding.c (SAFE_ONE_MORE_BYTE): New macro.
5934 (DECODE_EMACS_MULE_COMPOSITION_CHAR): New macro.
5935 (DECODE_EMACS_MULE_COMPOSITION_RULE): New macro.
5936 (decode_composition_emacs_mule): New function.
5937 (decode_coding_emacs_mule): Decode composition sequence by calling
5938 decode_composition_emacs_mule.
5939 (ENCODE_COMPOSITION_EMACS_MULE): New macro.
5940 (encode_coding_emacs_mule): Changed from macro to function.
5941 If a text contains compositions, encode them correctly.
5942 (setup_coding_system): Set coding->commong_flags for emacs-mule so
5943 that decoding and encoding are required.
5944
5945 2000-12-27 Gerd Moellmann <gerd@gnu.org>
5946
5947 * xfaces.c (PT_PER_INCH): New macro.
5948 (xlfd_point_size): Compute real point size from font's pixel size.
5949 (pixel_point_size, build_scalable_font_name): Use PT_PER_INCH
5950 instead of 72.
5951
5952 * .gdbinit: Comment out the line pointing to the Lesstif source
5953 directory.
5954
5955 * window.c (Frecenter): Use displayed_window_lines instead
5956 of window_internal_height.
5957
5958 * xterm.c (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
5959 instead of x-toolkit-scroll-bars-p.
5960 (Vx_toolkit_scroll_bars): Renamed from x_toolkit_scroll_bars_p.
5961
5962 * w32term.c (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
5963 instead of x-toolkit-scroll-bars-p.
5964 (Vx_toolkit_scroll_bars): Renamed from x_toolkit_scroll_bars_p.
5965
5966 * dispnew.c (struct redisplay_history) [GLYPH_DEBUG]: New.
5967 (REDISPLAY_HISTORY_SIZE) [GLYPH_DEBUG]: New macro.
5968 (redisplay_history, history_idx, history_tick) [GLYPH_DEBUG]:
5969 New variables.
5970 (add_window_display_history, add_frame_display_history)
5971 (Fdump_redisplay_history) [GLYPH_DEBUG]: New functions.
5972 (build_frame_matrix_from_leaf_window): Remove unused code.
5973 (build_frame_matrix_from_leaf_window) [GLYPH_DEBUG]: Add to
5974 redisplay history.
5975 (update_frame) [GLYPH_DEBUG]: Add to redisplay history.
5976 (update_window) [GLYPH_DEBUG]: Likewise.
5977 (syms_of_display): Defsubr dump-redisplay-history.
5978
5979 2000-12-23 Gerd Moellmann <gerd@gnu.org>
5980
5981 * keyboard.c (echo_prompt): Always set current_kboard->echoptr to
5982 the end of the prompt. Set echo_after_prompt to the offset
5983 of echoptr in echobuf.
5984
5985 * xdisp.c (init_from_display_pos): Pop until the iterator's
5986 stack is empty; there may be frames for stretch or images
5987 on the stack.
5988
5989 * dispnew.c (save_frame_matrix, restore_frame_matrix): Removed.
5990 (save_or_restore_current_matrix): New function for the same
5991 purpose, but more efficient.
5992 (adjust_frame_glyphs_for_frame_redisplay): Use it.
5993
5994 2000-12-23 Eli Zaretskii <eliz@is.elta.co.il>
5995
5996 * xdisp.c (syms_of_xdisp): Fix last change.
5997
5998 2000-12-23 Gerd Moellmann <gerd@gnu.org>
5999
6000 * xdisp.c (syms_of_xdisp): Doc fix.
6001
6002 * xdisp.c (redisplay_window): Remove label restore_buffers;
6003 use finish_scroll_bars instead to make sure that scroll bars
6004 are redeemed. If we don't do this, flickering can result from
6005 scroll bars being destroyed and recreated.
6006
6007 2000-12-22 Jason Rumney <jasonr@gnu.org>
6008
6009 * w32term.c (w32_draw_bitmap): Fix drawing so it does not appear
6010 in the wrong colors when the foreground is not black.
6011 (expose_window): Don't redraw the window that's currently being
6012 updated.
6013
6014 2000-12-22 Gerd Moellmann <gerd@gnu.org>
6015
6016 * window.c (size_window): When setting the window's too_small_ok
6017 flag, compare old size with minimum size depending on WIDTH_P,
6018 don't compare with window_min_width.
6019
6020 * window.c (delete_window): Simplify somewhat.
6021 (Fset_window_configuration): Don't SET_FRAME_GARBAGED after
6022 freeing window matrices. The flag windows_or_buffers_changed is
6023 set, so the next redisplay will consider all windows; this should
6024 suffice.
6025
6026 2000-12-22 Kenichi Handa <handa@etl.go.jp>
6027
6028 * coding.c (ccl_coding_driver): Initialize ccl->cr_consumed.
6029
6030 * ccl.h (struct ccl_program): New member cr_consumed.
6031
6032 * ccl.c (CCL_WRITE_CHAR): Don't handle EOL conversion here.
6033 (CCL_READ_CHAR): Handle EOL conversion here.
6034 (ccl_driver) <CCL_ReadMultibyteChar2>: Likewise.
6035
6036 2000-12-21 Gerd Moellmann <gerd@gnu.org>
6037
6038 * xdisp.c (Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg GLYPHS.
6039
6040 * dispextern.h (GLYPH_EQUAL_P): Also compare pixel widths,
6041 otherwise tabs of different size compare equal.
6042
6043 * callint.c (Fcall_interactively): Prevent a compiler warning.
6044
6045 * print.c (print_unwind): Return nil.
6046 (PRINTDECLARE): Initialize all local variables.
6047 (print_preprocess): Add a default case.
6048
6049 * lisp.h (Qinhibit_point_motion_hooks): Declare extern.
6050
6051 * undo.c (Fprimitive_undo): Bind `inhibit-point-motion-hooks' to t.
6052
6053 * window.c (delete_window, Fsplit_window)
6054 (Fset_window_configuration): Calls to ensure_frame_matrix removed.
6055
6056 * dispextern.h (ensure_frame_matrix): Function declaration removed.
6057
6058 * dispnew.c (ensure_frame_matrix): Removed.
6059 (save_frame_matrix, restore_frame_matrix): New functions.
6060 (adjust_frame_glyphs_for_frame_redisplay): Use them.
6061
6062 * xdisp.c (dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
6063 [GLYPH_DEBUG]: Extended to dump glyphs in short form.
6064
6065 2000-12-21 Andrew Innes <andrewi@gnu.org>
6066
6067 * w32term.c (x_update_begin): Regenerate the palette here, rather
6068 than for each window.
6069
6070 * w32xfns.c (select_palette): Avoid calling SelectPalette if
6071 palette is NULL, since this corrupts memory! Also get
6072 display_info reference from frame.
6073
6074 2000-12-21 Jason Rumney <jasonr@gnu.org>
6075
6076 * w32bdf.c (w32_init_bdf_font): Fix test for valid bmp heap.
6077
6078 * w32term.c (x_draw_hollow_cursor): Delay obtaining the frame's DC
6079 to avoid returning without releasing it.
6080
6081 2000-12-21 Kenichi Handa <handa@etl.go.jp>
6082
6083 * keymap.c (push_key_description): Don't convert eight-bit-control
6084 and eight-bit-graphic to multibyte character.
6085
6086 * charset.c (Fmake_char_internal): If CHARSET doesn't have a
6087 generic character and CODE1 is nil, return the smallest character
6088 in CHARSET.
6089
6090 2000-12-20 Dave Love <fx@gnu.org>
6091
6092 * s/osf5-0.h (NSIG): Don't redefine.
6093
6094 2000-12-20 Stefan Monnier <monnier@cs.yale.edu>
6095
6096 * keymap.c (where_is_internal): Check ascii_sequence_p rather than
6097 excluding menu-bar and tool-bar.
6098 (Fwhere_is_internal): Check ascii_sequence_p when looking up the cache.
6099 (menu_item_p): Remove.
6100 (where_is_internal_1): Don't ignore menu-items.
6101
6102 2000-12-20 Gerd Moellmann <gerd@gnu.org>
6103
6104 * xdisp.c (hscroll_window_tree): Take window's min_hscroll
6105 into account.
6106
6107 * window.c (make_window): Initialize window's min_hscroll.
6108 (Fset_window_hscroll): Set window's hscroll and min_hscroll.
6109 (set_window_buffer, temp_output_buffer_show): Set min_hscroll
6110 to zero.
6111 (struct saved_window): New member min_hscroll.
6112 (SAVED_WINDOW_VECTOR_SIZE): Set to 17.
6113 (Fset_window_configuration): Set window's min_hscroll.
6114 (save_window_save): Save window's min_hscroll.
6115 (compare_window_configurations): Compare min_hscroll values.
6116
6117 * window.h (struct window): New member min_hscroll.
6118
6119 * keyboard.c (echo_prompt): Prevent a compiler warning.
6120
6121 * xdisp.c (try_cursor_movement): Fix last change. The real
6122 condition is that PT is at the end of the row, and should
6123 be displayed at the start of the next row.
6124
6125 * xdisp.c (try_cursor_movement): If we end on a partially
6126 visible line, end we already decided to scroll, return -1.
6127
6128 * dispextern.h (ensure_frame_matrix): Add prototype.
6129
6130 * window.c (delete_window, Fsplit_window)
6131 (Fset_window_configuration): Call ensure_frame_matrix.
6132
6133 * dispnew.c (fake_current_matrices, ensure_frame_matrix):
6134 New functions.
6135 (adjust_frame_glyphs_for_frame_redisplay): If display has been
6136 completed, call fake_current_matrices instead of marking frame
6137 garbaged.
6138
6139 2000-12-20 Jason Rumney <jasonr@gnu.org>
6140
6141 * w32fns.c (syms_of_w32fns): Initialize and staticpro tip_frame.
6142
6143 2000-12-19 Eli Zaretskii <eliz@is.elta.co.il>
6144
6145 * fns.c (Frequire): Doc fix.
6146
6147 2000-12-19 Gerd Moellmann <gerd@gnu.org>
6148
6149 * window.c (window_scroll_pixel_based): Don't use move_it_vertically.
6150
6151 * dispnew.c (direct_output_for_insert): Fix check for mini-window
6152 currently displaying a message.
6153
6154 * bytecode.c (toplevel) [CHECK_FRAME_FONT]: Include frame.h and
6155 xterm.h.
6156 (Fbyte_code) [CHECK_FRAME_FONT]: Check the selected frame's font.
6157
6158 2000-12-18 Andrew Innes <andrewi@gnu.org>
6159
6160 * w32.c (w32_strerror): New function.
6161
6162 * w32.h (w32_strerror): New extern.
6163
6164 * w32fns.c (Fw32_shell_execute): Use it.
6165
6166 2000-12-18 Gerd Moellmann <gerd@gnu.org>
6167
6168 * s/hpux10.h (_FILE_OFFSET_BITS): Undef again.
6169
6170 2000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
6171
6172 * msdos.c (IT_set_face): Obey inverse_video.
6173
6174 2000-12-18 Kenichi Handa <handa@etl.go.jp>
6175
6176 * dired.c (directory_files_internal): Always return decoded filenames.
6177
6178 2000-12-18 Gerd Moellmann <gerd@gnu.org>
6179
6180 * xterm.c (x_connection_closed): Prevent being called recursively
6181 because of an error condition in XtCloseDisplay.
6182
6183 * xdisp.c (init_iterator): If noninteractive, and the frame's
6184 face cache is null, make one.
6185
6186 * xfns.c (show_busy_cursor): Check for live frames more thoroughly.
6187
6188 * process.c (wait_reading_process_input): Check for pending
6189 input when running timers.
6190
6191 2000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
6192
6193 * msdos.c (IT_write_glyphs): Compute the glyph face from str->face_id.
6194
6195 2000-12-18 Kenichi Handa <handa@etl.go.jp>
6196
6197 * process.c (read_process_output): Don't run a filter if the code
6198 decoder produces nothing but carryover.
6199
6200 2000-12-17 Andrew Innes <andrewi@gnu.org>
6201
6202 * w32.c (sys_rename): Only check errno against EEXIST, and not
6203 EACCES, when determining whether rename failed because the target
6204 exists. This was resulting in indefinite looping on Windows 9x if
6205 the source file was locked by another process.
6206
6207 * w32fns.c (Ffile_system_info): New function.
6208 (syms_of_w32fns): Defsubr it.
6209
6210 2000-12-17 Gerd Moellmann <gerd@gnu.org>
6211
6212 * window.c (coordinates_in_window): Fix computation for
6213 position on vertical line between mode lines.
6214
6215 * xfns.c (unwind_create_frame): Return t if frame was deleted.
6216 Don't alter tip_frame or tip_window.
6217 (unwind_create_tip_frame): Set tip_frame to nil only if frame
6218 was deleted.
6219
6220 * w32fns.c (unwind_create_frame): Return t if frame was deleted.
6221 Don't alter tip_frame or tip_window.
6222 (unwind_create_tip_frame): Set tip_frame to nil only if frame
6223 was deleted.
6224
6225 2000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
6226
6227 * fileio.c (Fcopy_file): Rename the last argument to keep_time, to
6228 be consistent with the doc string. Reported by NAKAJIMA Mikio
6229 <minakaji@osaka.email.ne.jp>.
6230
6231 2000-12-16 Kenichi Handa <handa@etl.go.jp>
6232
6233 * xfaces.c (Vface_ignored_fonts): New variable.
6234 (x_face_list_fonts): Ignore fonts matching Vface_ignored_fonts.
6235 (syms_of_xfaces): Declare Vface_ignored_fonts as a Lisp variable.
6236
6237 2000-12-15 Gerd Moellmann <gerd@gnu.org>
6238
6239 * dispnew.c (update_window): Detect pending input every nth line
6240 updated, i.e. do it depending on real work done, and not on the
6241 vpos of the line.
6242
6243 * xterm.c (expose_window): Don't redraw the window that's
6244 currently being updated.
6245
6246 * window.c (Fset_window_point): Remove test for
6247 cursor_in_non_selected_windows.
6248
6249 * lread.c (read1): Recognize end of file after `\\'.
6250
6251 * xfns.c (x_create_tip_frame): Use unwind_create_tip_frame,
6252 not unwind_create_frame.
6253
6254 2000-12-15 Dave Love <fx@gnu.org>
6255
6256 * s/usg5-4.h (bcopy) [IRIX6]: Don't special-case definition of
6257 bcopy & al.
6258
6259 * s/irix6-5.h: #undef bcopy & al here. Include strings.h.
6260
6261 2000-12-15 Kenichi Handa <handa@etl.go.jp>
6262
6263 * coding.c (setup_coding_system): Clear all members of the struct
6264 coding_system at first.
6265 (detect_coding): Call detect_coding_mask with a correct MULTIBYTEP
6266 argument.
6267 (code_convert_region): Don't override coding->src_multibyte and
6268 coding->dst_multibyte.
6269
6270 * fns.c (Fmd5): Docstring improved.
6271
6272 2000-12-15 Miles Bader <miles@gnu.org>
6273
6274 * xdisp.c (window_box_height): Only use mode-line glyph-rows that
6275 are actually marked as mode-lines; otherwise use
6276 estimate_mode_line_height.
6277
6278 2000-12-14 Gerd Moellmann <gerd@gnu.org>
6279
6280 * editfns.c (Fformat): Prevent a buffer overrun when the format
6281 specifies a precision.
6282
6283 2000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
6284
6285 * msdos.c (Fmsdos_set_mouse_buttons): Signal an error if the
6286 argument is outside the range [2..3].
6287
6288 2000-12-14 Andrew Innes <andrewi@gnu.org>
6289
6290 * w32fns.c (Fx_hide_tip): Avoid unnecessary work when there's
6291 nothing to do. Bind inhibit-quit.
6292 (tip_frame): Make it a Lisp_Object.
6293 (x_create_tip_frame): Set tip_frame after it has been added to
6294 Vframe_list.
6295 (Fx_show_tip): Don't set tip_frame here.
6296 (image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]: New variables.
6297 (unwind_create_frame, unwind_create_tip_frame): New functions.
6298 (Fx_create_frame, x_create_tip_frame): Handle errors signaled
6299 while a frame is only partially constructed.
6300
6301 * w32term.c (clear_mouse_face): Treat tip_frame as a Lisp_Object.
6302 (x_free_frame_resources): New function.
6303 (x_destroy_window): Use it.
6304
6305 2000-12-14 Gerd Moellmann <gerd@gnu.org>
6306
6307 * xfns.c (Fx_backspace_delete_keys_p): New function.
6308 (syms_of_xfns): Defsubr it.
6309
6310 * config.in (HAVE_XKBGETKEYBOARD): Add.
6311
6312 2000-12-14 Kenichi Handa <handa@etl.go.jp>
6313
6314 * keyboard.c (echo_prompt): Argument type changed to Lisp_Object.
6315 Always store string in multibyte representation in echobuf.
6316 (echo_char): Always store string in multibyte representation in
6317 echobuf.
6318 (echo_now): Call message2_nolog with the arg MULTIBYTE 1.
6319 (read_key_sequence): Adjusted for the change of echo_prompt.
6320
6321 * fns.c (Fmd5): Docstring improved.
6322
6323 * lisp.h (detect_coding_system): Prototype adjusted.
6324
6325 * coding.c (ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
6326 (detect_coding_emacs_mule, detect_coding_iso2022,)
6327 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8)
6328 (detect_coding_utf_16, detect_coding_ccl): Make them static.
6329 New argument MULTIBYTEP. Callers changed.
6330 (detect_coding_mask, detect_coding_system): New argument
6331 MULTIBYTEP. Callers changed.
6332 (decode_coding_string): Set coding->src_multibyte and
6333 coding->dst_multibyte before calling detect_coding and detect_eol.
6334 Update them after some coding system is detected.
6335
6336 2000-12-13 Stefan Monnier <monnier@cs.yale.edu>
6337
6338 * keymap.c (get_keyelt): Only eval the filter if `autoload' is set.
6339
6340 * keyboard.c (menu_bar_items, tool_bar_items):
6341 Set `autoload' when looking up `tool-bar' or `menu-bar' submap.
6342
6343 2000-12-13 Gerd Moellmann <gerd@gnu.org>
6344
6345 * xfns.c (image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]:
6346 New variables.
6347 (unwind_create_frame, unwind_create_tip_frame): New functions.
6348 (Fx_create_frame, x_create_tip_frame): Handle errors signaled
6349 while a frame is only partially constructed.
6350
6351 * xterm.h (x_free_frame_resources): Declare.
6352
6353 * xterm.c (x_free_frame_resources): New function.
6354 (x_destroy_window): Use it.
6355
6356 * dispnew.c (update_window): If do_mouse_tracking is non-nil,
6357 don't interrupt the update for pending input initially, i.e.
6358 update at least some lines.
6359
6360 * keyboard.c (do_mouse_tracking): Make externally visible.
6361
6362 * xterm.c (x_term_init): Declare gray_bitmap_bits as `extern char *'.
6363
6364 * xfns.c (gray_bitmap_bits): Declare `char *'.
6365
6366 2000-12-12 Gerd Moellmann <gerd@gnu.org>
6367
6368 * xdisp.c (display_tool_bar_line): Make sure that tool bar
6369 lines start with a relief line.
6370
6371 2000-12-12 Dave Love <fx@gnu.org>
6372
6373 * window.c (Fdisplay_buffer): Doc fix.
6374 (Fwindow_list): Remove unused var.
6375
6376 * buffer.h (mmap_set_vars): Declare.
6377
6378 * window.h (Fset_window_point): Declare.
6379
6380 2000-12-12 Eli Zaretskii <eliz@is.elta.co.il>
6381
6382 * msdos.c (fast_find_position): Don't overstep the last window row.
6383 (IT_note_mouse_highlight): Initialize portion to -1. Remove unused
6384 variable `area'. When looking for a row under (X,Y), give up if some
6385 of the previous rows is not enabled.
6386
6387 2000-12-12 Gerd Moellmann <gerd@gnu.org>
6388
6389 * window.c (Fset_window_point): If displaying cursors in windows
6390 other than the selected window, make sure redisplay updates
6391 other windows to show the new value of point in the window.
6392
6393 * dispextern.h (cursor_in_non_selected_windows): Declare extern.
6394
6395 * buffer.c (Fkill_buffer): Don't Fset_buffer when testing if
6396 the buffer is the sole visible buffer when in the mini-buffer.
6397
6398 * xdisp.c (setup_echo_area_for_printing, with_echo_area_buffer):
6399 Bind `inhibit-read-only' to t.
6400 (unwind_with_echo_area_buffer): Use AREF.
6401
6402 * xfns.c (Fx_hide_tip): Simplified.
6403
6404 * s/freebsd.h, s/netbsd.h (GC_MARK_STACK): Use GC_MAKE_GCPROS_NOOPS
6405 instead of `1'.
6406
6407 * s/gnu-linux.h (GC_MARK_STACK): Define as GC_MAKE_GCPROS_NOOPS.
6408
6409 2000-12-11 Gerd Moellmann <gerd@gnu.org>
6410
6411 * xfns.c (Fx_hide_tip): Fix last change.
6412
6413 * xfns.c (Fx_hide_tip): Avoid unnecessary work when there's
6414 nothing to do. Bind inhibit-quit.
6415 (tip_frame): Make it a Lisp_Object.
6416 (x_create_tip_frame): Set tip_frame after it has been added to
6417 Vframe_list.
6418 (Fx_show_tip): Don't set tip_frame here.
6419
6420 * xterm.c (clear_mouse_face): Treat tip_frame as a Lisp_Object.
6421
6422 * xdisp.c (prepare_menu_bars): Changes for tip_frame being a
6423 Lisp_Object.
6424
6425 * dispextern.h: Change external declaration of tip_frame.
6426
6427 * keymap.c (Fkey_description): If KEYS is an empty key sequence,
6428 return an empty string.
6429
6430 * xdisp.c (try_cursor_movement): Check update_mode_lines instead
6431 of the window's update_mode_line flag, since the former is set by
6432 force-mode-line-update, not the latter. This makes
6433 column-number-mode slightly faster.
6434
6435 * xdisp.c (try_window_id) <all changes above window start>:
6436 Set the cursor.
6437
6438 2000-12-11 Paul Eggert <eggert@twinsun.com>
6439
6440 * config.in (HAVE_FTELLO): Remove.
6441 (HAVE_FSEEKO): Add.
6442 (_XOPEN_SOURCE): Remove; the large-file code no longer needs it.
6443 * lread.c (file_offset, file_tell): Depend on HAVE_FSEEKO, not
6444 HAVE_FTELLO.
6445 * s/hpux10.h (_FILE_OFFSET_BITS): Do not undef.
6446 * s/isc3-0.h, s/osf5-0.h: Update comment about _XOPEN_SOURCE.
6447
6448 2000-12-11 Miles Bader <miles@gnu.org>
6449
6450 * window.c (displayed_window_lines): Don't round up when
6451 converting empty space at bottom to lines.
6452 Handle non-newline-terminated final lines properly.
6453 (Fwindow_text_height): New function (used to be in lisp).
6454 (syms_of_window): Initialize it.
6455
6456 2000-12-09 Stefan Monnier <monnier@cs.yale.edu>
6457
6458 * syntax.c (scan_lists): Check that the right quote char has the
6459 right Sstring syntax when jumping over strings.
6460 (init_syntax_once): Use Smax rather than 13.
6461
6462 2000-12-09 Miles Bader <miles@gnu.org>
6463
6464 * window.c (Fpos_visible_in_window_p): Replace FULLY parameter
6465 with PARTIALLY, inverting the sense.
6466 (window_scroll_pixel_based): Scroll partially visible lines into
6467 place if we hit the beginning or end of the buffer.
6468 (displayed_window_lines): Don't include partially visible lines.
6469 (Fmove_to_window_line): Skip past any partially visible first line.
6470
6471 2000-12-08 Gerd Moellmann <gerd@gnu.org>
6472
6473 * keymap.c (current_minor_maps): Use malloc. Prevent a leak.
6474
6475 * tparam.c (tparam1): Change the way buffers are reallocated to be
6476 portable and less obfuscated.
6477
6478 * termcap.c (tgetent): Change the way buffers are reallocated to
6479 be portable and less obfuscated.
6480
6481 * macros.c (store_kbd_macro_char): Change the way buffers are
6482 reallocated to be portable and less obfuscated.
6483
6484 * lread.c (read1): Change the way buffers are reallocated to be
6485 portable and less obfuscated.
6486
6487 * doc.c (Fsubstitute_command_keys): Change the way buffers
6488 are reallocated so that it is portable.
6489
6490 2000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
6491
6492 * dosfns.c (Ffile_system_info): New function.
6493 (syms_of_dosfns): Defsubr it.
6494
6495 2000-12-07 Stefan Monnier <monnier@cs.yale.edu>
6496
6497 * alloc.c (gc_sweep): Add comment.
6498
6499 2000-12-07 Gerd Moellmann <gerd@gnu.org>
6500
6501 * sound.c (vox_configure): Change order of ioctls.
6502 Don't set SNDCTL_DSP_SPEED from bps, don't set SNDCTL_DSP_SAMPLESIZE.
6503 Ignore errors when changing volume.
6504 (vox_close): Don't reset the device.
6505
6506 * process.c (read_process_output): Make sure the process marker's
6507 position is valid when the process buffer is changed in
6508 after-change functions. W3 does that.
6509
6510 * xfns.c (x_free_gcs): New function.
6511
6512 * xterm.h (x_free_gcs): Add prototype.
6513
6514 * widget.c (EmacsFrameDestroy): Call x_free_gcs instead of
6515 freeing GCs here.
6516
6517 * xterm.c (x_destroy_window): Call x_free_gcs so that
6518 resources of non-toolkit X windows will be freed.
6519
6520 2000-12-07 Andrew Innes <andrewi@gnu.org>
6521
6522 * w32fns.c (xlfd_charset_of_font): Fix last change.
6523
6524 2000-12-06 Dave Love <fx@gnu.org>
6525
6526 * md5.h (__P): Don't define -- it comes from config.h.
6527
6528 * strftime.c: Change some #if foo to #ifdef foo.
6529
6530 2000-12-06 Andrew Innes <andrewi@gnu.org>
6531
6532 * w32term.h (CP_INVALID): Rename to CP_UNKNOWN.
6533
6534 * w32fns.c (xlfd_charset_of_font): Don't overwrite fontname argument.
6535 (w32_codepage_for_font): Rename CP_INVALID to CP_UNKNOWN.
6536 (w32_list_fonts): Don't choke if pattern doesn't specify a codepage.
6537
6538 2000-12-06 Gerd Moellmann <gerd@gnu.org>
6539
6540 * alloc.c (gc_sweep): Prevent symbols read during loadup
6541 from being freed.
6542
6543 * xdisp.c (underlying_face_id): New function.
6544 (handle_face_prop, face_before_or_after_it_pos): Use it
6545 to determine the face ``under'' a string. Let strings inherit
6546 the face of the buffer under them.
6547
6548 * xfaces.c (face_at_string_position): Update function comment.
6549
6550 * dispnew.c (adjust_glyph_matrix): Don't reuse a window's current
6551 matrix if the window's left position has changed; we need to
6552 redraw it in this case.
6553
6554 * dispextern.h (struct glyph_matrix): Add member window_left_x.
6555
6556 * window.c (coordinates_in_window): Check mouse on mode-line or
6557 header-line first.
6558
6559 * alloc.c (Fgarbage_collect): Dox fix. Return a list as
6560 advertized by the function documentation.
6561
6562 * window.c (syms_of_window): Doc fix.
6563
6564 * sound.c (vox_configure): Set volume for left and right channel.
6565 (sound_cleanup): Return nil.
6566
6567 * xdisp.c (move_it_by_lines): Fix paren typo.
6568
6569 * xterm.c (x_load_font): Don't use the font's max_bounds for
6570 computing the height of the font. If max_bounds' ascent or
6571 descent are greater than the font's ascent or descent, this means
6572 glyphs overlap, which should be handled now by redisplay.
6573
6574 * window.c (Veven_window_heights): New variable.
6575 (syms_of_window): DEFVAR_LISP it.
6576 (Fdisplay_buffer): Check Veven_window_heights before evening the
6577 window heights.
6578
6579 2000-12-06 Miles Bader <miles@gnu.org>
6580
6581 * xfaces.c (Finternal_set_lisp_face_attribute): If FRAME is `t',
6582 update `default-frame-alist' instead of setting no frame parameters.
6583
6584 2000-12-06 Kenichi Handa <handa@etl.go.jp>
6585
6586 * composite.c (update_compositions): Fix typo (use the correct
6587 variable).
6588
6589 2000-12-05 Jason Rumney <jasonr@gnu.org>
6590
6591 * md5.h: Remove underscores from function declarations.
6592 (__attribute__, __alignof__) [!__GNUC__]: Define.
6593
6594 * md5.c: Delay include of md5.h until after namespace cleaning.
6595
6596 * makefile.w32-in (fns.o): Depend on md5.h
6597 (md5.o): New target.
6598 (sunfns.o): Remove.
6599
6600 * makefile.nt: Likewise.
6601
6602 2000-12-05 Jason Rumney <jasonr@altavista.net>
6603
6604 * w32term.c (expose_area): Complete last change.
6605
6606 2000-12-05 Ken Raeburn <raeburn@gnu.org>
6607
6608 * minibuf.c: Include intervals.h.
6609
6610 2000-12-05 Jason Rumney <jasonr@gnu.org>
6611
6612 * w32term.c (x_produce_glyphs): If a font for a component of
6613 a composition is not found, use 1 pixel dot ascent and 0 dot
6614 descent value to avoid displaying terribly tall empty boxes.
6615 (expose_area): Pass x-coordinate relative to the exposed
6616 area to x_draw_glyphs instead of a window-relative coordinate.
6617
6618 2000-12-05 Gerd Moellmann <gerd@gnu.org>
6619
6620 * xdisp.c (next_element_from_ellipsis): Save face before selective
6621 display in saved_face_id, and set face_before_selective_p.
6622 (reseat_1): Reset face_before_selective_p.
6623 (append_space, extend_face_to_end_of_line): If iterator's
6624 face_before_selective_p is set, use the face from saved_face_id.
6625 (extend_face_to_end_of_line): For tty frames, make sure to
6626 use the right face id when producing spaces at the end of
6627 the line.
6628
6629 * dispextern.h (struct it): Add face_before_selective_p.
6630
6631 * keyboard.c (record_char): Don't record identical help-echo
6632 events in recent_keys.
6633
6634 * xterm.c [USE_X_TOOLKIT]: Close the display.
6635 (xim_close_dpy): Handle case that the display has been closed.
6636
6637 * xterm.c (x_destroy_window): Reset the frame's X window after
6638 destroying it.
6639
6640 * dispnew.c (adjust_glyph_matrix): Make sure to initialize local
6641 variable window_width.
6642 (line_draw_cost): Fix code skipping over spaces at the end of the
6643 line when must_write_spaces is not set.
6644 (scrolling_window): Fix code inserting runs in list of all runs.
6645
6646 2000-12-05 Kenichi Handa <handa@etl.go.jp>
6647
6648 * coding.c (setup_coding_system): Be sure to initialize
6649 coding->category_idx.
6650
6651 2000-12-04 Gerd Moellmann <gerd@gnu.org>
6652
6653 * xterm.c (PER_CHAR_METRIC): Removed because not used.
6654
6655 * xterm.c (expose_area): Pass x-coordinate relative to the exposed
6656 area to x_draw_glyphs instead of a window-relative coordinate.
6657
6658 * fileio.c (auto_save_error): Add parameter ERROR. Show the
6659 error in the message.
6660
6661 * keyboard.c (Fread_key_sequence): Don't start the busy cursor
6662 timer after having read a key. It's not good for code reading
6663 several keys in a loop, like an input method.
6664
6665 * fileio.c (Finsert_file_contents): When VISIT is t, don't
6666 record undo information for format-decode.
6667
6668 * undo.c (Fprimitive_undo): Bind inhibit-read-only to t if
6669 current buffer is read-only, not if it isn't.
6670
6671 * keyboard.c (record_char): Record `help-echo' input events
6672 in recent_keys only if they display some help. Don't record
6673 `help-echo' events as macro char.
6674
6675 2000-12-04 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6676
6677 * editfns.c (save_excursion_restore): Don't move point
6678 in another window if it is showing the wrong buffer.
6679 Avoid the call to Fwindow_live_p, for speed.
6680
6681 2000-12-04 Kenichi Handa <handa@etl.go.jp>
6682
6683 * xfaces.c (struct font_name): New member registry_priority.
6684 (split_font_name): Initialize the above member to zero.
6685 (concat_font_list): New function.
6686 (font_list): Include fonts of all alternative registries.
6687 (FONT_POINT_SIZE_QUANTUM): New macro.
6688 (better_font_p): Ignore point size difference less than
6689 FONT_POINT_SIZE_QUANTUM. Use registry_prioprity as a last resort.
6690
6691 * xterm.c (x_produce_glyphs): If a font for a component of
6692 a composition is not found, use 1 pixel dot ascent and 0 dot
6693 descent value to avoid displaying terribly tall empty boxes.
6694
6695 * ccl.c (stack_idx_of_map_multiple): Don't use C initializier.
6696
6697 2000-12-03 Ken Raeburn <raeburn@gnu.org>
6698
6699 * coding.h (code_convert_string1): Declare.
6700
6701 * fns.c (Fmd5): Pass lisp objects, not integers, to call3.
6702
6703 * lisp.h (Fmake_variable_buffer_local, Fbuffer_file_name): Declare.
6704
6705 2000-12-02 Jason Rumney <jasonr@gnu.org>
6706
6707 * w32term.c (w32_bdf_per_char_metric): Dereference pointer
6708 correctly for single byte character case.
6709 (w32_per_char_metric): Do not try to make any assumptions about
6710 the metrics of BDF fonts.
6711 (x_estimate_mode_line_height): If `mode-line' face
6712 hasn't a font, use that of the frame, as drawing glyphs does.
6713 (note_mouse_highlight): Change the cursor shape on the vertical
6714 border between windows [not enabled].
6715
6716 * w32term.h (struct w32_output): Add member horizontal_drag_cursor.
6717
6718 * w32fns.c (Fx_create_frame): Reintroduce the call to
6719 face-set-after-frame-defaults.
6720 (Vx_window_horizontal_drag_shape): New variable.
6721 (syms_of_xfns): DEFVAR_LISP it.
6722 (x_set_mouse_color): Create frame's horizontal_drag_cursor [not
6723 enabled].
6724
6725 2000-12-02 Simon Josefsson <simon@josefsson.org>
6726
6727 * fns.c (Fmd5): Use a different logic to decide the coding system
6728 to use.
6729
6730 * coding.h (Qwrite_region, Qcoding_system_error): Declare extern.
6731
6732 2000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
6733
6734 * fileio.c (Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
6735
6736 2000-12-01 Gerd Moellmann <gerd@gnu.org>
6737
6738 * xterm.c (x_calc_absolute_position): Don't subtract menubar's
6739 height for YNegative.
6740 (x_calc_absolute_position) [USE_MOTIF]: Use the column widget's
6741 height; also see comment there.
6742
6743 * window.c (coordinates_in_window): Handle computations for
6744 positions on the vertical bar and fringes differently for
6745 window-system frames. Consider some pixels near the vertical bar
6746 as on the bar if the frame doesn't have vertical scroll bars.
6747 Associate positions between mode or header lines with the
6748 right window, the left one.
6749
6750 2000-12-01 Jason Rumney <jasonr@gnu.org>
6751
6752 * w32term.c (w32_clear_window): Avoid clearing an invalid frame.
6753
6754 * w32xfns.c (get_frame_dc): Avoid changing the palette on an
6755 invalid frame.
6756
6757 2000-12-01 Gerd Moellmann <gerd@gnu.org>
6758
6759 * window.c (struct saved_window): Add members orig_top and orig_height.
6760 (SAVED_WINDOW_VECTOR_SIZE): Increment to 16.
6761 (save_window_save, Fset_window_configuration): Save/restore
6762 window's orig_top and orig_height.
6763
6764 2000-12-01 Jason Rumney <jasonr@gnu.org>
6765
6766 * w32term.c (x_draw_vertical_border): Fix call to w32_fill_rect.
6767
6768 * w32fns.c (x_set_cursor_color): Fix last change.
6769
6770 2000-11-30 Gerd Moellmann <gerd@gnu.org>
6771
6772 * xdisp.c (echo_area_display): If cursor is in the echo area, make
6773 sure that the next redisplay displays the minibuffer, so that
6774 the cursor will be replaced with what the minibuffer wants.
6775
6776 * xterm.c: Test USE_TOOLKIT_SCROLL_BARS everywhere with #ifdef and
6777 #ifndef instead of using #if.
6778 (XTread_socket) [USE_MOTIF] <KeyPress>: Call XmIsScrollBar only if
6779 USE_TOOLKIT_SCROLL_BARS is defined.
6780
6781 2000-11-30 Jason Rumney <jasonr@gnu.org>
6782
6783 * w32fns.c (x_set_cursor_color): Use x_update_cursor instead of
6784 x_display_cursor.
6785
6786 2000-11-30 Gerd Moellmann <gerd@gnu.org>
6787
6788 * fns.c (Fmd5): Doc fix.
6789
6790 2000-11-30 Simon Josefsson <simon@josefsson.org>
6791
6792 * fns.c (Fmd5): New function.
6793 (syms_of_fns): Defsubr md5.
6794
6795 * Makefile.in (obj): Add md5.o
6796
6797 2000-11-30 Gerd Moellmann <gerd@gnu.org>
6798
6799 * md5.h, md5.c: New files, taken from glibc.
6800
6801 * xmenu.c (popup_get_selection): Use xmalloc instead of malloc.
6802
6803 * xterm.c (x_estimate_mode_line_height): If `mode-line' face
6804 hasn't a font, use that of the frame, as drawing glyphs does.
6805
6806 2000-11-29 Stefan Monnier <monnier@cs.yale.edu>
6807
6808 * eval.c (Frun_hooks): Allow 0 arguments.
6809
6810 2000-11-29 Gerd Moellmann <gerd@gnu.org>
6811
6812 * xterm.c (XTmouse_position) [USE_X_TOOLKIT]: When the mouse
6813 is over the menu bar widget, say it's not on the frame.
6814
6815 * xfns.c (Fx_create_frame): Reintroduce the call to
6816 face-set-after-frame-defaults.
6817
6818 * eval.c (Fsignal): Reset handling_signal.
6819
6820 2000-11-28 Jason Rumney <jasonr@gnu.org>
6821
6822 * w32menu.c (add_menu_item): Reset menu item text when changing
6823 type to radio button.
6824
6825 2000-11-28 Gerd Moellmann <gerd@gnu.org>
6826
6827 * xselect.c: Update copyright.
6828
6829 * window.c (coordinates_in_window): If on a mode or header line,
6830 but sufficiently close to its start, return ``on vertical
6831 border''. This gives us a way to drag windows horizontally when
6832 using toolkit scroll bars.
6833
6834 * xterm.c (note_mouse_highlight): Change the cursor shape
6835 on the vertical border between windows.
6836
6837 * xterm.h (struct x_output): Add member horizontal_drag_cursor.
6838
6839 * xfns.c (Vx_window_horizontal_drag_shape): New variable.
6840 (syms_of_xfns): DEFVAR_LISP it.
6841 (x_set_mouse_color): Create frame's horizontal_drag_cursor.
6842
6843 * textprop.c (text_read_only): New function.
6844 (verify_interval_modification): Use it instead of signaling
6845 `text-read-only'. This makes it easier to catch this error
6846 with a breakpoint.:
6847
6848 * xdisp.c (forward_to_next_line_start): Check for newlines,
6849 not end of line, which includes CR.
6850
6851 2000-11-28 Kenichi Handa <handa@etl.go.jp>
6852
6853 * coding.c (Ffind_coding_systems_region_internal): Be sure to
6854 include no-conversion.
6855
6856 2000-11-27 Jason Rumney <jasonr@gnu.org>
6857
6858 * w32fns.c (w32_load_system_font): Always mark font as double byte
6859 if codepage is unicode.
6860
6861 2000-11-27 Gerd Moellmann <gerd@gnu.org>
6862
6863 * xdisp.c (forward_to_next_line_start): If already on a newline,
6864 just consume it to avoid unintended skipping over invisible text below.
6865
6866 * keyboard.c (lucid_event_type_list_p): Handle `help-echo',
6867 `vertical-line', `mode-line' and `header-line' events.
6868
6869 * xdisp.c (try_window_id): Avoid starting to display in the middle
6870 of a character, a TAB for instance. This is easier than to set
6871 up the iterator exactly, and it's not a frequent case, so the
6872 additional effort wouldn't really pay off.
6873
6874 2000-11-26 Andrew Choi <akochoi@i-cable.com>
6875
6876 * emacs.c (main) [macintosh]: Call syms_of_frame before calling
6877 init_window_once.
6878
6879 2000-11-25 Jason Rumney <jasonr@gnu.org>
6880
6881 * keyboard.c (make_lispy_event) [mouse_wheel, drag_n_drop]:
6882 Args to window_from_coordinates should be pixel coordinates.
6883
6884 * w32fns.c (x_to_w32_font): Do not filter out italic fonts, as new
6885 redisplay handles them properly.
6886
6887 2000-11-25 Miles Bader <miles@gnu.org>
6888
6889 * indent.c (compute_motion): Keep pos_byte in sync with pos.
6890
6891 2000-11-24 Jason Rumney <jasonr@gnu.org>
6892
6893 * w32.c (init_environment): Set LANG environment variable based on
6894 locale settings, if not set.
6895
6896 * w32fns.c (x_set_tool_bar_lines): Clear internal border when
6897 making tool bar smaller. When clearing the frame, also
6898 clear current matrices. Clear frame when tool bar disappears.
6899 Don't use more lines for the tool-bar than is available.
6900 (x_change_window_heights): New function.
6901
6902 2000-11-24 Gerd Moellmann <gerd@gnu.org>
6903
6904 * xdisp.c (init_from_display_pos): If POS says we're already after
6905 an overlay string ending at POS, make sure to pop the iterator
6906 because it will be in front of that overlay string. When POS is
6907 ZV, we've thereby also ``processed'' overlay strings at ZV.
6908
6909 * xfaces.c (lface_from_face_name): Function comment fix.
6910
6911 2000-11-24 Miles Bader <miles@gnu.org>
6912
6913 * xdisp.c (display_menu_bar, display_mode_line): Change the way we
6914 apply `mode-line-inverse-video' -- zero means force display using
6915 the default face, non-zero means display using the specialized face.
6916 (syms_of_xdisp): `mode-line-inverse-video' defaults to true again.
6917
6918 2000-11-23 Kenichi Handa <handa@etl.go.jp>
6919
6920 * alloc.c (Fmake_string): Use MAX_MULTIBYTE_LENGTH, instead of
6921 hard coded `4'.
6922
6923 2000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
6924
6925 * coding.c (decode_coding_emacs_mule): Fix the case of
6926 CODING_EOL_LF, which used uninitialized value of c.
6927
6928 2000-11-23 Stefan Monnier <monnier@cs.yale.edu>
6929
6930 * xdisp.c (syms_of_xdisp): Make fontification-functions buffer-local.
6931
6932 2000-11-22 Gerd Moellmann <gerd@gnu.org>
6933
6934 * buffer.c (Fmake_indirect_buffer): Don't treat nil as a
6935 buffer object.
6936
6937 * frame.h (struct frame): Replace desired_tool_bar_items,
6938 current_tool_bar_items, n_desired_tool_bar_items,
6939 n_current_tool_bar_items with tool_bar_items and n_tool_bar_items.
6940
6941 * frame.c (make_frame): Change initialization of tool bar
6942 items accordingly.
6943
6944 * xterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
6945 Change references to members deleted from struct frame to use the
6946 new ones.
6947
6948 * xdisp.c (update_tool_bar, build_desired_tool_bar_string): Change
6949 references to members deleted from struct frame to use the new ones.
6950
6951 * dispnew.c (update_frame): Do nothing with frame's tool bar items.
6952
6953 * alloc.c (mark_object) <frame>: Mark tool bar items differently.
6954
6955 * w32term.c (x_tool_bar_item, w32_handle_tool_bar_click)
6956 (note_tool_bar_highlight): Change references to members deleted
6957 from struct frame to use the new ones.
6958
6959 2000-11-23 Miles Bader <miles@gnu.org>
6960
6961 * xdisp.c (display_menu_bar): Or `mode-line-inverse-video' with
6962 the face's inverse-video attribute, rather than overriding it.
6963
6964 2000-11-22 Gerd Moellmann <gerd@gnu.org>
6965
6966 * xfns.c (x_set_tool_bar_lines): Clear internal border when
6967 making tool bar smaller.
6968
6969 2000-11-22 Dave Love <fx@gnu.org>
6970
6971 * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): Don't define.
6972
6973 2000-11-22 Miles Bader <miles@gnu.org>
6974
6975 * keyboard.c (Vminibuffer_message_timeout): New variable.
6976 (command_loop_1): Use it to determine message timeout.
6977 (syms_of_keyboard): Initialize it.
6978
6979 * xdisp.c (syms_of_xdisp): `mode-line-inverse-video' defaults to nil.
6980
6981 2000-11-22 Kenichi Handa <handa@etl.go.jp>
6982
6983 * sysdep.c: Move the code for declaring h_errno after #include
6984 <netdb.h>.
6985
6986 2000-11-21 Gerd Moellmann <gerd@gnu.org>
6987
6988 * xfns.c (Fx_hide_tip) [USE_LUCID]: Add a hack to redisplay
6989 the menu bar when the tooltip is unmapped.
6990
6991 * buffer.c (Fkill_buffer): Notice if the buffer to kill is the
6992 sole visible buffer when we're currently in the mini-buffer, and
6993 give up if so.
6994
6995 2000-11-21 Jason Rumney <jasonr@gnu.org>
6996
6997 * w32select.c (Fw32_set_clipboard_data): Save a copy of what is
6998 put on the clipboard.
6999 (Fw32_get_clipboard_data): Compare data on clipboard with saved
7000 copy of what Emacs last put there. If they are the same, do not
7001 use the clipboard copy to avoid losing data due to coding conversions.
7002
7003 2000-11-22 Miles Bader <miles@gnu.org>
7004
7005 * minibuf.c (Vminibuffer_prompt_properties): New variable.
7006 (syms_of_minibuf): Initialize it.
7007 (read_minibuf): Add properties from Vminibuffer_prompt_properties
7008 to prompt, don't make read-only.
7009
7010 2000-11-21 Gerd Moellmann <gerd@gnu.org>
7011
7012 * bytecode.c (Fbyte_code) <Bvarbind, Bunwind_protect>:
7013 Add BEFORE/AFTER_POTENTIAL_GC.
7014
7015 * s/hpux10.h (_FILE_OFFSET_BITS): Undef.
7016
7017 * buffer.c (mmap_free_1): Avoid a compiler warning.
7018
7019 * term.c, cm.c: Don't try to include termcap.h; see comment there.
7020
7021 2000-11-21 Kenichi Handa <handa@etl.go.jp>
7022
7023 * s/sol2-5.h: Move #undef USE_MMAP_FOR_BUFFERS out of #if 0
7024 ... #endif scope.
7025
7026 2000-11-20 Gerd Moellmann <gerd@gnu.org>
7027
7028 * xfns.c (x_create_tip_frame): Use CWSaveUnder only if the
7029 screen supports it.
7030
7031 * s/gnu-linux.h: Don't use `#cpu'.
7032
7033 * buffer.c (MAP_FAILED): Define it as `((void *) -1)' if it's
7034 not defined in mman.h.
7035
7036 * xterm.c (scroll_bar_windows, scroll_bar_windows_size): New variables.
7037 (x_send_scroll_bar_event): Store the window in scroll_bar_windows
7038 and store an index in the XClientMessageEvent. Storing a
7039 Lisp_Object or pointer can fail on a 64 bit system, since X only
7040 transfers 32 bits.
7041 (x_scroll_bar_to_input_event): Get the window from scroll_bar_windows.
7042
7043 2000-11-20 Dave Love <fx@gnu.org>
7044
7045 * Makefile.in (LIBX): Reorder for -lX11 after -lXpm.
7046
7047 2000-11-20 Gerd Moellmann <gerd@gnu.org>
7048
7049 * s/sol2-5.h (USE_MMAP_FOR_BUFFERS): Undefine.
7050
7051 2000-11-20 Kenichi Handa <handa@etl.go.jp>
7052
7053 * charset.c (get_new_private_charset_id): Don't limit CHARSET_ID
7054 by WIDTH.
7055
7056 * alloc.c (make_string): Fix previous change. Be sure to make
7057 unibyte string correctly.
7058
7059 2000-11-19 Gerd Moellmann <gerd@gnu.org>
7060
7061 * window.c (Fwindow_list): Change parameter list to be XEmacs
7062 compatible.
7063 (window_list_1): New function.
7064 (window_loop): Use it instead of Fwindow_list.
7065
7066 * sysdep.c (emacs_ospeed): New variable.
7067 (toplevel): Don't declare ospeed extern.
7068 (init_baud_rate): Use emacs_ospeed instead of ospeed.
7069
7070 * termcap.c (ospeed): Remove.
7071 (tputs) [!emacs]: Remove unused code.
7072 (tgetent): Avoid a compiler warning.
7073
7074 * xterm.c (x_set_toolkit_scroll_bar_thumb, x_scroll_bar_create)
7075 (x_scroll_bar_remove, XTset_vertical_scroll_bar): Call
7076 SCROLL_BAR_X_WIDGET with additional argument DPY.
7077
7078 * xterm.h (struct scroll_bar): Members x_widget_low, x_widget_high
7079 removed.
7080 (SCROLL_BAR_X_WIDGET): Get the widget via XtWindowToWidget.
7081 Take the X display as additional argument.
7082 (SET_SCROLL_BAR_X_WIDGET): Store the window of the widget, since
7083 `Widget' is a pointer type that's not easily stored in Lisp_Object
7084 form in a portable way.
7085
7086 * dispnew.c (update_text_area): Fix last change.
7087
7088 2000-11-18 Gerd Moellmann <gerd@gnu.org>
7089
7090 * xdisp.c: Use BINDING_STACK_SIZE throughout.
7091
7092 * xfns.c (x_set_tool_bar_lines): When clearing the frame, also
7093 clear current matrices.
7094
7095 * buffer.c (mmap_enlarge): Don't print a message on stderr
7096 if mapping new memory at the end of the existing region fails.
7097
7098 * dispnew.c (update_text_area): Don't skip over equal glyphs
7099 when the last current glyph overlaps the glyph to its right.
7100
7101 2000-11-18 Miles Bader <miles@gnu.org>
7102
7103 * xdisp.c (message_log_check_duplicate): Let "..."-detection match
7104 lines that *end* with "..." too (that's the most common case!).
7105
7106 2000-11-18 Gerd Moellmann <gerd@gnu.org>
7107
7108 * xdisp.c (resize_mini_window): Temporarily change to the
7109 mini-window's buffer if necessary.
7110
7111 * xfns.c (Fx_show_tip): Use default y-offset of -10 so that
7112 the tooltip obscures less text under it.
7113
7114 2000-11-17 Gerd Moellmann <gerd@gnu.org>
7115
7116 * puresize.h (BASE_PURESIZE): Increase to 700000.
7117
7118 2000-11-18 Jason Rumney <jasonr@gnu.org>
7119
7120 * w32term.c (w32_draw_bitmap): Use face to set colors.
7121
7122 2000-11-17 Dave Love <fx@gnu.org>
7123
7124 * lread.c (Fload): Fix #ifdef for pcc.
7125
7126 2000-11-17 Gerd Moellmann <gerd@gnu.org>
7127
7128 * xdisp.c (pos_visible_p): Compute the default character height
7129 differently.
7130
7131 2000-11-16 Gerd Moellmann <gerd@gnu.org>
7132
7133 * xdisp.c (pos_visible_p): Handle case that we reach ZV without
7134 knowing the line's height; use the default font's height in that case.
7135
7136 * xfaces.c (weight_table): Add `demi' with the same meaning as
7137 `demibold'.
7138
7139 2000-11-16 Kenichi Handa <handa@etl.go.jp>
7140
7141 * dispnew.c (null_row): New global static variable.
7142 (clear_glyph_row): Delete local static variable null_row.
7143
7144 2000-11-15 Jason Rumney <jasonr@gnu.org>
7145
7146 * w32term.c (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
7147 (w32_alloc_lighter_color): Use new brightness calculations from
7148 xterm.c. Scale delta to be in the range expected by W32.
7149 (w32_draw_relief_rect): Use frame relief colors.
7150
7151 2000-11-15 Gerd Moellmann <gerd@gnu.org>
7152
7153 * frame.c (syms_of_frame_1): Removed; code moved to syms_of_frame.
7154 (Qinhibit_default_face_x_resources): New variable.
7155 (syms_of_frame): Initialize it.
7156 (Fmodify_frame_parameters): Bind inhibit-default-face-x-resources.
7157
7158 * xdisp.c (pos_visible_p): Improve function comment.
7159
7160 * lisp.h (BINDING_STACK_SIZE): New macro.
7161
7162 * dired.c (directory_files_internal) [EAGAIN || EINTR]: Retry
7163 reading the directory if readdir returns null and errno is EAGAIN
7164 or EINTR.
7165
7166 2000-11-14 Stefan Monnier <monnier@cs.yale.edu>
7167
7168 * xdisp.c (try_scrolling): Set scroll_max to max of scroll_* args
7169 so setting scroll-step to 1 doesn't defeat scroll-conservatively.
7170 Set amount_to_scroll to max of dx and scroll_step so that
7171 scroll-conservatively doesn't defeat scroll-step>1.
7172 (syms_of_xdisp): Add a hint in scroll-step's docstring to use
7173 scroll-conservatively for line-at-a-time scrolling.
7174
7175 2000-11-14 Gerd Moellmann <gerd@gnu.org>
7176
7177 * window.c (Fpos_visible_in_window_p): Call pos_visible with
7178 extra argument.
7179
7180 * xdisp.c (current_mode_line_height, current_header_line_height):
7181 New variables.
7182 (init_xdisp): Initialize them.
7183 (pos_visible_p): Add parameter EXACT_MODE_LINE_HEIGHTS_P. Compute
7184 and use exact mode line heights if it is set.
7185
7186 * lisp.h (pos_visible_p): Change prototype.
7187
7188 * dispextern.h (CURRENT_MODE_LINE_HEIGHT)
7189 (CURRENT_HEADER_LINE_HEIGHT): Look at current_mode_line_height
7190 and current_header_line_height first.
7191 (current_mode_line_height, current_header_line_height):
7192 Declare extern.
7193
7194 2000-11-14 Miles Bader <miles@lsi.nec.co.jp>
7195
7196 * xterm.c (x_alloc_lighter_color): Use real brightness calculation.
7197 Just use FACTOR/2 instead of HIGHLIGHT_COLOR_DARK_BOOST.
7198 (HIGHLIGHT_COLOR_DARK_BOOST): Macro removed.
7199
7200 2000-11-14 Miles Bader <miles@gnu.org>
7201
7202 * xterm.c (x_alloc_lighter_color): Include an additive component
7203 too for dark colors, because FACTOR isn't enough.
7204 (HIGHLIGHT_COLOR_DARK_BOOST, HIGHLIGHT_COLOR_DARK_BOOST_LIMIT):
7205 New macros.
7206
7207 2000-11-13 Gerd Moellmann <gerd@gnu.org>
7208
7209 * keyboard.c (show_help_echo): Call message3_nolog with number of
7210 bytes in the help string as 2nd parameter, instead of the number
7211 of characters.
7212
7213 2000-11-13 Miles Bader <miles@gnu.org>
7214
7215 * lread.c (openp): Return -2 instead of 0 for the `remote file' case.
7216 (Fload): Use new openp return protocol.
7217 Don't try to use Vload_source_file_function to load .elc files.
7218 * xfns.c (x_create_bitmap_from_file, x_find_image_file): Use new
7219 openp return protocol.
7220 * w32fns.c (x_create_bitmap_from_file, x_find_image_file): Likewise.
7221
7222 2000-11-11 Kenichi Handa <handa@etl.go.jp>
7223
7224 * syssignal.h: Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
7225
7226 * m/ibmrs6000.h (BROKEN_SIGAIO, BROKEN_SIGPTY, BROKEN_SIGPOLL):
7227 Defined these macros.
7228 (NLIST_STRUCT): Avoid re-defining it.
7229
7230 * s/hpux10.h (C_SWITCH_X_SYSTEM): Include -I/usr/include/X11R6 and
7231 -I/usr/contrib/X11R6/include.
7232 (LD_SWITCH_X_DEFAULT): Include -L/usr/lib/X11R6.
7233
7234 2000-11-10 Jason Rumney <jasonr@gnu.org>
7235
7236 * w32term.h (CP_8BIT, CP_UNICODE, CP_INVALID): New pseudo-codepages.
7237
7238 * w32term.c (w32_encode_char): Handle CP_UNICODE specially.
7239 (w32_use_unicode_for_codepage): Use new pseudo-codepages.
7240
7241 * w32fns.c (Qw32_charset_hangeul): Rename to match w32 headers.
7242 (Qw32_charset_vietnamese): New symbol.
7243 (xlfd_charset_of_font): New function.
7244 (w32_load_system_font): Use it.
7245 (x_to_w32_charset): Use Fassoc to find charset info. Special case
7246 when Vw32_charset_info_alist is nil to ensure default face always
7247 has font. Use Fcar and Fcdr for safety.
7248 (w32_to_x_charset): Use Vw32_charset_info_alist for mappings.
7249 (w32_codepage_for_font): Use xlfd_charset_of_font. Use new
7250 pseudo-codepages for special cases.
7251 (w32_to_x_font): New parameter to allow charset portion to be
7252 specified where there is many to one mapping. Callers changed.
7253 (w32_list_fonts): Avoid listing fonts that won't display.
7254
7255 2000-11-10 Gerd Moellmann <gerd@gnu.org>
7256
7257 * xfaces.c (Vface_alternative_font_registry_alist): New variable.
7258 (font_list_1): Renamed from font_list.
7259 (font_list): New function, trying alternative registries from
7260 Vface_alternative_font_registry_alist.
7261 (Finternal_set_alternative_font_registry_alist): New function.
7262 (syms_of_xfaces): Initialize and Staticpro
7263 Vface_alternative_font_registry_alist.
7264 Defsubr Finternal_set_alternative_font_registry_alist.
7265
7266 2000-11-09 Ken Raeburn <raeburn@gnu.org>
7267
7268 * lisp.h (Flooking_at): Declare.
7269
7270 2000-11-09 Gerd Moellmann <gerd@gnu.org>
7271
7272 * dired.c (directory_files_internal): Fix a braino.
7273
7274 * dired.c (directory_files_internal): Add missing GCPRO's.
7275 Some cleanup.
7276
7277 2000-11-08 Gerd Moellmann <gerd@gnu.org>
7278
7279 * xdisp.c (syms_of_xdisp): Change doc of max-mini-window-height.
7280 (resize_mini_window): Return quickly if Vresize_mini_window is
7281 nil. Don't return if Vmax_mini_window_height is nil.
7282
7283 * xdisp.c (Vresize_mini_window, Qgrow_only): New variables.
7284 (syms_of_xdisp): Initialize them.
7285 (resize_mini_window): Act according to the setting of
7286 Vresize_mini_window.
7287 (syms_of_xdisp): Initialize Vmenu_bar_update_hook to nil.
7288
7289 * xterm.c (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Map the
7290 scroll bar widget after configuring it, so that it will appear at
7291 the right position from the start.
7292 (XTredeem_scroll_bar): Cleaned up.
7293
7294 2000-11-08 Kenichi Handa <handa@etl.go.jp>
7295
7296 * xterm.c (VCENTER_BASELINE_OFFSET): Fix previous change. If the
7297 font is taller than the frame line, we don't have to bias the
7298 division by two.
7299
7300 * w32term.c (VCENTER_BASELINE_OFFSET): Likewise.
7301
7302 2000-11-07 Dave Love <fx@gnu.org>
7303
7304 * config.in (HAVE_MKSTEMP): Add.
7305
7306 * callproc.c (Fcall_process_region) [HAVE_MKSTEMP]: Use it.
7307
7308 2000-11-07 Gerd Moellmann <gerd@gnu.org>
7309
7310 * window.c (Fset_window_configuration): Don't try to preserve
7311 point in the current buffer, if that buffer is displayed in more
7312 than one window.
7313
7314 * xfaces.c (lookup_named_face): If default face isn't realized,
7315 try to realize it. Return -1 if not successful.
7316 (Fx_list_fonts): Handle case that face cannot be determined.
7317 (Fface_font): Likewise.
7318
7319 2000-11-06 Gerd Moellmann <gerd@gnu.org>
7320
7321 * window.c (displayed_window_lines): Detect partially
7322 visible lines at the bottom correctly.
7323
7324 2000-11-06 Stefan Monnier <monnier@cs.yale.edu>
7325
7326 * fileio.c (Fwrite_region): Use `visiting' rather than `visit'
7327 when ensuring we don't do visit in indirect buffer.
7328
7329 2000-11-06 Kenichi Handa <handa@etl.go.jp>
7330
7331 * composite.h (compose_chars_in_text): Add prototype.
7332
7333 * composite.c (Vcomposition_function_table): New variable.
7334 (Qcomposition_function_table): New variable.
7335 (run_composition_function): Call
7336 Vcompose_chars_after_function with three arguments.
7337 (compose_chars_in_text): New function.
7338 (syms_of_composite): Modified the doc-string of
7339 Vcompose_chars_after_function. Declare composition-function-table
7340 as a lisp variable, and initialize it.
7341
7342 * xfns.c (x_encode_text): Suppress producing escape sequences for
7343 composition.
7344
7345 * xselect.c: Include composite.h.
7346 (selection_data_to_lisp_data): Call compose_chars_in_text on STR.
7347
7348 2000-11-05 Andrew Innes <andrewi@gnu.org>
7349
7350 * w32term.c (x_produce_glyphs): Fix typo in enum name.
7351
7352 * sysdep.c (read_input_waiting): Remove extraneous argument to
7353 read_socket_hook.
7354
7355 * w32fns.c (Fx_server_version): Include w32_build_number in the
7356 return list.
7357
7358 * w32heap.c (w32_build_number): New variable.
7359 (cache_system_info): Set it.
7360
7361 * w32heap.h (w32_build_number): Add extern.
7362
7363 * emacs.c (syms_of_emacs): Update docstring for
7364 system-configuration, to reflect the actual usage on MS-Windows.
7365
7366 2000-10-31 Gerd Moellmann <gerd@gnu.org>
7367
7368 * keyboard.c (read_char) <wrong_kboard>: Make sure that we
7369 process idle timers while waiting for another event.
7370
7371 * dispnew.c (update_frame_line): Handle case where spaces in
7372 the default face are colored.
7373
7374 * xdisp.c (redisplay_tool_bar): Don't set fonts_changed_p if
7375 window height hasn't changed.
7376
7377 2000-10-31 Jason Rumney <jasonr@gnu.org>
7378
7379 * w32term.c (x_produce_glyphs): Handle composite characters.
7380 (x_draw_glyph_string_foreground)
7381 (x_draw_composite_glyph_string_foreground): Restore old font.
7382
7383 2000-10-31 Miles Bader <miles@lsi.nec.co.jp>
7384
7385 * minibuf.c (read_minibuf): Reset the undo history just before
7386 starting the recursive-edit.
7387
7388 2000-10-30 Gerd Moellmann <gerd@gnu.org>
7389
7390 * xfaces.c (menu_face_change_count): New variable.
7391 (Finternal_set_lisp_face_attribute): Increment it for changes
7392 of the `menu' face.
7393 (realize_basic_faces): Reflect changes in the `menu' faces
7394 in menu bars.
7395
7396 * xdisp.c (try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
7397 dy obtained from the iterator's y-position after moving from
7398 scroll_margin_pos to PT; see comment there.
7399
7400 * xdisp.c (safe_eval_handler): Call add_to_log.
7401
7402 * xfaces.c (resolve_face_name): Handle case that FACE_NAME
7403 is not a symbol or string.
7404
7405 * xdisp.c (echo_area_display): Don't perform a display update from
7406 inside redisplay. The update will happen anyway at the end of
7407 redisplay, and it can confuse redisplay (GC messages while
7408 redisplaying, for instance.)
7409
7410 2000-10-30 Stefan Monnier <monnier@cs.yale.edu>
7411
7412 * xrdb.c (x_load_resources): Use the class name in the defaults.
7413
7414 * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
7415 (regex_compile): Catch bogus \(\1\).
7416
7417 2000-10-30 Gerd Moellmann <gerd@gnu.org>
7418
7419 * xterm.c (x_alloc_nearest_color): Fix last change to compare
7420 RGB values.
7421
7422 * xterm.c (x_alloc_nearest_color): If allocation succeeds, and
7423 we have a color cache, check that the cached color equals the
7424 allocated color. If not, clear the color cache.
7425
7426 * window.c (displayed_window_lines): Change buffers if necessary.
7427 Fix computation of displayed lines.
7428
7429 * keyboard.c (syms_of_keyboard): Change DEFVAR_LISP of
7430 update_menu_bindings to DEFVAR_BOOL.
7431
7432 2000-10-30 Kenichi Handa <handa@etl.go.jp>
7433
7434 * search.c (Fset_match_data): Be sure to make search_regs always sane.
7435
7436 * puresize.h (BASE_PURESIZE): Increase to 680000.
7437
7438 * fns.c (Foptimize_char_table): Fix arg for CHARSET_DIMENSION.
7439
7440 2000-10-29 Jason Rumney <jasonr@gnu.org>
7441
7442 * w32term.h (FONT_DESCENT): Negate descent of BDF fonts.
7443
7444 * w32term.c (w32_bdf_per_char_metric): Negate descent.
7445 (w32_cache_char_metrics): Handle possibility that 'x' does not
7446 exist in a BDF font.
7447 (W32_TEXTOUT): w32_BDF_TextOut wants number of bytes not chars.
7448
7449 * w32bdf.h (bdffont): Add nchars.
7450
7451 * w32bdf.c (set_bdf_font_info): Set it.
7452 (w32_BDF_TextOut): Swap byte order of double byte characters.
7453 (w32_load_bdf_font): Set double_byte_p based on bdf_font->nchars.
7454
7455 2000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
7456
7457 * frame.c (Fframe_parameters): Fix the change from 2000-10-16:
7458 don't override the colors in frame's param_alist, unless they are
7459 unspecified.
7460
7461 * term.c (reassert_line_highlight): If inverse_video is non-zero,
7462 reverse the effect of the highlight flag.
7463
7464 2000-10-27 Ken Raeburn <raeburn@gnu.org>
7465
7466 * window.h (Fwindow_live_p): Declare.
7467
7468 * undo.c (record_delete): Check that last_undo_buffer is really a
7469 buffer before applying XBUFFER to it.
7470
7471 * keymap.c (where_is_internal): Pass lisp object, not integer, to
7472 Faref.
7473
7474 2000-10-27 Stefan Monnier <monnier@cs.yale.edu>
7475
7476 * lisp.h (KEYMAPP): New macro.
7477 (get_keymap): Remove.
7478 (get_keymap_1): Rename get_keymap.
7479
7480 * keyboard.h (get_keymap_1, Fkeymapp): Remove prototype.
7481
7482 * xterm.c (note_mode_line_highlight): Use KEYMAPP.
7483
7484 * xmenu.c (single_submenu): Use KEYMAPP.
7485 (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp.
7486 Use KEYMAPP rather than Fkeymapp.
7487
7488 * w32term.c (note_mode_line_highlight): Use KEYMAPP.
7489
7490 * w32menu.c (True, False): Remove (use TRUE and FALSE instead).
7491 (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp.
7492 Use KEYMAPP rather than Fkeymapp.
7493 (single_submenu): Use KEYMAPP.
7494 (w32_menu_show, w32_dialog_show): Use TRUE.
7495
7496 * minibuf.c (Fread_from_minibuffer): Update call to get_keymap.
7497
7498 * keymap.c (KEYMAPP): Remove (moved to lisp.h).
7499 (Fkeymapp): Use KEYMAPP.
7500 (get_keymap): Rename from get_keymap_1. Remove old def.
7501 Return t when autoload=0 and error=0 and the keymap needs autoloading.
7502 (Fcopy_keymap): Check (eq (car x) 'keymap) rather than using Fkeymapp.
7503 (Fminor_mode_key_binding): Don't raise an error if the binding
7504 is not a keymap.
7505 (Fuse_global_map, Fuse_local_map): Allow autoloading.
7506 (Faccessible_keymaps): Fetch keymaps rather than checking Fkeymapp.
7507
7508 * keyboard.c (read_char): get_keymap_1 -> get_keymap.
7509 Allow Vspecial_event_map to be autoloaded.
7510 (menu_bar_items): Fetch the keymap rather than using keymapp.
7511 (menu_bar_one_keymap): No need to follow func-indirect any more.
7512 (parse_menu_item): get_keymap_1 -> get_keymap.
7513 (tool_bar_items): Fetch the keymap rather than using keymapp.
7514 (read_key_sequence): Use KEYMAPP.
7515
7516 * intervals.c (get_local_map): Use get_keymap rather than following
7517 function-indirections explicitly.
7518
7519 * doc.c (Fsubstitute_command_keys): get_keymap_1 -> get_keymap.
7520
7521 2000-10-27 Jason Rumney <jasonr@gnu.org>
7522
7523 * w32fns.c (Fx_create_frame): Make default fontsize on w32 10
7524 point, as Windows has oversized fonts.
7525
7526 * fontset.c (syms_of_fontset) [WINDOWSNT]: Likewise.
7527
7528 2000-10-27 Gerd Moellmann <gerd@gnu.org>
7529
7530 * gmalloc.c [GC_MCHECK]: Add code from mcheck.c of glibc-1.09.1.
7531 (freehook, reallochook): Handle null pointer arguments.
7532 (__malloc_initialize) [GC_MCHECK]: Call mcheck.
7533
7534 2000-10-27 Stefan Monnier <monnier@cs.yale.edu>
7535
7536 * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
7537 (re_match_2_internal, re_match_2_internal, re_match_2_internal):
7538 Giving in to popular pressure to shut up the compiler with casts.
7539
7540 2000-10-27 Gerd Moellmann <gerd@gnu.org>
7541
7542 * xterm.c (x_draw_glyph_string): Treat XA_UNDERLINE_POSITION as a
7543 signed value, and use a default value computed from the font's
7544 maximum descent.
7545
7546 2000-10-27 Miles Bader <miles@lsi.nec.co.jp>
7547
7548 * xterm.c (x_draw_glyph_string): Add a workaround so that fonts
7549 that specify a negative underline position can still use underlines.
7550
7551 * window.c (Fpos_visible_in_window_p): Make POS default to
7552 WINDOW's point, not the current buffer's point.
7553
7554 2000-10-26 Dave Love <fx@gnu.org>
7555
7556 * s/sol2-5.h: Don't define SYSTEM_MALLOC so that we can find out
7557 when it's necessary.
7558
7559 2000-10-26 Gerd Moellmann <gerd@gnu.org>
7560
7561 * window.c (size_window): Compute size difference from sum of old
7562 child window sizes instead of from parent's size.
7563
7564 * xdisp.c (pos_visible_p): Change current buffer if necessary.
7565 Handle obscured lines at the top of the window.
7566
7567 * frame.c (Fdelete_frame): Doc fix. Move running the hook
7568 down after the last error condition check.
7569
7570 * frame.c (Fdelete_frame): Run delete-frame-hook.
7571
7572 2000-10-26 Kenichi Handa <handa@etl.go.jp>
7573
7574 * coding.c (decode_coding): Fix previous change (check also
7575 CODING_MODE_LAST_BLOCK).
7576
7577 2000-10-25 Stefan Monnier <monnier@cs.yale.edu>
7578
7579 * regex.c: More `unsigned char' -> `re_char' changes.
7580 Also change several `int' into `re_wchar_t'.
7581 (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
7582 (PUSH_FAILURE_POINTER): Don't cast any more.
7583 (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
7584 We want GCC to complain, since this piece of code makes
7585 re_match non-reentrant, which *should* be fixed.
7586 (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
7587 (EXTEND_BUFFER): Use RETALLOC.
7588 (SET_LIST_BIT): Don't cast.
7589 (re_wchar_t): New type.
7590 (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
7591 that those two functions will always properly return.
7592 (IMMEDIATE_QUIT_CHECK): Cast to void.
7593 (analyse_first): Use recursion rather than an explicit stack.
7594 (re_compile_fastmap): Can't fail anymore.
7595 (re_search_2): Don't check re_compile_fastmap for failure.
7596 (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
7597 Now also sets the new value (passed in a new argument).
7598 (re_match_2_internal): Use it.
7599 Also, use a new var `reg' of type size_t when looping through regs
7600 rather than reuse the inappropriate `mcnt'.
7601
7602 * keymap.c (where_is_cache, where_is_cache_keymaps): New vars.
7603 (Fset_keymap_parent, store_in_keymap): Flush the where-is cache.
7604 (where_is_internal): Renamed from Fwhere_is_internal.
7605 Don't DEFUN any more. Arg `xkeymap' replaced by `keymaps'.
7606 (Fwhere_is_internal): New function wrapping where_is_internal.
7607 (where_is_internal_1): Handle the case where we're filling the cache.
7608 (syms_of_keymap): Init and gcpro the where_is_cache(|_keymaps).
7609
7610 2000-10-25 Miles Bader <miles@gnu.org>
7611
7612 * xdisp.c (pos_visible_p): Don't add `it.current_y' twice.
7613
7614 2000-10-25 Gerd Moellmann <gerd@gnu.org>
7615
7616 * window.c (pos_fully_visible_p): Removed.
7617 (Fpos_visible_in_window_p): Use pos_visible_p to determine
7618 if position is visible and/or fully visible.
7619
7620 * lisp.h (pos_visible_p): Add prototype.
7621
7622 * xdisp.c (pos_visible_p): New function.
7623
7624 2000-10-25 Kenichi Handa <handa@etl.go.jp>
7625
7626 * process.c (send_process): If OBJECT is t, it means that the data
7627 is from C string, but we should encode it. Before calling
7628 setup_raw_text_coding_system, be sure to flush out data by the
7629 previous coding system.
7630
7631 2000-10-25 Miles Bader <miles@lsi.nec.co.jp>
7632
7633 * buffer.c (overlays_at): Only let CHANGE_REQ inhibit an
7634 assignment of startpos to prev when startpos == pos.
7635
7636 * editfns.c (find_field): Set the field stickiness correctly from
7637 overlay fields. Use renamed `text_property_stickiness'.
7638 (text_property_stickiness): Renamed from `char_property_stickiness'.
7639 Only check text properties, not overlays.
7640 * textprop.c (get_char_property_and_overlay): New function.
7641 (Fget_char_property): Use it.
7642 * intervals.h (get_char_property_and_overlay): Add declaration.
7643
7644 2000-10-25 Stefan Monnier <monnier@cs.yale.edu>
7645
7646 * keymap.c: Use AREF, ASET and ASIZE macros.
7647 (Fmake_sparse_keymap): Docstring fix.
7648 (synkey): Remove.
7649 (shadow_lookup): Move up.
7650 Handle the case where lookup-key returns an integer.
7651 (where_is_internal_1): Drop arg `keymap'. Don't check shadowing.
7652 (where_is_internal_2): Adapt to fewer args for where_is_internal_1.
7653 (Fwhere_is_internal): Allow `xkeymap' to be a list of keymaps.
7654 Simplify/rewrite the keymap-finding code.
7655 Add check for command shadowing, using shadow_lookup.
7656
7657 2000-10-24 Stefan Monnier <monnier@cs.yale.edu>
7658
7659 * keymap.c (fix_submap_inheritance): Use get_keymap_1 on parent_entry
7660 rather than KEYMAPP, to allow EQ to work correctly if parent_entry is
7661 a symbol.
7662
7663 2000-10-24 Andrew Innes <andrewi@gnu.org>
7664
7665 * dired.c (directory_files_internal_unwind): New function.
7666 (directory_files_internal): Use it to ensure closedir is called
7667 even if expand-file-name or file-attributes throw, eg. because of
7668 a user interrupt. Also enable immediate_quit while calling
7669 re_search, so that matching can be interrupted as well.
7670
7671 2000-10-24 Andrew Innes <andrewi@gnu.org>
7672
7673 * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
7674 NT-Emacs only.
7675 (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
7676 so that re_search functions only quit when callers expect them to.
7677
7678 2000-10-24 Kenichi Handa <handa@etl.go.jp>
7679
7680 * regex.c (regex_compile): Change the way of handling a range from
7681 a char less than 256 to a char not less than 256.
7682
7683 2000-10-24 Gerd Moellmann <gerd@gnu.org>
7684
7685 * window.c (size_window): Prevent setting window's width or
7686 height to a negative value (esp. with XSETFASTINT).
7687
7688 * gmalloc.c (state_protected_p, last_state_size, last_heapinfo)
7689 [GC_MALLOC_CHECK && GC_PROTECT_MALLOC_STATE]: New variables.
7690 (protect_malloc_state) [GC_MALLOC_CHECK &&
7691 GC_PROTECT_MALLOC_STATE]: New function.
7692 (PROTECT_MALLOC_STATE): New macro.
7693 (__malloc_initialize, morecore, _malloc_internal)
7694 (_free_internal) _realloc_internal): Use it to make _heapinfo
7695 read-only outside of gmalloc.
7696
7697 * keymap.c: Update copyright.
7698
7699 * .gdbinit (xbacktrace): Handle case that $bt->function isn't
7700 a symbol.
7701
7702 2000-10-24 Colin Walters <walters@cis.ohio-state.edu>
7703
7704 * filelock.c (unlock_all_files): Use unlock_file to expand each
7705 buffer's file_truename before trying remove its lock file.
7706
7707 2000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
7708
7709 * coding.c (decode_coding_emacs_mule): If coding->eol_type is CR
7710 or CRLF, decode EOLs.
7711
7712 2000-10-24 Kenichi Handa <handa@etl.go.jp>
7713
7714 * window.c (Fdisplay_buffer): Fix doc.
7715
7716 2000-10-23 Jason Rumney <jasonr@gnu.org>
7717
7718 * fontset.c (syms_of_fontset) [WINDOWSNT]: Special case for
7719 ASCII font of default fontset on Windows.
7720
7721 * w32term.c (VCENTER_BASELINE_OFFSET): Bias division (see
7722 xterm.c comment below).
7723
7724 * w32fns.c (x_to_w32_font): Initialize dpi from dpyinfo->resy.
7725
7726 2000-10-23 Gerd Moellmann <gerd@gnu.org>
7727
7728 * xterm.c (x_connection_closed): Reset handling_signal.
7729
7730 * alloc.c (emacs_blocked_free) [GC_MALLOC_CHECK]: Handle freeing null.
7731
7732 2000-10-23 Miles Bader <miles@gnu.org>
7733
7734 * window.c (window_scroll_pixel_based, window_scroll_line_based):
7735 Pass nil for FULLY argument to Fpos_visible_in_window_p to
7736 maintain old behavior.
7737 * minibuf.c (Fminibuffer_complete): Likewise.
7738
7739 2000-10-23 Miles Bader <miles@lsi.nec.co.jp>
7740
7741 * xterm.c (VCENTER_BASELINE_OFFSET): Bias the division by two, so
7742 that when a font can't be exactly centered, it errs up rather than
7743 down.
7744
7745 2000-10-23 ShengHuo ZHU <zsh@cs.rochester.edu>
7746
7747 * fns.c (Fbase64_decode_string): The decoded result should be unibyte.
7748
7749 2000-10-23 Andrew Choi <akochoi@i-cable.com>
7750
7751 * dispextern.h [macintosh]: Include macgui.h instead of macterm.h.
7752
7753 * dispnew.c [macintosh]: Include macterm.h.
7754 (init_display) [macintosh]: Initialization for window system.
7755
7756 * emacs.c (main) [macintosh]: Call syms_of_textprop,
7757 syms_of_macfns, syms_of_ccl, syms_of_fontset, syms_of_xterm,
7758 syms_of_search, x_term_init, and init_keyboard before calling
7759 init_window_once. Also, call syms_of_xmenu.
7760
7761 * fontset.c (syms_of_fontset) [macintosh]: Set ASCII font of
7762 default fontset to Monaco.
7763
7764 * frame.c [macintosh]: Include macterm.h. Remove declarations of
7765 NewMacWindow and DisposeMacWindow.
7766 (make_terminal_frame) [macintosh]: Call make_mac_terminal_frame
7767 instead of calling NewMacWindow and setting fields of
7768 f->output_data.mac directly. Call init_frame_faces.
7769 (Fdelete_frame) [macintosh]: Remove unused code.
7770 (Fmodify_frame_parameters) [macintosh]: Call
7771 x_set_frame_parameters instead of mac_set_frame_parameters.
7772
7773 * frame.h [macintosh]: Define menu_bar_lines field in struct
7774 frame. Define FRAME_EXTERNAL_MENU_BAR macro.
7775
7776 * keyboard.c [macintosh]: Include macterm.h.
7777 (kbd_buffer_get_event) [macintosh]: Generate delete_window_event
7778 and menu_bar_activate_event type events as for X and NT.
7779 (make_lispy_event) [macintosh]: Construct lisp events of type
7780 MENU_BAR_EVENT as for X and NT.
7781
7782 * sysdep.c [macintosh]: Remove declaration for sys_signal.
7783 Include stdlib.h. Remove definition of Vx_bitmap_file_path.
7784 (sys_subshell) [macintosh]: Remove definition entirely.
7785 (init_sys_modes) [macintosh]: Do not initialize Vwindow_system and
7786 Vwindow_system_version here. Remove initialization of
7787 Vx_bitmap_file_path.
7788 (read_input_waiting): Correct the number of parameters passed to
7789 read_socket_hook.
7790 Move all Macintosh functions to mac/mac.c.
7791
7792 * term.c [macintosh]: Include macterm.h.
7793
7794 * window.c [macintosh]: Include macterm.h.
7795
7796 * xdisp.c [macintosh]: Include macterm.h. Declare
7797 set_frame_menubar and pending_menu_activation.
7798 (echo_area_display) [macintosh]: Do not return if terminal frame
7799 is the selected frame.
7800 (update_menu_bar) [macintosh]: Check FRAME_EXTERNAL_MENU_BAR (f).
7801 Allow only the selected frame to set menu bar.
7802 (redisplay_window) [macintosh]: Obtain menu bar to redisplay by
7803 calling FRAME_EXTERNAL_MENU_BAR (f).
7804 (display_menu_bar) [macintosh]: Check FRAME_MAC_P (f).
7805
7806 * xfaces.c [macintosh]: Include macterm.h. Define x_display_info
7807 and check_x. Declare XCreateGC. Define x_create_gc and
7808 x_free_gc. Initialize font_sort_order.
7809 (x_face_list_fonts) [macintosh]: Use the same code as WINDOWSNT,
7810 but call x_list_fonts instead of w32_list_fonts.
7811 (Finternal_face_x_get_resource) [macintosh]: Do not call
7812 display_x_get_resource.
7813 (prepare_face_for_display) [macintosh]: Set xgcv.font.
7814 (realize_x_face) [macintosh]: Load the font if it is specified in
7815 ATTRS.
7816 (syms_of_xfaces) [macintosh]: Initialize Vscalable_fonts_allowed to Qt.
7817
7818 2000-10-22 Stefan Monnier <monnier@cs.yale.edu>
7819
7820 * keymap.c (fix_submap_inheritance): Don't do anything if parent_entry
7821 is nil: since we go to the end of submap anyway, we'd end up
7822 setting nil to nil.
7823 (access_keymap): Don't use KEYMAPP on meta_map since KEYMAPP
7824 doesn't obey autoload.
7825
7826 2000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
7827
7828 * msdos.c (dos_set_window_size): Update screen dimension variables.
7829
7830 2000-10-21 Jason Rumney <jasonr@gnu.org>
7831
7832 * w32term.c (w32_cache_char_metrics): Double check that font is
7833 really fixed pitch before trusting tmPitchAndFamily.
7834
7835 2000-10-21 Andrew Innes <andrewi@gnu.org>
7836
7837 * w32gui.h (w32_char_font_type): Move enum from w32term.c
7838
7839 * w32term.h: Extern decl for w32_cache_char_metrics.
7840
7841 * w32bdf.c (w32_load_bdf_font): Call w32_cache_char_metrics.
7842
7843 * w32fns.c (w32_load_system_font): Call w32_cache_char_metrics.
7844 (w32_unload_font): Free per_char array if present.
7845
7846 * w32term.c (w32_per_char_metric): Remove HDC argument. Use
7847 cached information in emulated XFontStruct to handle common cases
7848 quickly. Do not allocate XCharStruct for return.
7849 (w32_native_per_char_metric): New function.
7850 (w32_bdf_per_char_metric): Fill in supplied XCharStruct instead of
7851 allocating one.
7852 (x_produce_glyphs): Don't get an HDC. Change calls to
7853 w32_per_char_metric to match arg change above. Remove calls to
7854 free results.
7855 (w32_get_glyph_overhangs): Ditto.
7856 (w32_cache_char_metrics): New function.
7857
7858 * makefile.w32-in: Change .obj to .$(O) in all dependencies.
7859 ($(BLD)/casefiddle.$(O)): Remove compile command.
7860 ($(BLD)/gmalloc.$(O)): Remove compile command.
7861 ($(BLD)/dispnew.obj):
7862 ($(BLD)/keyboard.obj):
7863 ($(BLD)/w32inevt.obj):
7864 ($(BLD)/w32bdf.obj):
7865 ($(BLD)/alloc.obj):
7866 ($(BLD)/buffer.obj):
7867 ($(BLD)/editfns.obj):
7868 ($(BLD)/emacs.obj):
7869 ($(BLD)/fileio.obj):
7870 ($(BLD)/fns.obj):
7871 ($(BLD)/indent.obj):
7872 ($(BLD)/insdel.obj):
7873 ($(BLD)/intervals.obj):
7874 ($(BLD)/minibuf.obj):
7875 ($(BLD)/print.obj):
7876 ($(BLD)/scroll.obj):
7877 ($(BLD)/sysdep.obj):
7878 ($(BLD)/textprop.obj):
7879 ($(BLD)/widget.obj):
7880 ($(BLD)/xdisp.obj): Add dependency on w32gui.h.
7881 ($(BLD)/term.obj): Add dependency on dispextern.h.
7882
7883 * makefile.nt ($(BLD)\dispnew.obj):
7884 ($(BLD)\keyboard.obj):
7885 ($(BLD)\w32inevt.obj):
7886 ($(BLD)\w32bdf.obj):
7887 ($(BLD)\alloc.obj):
7888 ($(BLD)\buffer.obj):
7889 ($(BLD)\editfns.obj):
7890 ($(BLD)\emacs.obj):
7891 ($(BLD)\fileio.obj):
7892 ($(BLD)\fns.obj):
7893 ($(BLD)\indent.obj):
7894 ($(BLD)\insdel.obj):
7895 ($(BLD)\intervals.obj):
7896 ($(BLD)\minibuf.obj):
7897 ($(BLD)\print.obj):
7898 ($(BLD)\scroll.obj):
7899 ($(BLD)\sysdep.obj):
7900 ($(BLD)\textprop.obj):
7901 ($(BLD)\widget.obj):
7902 ($(BLD)\xdisp.obj): Add dependency on w32gui.h.
7903 ($(BLD)\term.obj): Add dependency on dispextern.h
7904
7905 2000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
7906
7907 * minibuf.c (Fminibuffer_complete): Call Fpos_visible_in_window_p
7908 with an additional argument of Qt.
7909
7910 2000-10-21 Miles Bader <miles@gnu.org>
7911
7912 * window.c (pos_fully_visible_in_window_p): New function.
7913 (Fpos_visible_in_window_p): Add FULLY argument.
7914 Use pos_fully_visible_in_window_p.
7915 (window_scroll_pixel_based, window_scroll_line_based): Update
7916 calls to Fpos_visible_in_window_p.
7917 * lisp.h (Fpos_visible_in_window_p): Update prototype
7918
7919 2000-10-20 Gerd Moellmann <gerd@gnu.org>
7920
7921 * alloc.c (toplevel): Conditionalize compilation of mem_*
7922 functions differently.
7923
7924 2000-10-20 Jason Rumney <jasonr@gnu.org>
7925
7926 * alloc.c (toplevel): Move #ifdef GC_MARK_STACK back to above
7927 mem_init where it used to be. mem_z etc not defined otherwise.
7928
7929 2000-10-20 Gerd Moellmann <gerd@gnu.org>
7930
7931 * alloc.c (toplevel) [SYSTEM_MALLOC || DOUG_LEA_MALLOC]: Undef
7932 GC_MALLOC_CHECK.
7933 (toplevel) [GC_MARK_STACK || GC_MALLOC_CHECK]: Move mem_node
7934 structure definition and related variabled to the top of the file.
7935 Include this code when GC_MALLOC_CHECK is defined.
7936 (lisp_malloc, lisp_free) [GC_MALLOC_CHECK]: Don't
7937 register/unregister allocated region.
7938 (emacs_blocked_free) [GC_MALLOC_CHECK]: Check if freeing something
7939 which isn't allocated.
7940 (emacs_blocked_malloc) [GC_MALLOC_CHECK]: Check if returning
7941 something which is already in use.
7942 (emacs_blocked_realloc) [GC_MALLOC_CHECK]: Likewise.
7943 (mem_insert) [GC_MALLOC_CHECK]: Use _malloc_internal.
7944 (mem_delete) [GC_MALLOC_CHECK]: Use _free_internal.
7945 (init_alloc_once) [GC_MALLOC_CHECK]: Call mem_init.
7946
7947 * gmalloc.c (_malloc_internal) [GC_MALLOC_CHECK]: Use
7948 _malloc_internal instead of malloc.
7949 (_free_internal) [GC_MALLOC_CHECK]: Use _free_internal instead
7950 of free.
7951
7952 2000-10-20 Andrew Innes <andrewi@gnu.org>
7953
7954 * strftime.c [!WINDOWSNT]: Don't apply Solaris 2.5 work-around on
7955 Windows.
7956 (my_strftime) <macro>: Don't use macro arg list when redefining as
7957 _strftime_copytm.
7958 (my_strftime) <function>: Supply 0 as ut argument.
7959
7960 2000-10-19 Jason Rumney <jasonr@altavista.net>
7961
7962 * w32console.c: Do not undef HAVE_WINDOW_SYSTEM before
7963 including dispextern.h, as it stops faces from working.
7964
7965 * w32fns.c (Fx_create_frame): Don't bother calling
7966 face-set-after-frame-default since the caller does it for us
7967 anyway. Clean up calls to x_get_arg to be consistent with X.
7968
7969 * w32term.c (x_produce_glyphs): Handle
7970 unibyte_display_via_language_environment correctly.
7971 (w32_draw_box_rect): Fix the calculation of width and height.
7972
7973 * w32menu.c (add_menu_item): Do not use MF_OWNERDRAW for titles,
7974 as it has stopped working.
7975 (Fx_popup_menu, Fx_popup_dialog): Check for tool-bar position like
7976 menu-bar.
7977
7978 2000-10-19 Gerd Moellmann <gerd@gnu.org>
7979
7980 * eval.c (skip_debugger): Prevent a compiler warning.
7981 (Fcondition_case): Likewise.
7982 (Fbacktrace_frame): Use a null interactive spec.
7983
7984 2000-10-19 Kenichi Handa <handa@etl.go.jp>
7985
7986 * xterm.c (x_find_ccl_program): Check also fontp->full_name.
7987
7988 2000-10-18 Gerd Moellmann <gerd@gnu.org>
7989
7990 * strftime.c: Sync with glibc, file version 1.78.
7991 (my_strftime) [HAVE_TZNAME]: Use `UTC' instead of `GMT' which
7992 should no longer be used according to ISO 8601.
7993
7994 * keymap.c (access_keymap): If IDX has a meta prefix, and there's
7995 no map for meta_prefix_char, don't try to use it as a keymap.
7996 Instead, if T_OK is non-zero, look up a default binding, if any,
7997 otherwise, if T_OK is zero, return nil.
7998
7999 * xfns.c (x_to_xcolors, x_set_mouse_color, lookup_pixel_color)
8000 (x_to_xcolors, png_load): Use x_query_color.
8001
8002 * xterm.c (x_color_cells, x_query_colors, x_query_color):
8003 New functions.
8004 (x_alloc_nearest_color): Use it to reduce calls to XQueryColors
8005 which can be slow.
8006 (x_copy_color, x_alloc_lighter_color): Likewise.
8007
8008 * xterm.h (struct x_display_info): Add color_cells and ncolor_cells.
8009 (x_query_color, x_query_colors): Add prototype.
8010
8011 * alloc.c (allocate_string) [GC_CHECK_STRING_BYTES]: Call
8012 check_string_bytes only if not noninteractive, increase count to 50.
8013
8014 2000-10-18 Miles Bader <miles@lsi.nec.co.jp>
8015
8016 * insdel.c (adjust_markers_for_delete): Handle before-insertion
8017 markers correctly.
8018
8019 2000-10-17 Gerd Moellmann <gerd@gnu.org>
8020
8021 * alloc.c (pure_bytes_used): Renamed from pureptr.
8022 (ALIGN): New macro.
8023 (pure_alloc): New function.
8024 (make_pure_string, pure_cons, make_pure_float, make_pure_vector):
8025 Use it.
8026 (Fpurecopy): Use PURE_POINTER_P.
8027
8028 * xdisp.c (try_cursor_movement): Use cursor_row_p also when
8029 PT has moved backward.
8030
8031 * xdisp.c (cursor_row_p): Take continued lines into account.
8032
8033 * alloc.c (mark_object) [GC_CHECK_STRING_BYTES]: Check validity of
8034 string's size_byte.
8035 (check_string_bytes) [GC_CHECK_STRING_BYTES]: New function.
8036 (check_string_bytes_count) [GC_CHECK_STRING_BYTES]: New variable.
8037 (allocate_string) [GC_CHECK_STRING_BYTES]: Call it for every 10th
8038 string allocated.
8039
8040 * xdisp.c (forward_to_next_line_start): Switch iterator's handling
8041 of selective display off while searching for the next line start.
8042
8043 2000-10-17 Kenichi Handa <handa@etl.go.jp>
8044
8045 * Makefile.in (term.o): Depend on dispextern.h.
8046
8047 2000-10-16 Stefan Monnier <monnier@cs.yale.edu>
8048
8049 * keymap.c (keymap_memberp): Ensure that nil is not a member.
8050
8051 2000-10-16 Gerd Moellmann <gerd@gnu.org>
8052
8053 * xdisp.c (set_iterator_to_next): Reset box start and end flags of
8054 the iterator at the beginning, so that they can be set later on,
8055 for instance in reseat_at_next_visible_line_start, without being
8056 overwritten.
8057
8058 * xfns.c (pbm_format): Add :foreground and :background keywords.
8059 (PBM_FOREGROUND, PBM_BACKGROUND): New enumerators.
8060 (xbm_load): Recognize foreground and background color specifications.
8061
8062 2000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
8063
8064 * dispextern.h (unspecified_fg, unspecified_bg): Declare.
8065
8066 * dosfns.c (unspecified_fg, unspecified_bg): Remove extern declaration.
8067
8068 * msdos.c (IT_set_face): Compare highlighted face with the default
8069 face, and invert colors if these faces' colors are identical.
8070 (Fmsdos_remember_default_colors): Don't swap foreground and
8071 background colors in initial_colors[].
8072 (IT_set_frame_parameters): Don't swap frame's foreground and
8073 background pixels. If ALIST includes "(reverse . t)", swap
8074 foreground-color and background-color properties in frame's
8075 param_alist. If the original frame's param_alist doesn't specify
8076 the colors, store unspecified-fg and unspecified-bg, reversed if
8077 required.
8078
8079 * frame.c (Fframe_parameters): If a tty's frame's param_alist says
8080 the colors are unspecified and reversed, reverse fore- and back-
8081 ground in the returned value.
8082 (Fframe_parameter): Ditto.
8083
8084 2000-10-16 Gerd Moellmann <gerd@gnu.org>
8085
8086 * xdisp.c (find_last_unchanged_at_beg_row): Renamed from
8087 get_last_unchanged_at_beg_row.
8088 (find_first_unchanged_at_end_row): Renamed from
8089 get_first_unchanged_at_end_row.
8090 (find_first_unchanged_at_end_row): Convert assertions to
8091 unconditional tests which abort. When looking for a row in
8092 unchanged text, don't go further back than first_text_row.
8093
8094 * xdisp.c (try_scrolling) <cursor in scroll margin at the bottom>:
8095 Don't add in the last line's height when deciding if the new
8096 position is below the scroll margin.
8097
8098 2000-10-16 Miles Bader <miles@gnu.org>
8099
8100 * editfns.c (Fconstrain_to_field): Check carefully for field
8101 boundaries if either OLD_POS or NEW_POS has a non-nil field
8102 property, even if they're the same.
8103
8104 2000-10-16 Kenichi Handa <handa@etl.go.jp>
8105
8106 * xterm.c (x_draw_box_rect): Fix the calculation of width and
8107 height for XFillRectangle.
8108
8109 2000-10-15 Stefan Monnier <monnier@cs.yale.edu>
8110
8111 * syntax.c (Fstring_to_syntax): New function extracted from
8112 Fmodify_syntax_entry.
8113 (Fmodify_syntax_entry): Use it and document the ! and | fences.
8114 (skip_chars, Fforward_comment): Remove unused variables.
8115 (syms_of_syntax): Add defsubr for string-to-syntax.
8116 (describe_syntax): Add code for comment and string fences.
8117
8118 2000-10-14 Stefan Monnier <monnier@cs.yale.edu>
8119
8120 * keymap.c (access_keymap): Add AUTOLOAD parameter.
8121 Do the meta->esc mapping. Call get_keyelt before returning.
8122 Start scanning from the second element (the first is always `keymap')
8123 to make it easier to detect when we reach a parent map.
8124 Handle the case of inheriting from a symbol whose function is a map.
8125 (Fkeymap_parent): Also handle the `inherit from symbol' case.
8126 (fix_submap_inheritance, Fdefine_key): Update call to access_keymap.
8127 (get_keyelt, Flookup_key): Update call to access_keymap.
8128 Remove the meta->esc mappings.
8129 (define_as_prefix): Delete old disabled code.
8130 (menu_item_p): New function.
8131 (where_is_internal_1): Skip over the few remaining menu items.
8132 * lisp.h (access_keymap): Update prototype.
8133 * keyboard.c (read_char, menu_bar_items, tool_bar_items):
8134 Update call to access_keymap.
8135 (follow_key, read_key_sequence): Update calls to access_keymap.
8136 Remove the meta->esc mappings.
8137
8138 2000-10-13 Gerd Moellmann <gerd@gnu.org>
8139
8140 * dispnew.c (direct_output_for_insert): Call set_iterator_to_next
8141 with additional argument.
8142
8143 * xdisp.c (cursor_row_p): New function.
8144 (try_cursor_movement, display_line): Use it.
8145
8146 * xdisp.c (append_space): Also save/restore iterator's current
8147 character and its length.
8148
8149 * xdisp.c (init_from_display_pos): Add an assertion.
8150 (handle_stop): Don't set iterator's add_overlay_start.
8151 (handle_invisible_prop): Likewise.
8152 (load_overlay_strings): If text under an overlay is invisible,
8153 take both before- and after-strings into account when the iterator
8154 is positioned either at the start or at the end of the overlay.
8155 (forward_to_next_line_start): Rewritten.
8156 (reseat_at_next_visible_line_start): Rewritten.
8157 (set_iterator_to_next): Add parameter RESEAT_P.
8158
8159 * dispextern.h (struct it): Remove member add_overlay_start.
8160 (set_iterator_to_next): Change prototype.
8161
8162 2000-10-13 Kenichi Handa <handa@etl.go.jp>
8163
8164 * coding.c (code_convert_region): Be sure to initialize
8165 coding->category_idx.
8166 (decode_coding_string): Set coding->src_multibyte and
8167 coding->dst_multibyte before using CODING_REQUIRE_DECODING.
8168 (encode_coding_string): Set coding->src_multibyte and
8169 coding->dst_multibyte before using CODING_REQUIRE_ENCODING.
8170
8171 2000-10-12 Stefan Monnier <monnier@cs.yale.edu>
8172
8173 * xfns.c (Fx_create_frame): Don't bother calling
8174 face-set-after-frame-default since the caller does it for us anyway.
8175
8176 2000-10-12 Eli Zaretskii <eliz@is.elta.co.il>
8177
8178 * window.c (coordinates_in_window): Fix detection of vertical line
8179 on character terminals.
8180
8181 2000-10-12 Gerd Moellmann <gerd@gnu.org>
8182
8183 * editfns.c (save_excursion_save): Additionally record the
8184 selected window.
8185 (save_excursion_restore): If buffer was visible in a window, and a
8186 different window was selected, and the old selected window is
8187 still live, restore point in that window.
8188
8189 2000-10-12 Kenichi Handa <handa@etl.go.jp>
8190
8191 * xterm.c (x_produce_glyphs): Handle
8192 unibyte_display_via_language_environment correctly.
8193
8194 * regex.c (regex_compile): Change the way of handling a range from
8195 unibyte char to multibyte char.
8196
8197 * syntax.c (skip_chars): Change the way of handling a range from
8198 unibyte char to multibyte char.
8199
8200 * process.c (read_process_output): Cancel previous change.
8201
8202 2000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
8203
8204 * search.c (Fsearch_backward, Fsearch_forward): Doc fix.
8205
8206 * charset.c (Ffind_charset_string): Doc fix.
8207 (Ffind_charset_region): Doc fix.
8208
8209 2000-10-11 Kenichi Handa <handa@mule.m17n.org>
8210
8211 * process.c (read_process_output): Fix previous change. Adjust
8212 multibyteness of text to insert in a buffer by
8213 string_make_unibyte/multibyte instead of Fstring_as_unibyte/multibyte.
8214
8215 2000-10-10 Andreas Schwab <schwab@suse.de>
8216
8217 * alloc.c (mark_object): Remove all workarounds installed on
8218 1993-08-08.
8219
8220 2000-10-10 Kenichi Handa <handa@etl.go.jp>
8221
8222 * fns.c (READ_QUADRUPLET_BYTE): Set *NCHARS_RETURN before returning.
8223 (base64_encode_1): Make it work for a text of multibyte form.
8224 (Fbase64_decode_region): Allocate sufficient memory for multibyte
8225 case. Don't call str_to_multibyte because base64_decode_1
8226 produces correct multibyte form for eight-bit codes.
8227 (Fbase64_decode_string): Adjusted for the change of base64_decode_1.
8228 (base64_decode_1): New args MULTIBYTE and NCHARS_RETURN. If
8229 MULTIBYTE is nonzero, produce correct multibyte form for eight-bit
8230 codes.
8231
8232 * charset.h (CHAR_STRING): Optimized for single byte characters.
8233
8234 2000-10-09 Andreas Schwab <schwab@suse.de>
8235
8236 * process.c (Fopen_network_stream) [HAVE_GETADDRINFO]: Reset S to
8237 -1 after socket is closed, to fall through to error processing.
8238
8239 2000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
8240
8241 * msdos.c (IT_set_frame_parameters): Don't initialize Lisp_Object
8242 variables. If ALIST includes foreground-color or
8243 background-color, change also the colors of the default face for
8244 this frame.
8245
8246 2000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
8247
8248 * msdos.c (top-level) <Qbackground_color, Qforeground_color>: Make
8249 them extern (they are defined on xfaces.c).
8250 (syms_of_msdos): Don't intern and don't staticpro
8251 Qbackground_color and Qforeground_color.
8252
8253 2000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
8254
8255 * frame.c (Fframe_parameter): For non-windowed frames, if
8256 f->param_alist says foreground or background color is unspecified,
8257 call tty_color_name to return the color name computed from the
8258 frame's current colors.
8259
8260 2000-10-06 Dave Love <fx@gnu.org>
8261
8262 * terminfo.c (ospeed): Don't declare.
8263
8264 * sysdep.c: Don't include string.h.
8265 (h_errno): Declare conditional also on TRY_AGAIN.
8266
8267 * charset.c (Ffind_charset_string): Doc fix.
8268
8269 * fns.c (Fbase64_encode_region, Fbase64_encode_string)
8270 (Fbase64_decode_region, Fbase64_decode_string): More explicit
8271 error messages.
8272
8273 2000-10-05 Dave Love <fx@gnu.org>
8274
8275 * xmenu.c (Fx_popup_menu, Fx_popup_dialog): Check for tool-bar
8276 position like menu-bar.
8277
8278 2000-10-05 Gerd Moellmann <gerd@gnu.org>
8279
8280 * keyboard.c (Frecursive_edit): Make sure redisplay can happen.
8281
8282 * xdisp.c (handle_single_display_prop): Use safe_call1.
8283 (safe_call): Renamed from call_function.
8284 (safe_call1): New function.
8285 (handle_fontified_prop): Use safe_call1 instead of call1.
8286 (safe_eval): Renamed from eval_form.
8287 (safe_eval_handler): Renamed from eval_handler.
8288 (handle_single_display_prop, display_mode_element): Use safe_eval
8289 instead of eval_form.
8290
8291 * xfaces.c (merge_face_heights): Use safe_call instead of
8292 call_function.
8293
8294 * keyboard.c (show_help_echo): Use safe_call instead of
8295 call_function; use safe_eval instead of eval_form.
8296
8297 * lisp.h (safe_call): Renamed from call_function.
8298 (safe_eval): Renamed from eval_form.
8299 (safe_call1): Add prototype.
8300
8301 2000-10-05 Miles Bader <miles@lsi.nec.co.jp>
8302
8303 * xfns.c (image_ascent): Rearrange ascent calculation for the
8304 has-a-font case.
8305
8306 2000-10-04 Stefan Monnier <monnier@cs.yale.edu>
8307
8308 * keymap.c (Fwhere_is_internal): Ignore `menu-bar' and `tool-bar'.
8309 (where_is_internal_1): Don't bother ignoring menu-items any more.
8310
8311 2000-10-04 Gerd Moellmann <gerd@gnu.org>
8312
8313 * keyboard.c (update_menu_bindings): New variable.
8314 (parse_menu_item): Use AREF. If update_menu_bindings
8315 is 0, don't update menu bindings.
8316 (syms_of_keyboard): New Lisp variable `update-menu-bindings'.
8317
8318 2000-10-03 Eli Zaretskii <eliz@is.elta.co.il>
8319
8320 * alloc.c (Fgarbage_collect): Prevent compiler warning for a call
8321 to `mark_object'.
8322
8323 2000-10-02 Stefan Monnier <monnier@cs.yale.edu>
8324
8325 * syntax.c (forw_comment): Match nestedness of ender/starter.
8326 (Fforward_comment): Treat an unmatched \n comment-ender as whitespace.
8327 (prev_char_comstart_first): Remove.
8328 (back_comment): Check two-char comment markers more carefully
8329 to better handle overlapping cases like *//* or /* */* */ ...
8330 Match nestedness of ender/starter.
8331
8332 2000-10-02 Dave Love <fx@gnu.org>
8333
8334 * config.in (HAVE_GAI_STRERROR): Add undef.
8335
8336 * process.c (Fopen_network_stream): Use it.
8337
8338 * m/alpha.h (NO_REMAP): Don't define.
8339
8340 2000-10-02 Gerd Moellmann <gerd@gnu.org>
8341
8342 * lisp.h (wrong_type_argument): Remove NO_RETURN, the function can
8343 return with a string converted to an integer or vice versa when
8344 Vmocklisp_arguments is t.
8345 (Fsignal): Likewise. The function can return for `quit'.
8346 (struct gcpro): Declare member `var' to point to a volatile
8347 Lisp_Object.
8348
8349 * eval.c (error): Prevent compiler warning.
8350
8351 2000-09-30 Stefan Monnier <monnier@cs.yale.edu>
8352
8353 * keymap.c (keymap_memberp): New function.
8354 (Fset_keymap_parent): Use it.
8355 (fix_submap_inheritance): Use get_keyelt, get_keymap_1 and KEYMAPP.
8356 Use keymap_memberp to avoid creating cycles.
8357 (access_keymap): Use KEYMAPP.
8358
8359 2000-09-30 Gerd Moellmann <gerd@gnu.org>
8360
8361 * process.c (Fopen_network_stream) [HAVE_GETADDRINFO]: Use
8362 gai_strerror. Make sure xerrno is set if connect fails. Improve
8363 error recovery.
8364
8365 2000-09-29 Jason Rumney <jasonr@gnu.org>
8366
8367 * w32term.c (w32_char_font_type, w32_encode_char)
8368 (x_produce_glyphs): Distinguish single and multibyte BDF fonts.
8369 (w32_bdf_per_char_metric): New function.
8370 (w32_per_char_metric): Use it.
8371 (x_draw_glyph_string_background): Always draw background for BDF
8372 glyphs.
8373
8374 * w32bdf.h (glyph_struct, cache_bitmap): Cache bitmap data, not
8375 GDI object which is a scarce resource.
8376
8377 * w32bdf.c (search_file_line): Fix skipping of whitespace.
8378 (get_quoted_string): Fix limit on memchr search.
8379 (set_bdf_font_info): Use unsigned chars. Negate yoffset.
8380 (w32_init_bdf_font): Initialize codepoint and bitmap heaps.
8381 (w32_free_bdf_font): Free bitmaps and codepoints on heaps.
8382 (get_cached_font_char, cache_char_offset): Use macro
8383 BDF_CODEPOINT_RANGE_COVER_P.
8384 (cache_char_offset): Use HeapAlloc to allocate codepoints on own heap.
8385 (clear_cached_bitmap_slots): New function.
8386 (GET_HEX_VALUE): G-Z, g-z are not hex.
8387 (w32_get_bdf_glyph): Convert to DIB format. Return bytes read.
8388 (get_bitmap_with_cache): Use new cache implementation.
8389 (create_offscreen_bitmap): New function.
8390 (w32_BDF_TextOut): Use it. Draw glyphs as DIBs.
8391
8392 * w32term.c (x_produce_glyphs): If the distance from the current
8393 position to the next tab stop is less than a canonical character
8394 width, use the tab stop after that.
8395 (x_draw_glyphs): Handle case START and END are out of bounds more
8396 carefully.
8397 (x_clear_mouse_face): Block/unblock input.
8398 (x_display_and_set_cursor): Don't show a hollow box cursor for
8399 buffers whose cursor_type is nil.
8400
8401 2000-09-29 Gerd Moellmann <gerd@gnu.org>
8402
8403 * xfns.c (x_set_tool_bar_lines): Clear frame when tool bar disappears.
8404
8405 * dispextern.h (updating_frame): Declare extern.
8406
8407 2000-09-29 Andreas Schwab <schwab@suse.de>
8408
8409 * m/ia64.h: Remove hack of not prototyping bcopy, etc.
8410
8411 2000-09-29 Gerd Moellmann <gerd@gnu.org>
8412
8413 * keyboard.c (menu_bar_one_keymap): If KEYMAP is a symbol,
8414 use its function definition.
8415 (tool_bar_items): Likewise.
8416
8417 * lisp.h (fatal): Declare NO_RETURN.
8418
8419 2000-09-29 Kenichi Handa <handa@etl.go.jp>
8420
8421 * keymap.c: Remove the line "#undef NULL".
8422
8423 2000-09-28 Gerd Moellmann <gerd@gnu.org>
8424
8425 * xterm.c (x_make_frame_visible): Try harder to make the frame visible.
8426
8427 2000-09-28 Dave Love <fx@gnu.org>
8428
8429 * s/osf5-0.h: Define USE_MMAP_FOR_BUFFERS, not REL_ALLOC_MMAP.
8430
8431 * s/sunos413.h (USE_MMAP_FOR_BUFFERS): Define.
8432
8433 * .gdbinit (xreload): Note its need on GNU/Linux.
8434
8435 * m/alpha.h (XUINT) [REL_ALLOC && _MALLOC_INTERNAL]: Don't declare
8436 r_alloc, r_alloc_free.
8437
8438 2000-09-28 Kenichi Handa <handa@etl.go.jp>
8439
8440 * syntax.c (skip_chars): Handle negation correctly.
8441
8442 2000-09-27 Gerd Moellmann <gerd@gnu.org>
8443
8444 * xfaces.c (realize_default_face): Call set_lface_from_font_name
8445 with non-zero FORCE_P argument.
8446
8447 * dispnew.c (adjust_glyph_matrix, enable_glyph_matrix_rows):
8448 Add assertions.
8449
8450 * xdisp.c (window_box_height): Add an assertion.
8451
8452 * xfns.c (x_set_tool_bar_lines): Don't use more lines for the
8453 tool-bar than is available.
8454 (x_change_window_heights): Renamed from x_set_menu_bar_lines_1.
8455
8456 2000-09-27 Dave Love <fx@gnu.org>
8457
8458 * s/irix6-5.h: Now works 64-bit. Tidied.
8459
8460 2000-09-26 Gerd Moellmann <gerd@gnu.org>
8461
8462 * lisp.h (XINT) [EXPLICIT_SIGN_EXTEND]: Use BITS_PER_EMACS_INT
8463 instead of BITS_PER_INT.
8464 (XINT, XUINT) [NO_UNION_TYPE]: Cast result to EMACS_INT and
8465 EMACS_UINT, respectively.
8466 (NO_UNION_TYPE) [USE_LISP_UNION_TYPE]: Undefine.
8467
8468 * m/sparc.h (BITS_PER_EMACS_INT) [__arch64__]: Don't define.
8469
8470 * unexelf.c (ELFSIZE) [__NetBSD__ && __sparc_v9__]: Define to 64.
8471
8472 * window.c (freeze_window_starts): Construct last argument for
8473 foreach_window differently.
8474
8475 * xfns.c (x_decode_color): Don't return a Lisp_Object.
8476
8477 * lisp.h (union Lisp_Object) [!NO_UNION_TYPE]: Use EMACS_INT and
8478 EMACS_UINT instead of `int' and `unsigned int'.
8479 (XSET) [EXPLICIT_SIGN_EXTEND]: Use EMACS_INT instead of `int'.
8480
8481 * frame.h (struct frame): Make the `nothing' member of union
8482 output_data an EMACS_INT.
8483
8484 * alloc.c (GC_CHECK_STRING_BYTES): Temporarily define, for bug hunting.
8485 (struct sdata) [GC_CHECK_STRING_BYTES]: Always record the string's
8486 size in the sdata structure.
8487 (SDATA_NBYTES, SDATA_DATA): New macros.
8488 (SDATA_OF_STRING, SDATA_SIZE) [GC_CHECK_STRING_BYTES]: Define
8489 differently for the different layout of the sdata structure.
8490 (allocate_string_data) [GC_CHECK_STRING_BYTES]: Record string size
8491 in sdata.
8492 (sweep_strings, compact_small_strings) [GC_CHECK_STRING_BYTES]:
8493 Check that size recorded in the string size and size recorded in
8494 the sdata structure agree.
8495
8496 2000-09-25 Dave Love <fx@gnu.org>
8497
8498 * buffer.c: Include stdio.h.
8499
8500 Partly suggested by Eduardo Horvath <eeh@netbsd.org>.
8501
8502 * ralloc.c (__malloc_extra_blocks): Declare as __malloc_size_t.
8503
8504 * alloc.c (__malloc_size_t) [DOUG_LEA_MALLOC]: Don't redefine it.
8505 (__malloc_size_t) [!DOUG_LEA_MALLOC]: Define unconditionally as size_t.
8506 (__malloc_extra_blocks): Declare as __malloc_size_t.
8507
8508 2000-09-25 Gerd Moellmann <gerd@gnu.org>
8509
8510 * alloc.c (mark_image): Use GC_NILP instead of NILP.
8511
8512 * keyboard.c (show_help_echo): Set help_echo_showing_p.
8513 (read_char): If help-echo is showing, preserve the echo area
8514 when redisplaying.
8515
8516 * xdisp.c (help_echo_showing_p): New variable.
8517 (set_message): Reset it to 0.
8518 (init_xdisp): Initialize help_echo_showing_p.
8519
8520 * dispextern.h (help_echo_showing_p): Declare extern.
8521
8522 * config.in: Fix typo in __GNUC_MINOR__.
8523
8524 * keyboard.h (quit_throw_to_read_char): Declare NO_RETURN.
8525
8526 * s/freebsd.h (POSIX_SIGNALS): Define.
8527
8528 * xterm.c (x_clear_mouse_face): Block/unblock input.
8529
8530 2000-09-24 Dave Love <fx@gnu.org>
8531
8532 * fns.c (base64_encode_1): Fix last change.
8533
8534 2000-09-22 Gerd Moellmann <gerd@gnu.org>
8535
8536 * dispnew.c (enable_glyph_matrix_rows): Remove xasserts.
8537
8538 * xdisp.c (try_window_reusing_current_matrix): More fixes
8539 for the case window has a header-line.
8540
8541 2000-09-22 Dave Love <fx@gnu.org>
8542
8543 * xdisp.c (syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
8544 a doc string.
8545
8546 * xterm.c [SOLARIS2]: Remove redundant include of string.h.
8547
8548 * fns.c (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix.
8549
8550 2000-09-21 Gerd Moellmann <gerd@gnu.org>
8551
8552 * config.in (NO_RETURN): Define as `__attribute__((__noreturn__))'
8553 for GCC >= 2.5.
8554
8555 * lisp.h (wrong_type_argument, Fthrow, Fsignal, error):
8556 Declare NO_RETURN.
8557
8558 * window.c, term.c, xmenu.c, xrdb.c, emacs.c, macros.c,
8559 * keymap.c, insdel.c, marker.c, minibuf.c, fileio.c, dired.c,
8560 * indent.c, search.c, alloc.c, data.c: Avoid some more compiler
8561 warnings.
8562
8563 * marker.c (byte_char_debug_check): Return void.
8564
8565 * xfns.c (Fx_create_frame): Set default frame parameter value
8566 for tool-bar-lines to 1.
8567
8568 * dispnew.c (scrolling_window): Compare y-positions of rows
8569 equal at the start. Some simplification.
8570
8571 * xdisp.c (try_window_reusing_current_matrix): Fix computation of
8572 reused rows' y-position in the case window has a header-line, and
8573 new window start is greater than old window start.
8574
8575 * process.c (process_sent_to): New variable.
8576 (send_process): Workaround for a crash on sparc-sun-solaris-2.6
8577 with GCC 2.95.2 caused by a parameter being clobbered by longjmp.
8578 Declare more parameters volatile.
8579
8580 * lread.c (Vrecursive_load_depth_limit): New variable.
8581 (Fload): Check recursive loads whose recursion depth exceeds
8582 Vrecursive_load_depth_limit.
8583 (syms_of_lread): DERFAR_LISP recursive-load-depth-limit.
8584
8585 2000-09-20 Gerd Moellmann <gerd@gnu.org>
8586
8587 * fileio.c (Fread_file_name): Doc fix.
8588
8589 * editfns.c (Fmessage_or_box): Doc fix.
8590
8591 * fns.c (Fy_or_n_p, Fyes_or_no_p): Doc fix.
8592
8593 * xfns.c (xbm_scan): Allow C-style comments.
8594
8595 * xfns.c (xpm_init_color_cache) [ALLOC_XPM_COLORS]: If color
8596 symbols are specified, add color translations to the cache.
8597 (xpm_color_bucket, xpm_cache_color) [ALLOC_XPM_COLORS]: New functions.
8598 (xpm_lookup_color) [ALLOC_XPM_COLORS]: Use xpm_color_bucket and
8599 xpm_cache_color.
8600 (xpm_load) [ALLOC_XPM_COLORS]: Pass frame and XPM attributes
8601 structures to xpm_init_color_cache.
8602
8603 2000-09-19 Gerd Moellmann <gerd@gnu.org>
8604
8605 * dispnew.c (update_window_line): Make sure to always draw mode-lines.
8606
8607 2000-09-19 Andrew Innes <andrewi@gnu.org>
8608
8609 * makefile.nt (bootstrap-emacs): Don't change directory.
8610
8611 2000-09-19 Kenichi Handa <handa@etl.go.jp>
8612
8613 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Fix previous change.
8614
8615 * ccl.c (Fccl_execute_on_string): Make multibyte string correctly.
8616 If output buffer is too small, signal an appropriated error.
8617
8618 2000-09-18 Dave Love <fx@gnu.org>
8619
8620 * keyboard.c (menu_bar_items, tool_bar_items)
8621 (current_active_maps): Remove redundant get_local_map call.
8622
8623 2000-09-18 Gerd Moellmann <gerd@gnu.org>
8624
8625 * xterm.c (x_display_and_set_cursor): Don't show a hollow box
8626 cursor for buffers whose cursor_type is nil.
8627
8628 * xterm.c (x_draw_image_glyph_string): Remove a comment describing
8629 a feature to implement that is already implemented.
8630 (note_mouse_highlight, x_find_ccl_program): Avoid some compiler
8631 warnings.
8632
8633 * xfns.c (x_clear_image_1): New function.
8634 (x_clear_image): Use it.
8635 (x_from_xcolors): Use x_clear_image_1; don't free the image's mask.
8636
8637 * dispnew.c (update_window): Move test for invisible lines
8638 at the top to update_window_line.
8639 (update_window_line): Handle invisible lines here.
8640
8641 * xfns.c (clear_image_cache): Clear current matrices of all
8642 frames sharing an image cache. Block input while freeing
8643 images. Fix timestamp comparison.
8644 (x_clear_image): Also free the mask.
8645
8646 * xfns.c (lookup_image): Block input while loading the image so
8647 that we won't get interrupted in a state where the image isn't yet
8648 set up completely.
8649 (xbm_load_image, xbm_load, xpm_load, xpm_load, lookup_rgb_color)
8650 (lookup_pixel_color, x_to_xcolors, x_from_xcolors)
8651 (x_disable_image, x_build_heuristic_mask, pbm_load, png_load)
8652 (jpeg_load, tiff_load, gif_load, gs_load): Don't block/unblock input.
8653
8654 2000-09-16 Gerd Moellmann <gerd@gnu.org>
8655
8656 * dispnew.c (update_window): Make sure to make desired rows
8657 current even if they are completely invisible at the top
8658 of a window.
8659
8660 2000-09-15 Gerd Moellmann <gerd@gnu.org>
8661
8662 * xfns.c (lookup_image): Build mask before applying an algorithm.
8663 Recognize algorithm `disabled'.
8664 (cross_disabled_images): New variable.
8665 (COLOR_INTENSITY): New macro.
8666 (x_detect_edges): Use COLOR_INTENSITY.
8667 (x_disable_image): New function.
8668 (syms_of_xfns): DEFVAR_BOOL cross_disabled_images.
8669
8670 * xdisp.c (build_desired_tool_bar_string): For a toolbar item in
8671 disabled state, don't apply an image transformation algorithm if
8672 the user specified an image for the disabled state. Use
8673 `:algorithm disabled' for creating a disabled item's image if the
8674 user hasn't specified an image.
8675
8676 * xfns.c (ALLOC_XPM_COLORS): Define if we can use Emacs' color
8677 allocation functions with the XPM lib.
8678 (struct xpm_cached_color) [ALLOC_XPM_COLORS]: New structure.
8679 (XPM_COLOR_CACHE_BUCKETS) [ALLOC_XPM_COLORS]: New macro.
8680 (xpm_color_cache) [ALLOC_XPM_COLORS]: New variable.
8681 (xpm_init_color_cache, xpm_free_color_cache, xpm_lookup_color)
8682 (xpm_alloc_color, xpm_free_colors) [ALLOC_XPM_COLORS]: New functions.
8683 (xpm_load) [ALLOC_XPM_COLORS]: Use Emacs' own color allocation
8684 functions, if possible, because these handle color allocation
8685 failure more gracefully.
8686 (Fimage_mask_p): New function.
8687
8688 * xfns.c (QCmatrix, QCcolor_adjustment, QCmask, Qemboss)
8689 (Qedge_detection, Qheuristic): New symbols.
8690 (syms_of_xfns): Initialize new symbols.
8691 (lookup_image): Handle `:mask X', `:algorithm emboss', and
8692 `algorithm (edge-detection ...)'.
8693 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format):
8694 (tiff_format, gif_format, gs_format): Add `:mask'.
8695 (XBM_MASK, XPM_MASK, PBM_MASK, PNG_MASK, JPEG_MASK, TIFF_MASK)
8696 (GIF_MASK, GS_MASK): New enumerators.
8697 (x_laplace_read_row, x_laplace_write_row): Functions removed.
8698 (emboss_matrix, laplace_matrix): New variables.
8699 (x_to_xcolors, x_from_xcolors, x_detect_edges, x_emboss)
8700 (x_edge_detection): New functions.
8701 (x_laplace): Rewritten in terms of x_detect_edges.
8702 (x_build_heuristic_mask): If image has a mask, free it.
8703
8704 2000-09-14 Andrew Innes <andrewi@gnu.org>
8705
8706 * makefile.w32-in: Revert to Unix line endings.
8707
8708 2000-09-14 Andrew Innes <andrewi@gnu.org>
8709
8710 * makefile.w32-in: Standardize indentation somewhat.
8711 (bootstrap-temacs): Use $(ARGQUOTE) instead of literal quotes, to
8712 cater for differences between shells.
8713
8714 * w32term.c (w32_per_char_metric): Handle non-TrueType fonts.
8715
8716 2000-09-14 Gerd Moellmann <gerd@gnu.org>
8717
8718 * xterm.c (x_produce_glyphs): If the distance from the current
8719 position to the next tab stop is less than a canonical character
8720 width, use the tab stop after that.
8721
8722 2000-09-14 Dave Love <fx@gnu.org>
8723
8724 * buffer.c (alloc_buffer_text): Fix xmalloc call.
8725
8726 2000-09-14 Gerd Moellmann <gerd@gnu.org>
8727
8728 * xdisp.c (handle_fontified_prop): While running fontification
8729 functions, bind `fontification-functions' and
8730 `after-change-functions' to nil.
8731
8732 * s/freebsd.h, s/irix-5.0.h, s/sol2.h, s/template.h
8733 (USE_MMAP_FOR_BUFFERS): Define instead of REL_ALLOC_MMAP.
8734
8735 * Makefile.in (mallocobj) [SYSTEM_MALLOC]: Don't add ralloc.o.
8736
8737 * emacs.c: Change conditional compilation on REL_ALLOC_MMAP to
8738 USE_MMAP_FOR_BUFFERS.
8739
8740 * insdel.c (make_gap): Use enlarge_buffer_text.
8741
8742 * buffer.c: Move allocation with mmap here, from ralloc.c. Change
8743 conditional compilation on REL_ALLOC_MMAP to USE_MMAP_FOR_BUFFERS.
8744 (mmap_alloc, mmap_free, mmap_realloc) [REL_ALLOC_MMAP]: Renamed
8745 from former r_alloc_* functions in ralloc.c.
8746 (mmap_page_size, mmap_initialized_p) [REL_ALLOC_MMAP]: New variables.
8747 (MEM_ALIGN) [REL_ALLOC_MMAP]: New macro.
8748 (mmap_init) [REL_ALLOC_MMAP]: New function.
8749 (alloc_buffer_text, enlarge_buffer_text, free_buffer_text): New
8750 functions replacing macros BUFFER_ALLOC, BUFFER_REALLOC, and
8751 BUFFER_FREE.
8752
8753 * buffer.h (BUFFER_ALLOC, BUFFER_REALLOC, BUFFER_FREE): Removed.
8754 (enlarge_buffer_text): Add prototype.
8755
8756 * ralloc.c: Remove everything having to do with the use of mmap.
8757
8758 2000-09-13 Gerd Moellmann <gerd@gnu.org>
8759
8760 * sound.c (Fplay_sound): Doc fix.
8761
8762 * keyboard.c: Avoid some more compiler warnings.
8763 (parse_tool_bar_item): Ignore cached key bindings.
8764
8765 * alloc.c: Add some comments about DOUG_LEA_MALLOC's use of mmap
8766 and allocation of Lisp data.
8767
8768 2000-09-12 Gerd Moellmann <gerd@gnu.org>
8769
8770 * xfaces.c: Remove conditional compilation on SCALABLE_FONTS.
8771 (Finternal_set_lisp_face_attribute): If frame is 0, set new frame
8772 defaults first.
8773
8774 * lread.c (Fload): Put code checking for recursive loads in #if 0.
8775
8776 2000-09-12 Miyashita Hisashi <himi@meadowy.org>
8777
8778 * ccl.c: Comment fixed.
8779 (MAX_MAP_SET_LEVEL): Increased to 30.
8780 (PUSH_MAPPING_STACK): Enclose with do-while block.
8781 (POP_MAPPING_STACK): Likewise.
8782 (stack_idx_of_map_multiple): New variable.
8783 (CCL_CALL_FOR_MAP_INSTRUCTION): New macro.
8784 (ccl_driver) <CCL_IterateMultipleMap>: If the content is a symbol,
8785 call the corresponding CCL program by CCL_CALL_FOR_MAP_INSTRUCTION.
8786 (ccl_driver) <CCL_MapSingle>: Likewise.
8787 (ccl_driver) <CCL_MapMultiple>: Rewritten to fix many bugs, deal
8788 with the case where looking up process reaches to the end of
8789 map-set, and call CCL programs as the above change.
8790
8791 2000-09-11 Gerd Moellmann <gerd@gnu.org>
8792
8793 * xfns.c (png_load, jpeg_load): Declare some variables volatile
8794 that might be clobbered by longjmp.
8795 (check_x_display_info, x_decode_color, create_frame_xic)
8796 (Fx_display_backing_store, Fx_display_visual_class)
8797 (x_build_heuristic_mask, pbm_scan_number): Avoid compiler warnings.
8798
8799 * lread.c (init_lread): Set Vloads_in_progress to nil.
8800 (Fload): Show list of recursively loaded files, when signaling an
8801 error.
8802
8803 * lread.c (Vloads_in_progress): New variable.
8804 (record_load_unwind): New function.
8805 (Fload): Check for recursive loads.
8806 (syms_of_lread): Initialize Vloads_in_progress.
8807 (read_integer, read1): Avoid some compiler warnings.
8808
8809 * fns.c (concat, Fsubstring, internal_equal, Fnconc): Avoid some
8810 compiler warnings.
8811
8812 2000-09-11 Miles Bader <miles@gnu.org>
8813
8814 * editfns.c (Fbuffer_string): Doc fix.
8815
8816 2000-09-10 Gerd Moellmann <gerd@gnu.org>
8817
8818 * ralloc.c (mmap_enlarge): Don't return 0 if successful.
8819
8820 2000-09-09 Ken Raeburn <raeburn@gnu.org>
8821
8822 * s/netbsd.h: Use NOT_C_CODE, not NO_C_SOURCE, when deciding
8823 whether to include other header files.
8824
8825 2000-09-09 Gerd Moellmann <gerd@gnu.org>
8826
8827 * xfaces.c (CYCLE_CHECK): Don't use the Lisp_Object returned
8828 by Fmemq as a boolean.
8829
8830 2000-09-08 Stefan Monnier <monnier@cs.yale.edu>
8831
8832 * xfaces.c (Finternal_set_lisp_face_attribute): Minor thinko.
8833
8834 2000-09-08 Gerd Moellmann <gerd@gnu.org>
8835
8836 * ralloc.c (mmap_fd): Remove initializer which can make it
8837 read-only in a dumped Emacs.
8838 (mmap_fd_1): New variable.
8839 (mmap_set_vars): Remove local `fd'. Save mmap_fd in mmap_fd_1,
8840 restore it from there.
8841 (r_alloc, r_re_alloc, r_alloc_free): Call r_alloc_init
8842 unconditionally so that mmap_fd can be initialized there.
8843 (r_alloc_init_fd): Open-coded in r_alloc_init; function removed.
8844 (r_alloc_init) [REL_ALLOC_MMAP && !MAP_ANON]: Open /dev/zero.
8845 (r_alloc_init) [REL_ALLOC_MMAP && MAP_ANON]: Set mmap_fd to -1.
8846
8847 * xfaces.c (Finternal_merge_in_global_face): Return a Lisp object.
8848
8849 * xdisp.c (dump_glyph_row): Fix printf format string.
8850 (display_line, move_it_in_display_line_to): Avoid compiler warnings.
8851
8852 * s/freebsd.h (GC_MARK_STACK, REL_ALLOC_MMAP): Define.
8853
8854 * keymap.c (Fset_keymap_parent): Check for cycles in keymap
8855 inheritance.
8856
8857 * xdisp.c (try_window_id): When trying to locate cursor in
8858 unchanged rows at the top, handle the case that we can't find it.
8859
8860 * xterm.c (x_draw_glyphs): Handle case START and END are out
8861 of bounds more carefully.
8862
8863 2000-09-08 Dave Love <fx@gnu.org>
8864
8865 * s/sol2.h (REL_ALLOC_MMAP): Define.
8866 * s/irix5-0.h (REL_ALLOC_MMAP): Likewise.
8867
8868 * ralloc.c: Don't include string.h (redundant).
8869 (MAP_ANON) [REL_ALLOC_MMAP]: Ensure it's defined.
8870 [!MAP_ANON]: Include fcntl.h.
8871 (mmap_fd) [REL_ALLOC_MMAP]: New variable.
8872 (r_alloc, r_re_alloc, r_alloc_free)
8873 (mmap_enlarge, mmap_set_vars): Use it.
8874 (r_alloc_init_fd): New function.
8875 (__morecore) [SYSTEM_MALLOC]: Don't declare.
8876 (r_alloc_init): Call r_alloc_init_fd. Conditionalize stuff on
8877 malloc type.
8878
8879 * Makefile.in (allocaobj) [!SYSTEM_MALLOC && REL_ALLOC_MMAP]:
8880 Remove vm-limit.o.
8881
8882 * unexelf.c (SHT_MIPS_DEBUG, HDRR) [__mips__]: Really confine last
8883 change to __NetBSD__.
8884
8885 2000-09-08 Kenichi Handa <handa@etl.go.jp>
8886
8887 * search.c (compile_pattern): Check the multibyteness of cached
8888 string and PATTERN.
8889
8890 2000-09-08 Miles Bader <miles@gnu.org>
8891
8892 * xfaces.c (default_face_vector): Function removed.
8893 (Finternal_merge_in_global_face): Restore old global/local
8894 attribute override order. Use inline loop instead of calling
8895 default_face_vector.
8896
8897 2000-09-07 Gerd Moellmann <gerd@gnu.org>
8898
8899 * ralloc.c (obtain, relinquish, relinquish, r_alloc_size_in_use)
8900 (get_bloc, relocate_blocs, update_heap_bloc_correspondence)
8901 (resize_bloc, r_alloc_sbrk, r_alloc_init): Add casts to `char *'
8902 where necessary, in case POINTER_TYPE is `void'.
8903
8904 2000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
8905
8906 * frame.c (make_terminal_frame): Initialize frame foreground and
8907 background colors to unspecified, for the initial instance of an
8908 MSDOS frame.
8909
8910 2000-09-07 Gerd Moellmann <gerd@gnu.org>
8911
8912 * ralloc.c (mmap_find): Fix overlap computation.
8913 (mmap_enlarge): Compute nbytes before trying to find an
8914 overlapping region.
8915
8916 * xfaces.c (smaller_face): Compare font heights with `<' and `>'
8917 instead of `!='.
8918
8919 * lread.c (syms_of_lread): Change value of regexp
8920 Vbytecomp_version_regexp to not match some XEmacs-compiled files.
8921
8922 * xmenu.c (xdialog_show): When looking up the selection in
8923 menu_items, take `quote' boundaries into account; this corresponds
8924 to a nil ITEM in x-popup-dialog.
8925
8926 2000-09-07 Kenichi Handa <handa@etl.go.jp>
8927
8928 * charset.h (MIN_CHARSET_OFFICIAL_DIMENSION1): Define it as 0x80,
8929 not 0x81.
8930 (MIN_CHAR_OFFICIAL_DIMENSION1): Define it as ((0x81 - 0x70) << 7).
8931
8932 * coding.c (encode_coding_sjis_big5): Use translation table for
8933 encoding, not decoding. Fix the handling of latin-jisx0201.
8934 Check for the charset katakana-jisx0201 too.
8935 (ONE_MORE_CHAR): Call translate_char with CHARSET arg -1.
8936 (detect_coding_sjis): Check the byte sequence more rigidly.
8937
8938 2000-09-07 Gerd Moellmann <gerd@gnu.org>
8939
8940 * xfaces.c (Vparam_value_alist): New variable.
8941 (syms_of_xfaces): Initialize it.
8942 (Finternal_set_lisp_face_attribute): Avoid more consing.
8943
8944 * frame.c (Fframe_parameter): Handle `name' and `background-mode'
8945 specially.
8946 (Fframe_parameter) [HAVE_X_WINDOWS]: Handle `display' specially.
8947 (Qbackground_mode): New variable.
8948 (syms_of_frame_1): Initialize Qbackground_mode.
8949
8950 * lisp.h (Qdisplay): Declare extern.
8951
8952 * xfaces.c (Finternal_set_lisp_face_attribute): If FRAME is 0,
8953 change face on all frames, and change the default for new frames.
8954
8955 2000-09-07 Dave Love <fx@gnu.org>
8956
8957 * Makefile.in [!SYSTEM_MALLOC && REL_ALLOC_MMAP]: Set mallocobj.
8958
8959 2000-09-07 Kenichi Handa <handa@etl.go.jp>
8960
8961 * charset.h (MAKE_CHAR): Be sure to set MSB of C1 to 0.
8962
8963 * charset.c: Include composite.h
8964 (lisp_string_width): New function.
8965 (Fstring_width): Call lisp_string_width instead of strwidth.
8966
8967 * Makefile.in (charset.o): Depends on composite.h.
8968
8969 * process.c (read_process_output): Before inserting the decoded
8970 text in the buffer, adjust the multibyteness.
8971
8972 2000-09-06 Gerd Moellmann <gerd@gnu.org>
8973
8974 * buffer.c (set_buffer_internal_1) [REL_ALLOC_MMAP]: If
8975 buffer's text buffer is null, map new memory.
8976
8977 * ralloc.c (POINTER, SIZE) [emacs]: Define in terms of
8978 POINTER_TYPE and size_t.
8979 (struct mmap_region) [REL_ALLOC_MMAP]: New structure.
8980 (mmap_regions, mmap_regions_1) [REL_ALLOC_MMAP]: New variables.
8981 (ROUND, MMAP_REGION_STRUCT_SIZE, MMAP_REGION, MMAP_USER_AREA)
8982 [REL_ALLOC_MMAP]: New macros.
8983 (mmap_find, mmap_free, mmap_enlarge, mmap_set_vars)
8984 (mmap_mapped_bytes, r_alloc, r_re_alloc, r_alloc_free)
8985 [REL_ALLOC_MMAP]: New functions.
8986
8987 * emacs.c (Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars
8988 before and after unexec.
8989
8990 * buffer.c (init_buffer) [REL_ALLOC_MMAP]: Map new buffer
8991 text buffers if necessary.
8992
8993 * buffer.h (R_ALLOC_DECLARE): Removed because unused.
8994 (r_alloc, r_re_alloc, r_alloc_free): Use POINTER_TYPE and size_t
8995 in prototypes.
8996
8997 * config.in (HAVE_MMAP): Add #undef.
8998
8999 2000-09-05 Gerd Moellmann <gerd@gnu.org>
9000
9001 * frame.c (Qdisplay_type): New variable.
9002 (syms_of_frame_1): Initialize it.
9003 (Fframe_parameter): New function that avoids consing.
9004 (syms_of_frame): Defsubr it.
9005
9006 * buffer.c (Fother_buffer): Consider buffers as invisible when
9007 they are displayed in a window on an invisible frame.
9008
9009 * window.c (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
9010 get-largest-window always return nil.
9011
9012 2000-09-04 Gerd Moellmann <gerd@gnu.org>
9013
9014 * lread.c (syms_of_lread): Make Vbytecomp_version_regexp a Lisp
9015 variable; recognize Emacs 19 elc files.
9016
9017 2000-09-04 Miles Bader <miles@gnu.org>
9018
9019 * xmenu.c (xmenu_show): Call x_set_menu_resources_from_menu_face
9020 before initially popping up the menu, so the menu doesn't flash
9021 when the face settings are significantly different from the defaults.
9022
9023 2000-09-04 Stefan Monnier <monnier@cs.yale.edu>
9024
9025 * regex.c (WIDE_CHAR_SUPPORT): New macro.
9026 (btowc, iswctype, wctype) [_LIBC]: Redefine to __<fun>.
9027 (BIT_ALPHA, BIT_ALNUM, BIT_ASCII, BIT_NONASCII, BIT_GRAPH, BIT_PRINT)
9028 (BIT_UNIBYTE): Remove.
9029 (re_match_2_internal): Delete corresponding code and streamline the
9030 BIT_MULTIBYTE case to not bother checking ISUNIBYTE.
9031 (CHAR_CLASS_MAX_LENGTH) [!WIDE_CHAR_SUPPORT]: Set to 9 rather than 6.
9032 (re_wctype_t): New type.
9033 (re_wctype, re_iswctype, re_wctype_to_bit): New functions.
9034 (regex_compile): Use them and fix handling of overly long char classes.
9035
9036 2000-09-03 Andrew Innes <andrewi@gnu.org>
9037
9038 * makefile.w32-in: Change to DOS line endings.
9039
9040 * s/ms-w32.h (ORDINARY_LINK): New define.
9041
9042 * w32.c (_ANONYMOUS_UNION) [__GNUC__]: New define
9043 (_ANONYMOUS_STRUCT) [__GNUC__]: New define.
9044
9045 * makefile.w32-in (clean): Don't delete config.h and epaths.h.
9046 (distclean): Delete them here instead.
9047
9048 * w32proc.c (compare_env): Convert to uppercase for comparison,
9049 not lowercase, to match how the native Windows shell works.
9050
9051 2000-09-03 Jason Rumney <jasonr@gnu.org>
9052
9053 * ChangeLog: Remove -unix from coding. Let Emacs autodetect, as
9054 CVS changes the line-ends when checking in/out on DOS/Windows.
9055
9056 * makefile.nt (emacs): Do not change directory to run temacs, as
9057 the load-path is set relative to current directory.
9058
9059 2000-09-03 Miles Bader <miles@gnu.org>
9060
9061 * xterm.c (x_alloc_lighter_color_for_widget): New function.
9062
9063 2000-09-02 Gerd Moellmann <gerd@gnu.org>
9064
9065 * xdisp.c (redisplay_mode_lines): New function.
9066 (display_mode_lines): Return number of mode lines displayed.
9067 (echo_area_display): Use redisplay_mode_lines to draw garbaged
9068 mode lines. Don't temporarily bind redisplay-dont-pause to t.
9069
9070 * emacs.c, callint.c, doc.c, editfns.c: Remove includes of
9071 string.h and strings.h.
9072 (index) [HAVE_INDEX]: Add prototype.
9073
9074 * unexelf.c (SHT_PROGBITS) [__NetBSD__ && !PT_LOAD]: Don't define.
9075 (SHT_MIPS_DEBUG, HDRR) [__NetBSD__ && __mips__]: Define.
9076
9077 * s/netbsd.h [!NO_C_SOURCE]: Include <signal.h>.
9078 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
9079
9080 2000-09-01 Gerd Moellmann <gerd@gnu.org>
9081
9082 * lread.c (read1): Accept `?' as symbol constituent, for
9083 compatiblity with XEmacs.
9084
9085 2000-08-31 Stefan Monnier <monnier@cs.yale.edu>
9086
9087 * regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
9088 (struct re_pattern_buffer): Remove newline_anchor.
9089 * regex.c: Keep namespace clean for GNU libc by renaming <fun>
9090 to __<fun> and using `weak_alias (__<fun>, <fun>)'.
9091 (re_max_failures, fail_stack): Use size_t rather than unsigned.
9092 (regex_compile): For ^ and $, choose between buffer and line (beg|end)
9093 depending on the new RE_NO_NEWLINE_ANCHOR syntax flag.
9094 (print_compiled_pattern, re_search_2, mutually_exclusive_p)
9095 (re_match_2_internal, re_compile_pattern, re_comp, regcomp):
9096 Get rid of references to newline_anchor.
9097 (regcomp): Allocate and precompute a fastmap.
9098
9099 2000-08-31 Gerd Moellmann <gerd@gnu.org>
9100
9101 * lread.c (openp): GCPRO local variable `filename'.
9102
9103 2000-08-30 Stefan Monnier <monnier@cs.yale.edu>
9104
9105 * regex.h (struct re_pattern_buffer): Use size_t for used/allocated.
9106
9107 * regex.c: Merge some changes from GNU libc. Add prototypes.
9108 (bcopy, bcmp, REGEX_REALLOCATE, re_match_2_internal):
9109 Use memcmp and memcpy instead of bcopy and bcmp.
9110 (init_syntax_once): Use ISALNUM.
9111 (PUSH_FAILURE_POINT, re_match_2_internal): Remove failure_id.
9112 (REG_UNSET_VALUE): Remove. Use NULL instead.
9113 (REG_UNSET, re_match_2_internal): Use NULL.
9114 (SET_HIGH_BOUND, MOVE_BUFFER_POINTER, ELSE_EXTEND_BUFFER_HIGH_BOUND):
9115 New macros.
9116 (EXTEND_BUFFER): Use them (to work with BOUNDED_POINTERS).
9117 (GET_UNSIGNED_NUMBER): Don't use ISDIGIT.
9118 (regex_compile): In handle_interval, return an error rather than try to
9119 unfetch the interval if we can't find the closing brace.
9120 Obey the RE_NO_GNU_OPS syntax bit.
9121 (TOLOWER): New macro.
9122 (regcomp): Use it.
9123 (regexec): Allocate regs.start and regs.end as one block.
9124
9125 2000-08-30 Gerd Moellmann <gerd@gnu.org>
9126
9127 * xdisp.c (echo_area_display): Check display_completed instead
9128 of calling detect_input_pending.
9129
9130 * dispnew.c (update_frame): Only set display_completed here; move
9131 the update_begin and update_end calls here from update_frame_1.
9132 (update_frame_1): Don't set display_completed here, don't call
9133 update_begin/update_end.
9134
9135 * xfaces.c (set_font_frame_param): Use Fmodify_frame_parameters
9136 instead of store_frame_param.
9137
9138 2000-08-29 Gerd Moellmann <gerd@gnu.org>
9139
9140 * dispnew.c (build_frame_matrix_from_leaf_window): If a row of a
9141 desired window matrix hasn't been displayed, use the current row
9142 instead. Make sure that only those frame rows are updated for
9143 which there exists a corresponding enabled desired row.
9144
9145 2000-08-29 Miles Bader <miles@gnu.org>
9146
9147 * xfaces.c (default_face_vector): New function.
9148 (Finternal_merge_in_global_face): Use it instead of merge_face_vectors.
9149
9150 2000-08-29 Gerd Moellmann <gerd@gnu.org>
9151
9152 * lread.c (openp): Prevent temporary string passed to
9153 Ffile_readable_p from being garbage collected.
9154
9155 2000-08-28 Dave Love <fx@gnu.org>
9156
9157 * keymap.c (store_in_keymap): Add `static' to declaration.
9158
9159 2000-08-28 Gerd Moellmann <gerd@gnu.org>
9160
9161 * emacs.c, callint.c, doc.c, editfns.c
9162 (toplevel) [HAVE_STRING_H]: Include string.h.
9163 (toplevel) [HAVE_STRINGS_H]: Include strings.h.
9164 (index): Remove prototypes which might conflict with non-standard
9165 definitions of index/strchr.
9166
9167 * s/usg5-3.h (index): Define only if not HAVE_INDEX.
9168 (rindex): Define only if !HAVE_RINDEX.
9169
9170 * s/sco5.h (bcopy, bzero, bcmp): Don't define.
9171
9172 * config.in (HAVE_INDEX, HAVE_RINDEX, HAVE_STRINGS_H): Add undefs.
9173
9174 2000-08-28 Miles Bader <miles@gnu.org>
9175
9176 * xfaces.c (merge_face_vectors): Clear TO's :font attribute if
9177 made inconsistent by a font-related attribute in FROM.
9178 (merge_face_inheritance): Add function comment.
9179
9180 2000-08-28 Kenichi Handa <handa@etl.go.jp>
9181
9182 * keyboard.c (read_char_minibuf_menu_prompt): Call read_char with
9183 the 4th arg (PREV_EVENT) Qt to suppress input method.
9184
9185 2000-08-27 Stefan Monnier <monnier@cs.yale.edu>
9186
9187 * regex.c: Indent cpp directives and remove parens after `defined'.
9188 (PTR_TO_OFFSET, POS_AS_IN_BUFFER): Move to a better place.
9189 (ISDIGIT, ISCNTRL, ISXDIGIT) [!emacs]: Remove duplicate definition.
9190 (regex_compile): Use RE_FRUGAL instead of RE_ALL_GREEDY.
9191 (re_compile_pattern): Use size_t for length.
9192 (init_syntax_once): Move to a better place.
9193 * regex.h: Merge changes from GNU libc. Indent cpp directives.
9194 (RE_FRUGAL): Replaces RE_ALL_GREEDY (inverted meaning).
9195
9196 * syntax.c (back_comment): Detect cases where a comment-starter is
9197 actually inside another comment as in: /* a // b */ c // d \n.
9198 Make it clear that `comstart_pos' is unused for nested comments.
9199
9200 * keymap.c (store_in_keymap, fix_submap_inheritance): New prototypes.
9201 (KEYMAPP): New macro.
9202 (Fkeymap_parent, Fset_keymap_parent): Use it.
9203 (fix_submap_inheritance): Mark it static.
9204 (define_as_prefix, describe_buffer_bindings, describe_command)
9205 (describe_translation, describe_map): Complete prototypes.
9206
9207 * lisp.h (store_in_keymap, fix_submap_inheritance): Remove.
9208
9209 * keyboard.c (menu_bar_item): Detect duplicate entries for all items
9210 to better match the key-lookup behavior.
9211
9212 2000-08-27 Gerd Moellmann <gerd@gnu.org>
9213
9214 * xfaces.c (lface_fully_specified_p): Handle :inherit.
9215 (Finternal_set_lisp_face_attribute): Fix typo in error message.
9216
9217 2000-08-27 Eli Zaretskii <eliz@is.elta.co.il>
9218
9219 * Makefile.in (dispnew.o, indent.o, fontset.o, minibuf.o)
9220 (process.o, scroll.o, sysdep.o): Depend on keyboard.h.
9221 (xterm.o): Depend on coding.h
9222
9223 2000-08-26 Kenichi Handa <handa@etl.go.jp>
9224
9225 * cmds.c (internal_self_insert): Delete '#ifdef HAVE_FACES' and
9226 the corresponding '#endif'.
9227
9228 2000-08-26 Miles Bader <miles@gnu.org>
9229
9230 * dispextern.h (enum lface_attribute_index): Add LFACE_INHERIT_INDEX.
9231 * xfaces.c (QCinherit): New variable.
9232 (syms_of_xfaces): Initialize it.
9233 (LFACE_INHERIT): New macro.
9234 (Finternal_get_lisp_face_attribute)
9235 (merge_face_vector_with_property)
9236 (Finternal_set_lisp_face_attribute): Deal with :inherit attribute.
9237 (check_lface_attrs): Allow new types of face height. Check
9238 inherit attribute.
9239 (CYCLE_CHECK): New macro.
9240 (merge_face_inheritance): New function.
9241 (merge_face_vectors): Merge inherited faces too. Add F and
9242 CYCLE_CHECK arguments.
9243 (merge_face_vector_with_property, Finternal_merge_in_global_face)
9244 (lookup_named_face, lookup_derived_face, realize_named_face)
9245 (face_at_string_position, face_at_buffer_position): Supply
9246 new F and CYCLE_CHECK arguments to merge_face_vectors.
9247 (merge_face_heights): New function.
9248 (merge_face_vectors, merge_face_vector_with_property)
9249 (Finternal_set_lisp_face_attribute): Call merge_face_heights to
9250 handle relative face heights.
9251 (lface_same_font_attributes_p): Compare heights using EQ.
9252
9253 2000-08-26 Kenichi Handa <handa@etl.go.jp>
9254
9255 * charset.c (char_to_string): Check the character validity.
9256 (char_valid_p): If C is not less than MAX_CHAR, be sure to return 0.
9257
9258 2000-08-25 Stefan Monnier <monnier@cs.yale.edu>
9259
9260 * regex.c (PUSH_FAILURE_COUNT): New macro.
9261 (POP_FAILURE_REG_OR_COUNT): Renamed from POP_FAILURE_REG.
9262 Handle popping of a register's or a counter's data.
9263 (POP_FAILURE_POINT): Use the new name.
9264 (re_match_2_internal): Push counter data on the stack for succeed_n,
9265 jump_n and set_number_at and remove misleading dead code in succeed_n.
9266
9267 2000-08-25 Gerd Moellmann <gerd@gnu.org>
9268
9269 * xdisp.c (redisplay_internal): If considering all windows on all
9270 frames, update the display for each frame as soon as possible,
9271 instead of first building all desired matrices for all frames, and
9272 then updating them all.
9273 (try_cursor_movement): Handle case that last_cursor.vpos is -1.
9274
9275 2000-08-24 Gerd Moellmann <gerd@gnu.org>
9276
9277 * bytecode.c (mark_byte_stack): Add a comment.
9278
9279 * frame.h (FRAME_FLAGS_AREA_COLS, FRAME_FLAGS_AREA_WIDTH)
9280 (FRAME_LEFT_FLAGS_AREA_WIDTH): Return 0 unless frame is
9281 a graphical frame.
9282
9283 2000-08-24 Kenichi Handa <handa@etl.go.jp>
9284
9285 * minibuf.c (do_completion): Always use compare-string, not
9286 string-equal because the latter doesn't pay attention to
9287 multibyteness of strings.
9288
9289 * process.c (create_process): Don't setup raw-text coding here.
9290 (Fopen_network_stream): Don't set coding->src_multibyte and
9291 coding->dst_multibyte here.
9292 (read_process_output): For process filter, return unibyte string
9293 if default-enable-multibyte-characters is nil.
9294 (send_process): If OBJECT is multibyte text, be sure to encoded it
9295 by the specified coding system for the process. Otherwise, setup
9296 raw-text coding.
9297 (init_process): Don't initialize default-process-coding-system here.
9298
9299 2000-08-23 Eli Zaretskii <eliz@is.elta.co.il>
9300
9301 * buffer.c (syms_of_buffer) <scroll-up-aggressively>: Doc fix.
9302 <scroll-down-aggressively>: Likewise.
9303
9304 2000-08-23 Kenichi Handa <handa@etl.go.jp>
9305
9306 * coding.c (encode_eol): Fix bug for the case of dst_bytes being
9307 zero. Set coding->produced_char correctly.
9308
9309 2000-08-22 Andrew Innes <andrewi@gnu.org>
9310
9311 * makefile.w32-in: New file.
9312
9313 * unexw32.c (unexec): Ignore old_name, and use the actual location
9314 of the current executable instead. Base new_name on this.
9315
9316 * w32proc.c (create_child): Remove reference to security
9317 descriptor, which isn't needed and doesn't compile with mingw32.
9318
9319 * w32term.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
9320 up dllimport attributes.
9321 (x_update_window_end): Update prototype.
9322
9323 * unexec.c (write_segment) [USE_CRT_DLL]: Remove unnecessary
9324 extern, which screws up dllimport attributes.
9325
9326 * sysdep.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
9327 up dllimport attributes.
9328
9329 * strftime.c [USE_CRT_DLL]: Remove unnecessary extern, which
9330 screws up dllimport attributes.
9331
9332 * process.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
9333 up dllimport attributes.
9334 (create_process) [USE_CRT_DLL]: Remove unnecessary extern, which
9335 screws up dllimport attributes.
9336
9337 * lread.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
9338 up dllimport attributes.
9339
9340 * keyboard.c [USE_CRT_DLL]: Remove unnecessary extern, which
9341 screws up dllimport attributes.
9342
9343 * floatfns.c [USE_CRT_DLL]: Remove unnecessary extern, which
9344 screws up dllimport attributes.
9345
9346 * fileio.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
9347 up dllimport attributes.
9348
9349 * emacs.c (malloc_initialize_hook) [USE_CRT_DLL]: Remove
9350 unnecessary extern, which screws up dllimport attributes.
9351 (main): Ditto.
9352
9353 * editfns.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
9354 up dllimport attributes.
9355
9356 * dispnew.c (window_change_signal) [USE_CRT_DLL]: Remove
9357 unnecessary extern, which screws up dllimport attributes.
9358
9359 * callproc.c [USE_CRT_DLL]: Remove unnecessary extern, which
9360 screws up dllimport attributes.
9361
9362 * buffer.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
9363 up dllimport attributes.
9364
9365 * w32proc.c (IsValidLocale): Extern missing from mingw32 headers.
9366
9367 * w32bdf.c (search_file_line):
9368 (set_bdf_font_info):
9369 (seek_char):
9370 (w32_get_bdf_glyph):
9371 (w32_BDF_to_x_font): Fix compile warnings.
9372
9373 * w32menu.c: Include keyboard.h before frame.h. Fix compile warnings.
9374
9375 * w32select.c: Include keyboard.h before frame.h.
9376
9377 * w32fns.c (max): Define macro.
9378 (JOHAB_CHARSET): Define if not known.
9379 (MOD_ALT, MOD_CONTROL, MOD_SHIFT, MOD_WIN): Define if not known.
9380 (Fx_show_tip): Synch with X version.
9381
9382 * w32xfns.c: Include keyboard.h before frame.h.
9383
9384 * w32fns.c: Include keyboard.h before frame.h.
9385
9386 * w32term.c: Include keyboard.h before frame.h.
9387
9388 * fontset.c: Include keyboard.h before frame.h.
9389
9390 * w32inevt.c: Include keyboard.h before frame.h.
9391 (MOUSE_MOVED): Define if not known.
9392
9393 * minibuf.c: Include keyboard.h before frame.h.
9394
9395 * keyboard.c: Include keyboard.h before frame.h.
9396
9397 * indent.c: Include keyboard.h before frame.h.
9398
9399 * dispnew.c: Include keyboard.h before frame.h.
9400
9401 * buffer.c: Include keyboard.h before frame.h.
9402
9403 * alloc.c: Include keyboard.h before frame.h.
9404
9405 * print.c: Include keyboard.h before frame.h.
9406
9407 * process.c: Include keyboard.h before frame.h.
9408
9409 * scroll.c: Include keyboard.h before frame.h.
9410
9411 * sysdep.c: Include keyboard.h before frame.h.
9412
9413 * term.c: Include keyboard.h before frame.h.
9414
9415 * window.c: Include keyboard.h before frame.h.
9416
9417 * xdisp.c: Include keyboard.h before frame.h.
9418 Separate GLYPH_DEBUG and DEBUG_TRACE_MOVE.
9419
9420 * frame.c: Include keyboard.h before frame.h.
9421
9422 * w32heap.h: Undefine min, max.
9423
9424 * w32gui.h: Undefine min, max.
9425
9426 * unexw32.c: Change PUCHAR to PCHAR.
9427 (PTR_TO_OFFSET): Cast ptr to unsigned char *.
9428 (relocate_offset):
9429 (get_section_info):
9430 (copy_executable_and_dump_data): Remove unnecessary static defs.
9431 (copy_executable_and_dump_data): Fix compile warnings.
9432
9433 * sysdep.c (NULL) [WINDOWSNT]: Define NULL if not defined.
9434
9435 * w32console.c (min): Define macro.
9436 (clear_frame, write_glyphs): Fix compile warning.
9437
9438 * w32proc.c (compare_env):
9439 (find_child_console): Fix compile warning.
9440
9441 * w32.c (sys_strerror): Use sys_nerr instead of _sys_nerr. Use
9442 sys_errlist instead of _sys_errlist.
9443 (get_emacs_configuration_options): New function.
9444
9445 * s/ms-w32.h (sys_nerr): Provide default definition.
9446 (strdup, strupr, strnicmp, stricmp, tzset, tzname): Map to same
9447 name with _ prepended.
9448 (NSIG): Define if not known.
9449 (get_emacs_configuration): Provide extern declaration.
9450 (get_emacs_configuration_options): Provide extern declaration.
9451 (EMACS_CONFIG_OPTIONS): Call get_emacs_configuration_options.
9452
9453 * w32.c (gettimeofday): Use struct timeb, not struct _timeb.
9454 (map_w32_filename):
9455 (read_unc_volume): Fix compile warning.
9456
9457 * s/ms-w32.h (_WINSOCK_H): Define to prevent normal winsock
9458 definitions from being used.
9459
9460 * lisp.h [WINDOWSNT]: Don't declare externs for getenv, ctime and getwd.
9461
9462 * w32.c (unc_volume_file_attributes):
9463 (open_unc_volume): Make arg const.
9464
9465 * sysdep.c [WINDOWSNT]: Remove extern decl of errno.
9466 (read_input_waiting): Remove excess parameter.
9467
9468 * w32.c (init_environment): Call _access.
9469 (check_windows_init_file): Call _close.
9470 (init_user_info): Call _putenv.
9471 (init_environment): Call _putenv and _strdup.
9472 (init_ntproc): Reset volume info cache on startup.
9473
9474 * s/ms-w32.h (malloc, free, realloc, calloc): Rename if
9475 USE_CRT_DLL is defined, so Emacs can use GNU malloc even though it
9476 cannot override the CRT malloc.
9477
9478 * makefile.nt (LOCAL_FLAGS): Define USE_CRT_DLL if requested.
9479 (LINK_FLAGS): Append to original value of LINK_FLAGS.
9480
9481 * w32heap.c [!USE_CRT_DLL]: Don't define _heap_init and _heap_term
9482 unless we are linking with a static CRT.
9483 (RVA_TO_PTR): Cast result to unsigned char*.
9484
9485 * w32.c (GetCachedVolumeInformation): Use xmalloc, xfree and xstrdup.
9486 (add_volume_info): Use xstrdup.
9487
9488 2000-08-22 Stefan Monnier <monnier@cs.yale.edu>
9489
9490 * minibuf.c (Vcompletion_auto_help): Renamed from `auto_help'.
9491 (do_completion, Fminibuffer_complete_word): Use it.
9492 (syms_of_minibuf): Turn completion-auto-help into a proper Lisp
9493 var so it can take non-boolean values.
9494
9495 2000-08-21 Gerd Moellmann <gerd@gnu.org>
9496
9497 * editfns.c (find_field): Formatting changes.
9498 (toplevel): Some old-style function forward declarations
9499 changed to prototypes, some new protypes added, some functions
9500 made static.
9501
9502 * lisp.h (set_time_zone_rule): Add prototype.
9503 (use_dialog_box): External declaration.
9504
9505 * keyboard.c (gen_help_event): Add parameter SIZE.
9506 (kbd_buffer_events_waiting): Slightly rewritten.
9507 (clear_event): New function.
9508 (kbd_buffer_get_event): Use it, and clear the input_events of
9509 HELP_EVENTs.
9510 (init_keyboard): Remove duplicate creation of kbd_buffer_gcpro and
9511 don't fill the newly created array with nils.
9512 (toplevel): Convert some old-style function forward declarations
9513 to prototypes.
9514
9515 * keyboard.h (gen_help_event): Change prototype.
9516
9517 * xterm.c (XTread_socket): Change calls to gen_help_event.
9518
9519 * w32term.c (w32_read_socket): Change calls to gen_help_event.
9520
9521 * eval.c (Fmacroexpand): Doc fix.
9522
9523 2000-08-20 Jason Rumney <jasonr@gnu.org>
9524
9525 * w32term.h (x_display_info_for_display): Remove as this function
9526 does not exist on W32.
9527
9528 * w32term.c (help_echo_window): New variable.
9529 (syms_of_w32term): staticpro it.
9530 (note_mode_line_highlight): Set it.
9531 (XTextExtents16): Removed as there is no equivalent on W32.
9532 (x_compute_glyph_string_overhangs): Incomplete body removed, as
9533 the X way of doing this will not work for W32.
9534 (w32_intersect_rectangles): Removed. Use IntersectRect API call.
9535 (x_draw_image_foreground): Avoid drawing outside of the clip area
9536 when image doesn't have a mask.
9537 (note_mouse_highlight): Process overlays in the right order of
9538 priority. Set help_echo_window.
9539 (x_draw_bar_cursor): If cursor is on an image, draw a box cursor
9540 because that's more visible for large images.
9541
9542 * w32menu.c (keymap_panes): Pass the keymap's prompt as the pane
9543 name to single_keymap_panes.
9544 (w32_menu_show): Set wv->title when dealing with titles.
9545 (w32_menu_display_help): Call show_help_echo with OBJECT and POS.
9546
9547 2000-08-21 Miles Bader <miles@gnu.org>
9548
9549 * minibuf.c (do_completion): Try again if we rewrite the input
9550 string, but no completion was done, so that any completion message
9551 will be correct.
9552
9553 2000-08-20 Gerd Moellmann <gerd@gnu.org>
9554
9555 * xfaces.c (lface_equal_p): Compare strings differently.
9556 (Qtty_color_alist, Vtty_defined_color_alist): New variables.
9557 (realize_tty_face): Use them.
9558 (syms_of_xfaces): Initialize new variables.
9559 (map_tty_color): New function, extracted from realize_tty_face.
9560 (map_tty_color) [MSDOS || WINDOWSNT]: If using the frame's default
9561 foreground or background color, store the new color name in the
9562 realized face; previous code trying to do this had no effect.
9563 (realize_tty_face): Use map_tty_color.
9564 (Fclear_face_cache): Set face_change_count and ensure thorough
9565 redisplay.
9566
9567 2000-08-19 Gerd Moellmann <gerd@gnu.org>
9568
9569 * undo.c (record_first_change, record_marker_adjustment): Don't
9570 use XBUFFER on last_undo_buffer which might not be a buffer.
9571
9572 2000-08-18 Kenichi Handa <handa@etl.go.jp>
9573
9574 * coding.c (decode_coding_string): Set members consumed,
9575 consumed_char, produced, produced_char of *coding correctly. If
9576 decode_coding doesn't consume any byte, don't try anymore.
9577 (encode_coding_string): Likewise.
9578
9579 2000-08-18 Gerd Moellmann <gerd@gnu.org>
9580
9581 * lisp.h (CHECK) [ENABLE_CHECKING]: Make both sides of the
9582 conditional have void type, for Standard C compilers.
9583
9584 * xdisp.c (redisplay_internal): Compare windows for equality with
9585 EQ, instead of applying XWINDOW to something that might not
9586 be a window.
9587
9588 2000-08-18 Kenichi Handa <handa@etl.go.jp>
9589
9590 * fontset.c (Finternal_char_font): Search only the selected frame
9591 for a window of the current buffer.
9592
9593 2000-08-18 Gerd Moellmann <gerd@gnu.org>
9594
9595 * minibuf.c (do_completion): Use EQ instead of `!=' to compare
9596 Lisp_Objects.
9597
9598 * keyboard.c (kbd_buffer_get_event): Handle the case that the
9599 second half of a HELP_EVENT is found at the start of kbd_buffer.
9600
9601 2000-08-18 Miles Bader <miles@gnu.org>
9602
9603 * lisp.h (Lisp_String): Replace DECLARE_INTERVALS with real decl.
9604
9605 * editfns.c (save_restriction_save): Rewrite to use markers.
9606 (save_restriction_restore): Rewrite to understand new form of data
9607 saved by save_restriction_save.
9608 (Fsave_restriction): Remove cautionary note in doc-string.
9609
9610 2000-08-17 Gerd Moellmann <gerd@gnu.org>
9611
9612 * fileio.c (build_annotations): Add a comment explaining the
9613 return value of format-annotate-function. Replace a spurious call
9614 to Flength with a CONSP test. Call format-annotate-function with
9615 a fifth arg specifying how many times the function is been called
9616 in a row, to let it choose temporary buffers appropriately.
9617
9618 2000-08-17 Dave Love <fx@gnu.org>
9619
9620 * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't
9621 declare make_temp_name twice.
9622
9623 * lread.c: Prototype readevalloop, load_unwind, load_descriptor_unwind.
9624 (unreadpure): Give it an arg.
9625
9626 * unexalpha.c: Prototype fatal_unexec, mark_x,
9627 update_dynamic_symbols. Declare unexec as void.
9628
9629 * cm.c [HAVE_TERMCAP_H]: Include <termcap.h>.
9630 [!HAVE_TERMCAP_H]: Prototype tputs, tgoto.
9631
9632 * alloc.c (lisp_malloc): Declare with POINTER_TYPE.
9633 [SYSTEM_MALLOC]: Make decls in malloc.h conditional on DOUG_LEA_MALLOC.
9634
9635 * alloca.c: Use #error.
9636 [POINTER_TYPE]: Use it.
9637
9638 * eval.c (Fdefvar): Doc fix.
9639
9640 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Avoid
9641 INITIALIZE_INTERVAL.
9642
9643 * buffer.h: Avoid DECLARE_INTERVALS.
9644
9645 * config.in: Add size_t.
9646
9647 2000-08-17 Eli Zaretskii <eliz@is.elta.co.il>
9648
9649 * w16select.c (set_clipboard_data): If there's not enough memory
9650 to put text into clipboard, return 1, as Fw16_set_clipboard_data
9651 expects. In case of other failures, return 3.
9652 (system_error_msg): New error message.
9653 (Fw16_set_clipboard_data): If set_clipboard_data returns 3, print
9654 system_error_msg.
9655
9656 2000-08-16 Gerd Moellmann <gerd@gnu.org>
9657
9658 * term.c (write_glyphs): Also turn off inverse video after turning
9659 off other appearances in case TS_exit_attribute_mode is not equal
9660 to TS_end_standout_mode.
9661 (insert_glyphs): Turn inverse video on/off for each run of glyphs
9662 with the same face.
9663 (turn_off_face): Reset standout_mode only if
9664 TS_exit_attribute_mode has been output and TS_exit_attribute_mode
9665 is equal to TS_end_standout_mode.
9666
9667 2000-08-16 Kenichi Handa <handa@etl.go.jp>
9668
9669 * coding.c (encode_coding): Fix the bug of not flushing ISO escape
9670 sequence at the end of the source block.
9671
9672 * ccl.c (Fccl_program_p): Docstring modified.
9673 (Fccl_execute): Likewise.
9674 (Fccl_execute_on_string): Likewise.
9675
9676 2000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
9677
9678 * msdos.c (IT_write_glyphs): Convert cbp to unsigned char *.
9679
9680 2000-08-16 Kenichi Handa <handa@etl.go.jp>
9681
9682 The following changes are mainly to fix bugs of
9683 encode/decode-coding-string failing if encoding/decoding return
9684 CODING_FINISH_INSUFFICIENT_DST. In addition, delete the global
9685 variable conversion_buffer.
9686
9687 * ccl.c (CCL_WRITE_CHAR): If CH is eight-bit-control char,
9688 decrement dst_end to avoid buffer overflow in the later call of
9689 string_as_multibyte
9690
9691 * coding.h (conversion_buffer_size, conversion_buffer)
9692 (get_conversion_buffer): Extern deleted.
9693
9694 * coding.c (MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
9695 (conversion_buffer, conversion_buffer_size): Variables deleted.
9696 (get_conversion_buffer): Function deleted.
9697 (struct conversion_buffer): New structure.
9698 (MAX_ALLOCA): New macro.
9699 (allocate_conversion_buffer): New macro.
9700 (extend_conversion_buffer, free_conversion_buffer): New functions.
9701 (ccl_coding_driver): Set coding->result.
9702 (decode_coding): Set coding->result to CODING_FINISH_NORMAL if
9703 this is the last block of source.
9704 (encode_coding): Likewise. Handle the source block as the last
9705 one only when the whole source text is consumed.
9706 (decode_coding_string): Handle the case that the output buffer is
9707 too small to decode the whole source text. Use
9708 allocate_conversion_buffer, extend_conversion_buffer and
9709 free_conversion_buffer, not get_conversion_buffer.
9710 (encode_coding_string): Likewise.
9711 (init_coding): Function deleted.
9712 (init_coding_once): Delete code to initialize conversion_buffer_size.
9713
9714 * emacs.c (main): Don't call init_coding.
9715
9716 * msdos.c (IT_write_glyphs): Use a locally declared conversion_buffer.
9717
9718 * term.c (write_glyphs): Use a locally declared conversion_buffer.
9719 (insert_glyphs): Likewise.
9720
9721 * w32console.c (write_glyphs): Use a locally declared
9722 conversion_buffer.
9723
9724 2000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
9725
9726 * msdos.c (IT_update_begin): Don't crash if mouse_face_mouse_frame
9727 member of display_info is NULL.
9728
9729 2000-08-15 Gerd Moellmann <gerd@gnu.org>
9730
9731 * alloc.c (compact_small_strings): Use safe_bcopy, add an assertion.
9732
9733 * term.c (turn_off_face): Reset standout_mode when resetting
9734 appearances with capability `me'.
9735 (write_glyphs): Switch on inverse video before each face change.
9736
9737 2000-08-14 Dave Love <fx@gnu.org>
9738
9739 * alloc.c [HAVE_UNISTD_H]: Include unistd.h; don't declare sbrk.
9740 [!HAVE_UNISTD_H]: Use POINTER_TYPE to declare sbrk.
9741 (lisp_free): Declare and make static.
9742
9743 * window.c: Fix embedded comment.
9744 (syms_of_window): Fix doc string.
9745
9746 2000-08-14 Gerd Moellmann <gerd@gnu.org>
9747
9748 * keymap.c (push_key_description): If C without modifiers is < 32,
9749 make sure to print `C-' before `M-', like in the manual.
9750
9751 2000-08-11 Gerd Moellmann <gerd@gnu.org>
9752
9753 * fns.c (hashfn_eq, hashfn_eql): Don't handle strings specially
9754 since they aren't relocated anymore.
9755 (sxhash_string): Make sure returned hash code fits in a Lisp integer.
9756
9757 * xdisp.c (try_cursor_movement): Fix handling of cursor in
9758 partially visible line which is smaller than the window's height.
9759
9760 2000-08-11 Kenichi Handa <handa@etl.go.jp>
9761
9762 * ccl.c (CCL_READ_CHAR): If source is multibyte, pay attention to
9763 the multibyte form of eight-bit-control characters.
9764 (Fccl_execute_on_string): Initialize ccl->multibyte.
9765
9766 * ccl.h (struct ccl_program): New member multibyte.
9767
9768 * coding.c (ccl_coding_driver): Initialize ccl->multibyte.
9769
9770 2000-08-11 Kenichi Handa <handa@etl.go.jp>
9771
9772 * regex.c (regex_compile) <normal_char>: Pay attention to
9773 multibyteness.
9774 (analyse_first) <exactn>: Setup fastmap correctly for
9775 eight-bit-control characters.
9776
9777 2000-08-11 Kenichi Handa <handa@etl.go.jp>
9778
9779 * termhooks.h (enum event_kind): New member multibyte_char_keystroke.
9780
9781 * keyboard.c (make_lispy_event): Handle the new event type
9782 multibyte_char_keystroke.
9783
9784 * xterm.c: Include coding.h.
9785 (XTread_socket): Work around a bug of XmbLookupString. If the
9786 input is from XIM, decode it according to the current locale. In
9787 that case, generate multibyte_char_keystroke events.
9788
9789 2000-08-11 Kenichi Handa <handa@etl.go.jp>
9790
9791 * xdisp.c (TRACE_MOVE) [GLYPH_DEBUG]: Delete the last semicolon.
9792 (TRACE_MOVE) [not GLYPH_DEBUG]: Define dummy.
9793
9794 2000-08-10 Gerd Moellmann <gerd@gnu.org>
9795
9796 * xdisp.c (trace_move) [GLYPH_DEBUG]: New variable.
9797 (TRACE_MOVE) [GLYPH_DEBUG]: New macro.
9798 (move_it_in_display_line_to): Record iterator's ascent and descent
9799 before producing glyphs, and restore them when we know the glyph
9800 doesn't fit on the line.
9801 (move_it_to): Restructured so that it's easier to debug. If
9802 moving to a vpos, and not moving to an x or character position,
9803 stop as soon as the specified vpos is reached; don't move further
9804 into that line because that might change the computed line height.
9805 (try_cursor_movement): New function, extracted from the cursor
9806 movement branch of redisplay_window. If ending on a partially
9807 visible line, don't try to scroll if the cursor line is taller
9808 than the window.
9809 (redisplay_window): Use try_cursor_movement.
9810
9811 * window.c (Fwindow_end): Rewritten to not use Fvertical_motion,
9812 because that function doesn't cope with variable-height lines.
9813
9814 * xterm.c (x_draw_bar_cursor): If cursor is on an image, draw a
9815 box cursor because that's better visible for large images.
9816
9817 2000-08-10 Miles Bader <miles@gnu.org>
9818
9819 * w32term.c (note_mouse_highlight): Update calls to overlays_at.
9820
9821 2000-08-10 Gerd Moellmann <gerd@gnu.org>
9822
9823 * xdisp.c (Vmessages_buffer_name): New variable.
9824 (message_dolog): Use it.
9825 (syms_of_xdisp): Initialize it.
9826
9827 2000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
9828
9829 * msdos.c (IT_note_mouse_highlight): Update the calls to overlays_at.
9830 (toplevel) <kbd_buffer_store_event>: Remove prototype, it's
9831 redundant now that keyboard.h is included.
9832
9833 2000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
9834
9835 * keyboard.c (kbd_buffer_events_waiting): New function.
9836
9837 * keyboard.h (kbd_buffer_events_waiting): Add prototype.
9838
9839 * msdos.c: Include keyboard.h.
9840 (XMenuActivate): Empty no_event events from the event buffer. If
9841 no events are left after that, call clear_input_pending.
9842 (mouse_clear_clicks): New function, code moved from mouse_init.
9843 (mouse_init, XMenuActivate): Call mouse_clear_clicks to force the
9844 mouse driver to ``forget'' any past clicks.
9845
9846 * Makefile.in (msdos.o): Depend on keyboard.h.
9847
9848 2000-08-09 Gerd Moellmann <gerd@gnu.org>
9849
9850 * lisp.h (input_pending): External declaration.
9851
9852 * dispextern.h (Qredisplay_dont_pause): Declare extern.
9853
9854 * xdisp.c (echo_area_display): Display thoroughly if input is
9855 pending. Bind redisplay-dont-pause to t during the redisplay.
9856 in case input is pending.
9857
9858 * dispnew.c (Qredisplay_dont_pause): New variable.
9859 (syms_of_display): Initialize and staticpro it.
9860 (update_frame_1): Don't interrupt the display for pending input if
9861 redisplay_dont_pause is set.
9862
9863 * dispnew.c (mode_line_string): Declare parameter MODE_LINE_P.
9864
9865 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
9866
9867 2000-08-09 Miles Bader <miles@lsi.nec.co.jp>
9868
9869 * callproc.c (Fcall_process): Terminate the unwind-protect around
9870 the post-read-conversion of coding system.
9871
9872 * buffer.c (overlays_at): Add CHANGE_REQ parameter.
9873 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change): Use it.
9874 * buffer.h (overlays_at): Update prototype.
9875 * xdisp.c (next_overlay_change): Update call to overlays_at.
9876 * xfaces.c (face_at_buffer_position): Likewise.
9877 * textprop.c (Fget_char_property): Likewise.
9878 * xterm.c (note_mouse_highlight): Likewise.
9879
9880 * minibuf.c (do_completion): Don't consider a simple change of
9881 case as `completion'.
9882
9883 2000-08-08 Ken Raeburn <raeburn@gnu.org>
9884
9885 * keyboard.c (syms_of_keyboard): Initialize last_point_position_buffer.
9886 * undo.c (record_delete): Make sure last_point_position_buffer is
9887 a buffer before comparing pointers.
9888
9889 * coding.h (decode_coding_string): Declare.
9890
9891 * intervals.h (Fprevious_single_char_property_change): Declare.
9892
9893 * textprop.c (Fprevious_single_char_property_change): Don't do
9894 arithmetic directly on lisp objects.
9895
9896 * editfns.c (find_field): Use EQ, not ==, to compare Lisp objects.
9897
9898 * keyboard.h (menu_item_eval_property): Declare.
9899
9900 * xdisp.c (message_dolog): Save and protect string "*Messages*" to
9901 reuse as buffer name, instead of recreating (and discarding) every
9902 time a message is logged.
9903 (with_echo_area_buffer): Make callback arg A2 a lisp object.
9904 (current_message_1, truncate_message_1, set_message_1)
9905 (display_echo_area_1, resize_mini_window_1): Signatures changed.
9906 (current_message, truncate_echo_area, display_echo_area)
9907 (resize_echo_area_axactly): Changed calls.
9908
9909 * coding.c (find_safe_codings): CHAR_TABLE_SET index must be a
9910 Lisp object.
9911 (Ffind_coding_systems_region_internal): First argument to Fappend
9912 must be an integer, not a Lisp object.
9913
9914 2000-08-08 Kenichi Handa <handa@etl.go.jp>
9915
9916 * charset.c (Fchar_width): Doc fix.
9917
9918 2000-08-08 Gerd Moellmann <gerd@gnu.org>
9919
9920 * charset.c (Fstring_width): Doc fix.
9921
9922 2000-08-07 Gerd Moellmann <gerd@gnu.org>
9923
9924 * xdisp.c (start_display): When starting display on a continuation
9925 line, clear ascent and descent members of the iterator structure;
9926 the height of the continued line does not affect the height of the
9927 continuation line.
9928 (make_cursor_line_fully_visible): Do nothing if cursor is on a
9929 line taller than the window.
9930 (redisplay_window) <forced window start>: Handle case that the
9931 middle of the window is not found in any row.
9932 (dump_glyph_row): Show more information.
9933 (compute_line_metrics): Use MATRIX_FIRST_TEXT_ROW to determine the
9934 first text line in a glyph matrix.
9935
9936 * xterm.c (x_draw_image_foreground): Avoid drawing outside
9937 of the clip area when image doesn't have a mask.
9938
9939 * fns.c (sweep_weak_table): Fix survival conditions for
9940 key-or-value and key-and-value weakness.
9941
9942 * .gdbinit (xhashtable): New command.
9943
9944 * fns.c (sweep_weak_hash_tables): Fix the code taking unmarked
9945 tables out of the list of all weak hash tables.
9946
9947 * xdisp.c (ensure_echo_area_buffers): If a buffer was killed, and
9948 a new buffer is created, make sure echo_area_buffer[] references
9949 the new buffer.
9950
9951 2000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
9952
9953 * msdos.c (Fmsdos_set_mouse_buttons): Add missing backslashes in
9954 the doc string.
9955
9956 2000-08-07 Kenichi Handa <handa@etl.go.jp>
9957
9958 * syntax.c (skip_chars): Fix previous change. Make the handling
9959 of unibyte string consistent with that of regex search.
9960
9961 2000-08-05 Gerd Moellmann <gerd@gnu.org>
9962
9963 * xmenu.c (popup_get_selection): Use xfree instead of free.
9964
9965 * fileio.c (Finsert_file_contents): Use xfree instead of free.
9966
9967 * editfns.c (Ftranspose_regions): Use xfree instead of free.
9968
9969 * callproc.c (child_setup): Use xfree instead of free.
9970
9971 * sysdep.c (opendir, GetTempDirName, run_mac_command): Use xmalloc
9972 instead of malloc.
9973 (run_mac_command, closedir): Use `xfree' instead of `free'.
9974
9975 * keymap.c (current_minor_maps): Use xmalloc instead of malloc.
9976
9977 * eval.c (error): Use xfree instead of free.
9978
9979 * xfaces.c, xfns.c, w32fns.c: Replace `illegal' with `invalid'.
9980
9981 * fns.c: Replace `illegal' with `invalid'.
9982 (Fmake_hash_table, make_hash_table): Allow table size of 0.
9983
9984 2000-08-05 Kenichi Handa <handa@etl.go.jp>
9985
9986 * syntax.c (skip_chars): Fix handling of multibyte<->unibyte
9987 conversion.
9988
9989 2000-08-04 Noah Friedman <friedman@splode.com>
9990
9991 * fns.c (Fmake_hash_table): Add missing `\n\' to end of line in
9992 docstring.
9993
9994 2000-08-04 Gerd Moellmann <gerd@gnu.org>
9995
9996 * syntax.c (skip_chars): Fix typo in error message.
9997
9998 2000-08-04 Andreas Schwab <schwab@suse.de>
9999
10000 * m/ia64.h: Moved from s/ia64.h.
10001
10002 2000-08-04 Kenichi Handa <handa@etl.go.jp>
10003
10004 * process.c (read_process_output): Big simplification. Handle
10005 composition and post-read-conversion of coding system correctly.
10006 (send_process): Handle composition correctly.
10007
10008 * callproc.c (Fcall_process): Handle post-read-conversion of
10009 coding system if any.
10010
10011 * coding.c (decode_coding_iso2022): More strict check for handling
10012 single shifting.
10013 (coding_restore_composition): Pay attention to the case that
10014 cmp_data is not set properly (because of invalid code in the
10015 source text).
10016 (run_pre_post_conversion_on_str): Include text properties in the
10017 resulting string.
10018 (decode_coding_string): Set members of coding correctly.
10019
10020 2000-08-03 Gerd Moellmann <gerd@gnu.org>
10021
10022 * s/ia64.h: New file.
10023
10024 * widget.c (set_frame_size, update_wm_hints, EmacsFrameSetValues):
10025 Use NULL instead of 0 at the end of variable argument list of
10026 XtVaGetValues and XtVaSetValues, because 0 fails on systems where
10027 sizeof (int) < sizeof (void *).
10028
10029 * xmenu.c (update_frame_menubar): Use NULL instead of 0 at the end
10030 of variable argument lists of XtVaGetValues and XtVaSetValues.
10031
10032 * xfns.c (Fx_file_dialog): Use NULL instead of 0 at the end of
10033 variable argument lists of XtVaGetValues and XtVaSetValues.
10034
10035 2000-08-02 Gerd Moellmann <gerd@gnu.org>
10036
10037 * alloc.c (lisp_malloc, lisp_free): Use size_t and POINTER_TYPE.
10038 (xrealloc, xmalloc): Use size_t. Some callers adjusted.
10039
10040 * lisp.h (Fsingle_key_description, xmalloc, xrealloc): Change
10041 prototype.
10042
10043 * keyboard.c (read_char_minibuf_menu_prompt): Add new parameter
10044 in call to Fsingle_key_description.
10045
10046 * keymap.c (Fsingle_key_description): Add parameter NO_ANGLES.
10047 Callers changed.
10048
10049 2000-08-02 Colin Walters <walters@cis.ohio-state.edu>
10050
10051 * window.c (display_buffer_reuse_frames): New variable.
10052 (Fdisplay_buffer): If display_buffer_reuse_frames is set, reuse
10053 frames displaying BUFFER.
10054 (syms_of_window): Define Lisp variable display-buffer-reuse-frames.
10055
10056 2000-08-01 Miles Bader <miles@gnu.org>
10057
10058 * editfns.c (Fconstrain_to_field): Fix the conditions for deciding
10059 when to constrain NEW_POS (they were pretty screwed up before).
10060
10061 2000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
10062
10063 * msdos.c (run_msdos_command): Save and restore the master
10064 environment, for the case that child_setup signals an error.
10065 When mirroring slashes in DOS shell commands, don't fail when
10066 argv[2] has embedded blanks.
10067 (Fmsdos_set_mouse_buttons, mouse_setup_buttons): New functions.
10068 (syms_of_msdos): Defsubr Fmsdos_set_mouse_buttons.
10069 (dos_ttraw): Call mouse_setup_buttons.
10070
10071 * callproc.c (child_setup) [MSDOS]: malloc pwd_var instead of
10072 using alloca; free it after run_msdos_command returns.
10073
10074 2000-07-27 Dave Love <fx@gnu.org>
10075
10076 * s/irix6-5.h (IRIX_FORCE_32_BITS, LD_SWITCH_SYSTEM): Don't define.
10077 [_MIPS_SZLONG == 64]: Set up for 64-bit mode -- not currently working.
10078
10079 * m/iris4d.h (XUINT, XSET, XUNMARK) [_LP64]: Don't define.
10080
10081 2000-07-27 Eli Zaretskii <eliz@is.elta.co.il>
10082
10083 * editfns.c (lisp_time_argument): Fix last change.
10084
10085 2000-07-27 Gerd Moellmann <gerd@gnu.org>
10086
10087 * fns.c (Fdelete): Make it work on vectors and strings in addition
10088 to lists.
10089
10090 * fns.c (Qkey_or_value, Qkey_and_value): New variables.
10091 (syms_of_fns): Initialize new variables.
10092 (sweep_weak_table): Handle weakness `key-or-value' and `key-and-value'.
10093 (Fmake_hash_table): Recognize `key-and-value' and `key-or-value'
10094 weakness, with t meaning the same as `key-and-value'.
10095
10096 2000-07-27 Kenichi Handa <handa@etl.go.jp>
10097
10098 * coding.h (struct coding_system): Member safe_charset deleted.
10099
10100 * coding.c (Qsafe_charsets): This variable deleted.
10101 (Qsafe_chars, Vchar_coding_system_table, Qchar_coding_system):
10102 New variables.
10103 (coding_safe_chars): New function.
10104 (CODING_SAFE_CHAR_P): New macro.
10105 (CHARSET_OK): New arg C. Call CODING_SAFE_CHAR_P instead of
10106 checking safe_charsets member of the coding system. Caller changed.
10107 (detect_coding_iso2022): New local variable safe_chars.
10108 (DECODE_DESIGNATION): Call CODING_SAFE_CHAR_P instead of checking
10109 safe_charsets member of the coding system.
10110 (decode_coding_iso2022): New local variable safe_chars.
10111 (ENCODE_ISO_CHARACTER_DIMENSION1): Don't check unsafe chars here.
10112 (ENCODE_ISO_CHARACTER_DIMENSION2): Likewise.
10113 (ENCODE_ISO_CHARACTER): Arguments changed. Caller changed.
10114 (ENCODE_UNSAFE_CHARACTER): New macro.
10115 (encode_coding_iso2022): New local variable safe_chars. Check
10116 unsafe chars.
10117 (setup_coding_system): Delete the code to initialize
10118 coding->safe_charses
10119 (intersection, find_safe_codings): New functions.
10120 (Ffind_coding_systems_region_internal): New function.
10121 (syms_of_coding): Defsubr it. Initialize Qsafe_chars,
10122 Qsafe_cding_system. Make Vchar_coding_system_table a Lisp
10123 variable and initialize it.
10124
10125 * fns.c (char_table_ref_and_index): New function.
10126
10127 * lisp.h (char_table_ref_and_index): Add prototype.
10128
10129 2000-07-26 Sam Steingold <sds@gnu.org>
10130
10131 * editfns.c (lisp_time_argument): Added third argument `usec'.
10132 (Ffloat_time): New built-in Lisp function.
10133
10134 2000-07-26 Gerd Moellmann <gerd@gnu.org>
10135
10136 * dispextern.h (GLYPH_FROM_CHAR_GLYPH): Use CHARACTERBITS bits
10137 for the character code.
10138
10139 * config.in (HAVE_SOUND): Define only for FreeBSD, NetBSD and
10140 GNU/Linux.
10141
10142 * xmenu.c (menu_highlight_callback): Call show_help_echo directly
10143 if called for a popup menu.
10144 (xmenu_show): Store help string in widget values.
10145
10146 2000-07-26 Dave Love <fx@gnu.org>
10147
10148 * syswait.h: Move some definitions.
10149 (HAVE_SYS_WAIT_H): Undef for HPUX7, Convex.
10150 [!HAVE_SYS_WAIT_H]: Define things unconditionally. More
10151 perspicuous definitions.
10152 (WTERMSIG): Fix bit pattern used.
10153
10154 2000-07-26 Kenichi Handa <handa@etl.go.jp>
10155
10156 * print.c (print_object): If vector printing is truncated, print
10157 "..." to indicate it as well as the case of list printing.
10158
10159 2000-07-25 Gerd Moellmann <gerd@gnu.org>
10160
10161 * xdisp.c (next_element_from_display_vector): Improve comments.
10162
10163 * lisp.h (GLYPH_MASK_CHAR, GLYPH_MASK_FACE): Use 19 bits
10164 for the character code, and the rest for the face id as in 20.x.
10165 (FAST_GLYPH_FACE, FAST_MAKE_GLYPH): Changed accordingly.
10166
10167 * window.c (window_display_table): Cleaned up.
10168
10169 * syntax.c (Fforward_word): Add last arg nil in call of
10170 Fconstrain_to_field.
10171
10172 2000-07-25 Eli Zaretskii <eliz@is.elta.co.il>
10173
10174 * fileio.c (Frename_file) [DOS_NT]: If the file names are
10175 identical but for the letter-case, don't call
10176 barf_or_query_if_file_exists.
10177
10178 2000-07-25 Miles Bader <miles@gnu.org>
10179
10180 * editfns.c (find_field): Honor special `boundary' fields.
10181 (Qboundary): New variables.
10182 (syms_of_editfns): Initialize Qboundary.
10183 (Fconstrain_to_field): Add the INHIBIT-CAPTURE-PROPERTY argument.
10184 Use scan_buffer instead of find_before_next_newline, because it
10185 allows us to detect the boundary case where there's a newline at
10186 the search limit.
10187 * lisp.h (Fconstrain_to_field): Update external declaration.
10188
10189 2000-07-24 Gerd Moellmann <gerd@gnu.org>
10190
10191 * print.c (temp_output_buffer_setup): Don't call1 Vrun_hooks
10192 if that is nil.
10193
10194 2000-07-24 Dave Love <fx@gnu.org>
10195
10196 * s/sunos4-0.h, s/sol2.h:
10197 (LIBS_TERMCAP): Move from m/sparc.h.
10198
10199 * m/sparc.h (TERMINFO): Moved to system files (probably only
10200 relevant for sunos4 judging by its vintage).
10201 (BITS_PER_LONG, BITS_PER_EMACS_INT, _LP64): Define conditional on
10202 __arch64__.
10203
10204 2000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
10205
10206 * xmenu.c (keymap_panes): Pass the keymap's prompt as the pane
10207 name to single_keymap_panes.
10208
10209 2000-07-24 Andreas Schwab <schwab@suse.de>
10210
10211 * fns.c (Fmakehash): Pass Qeql to Fmake_hash_table if TEST is nil.
10212
10213 2000-07-24 Gerd Moellmann <gerd@gnu.org>
10214
10215 * xdisp.c (with_echo_area_buffer): Take additional EMACS_INT
10216 parameters instead of using int parameters. Expect FN to accept
10217 EMACS_INT parameters.
10218 (display_echo_area, resize_echo_area_axactly, current_message)
10219 (truncate_echo_area, set_message_1): Call with_echo_area_buffer
10220 with new argument list.
10221 (resize_mini_window_1): New callback function.
10222 (current_message_1, truncate_message_1, set_message_1): Change
10223 parameter lists to the new format expected by with_echo_area_buffer.
10224
10225 2000-07-24 Kenichi Handa <handa@etl.go.jp>
10226
10227 * fontset.c (fontset_ref): Remove INLINE declaration.
10228 (fontset_ref_via_base): Likewise.
10229 (Fset_fontset_font): Convert FAMILY and REGISTRY specifications
10230 to downcase.
10231
10232 2000-07-23 Eli Zaretskii <eliz@is.elta.co.il>
10233
10234 * msdos.c (IT_note_mouse_highlight): Process overlays in the
10235 correct order of priority. If help echo was found in an overlay,
10236 use that overlay as the object in which the help echo was found.
10237
10238 2000-07-22 Miles Bader <miles@gnu.org>
10239
10240 * textprop.c (Fprevious_single_char_property_change): The initial
10241 property value should be from the position preceding POSITION, not
10242 following it.
10243
10244 2000-07-22 Eli Zaretskii <eliz@is.elta.co.il>
10245
10246 * coding.c (syms_of_coding): Doc fix for
10247 inhibit-iso-escape-detection.
10248
10249 2000-07-21 Gerd Moellmann <gerd@gnu.org>
10250
10251 * xterm.c (note_mouse_highlight): Process overlays in the right
10252 order of priority.
10253
10254 * keyboard.c (show_help_echo, gen_help_event): Extend comments.
10255
10256 * xterm.c (note_mouse_highlight): If help-echo was found in an
10257 overlay, use that overlay as the object in which the help was found.
10258
10259 * window.c (foreach_window_1): Fix typo reversing an if-condition.
10260
10261 * window.c (foreach_window): Instead of a fake variable argument
10262 list, take one USER_DATA argument.
10263 (foreach_window_1): Likewise, and call callback functions with two
10264 args, the window and USER_DATA.
10265 (struct check_window_data): New struct.
10266 (check_window_containing): Use it.
10267 (window_from_coordinates): Set up a struct check_window_data for
10268 foreach_window.
10269 (add_window_to_list, freeze_window_start): Change parameters
10270 according to new calling convention.
10271
10272 * window.h (foreach_window): Change prototype.
10273
10274 * buffer.c (Fprevious_overlay_change): Avoid memory leak.
10275
10276 2000-07-21 Eli Zaretskii <eliz@is.elta.co.il>
10277
10278 * xmenu.c (menu_help_callback): Call show_help_echo with
10279 additional arguments OBJECT and POS.
10280
10281 2000-07-21 Kenichi Handa <handa@etl.go.jp>
10282
10283 * data.c (Faset): Allow storing any multibyte character in a
10284 string. Convert unibyte string to multibyte if necessary.
10285
10286 * xfns.c (x_encode_text): New function.
10287 (x_set_name): Use x_encode_text.
10288 (x_set_title): Likewise.
10289
10290 * xselect.c (lisp_data_to_selection_data): Use x_encode_text.
10291
10292 * xterm.h (x_encode_text): Add prototype.
10293
10294 2000-07-20 Dave Love <fx@gnu.org>
10295
10296 * ccl.c (Fccl_execute_on_string): Don't check xmalloc return. Use
10297 xfree, not free.
10298
10299 2000-07-20 Eli Zaretskii <eliz@is.elta.co.il>
10300
10301 * msdos.c (help_echo_window): New variable.
10302 (syms_of_msdos): Initialize and staticpro it.
10303 (IT_note_mode_line_highlight): Set help_echo_window.
10304 (IT_note_mouse_highlight): Ditto.
10305 (dos_rawgetc): Store help_echo_window in the second event produced
10306 for HELP_EVENTs.
10307
10308 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight):
10309 Record the object that generated the help echo and the position of
10310 that object in help_echo_object and help_echo_pos. Record that
10311 some glyphs in a row are displayed in mouse-face.
10312 (IT_update_begin): Don't clear mouse highlight unless one of the
10313 enabled glyph rows is marked as being displayed in mouse-face.
10314 (dos_rawgetc): Generate 2 events for HELP_EVENT. Pass the object
10315 and position recorded in help_echo_object and help_echo_pos to the
10316 event queue.
10317 (IT_menu_display): Accept a new argument PN: the pane number of
10318 the current menu pane. Record the pane number and the item
10319 number of the item which has associated help string.
10320 (XMenuActivate): Update the prototype for help_callback in
10321 function declaration. Call IT_menu_display with the current menu
10322 pane number as an additional argument. Call help_callback with
10323 two additional arguments: the pane number and the item number of
10324 the menu item associated with the help text.
10325 (help_echo_object, help_echo_pos): New variables.
10326 (syms_of_msdos): Initialize them and staticpro help_echo_object.
10327
10328 * msdos.h (XMenuActivate): Update prototype.
10329
10330 2000-07-19 Gerd Moellmann <gerd@gnu.org>
10331
10332 * xdisp.c (with_echo_area_buffer): Call FN with more arguments.
10333 Add some more prototypes.
10334
10335 * xterm.c, xterm.h: Add some more prototypes.
10336
10337 * lisp.h (Fnext_single_char_property_change): Add prototype.
10338
10339 * dispnew.c (direct_output_for_insert): Remove confusing
10340 outer local variable mouse_face_overwritten_p.
10341 (glyph_row_slice_p): Put in #ifdef GLYPH_DEBUG.
10342
10343 * alloc.c (allocate_string_data): Don't copy old string contents.
10344
10345 2000-07-19 Kenichi Handa <handa@etl.go.jp>
10346
10347 * coding.c (code_convert_region): Delete text properties before
10348 shrinking the conversion region.
10349
10350 2000-07-18 Gerd Moellmann <gerd@gnu.org>
10351
10352 * dispnew.c (update_text_area): Write the whole row if it
10353 has mouse-face in it.
10354
10355 * xfaces.c (face-alternative-font-family-alist): Remove
10356 DEFVAR_LISP; staticpro instead.
10357
10358 * xmenu.c (menu_help_callback): Call show_help_echo with
10359 new arguments.
10360
10361 * keyboard.c (show_help_echo): Add parameter WINDOW.
10362 (read_char): Call show_help_echo with window extracted from Lisp
10363 help event.
10364 (gen_help_event): Add parameter WINDOW.
10365
10366 * keyboard.h (show_help_echo, gen_help_event): Change prototypes.
10367
10368 * xterm.c (help_echo_window): New variable.
10369 (note_mouse_highlight, note_tool_bar_highlight): Set help_echo_window.
10370 (XTread_socket): Pass help_echo_window to gen_help_event.
10371 (syms_of_xterm): Initialize and staticpro help_echo_window.
10372
10373 2000-07-18 Dave Love <fx@gnu.org>
10374
10375 * Makefile.in: Fix dependencies of blockinput.h on atimer.h, systime.h.
10376
10377 2000-07-18 Gerd Moellmann <gerd@gnu.org>
10378
10379 * alloc.c (allocate_string_data): If string had already data
10380 assigned, copy old contents to new string data.
10381
10382 * coding.c (syms_of_coding): Fix typo in spelling of variable
10383 `inhibit-iso-escape-detection'.
10384
10385 * alloca.c (free) [emacs && EMACS_FREE]: Define as EMACS_FREE.
10386
10387 * Makefile.in: Add dependencies on dispextern.h.
10388 (alloca.o): Don't define malloc and define EMACS_FREE instead of
10389 `free'; both can conflict with system header files.
10390
10391 2000-07-18 Kenichi Handa <handa@etl.go.jp>
10392
10393 * charset.h (MAKE_CHAR): Return reasonable code even if CHARSET is
10394 undefined.
10395
10396 2000-07-18 Dave Love <fx@gnu.org>
10397
10398 * window.c (Fwindow_list): Declare arg `window'.
10399
10400 2000-07-18 Kenichi Handa <handa@etl.go.jp>
10401
10402 * coding.c (setup_coding_system): Don't override the explicitly
10403 specified designations.
10404
10405 2000-07-15 Miles Bader <miles@gnu.org>
10406
10407 * editfns.c (char_property_eq, char_property_stickiness): Renamed
10408 from `text_property_eq' and `text_property_stickiness', respectively.
10409 (find_field, Fconstrain_to_field, char_property_eq)
10410 (char_property_stickiness): Changed to call char-property functions
10411 instead of text-property-only ones.
10412
10413 * textprop.c (Fnext_single_char_property_change): Made a subr (was
10414 `next_single_char_property_change'). Do more error checking, and
10415 cleanup limit behavior.
10416 (Fprevious_single_char_property_change): New function.
10417 (syms_of_textprop): Initialize new subrs.
10418
10419 * xdisp.c (display_prop_end, invisible_text_between_p):
10420 Call Fnext_single_char_property_change instead of
10421 next_single_char_property_change.
10422
10423 2000-07-15 Jason Rumney <jasonr@gnu.org>
10424
10425 * w32menu.c (w32_menu_show): Call free_menubar_widget_value_tree
10426 after menu is finished with.
10427 (add_menu_item): Only consider wv->title as a menu title.
10428 (w32_menu_display_help): Add OBJECT and POS to show_help_echo.
10429
10430 * w32fns.c (w32_wnd_proc) [WM_DRAW_ITEM]: Do not try to draw a
10431 null title.
10432 (FONT_REGEXP): Remove unused macro, and its sub-components.
10433 (syms_of_w32fns): Replace underscore in w32-enable-synthesized-fonts.
10434
10435 * w32term.c (help_echo_object, help_echo_pos): New variables.
10436 (note_mode_line_highlight): Store additional information about the
10437 help-echo in help_echo_object and help_echo_pos. Check both
10438 `local-map' and `keymap' properties for changing the cursor
10439 (note_mouse_highlight): Store additional information about the
10440 help-echo in help_echo_object and help_echo_pos.
10441 (note_tool_bar_highlight): Set help_echo_object to nil and
10442 help_echo_pos to -1.
10443 (w32_read_socket): Use gen_help_event instead of filling
10444 input_events manually.
10445 (syms_of_w32term): Staticpro help_echo_object.
10446 (x_update_window_end): Add parameter MOUSE_FACE_OVERWRITTEN_P. If
10447 set, arrange for a mouse-highlight redisplay in XTframe_up_to_date.
10448 (x_clear_mouse_face): New function.
10449 (w32_redisplay_interface): Add pointer to x_clear_mouse_face.
10450 (x_update_window_begin): No need to turn off the mouse
10451 highlight here.
10452 (show_mouse_face): Set the mouse_face_p flag of glyph rows
10453 depending on whether they contain glyphs highlighted in mouse-face.
10454 (x_fill_stretch_glyph_string): Consume runs of stretch
10455 glyphs instead of a single one.
10456 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
10457 with new argument list.
10458 (x_set_glyph_string_gc): Make sure the face's GC is valid.
10459 (x_append_glyph, x_append_composite_glyph)
10460 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
10461 changes in struct glyph starting 1999-12-27. See comments for
10462 xterm.c on 2000-07-05.
10463
10464 2000-07-14 Sam Steingold <sds@gnu.org>
10465
10466 * xfaces.c (realize_x_face): Fix the last patch:
10467 check `default_face' before dereferencing.
10468
10469 2000-07-14 Dave Love <fx@gnu.org>
10470
10471 * syntax.c (back_comment): Add null default in switch (for pcc).
10472
10473 2000-07-14 Kenichi Handa <handa@etl.go.jp>
10474
10475 * xfaces.c (realize_x_face): Make fontset using the base of the
10476 default_face's fontset, not using the default fontset.
10477
10478 * coding.c (inhibit_iso_escape_detection): New variable.
10479 (syms_of_coding): Make it a Lisp variable.
10480 (detect_coding_iso2022): If inhibit_iso_escape_detection is
10481 nonzero, ignore ISO2022's escape sequence.
10482
10483 2000-07-14 Gerd Moellmann <gerd@gnu.org>
10484
10485 * alloca.c (malloc) [emacs]: Define as xmalloc.
10486
10487 * xfns.c (Fx_show_tip): If frame parameters contain a position,
10488 use that instead of the mouse position. Add parameters DX and DY.
10489
10490 * dispextern.h (Fx_show_tip): Adjust number of parameters
10491 in prototype.
10492
10493 * keyboard.c (show_help_echo): Add parameters OBJECT and POS.
10494 if HELP is a function, call it with OBJECT and POS as parameters
10495 to get the help to display.
10496 (gen_help_event, kbd_buffer_store_help_event): New functions.
10497 (kbd_buffer_get_event): Construct the Lisp help-event differently.
10498 (read_char): Call show_help_echo with new parameters.
10499
10500 * keyboard.h (gen_help_event, kbd_buffer_store_help_event):
10501 Add prototypes.
10502
10503 * xterm.c (help_echo_object, help_echo_pos): New variables.
10504 (note_mode_line_highlight): Store additional information about the
10505 help-echo in help_echo_object and help_echo_pos. Check both
10506 `local-map' and `keymap' properties for changing the cursor
10507 (note_mouse_highlight): Store additional information about the
10508 help-echo in help_echo_object and help_echo_pos.
10509 (note_tool_bar_highlight): Set help_echo_object to nil and
10510 help_echo_pos to -1.
10511 (XTread_socket): Use gen_help_event instead of filling
10512 input_events manually.
10513 (syms_of_xterm): Staticpro help_echo_object.
10514
10515 * xmenu.c (menu_highlight_callback): Use
10516 kbd_buffer_store_help_event instead of setting up and input_event
10517 structure manually.
10518
10519 * xdisp.c (eval_form): GCPRO argument sexpr.
10520 (call_function): New function.
10521 (handle_single_display_prop): Use call_function and FUNCTIONP
10522 instead of checking whether if font_height is a symbol and
10523 using eval_form.
10524
10525 * eval.c (internal_condition_case_2): New function.
10526
10527 * lisp.h (FUNCTIONP): New macro.
10528 (internal_condition_case_2, call_function): Add prototypes.
10529
10530 * xterm.c (construct_mouse_click, x_scroll_bar_to_input_event)
10531 (x_scroll_bar_handle_click, SET_SAVED_MENU_EVENT, XTread_socket):
10532 Always set `arg' member of input_events.
10533 (construct_menu_click): Unused function removed.
10534
10535 * msdos.c (dos_rawgetc): Always set `arg' member of input_events.
10536
10537 * w32term.c (construct_mouse_click, construct_mouse_wheel)
10538 (construct_drag_n_drop, x_scroll_bar_handle_click)
10539 (w32_read_socket): Always set `arg' member of input_events.
10540
10541 * keyboard.c (show_help_echo): Use eval_form. Add comment.
10542
10543 * lisp.h (eval_form): Add prototype.
10544
10545 * xdisp.c (eval_form): Make it externally visible.
10546
10547 2000-07-13 Gerd Moellmann <gerd@gnu.org>
10548
10549 * xterm.c (x_handle_tool_bar_click): Store the frame in the
10550 frame_or_window slot of TOOL_BAR_EVENT input events instead of
10551 consing. For prefix events, store the frame in the `arg' slot of
10552 the event, otherwise store the key there.
10553 (XTread_socket): Instead of consing, use the frame_or_window slot
10554 of HELP_EVENTs for the frame, and the `arg' slot for the help string.
10555
10556 * xmenu.c (menu_highlight_callback): Store help string in the
10557 `arg' member of the input event; don't cons.
10558 (menubar_selection_callback): Use the `arg' slot of input events
10559 to queue additional information, instead of consing.
10560
10561 * msdos.c (dos_rawgetc): Adapt to change of HELP_EVENTs.
10562
10563 * w32term.c (w32_handle_tool_bar_click): Adapt to changes in
10564 TOOL_BAR_EVENTs.
10565 (w32_read_socket): Adapt to changes in HELP_EVENTs.
10566
10567 * w32menu.c (menubar_selection_callback): Use the `arg' slot of
10568 input events to queue additional information, instead of consing.
10569
10570 * keyboard.c (kbd_buffer_gcpro): Renamed from
10571 kbd_buffer_frame_or_window. Now used for all Lisp objects
10572 referenced from the input queue.
10573 (kbd_buffer_store_event): Always use structure assignment for
10574 copying input events. Record all Lisp objects referenced from
10575 events in kbd_buffer_gcpro.
10576 (kbd_buffer_get_event): Construct Lisp `help-echo' events
10577 differently from input events. Test for prefix menu_bar_events
10578 and TOOL_BAR_EVENTs differently. Reset all slots used by an input
10579 event in kbd_buffer_gcpro to nil.
10580 (make_lispy_event) <TOOL_BAR_EVENT>: Treat an input event whose
10581 frame_or_window is equal to its arg member as prefix events.
10582 (stuff_buffered_input): Reset all slots in kbd_buffer_gcpro
10583 used by an input event to nil.
10584 (init_keyboard): Use two times the size of the input queue
10585 for kbd_buffer_gcpro.
10586 (syms_of_keyboard): Likewise.
10587
10588 * emacs.c (handle_USR2_signal, handle_USR1_signal):
10589 Use USER_SIGNAL_EVENT.
10590
10591 * termhooks.h (struct input_event): Add member `arg'.
10592 (MENU_BAR_EVENT): Renamed from menu_bar_event.
10593 (USER_SIGNAL_EVENT): Renamed from user_signal.
10594
10595 * xfaces.c (ASET): Remove definition.
10596
10597 * lisp.h (AREF, ASET, ASIZE): New macros.
10598
10599 * fontset.c (AREF, ASIZE): Remove definitions.
10600
10601 * fns.c (AREF): Remove definition.
10602
10603 * composite.c (AREF): Remove definition.
10604
10605 2000-07-12 Gerd Moellmann <gerd@gnu.org>
10606
10607 * dispnew.c (redraw_overlapped_rows): Add missing local.
10608 (scrolling_window): Remove debug code.
10609
10610 * xdisp.c (try_window_reusing_current_matrix, try_window_id):
10611 Before scrolling, turn off a mouse-highlight in the window
10612 being scrolled.
10613
10614 * xterm.c (x_update_window_end): Add parameter
10615 MOUSE_FACE_OVERWRITTEN_P. If set, arrange for a mouse-highlight
10616 redisplay in XTframe_up_to_date.
10617 (x_clear_mouse_face): New function.
10618 (x_redisplay_interface): Add pointer to x_clear_mouse_face.
10619
10620 * dispnew.c (make_current): Preserve the mouse_face_p flag of the
10621 current glyph row.
10622 (update_window_line): Add parameter MOUSE_FACE_OVERWRITTEN_P. Set
10623 it when any row is written to that contains glyphs highlighted in
10624 mouse-face.
10625 (update_window): Call the window update end hook with new
10626 parameter MOUSE_FACE_OVERWRITTEN_P.
10627 (direct_output_for_insert): Give up if row contains mouse-face.
10628
10629 * dispextern.h (struct redisplay_interface): Add parameter
10630 MOUSE_FACE_OVERWRITTEN_P to update_window_end_hook function.
10631 (clear_mouse_face): New function pointer member.
10632
10633 2000-07-11 Stefan Monnier <monnier@cs.yale.edu>
10634
10635 * syntax.c (back_comment): Use one switch rather than a few `if's.
10636 Obey open_paren_in_column_0_is_defun_start.
10637 When reverting to the `slow' method, try to nicely handle the case
10638 of nested comments by checking that the comment-starter we found
10639 does indeed match the comment-ender.
10640 (scan_sexps_forward, scan_sexps_forward):
10641 Ignore excessive opening parenthesis rather than throwing an error.
10642
10643 2000-07-11 Gerd Moellmann <gerd@gnu.org>
10644
10645 * doc.c (Fsubstitute_command_keys): Handle case that a GC
10646 in Fwhere_is_internal or get_keymap_1 relocates string contents.
10647
10648 * dispnew.c (direct_output_forward_char): Give up if currently
10649 displaying a message instead of the minibuffer contents.
10650
10651 * xterm.c (x_update_window_begin): No need to turn off the mouse
10652 highlight here.
10653 (show_mouse_face): Set the mouse_face_p flag of glyph rows
10654 depending on whether they contain glyphs highlighted in mouse-face.
10655
10656 * dispnew.c (row_equal_p): Add parameter MOUSE_FACE_P. If set,
10657 compare the mouse_face_p flags of both rows.
10658
10659 * dispextern.h (struct glyph_row): Add flag mouse_face_p.
10660
10661 2000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
10662
10663 * keyboard.c (show_help_echo): Accept additional parameter
10664 ok_to_overwrite_keystroke_echo.
10665 (read_char): Call show_help_echo with a zero
10666 ok_to_overwrite_keystroke_echo argument.
10667 * keyboard.h (show_help_echo): Update prototype of show_help_echo.
10668 * xmenu.c (menu_help_callback): Call show_help_echo with non-zero
10669 ok_to_overwrite_keystroke_echo argument.
10670 * w32menu.c (w32_menu_display_help): Call show_help_echo with
10671 non-zero ok_to_overwrite_keystroke_echo argument.
10672
10673 2000-07-10 Gerd Moellmann <gerd@gnu.org>
10674
10675 * xdisp.c (try_window_id): If changes are all below what is
10676 displayed in the window, and point is in the window, we still
10677 might have to find point on the display.
10678
10679 * xterm.c (x_fill_stretch_glyph_string): Consume runs of stretch
10680 glyphs instead of a single one.
10681 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
10682 with new argument list.
10683 (x_set_glyph_string_gc): Make sure the face's GC is valid.
10684
10685 * keymap.c (get_keymap_1): Add comment that this function can GC.
10686 (where_is_internal_2, where_is_internal_1): Add GCPROs, add
10687 comment that functions can GC.
10688 (Fset_keymap_parent): GCPRO arg KEYMAP.
10689
10690 2000-07-10 Eli Zaretskii <eliz@is.elta.co.il>
10691
10692 * msdos.c (XMenuActivate): After exiting the menu, restore the
10693 echo area message and erase it.
10694
10695 2000-07-10 Kenichi Handa <handa@etl.go.jp>
10696
10697 * fontset.c (Ffontset_info): Make the return value more compatible
10698 with that of Emacs 20.
10699
10700 2000-07-07 Gerd Moellmann <gerd@gnu.org>
10701
10702 * eval.c (Fsignal): Handle case that backtrace_list is null.
10703
10704 2000-07-07 Kenichi Handa <handa@etl.go.jp>
10705
10706 * ccl.c (Fccl_execute): Typo fixed.
10707
10708 2000-07-06 Gerd Moellmann <gerd@gnu.org>
10709
10710 * window.c (window_loop): Add missing gcpro1 local variable.
10711
10712 * window.c (Fwindow_list): Reverse list at the end.
10713 (candidate_window_p): Add parameter OWINDOW. ALL_FRAMES nil
10714 means allow windows on OWINDOW's frame, only.
10715 (window_loop): Simplified; use Fwindow_list.
10716
10717 * Makefile.in (TAGS-LISP): Don't pass `$(lispsource)' to make.
10718
10719 2000-07-05 Gerd Moellmann <gerd@gnu.org>
10720
10721 * xterm.c (XTread_socket): Increment handling_signal at the start,
10722 decrement it at the end.
10723
10724 * eval.c (handling_signal): New variable.
10725 (Fsignal): Abort if handling_signal is non-zero.
10726
10727 * lisp.h (handling_signal): External declaration.
10728
10729 * s/freebsd.h (WAITTYPE, WRETCODE): Put in #if 0.
10730
10731 2000-07-05 Ken Raeburn <raeburn@gnu.org>
10732
10733 Sound support for NetBSD through "Linux emulation" support:
10734 * config.in (HAVE_SOUNDCARD_H): Undef.
10735 (HAVE_SOUND): Define if HAVE_SOUNDCARD_H.
10736 * Makefile.in (LIBSOUND): New variable.
10737 (LIBES): Include it.
10738 * sound.c [HAVE_SOUNDCARD_H]: Include <sys/ioctl.h> and <soundcard.h>.
10739 (DEFAULT_SOUND_DEVICE): Define to "/dev/dsp" if not defined elsewhere.
10740 (vox_open): Use DEFAULT_SOUND_DEVICE.
10741 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Define to /dev/audio.
10742
10743 2000-07-05 Gerd Moellmann <gerd@gnu.org>
10744
10745 * print.c (print_error_message): If Vsignaling_function is set,
10746 show it in *Messages*.
10747
10748 * lisp.h (Vsignaling_function): External declaration.
10749
10750 * eval.c (Vsignaling_function): New variable.
10751 (Fsignal): Compute it.
10752 (syms_of_eval): Staticpro it.
10753
10754 2000-07-05 Dave Love <fx@gnu.org>
10755
10756 * syswait.h: Use the autoconf recommended approach. Old code
10757 #if'd out in case we need to revert.
10758
10759 * config.in (HAVE_SYS_WAIT_H): Added.
10760
10761 2000-07-05 Andrew Innes <andrewi@gnu.org>
10762
10763 * vm-limit.c (check_memory_limits) [REL_ALLOC]: Use real_morecore
10764 when non-NULL instead of __morecore, to take account of buffer
10765 memory. This also solves a problem with spurious memory warnings
10766 on Windows.
10767
10768 * ralloc.c: Make real_morecore non-static.
10769
10770 * eval.c (internal_condition_case): Comment out abort if
10771 interrupt_input_blocked is not zero.
10772
10773 * makefile.nt: Add support for `bootstrap' and related targets.
10774 Include minimal debug info in emacs.exe in release build.
10775 Remove all dependencies on lisp.h, and fixup some others.
10776
10777 * w32.c (init_environment): Install code from 20.7 for providing
10778 default values for environment variables, based on the
10779 executable's own location.
10780 (map_w32_filename): Handle filenames that are longer than MAX_PATH.
10781 (sys_socket): Install socket inheritance bug fix from 20.7.
10782
10783 * alloca.c [emacs]: Include lisp.h (needed by atimer.h included
10784 here via blockinput.h).
10785
10786 2000-07-05 Stefan Monnier <monnier@cs.yale.edu>
10787
10788 * w32menu.c (w32_menu_display_help):
10789 * xmenu.c (menu_help_callback): Use show_help_echo.
10790
10791 * keyboard.h (show_help_echo): Declare.
10792
10793 * keyboard.c (show_help_echo): New function, extracted from read_char.
10794 Feval its `msg' argument if it's a cons cell.
10795 (read_char): Use it.
10796 (follow_key): Pass `autoload' to get_keyelt.
10797
10798 * xterm.c (note_mode_line_highlight, note_mouse_highlight)
10799 (note_tool_bar_highlight, XTread_socket):
10800 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight)
10801 (dos_rawgetc):
10802 * w32term.c (note_mode_line_highlight, note_mouse_highlight)
10803 (note_tool_bar_highlight, w32_read_socket):
10804 Do not gratuitously ignore non-string `help-echo' properties.
10805
10806 2000-07-05 Gerd Moellmann <gerd@gnu.org>
10807
10808 * eval.c (Feval): Put check for interrupt_input_block in #if 0.
10809
10810 * window.c (delete_all_subwindows): Reset Vwindow_list.
10811
10812 * xterm.c (x_append_glyph, x_append_composite_glyph)
10813 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
10814 changes in struct glyph starting 1999-12-27. Some bit-fields of
10815 struct glyph were not set, which made glyphs unequal when compared
10816 with GLYPH_EQUAL_P. Redisplay outputs such glyphs, and flickering
10817 effects were the result. This also depended on the contents of
10818 memory returned by xmalloc. If flickering happens again, activate
10819 the code in clear_glyph_row that's in #if 0. If the flickering is
10820 gone with that, chances are that it is caused by something similar.
10821
10822 * dispnew.c (clear_glyph_row): Add debug code in #if 0.
10823
10824 * dispextern.h: Add some comments.
10825
10826 * window.c (add_window_to_list): Add parameter LIST.
10827 (window_list): Order list so that, for each frame, windows are
10828 in canonical order, and so that frames appear in the list in
10829 the order given by Vframe_list.
10830 (next_window): Reverse the handling of NEXT_P.
10831
10832 2000-07-04 Gerd Moellmann <gerd@gnu.org>
10833
10834 * window.c (Vwindow_list): New variable.
10835 (make_window, delete_window): Set Vwindow_list to nil.
10836 (check_window_containing): New function.
10837 (window_from_coordinates): Rewritten.
10838 (add_window_to_list, window_list, candidate_window_p)
10839 (decode_next_window_args, next_window): New functions.
10840 (Fnext_window, Fprevious_window): Rewritten in terms of next_window.
10841 (Fwindow_list): New function.
10842 (Fother_window): Cleaned up.
10843 (foreach_window): Add a longer "variable argument list". Let
10844 callback function return 0 to indicate that cycling over windows
10845 should stop.
10846 (foreach_window_1): Likewise.
10847 (freeze_window_start): Return int.
10848 (init_window): New function.
10849 (syms_of_window): Staticpro Vwindow_list and defsubr Swindow_list.
10850
10851 * emacs.c (handle_USR1_signal, handle_USR2_signal) Clear
10852 input_event with bzero.
10853 (main): Call init_window.
10854
10855 * keymap.c (get_keyelt): Temporarily inhibit GC while evaluating
10856 a menu filter.
10857
10858 2000-07-04 Kenichi Handa <handa@etl.go.jp>
10859
10860 * composite.h (make_composition_value_copy): Extern it.
10861
10862 * composite.c (make_composition_value_copy): New function.
10863
10864 * editfns.c (Fformat): While copying text properties, make each
10865 composition property value a copy.
10866
10867 * fns.c (concat): While copying text properties, make each
10868 composition property value a copy.
10869
10870 2000-07-03 Gerd Moellmann <gerd@gnu.org>
10871
10872 * m/macppc.h (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
10873
10874 * fns.c (sweep_weak_table): Mark only objects that are not
10875 marked already.
10876
10877 * frame.c (next_frame, prev_frame): If MINIBUF is a window,
10878 include those frames as candidates which have their focus
10879 redirected to the minibuffer frame.
10880
10881 2000-07-03 Stefan Monnier <monnier@cs.yale.edu>
10882
10883 * fns.c (Fputhash): Return `value' rather than nil.
10884
10885 2000-06-30 Gerd Moellmann <gerd@gnu.org>
10886
10887 * frame.c (next_frame): Don't check focus redirection in case
10888 MINIBUF is a window. Doing so excludes frames using MINIBUF
10889 unless their focus is redirected, which contradicts the
10890 specification of next-frame, and leads to infinite loops in
10891 certain situations when cycling through windows with next-window.
10892
10893 2000-06-30 Kenichi Handa <handa@etl.go.jp>
10894
10895 * coding.c (code_convert_region): Even if the length of text is
10896 zero, try to convert it if coding->type is coding_type_ccl.
10897 (decode_coding_string, encode_coding_string): Likewise.
10898
10899 2000-06-28 Gerd Moellmann <gerd@gnu.org>
10900
10901 * xdisp.c (try_window_reusing_current_matrix): Don't try to reuse
10902 the display if windows_or_buffers_changed.
10903
10904 * dispnew.c (struct row_entry): New structure.
10905 (row_entry_pool, row_entry_pool_size, row_entry_idx, row_table)
10906 (row_table_size, old_lines, new_lines, old_lines_size)
10907 (new_lines_size, run_pool, runs_size, runs): New variables.
10908 (add_row_entry): New function.
10909 (scrolling_window): Use data structures allocated with xmalloc and
10910 held in global variables, instead of allocating them with alloca and
10911 holding them in local variables. Use a larger hash table whose
10912 size depends on glyph matrix sizes. Don't use bzero to clear the
10913 hash table; instead, clear used slots only.
10914
10915 * fns.c (next_almost_prime): Make it externally visible.
10916
10917 * lisp.h (next_almost_prime): Add prototype.
10918
10919 * s/isc4-0.h (sigunblock): Define.
10920
10921 * s/sco5.h (sigunblock): Define.
10922
10923 2000-06-27 Dave Love <fx@gnu.org>
10924
10925 * s/osf1.h (C_SWITCH_SYSTEM, LIBS_SYSTEM): Revert last change
10926 (moved to osf5-0.h).
10927 [!NOT_C_CODE]: Protect string.h stuff.
10928
10929 * s/osf5-0.h (C_SWITCH_SYSTEM, WAIT_USE_INT, SYS_SIGLIST_DECLARED)
10930 (sys_siglist, NSIG): Definitions moved here from osf1.h.
10931
10932 2000-06-27 Gerd Moellmann <gerd@gnu.org>
10933
10934 * xdisp.c (resize_mini_window): Subtract the extra line spacing
10935 below the last line from the needed window height.
10936
10937 2000-06-26 Stefan Monnier <monnier@cs.yale.edu>
10938
10939 * fns.c (Fplist_member): Renamed from Fwidget_plist_member.
10940 (Fwidget_get): Use it.
10941 (syms_of_fns): Defsubr it.
10942
10943 2000-06-26 Gerd Moellmann <gerd@gnu.org>
10944
10945 * xterm.c (xim_initialize) [!USE_XIM]: Don't set up the
10946 display info for XIM.
10947 (xim_open_dpy): Likewise.
10948 (xim_close_dpy): Don't free the display info's XIM.
10949
10950 * xfns.c (x_window) [!USE_XIM]: Don't call create_frame_ic.
10951
10952 * config.in (USE_XIM): New define.
10953
10954 * keymap.c (get_keyelt): For menu-items containing a `:filter
10955 FILTER', apply FILTER to the menu-item's definition to get the
10956 real definition to use.
10957
10958 * lisp.h (QCfilter): External declaration.
10959
10960 * xfns.c (Fimage_size): New function.
10961 (syms_of_xfns): Defsubr it.
10962
10963 2000-06-26 Andreas Schwab <schwab@suse.de>
10964
10965 * coding.c (decode_coding_string): Re-fetch STRING_BYTES after
10966 Fstring_as_unibyte.
10967
10968 2000-06-25 Dave Love <fx@gnu.org>
10969
10970 * term.c [!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag, tgetnum.
10971
10972 * Makefile.in (blockinput.h): Depend on atimer.h.
10973 (atimer.h): Depend on systime.h.
10974
10975 * blockinput.h: Protect against multiple inclusion. Include atimer.h.
10976
10977 * atimer.h: Protect against multiple inclusion. Include systime.h.
10978
10979 * lisp.h (swap_in_global_binding): Declare.
10980
10981 2000-06-24 Ken Raeburn <raeburn@gnu.org>
10982
10983 * process.c (Fopen_network_stream): Turn off atimers for duration
10984 of call to connect. (Patch from Gerd.)
10985
10986 2000-06-23 Dave Love <fx@gnu.org>
10987
10988 * ralloc.c: Maybe include unistd.h
10989
10990 * emacs.c (setgrp): Undefine before defining.
10991 (malloc_warning, set_time_zone_rule, index): Prototype.
10992
10993 * systime.h (EMACS_GET_TIME) [!GETTIMEOFDAY_ONE_ARGUMENT]: Use
10994 HAVE_STRUCT_TIMEZONE.
10995
10996 * s/osf1.h: Move string.h hack here from alpha.h and make it
10997 conditional.
10998 (C_SWITCH_SYSTEM): Use _OSF_SOURCE, not -BSD, which clashes with
10999 _XOPEN_SOURCE.
11000 (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist, NSIG): Define.
11001 (SOCKLEN_TYPE): Don't define.
11002
11003 * m/alpha.h: Remove string.h hack.
11004
11005 * s/osf5-0.h: New file.
11006
11007 * filelock.c: Use feature tests for fcntl.h, string.h. Don't
11008 include time.h, done by systime.h.
11009 [__FreeBSD__]: Remove redundant includes.
11010
11011 * callproc.c (setpgrp): Undefine before defining.
11012 (delete_temp_file): Return Qnil to avoid warning.
11013
11014 * config.in (HAVE_TERM_H, HAVE_STRUCT_TIMEZONE): Add.
11015
11016 * xfaces.c: Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not
11017 HAVE_X_WINDOWS.
11018
11019 * fontset.h (free_face_fontset): Renamed from fs_free_face_fontset.
11020
11021 * composite.h (compose_text): Declare.
11022
11023 * xterm.c: Don't include sys/types.h unconditionally. Don't
11024 protect its inclusion with !USG (following xmenu.c).
11025
11026 2000-06-23 Gerd Moellmann <gerd@gnu.org>
11027
11028 * xfns.c (x_create_tip_frame): Initialize frame's colors like
11029 in x_create_frame.
11030
11031 2000-06-23 Eli Zaretskii <eliz@is.elta.co.il>
11032
11033 * coding.c (decode_eol_post_ccl): Special handling for undecided
11034 and inconsistent EOL types.
11035
11036 2000-06-22 Gerd Moellmann <gerd@gnu.org>
11037
11038 * xrdb.c (x_load_resources): Add default resource for scroll bar's
11039 trough color and main window's background color.
11040
11041 * xfns.c (Fx_file_dialog) [HAVE_MOTIF_2_1]: Handle events differently.
11042
11043 * xterm.h (Xt_app_con): External declaration.
11044
11045 * widget.c (EmacsFrameRealize): Fix typo.
11046
11047 * widget.c (EmacsFrameRealize): Remove SubstructureRedirectMask.
11048
11049 * xdisp.c (handle_stop): Initialize it->add_overlay_start to zero.
11050 (handle_invisible_prop): Record the start of invisible text in
11051 it->add_overlay_start.
11052 (struct overlay_entry): Add member `overlay'.
11053 (handle_overlay_change): Simplify.
11054 (next_overlay_string): After having processed overlay strings at the
11055 end of the buffer, record that fact in
11056 it->overlay_strings_at_end_processed_p.
11057 (compare_overlay_entries): If before- and after-strings come
11058 from the same overlay, let before-strings come first.
11059 (RECORD_OVERLAY_STRING): Record the overlay that strings come from.
11060 (load_overlay_strings): Take it->add_overlay_start into account
11061 when adding overlay strings.
11062
11063 * dispextern.h (struct it): Add member add_overlay_start.
11064
11065 2000-06-22 Dave Love <fx@gnu.org>
11066
11067 * s/isc3-0.h (C_SWITCH_SYSTEM): Define _XOPEN_SOURCE=500.
11068
11069 * s/gnu-linux.h (C_SWITCH_SYSTEM): Don't define _XOPEN_SOURCE here.
11070
11071 2000-06-22 Kenichi Handa <handa@etl.go.jp>
11072
11073 * ccl.c (ccl_driver) <CCL_End>: Decrement stack_idx only when it
11074 is greater than 0.
11075
11076 2000-06-21 Dave Love <fx@gnu.org>
11077
11078 * Makefile.in (GETLOADAVG_OBJ): Removed -- LIBOBJS does it.
11079
11080 2000-06-21 Stefan Monnier <monnier@cs.yale.edu>
11081
11082 * syntax.c (back_comment): Simplify string-parity counting (with
11083 the added benefit of handling multiple string-styles as long as
11084 they are not intertwined).
11085 Jump to the slow code as soon as a comment starter is found in
11086 a "string_lossage" position. Fixes the case: " /* " /* " */.
11087
11088 2000-06-21 Dave Love <fx@gnu.org>
11089
11090 * Makefile.in: Use GETLOADAVG_LIBS.
11091
11092 * config.in: Add HAVE_FCNTL_H, _FILE_OFFSET_BITS,
11093 _LARGEFILE_SOURCE, _LARGE_FILES, _XOPEN_SOURCE.
11094
11095 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
11096
11097 * syntax.c (describe_syntax): Recognize the `n'estable bit.
11098 (Fforward_comment, scan_lists):
11099 Check the comstyle of single-char comment-starters.
11100 (scan_sexps_forward): Don't try to recognize `half comment-enders' if
11101 we're just at the beginning of the comment (f.ex with (*) ... (*)).
11102 Check the comstyle of single-char comment-starters.
11103 Clarify control-flow around the Scomment case.
11104
11105 2000-06-20 Dave Love <fx@gnu.org>
11106
11107 * fns.c (make_hash_table, maybe_resize_hash_table):
11108 Cast arg of next_almost_prime.
11109
11110 * tparam.c [emacs]: Include lisp.h.
11111
11112 * termcap.c [emacs]: Test HAVE_FCNTL_H, not USG5. Include lisp.h
11113 and unistd.h.
11114
11115 2000-06-20 Gerd Moellmann <gerd@gnu.org>
11116
11117 * keyboard.c (adjust_point_for_property): Check if display
11118 property should be treated as intangible by looking at its value.
11119
11120 * xdisp.c (single_display_prop_intangible_p)
11121 (display_prop_intangible_p): New functions.
11122
11123 * dispextern.h (display_prop_intangible_p): Add prototype.
11124
11125 * xdisp.c (dump_glyph_row): Show type of glyph->object.
11126
11127 * s/isc4-0.h (sigblock): Redefined to pass a pointer as second
11128 argument to sigprocmask.
11129
11130 * s/sco5.h (sigblock): Redefined to pass a pointer as second
11131 argument to sigprocmask.
11132
11133 * syssignal.h (sigblock, sigunblock) [USG5_4]: Set
11134 sigprocmask_set, and pass a pointer to it to sigprocmask.
11135
11136 * sysdep.c (sigprocmask_set): New variable.
11137
11138 * fileio.c (make_temp_name): Don't use `%s' in string passed to
11139 report_file_error.
11140
11141 2000-06-20 Sam Steingold <sds@gnu.org>
11142
11143 * xrdb.c: Don't declare xmalloc, xrealloc.
11144
11145 2000-06-20 Stefan Monnier <monnier@cs.yale.edu>
11146
11147 * regex.c (re_match, re_match_2): Protect calls to alloca (0).
11148 (re_comp): Cast gettext return value to avoid complaints when
11149 !HAVE_LIBINTL.
11150
11151 2000-06-20 Dave Love <fx@gnu.org>
11152
11153 * m/stride.h, m/mips.h: Don't define HAVE_GETWD, HAVE_GETTIMEOFDAY.
11154
11155 * m/ibmrt-aix.h: Don't declare HAVE_GETTIMEOFDAY, HAVE_VFORK.
11156
11157 * m/ibmrs6000.h, m/ibmps2-aix.h, m/dpx2.h: Don't declare HAVE_GETWD.
11158
11159 * m/alpha.h: Don't declare xmalloc, xrealloc.
11160
11161 * s/ux4800.h: Don't declare GETTIMEOFDAY_ONE_ARGUMENT.
11162
11163 * s/usg5-4-2.h: Don't declare HAVE_GETWD, VFORK_RETURN_TYPE.
11164
11165 * s/umips.h: Don't declare HAVE_GETWD, HAVE_GETTIMEOFDAY.
11166
11167 * s/cxux.h, s/gnu-linux.h, s/iris3-6.h, s/irix3-3.h: Don't declare
11168 HAVE_GETWD.
11169
11170 * keyboard.h (poll_for_input_1): Declare.
11171
11172 * getloadavg.c: Don't define NLIST_STRUCT (handled by configure).
11173
11174 * alloc.c (xmalloc, xrealloc, xfree): Define using POINTER_TYPE.
11175
11176 * doprnt.c: Don't declare xmalloc, xrealloc.
11177
11178 * lisp.h (x_set_tool_bar_lines, free_frame_xic, compose_text)
11179 (getenv, ctime, getwd): Removed.
11180 (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE.
11181
11182 * xterm.h: Remove duplicate prototypes. Declare free_frame_xic,
11183 x_set_tool_bar_lines.
11184
11185 * config.in: Add HAVE_GETWD. Move some definitions above
11186 machine/system includes.
11187
11188 2000-06-20 Kenichi Handa <handa@etl.go.jp>
11189
11190 * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1.
11191
11192 * xfaces.c (font_list): Handle the case that REGISTRY doesn't
11193 contain information about ENCODING.
11194
11195 * fontset.c (FONTSET_ASCII): Use the first element of char table
11196 for an ASCII font, not defalt slot.
11197 (fontset_ref_via_base): If FONTSET doesn't contain information for
11198 C, try the default fontset.
11199 (make_fontset): Don't copy the default fontset.
11200 (fontset_font_pattern): Likewise.
11201 (accumulate_font_info): If ELT is nil, use the corresponding
11202 element in the default fontset.
11203
11204 2000-06-19 Dave Love <fx@gnu.org>
11205
11206 * syntax.c (Fparse_partial_sexp): Doc fix.
11207
11208 * regex.h: Test PROTOTYPES as well as __STDC__.
11209
11210 * unexalpha.c: Include errno.h, string.h, unistd.h. Don't declare
11211 errno, strerror. Put text after #endif in comment.
11212
11213 * xdisp.c (dump_glyph_matrix): Add `static' to declaration (for pcc).
11214
11215 * xterm.c (x_frame_of_widget): Likewise.
11216
11217 2000-06-19 Gerd Moellmann <gerd@gnu.org>
11218
11219 * abbrev.c (syms_of_abbrev): Set buffer_default's abbrev table
11220 to Vfundamental_mode_abbrev_table.
11221
11222 * alloc.c (mark_object) [GC_CHECK_MARKED_OBJECTS]: Check that no
11223 bogus objects are marked. This slows down GC by ~80 percent, but
11224 it might be worth trying when debugging GC-related problems.
11225 This feature requires conservative stack marking to be enabled.
11226
11227 * xterm.c (XTread_socket) <KeyPress>: In case XmbLookupString
11228 returns XLookupChars, reset `modifiers' to zero.
11229
11230 2000-06-19 Dave Love <fx@gnu.org>
11231
11232 * mktime.c: Unprotoized.
11233
11234 2000-06-19 Richard Stallman <rms@gnu.org>
11235
11236 * data.c (set_internal): If variable is frame-local,
11237 store the new value immediately into the frame parameter alist.
11238
11239 2000-06-19 Ken Raeburn <raeburn@gnu.org>
11240
11241 * xfns.c (jpeg_load): Fetch error-handling data first, then fill
11242 in the custom handler pointer.
11243
11244 * keyboard.c (follow_key, read_key_sequence): Use XUINT on key
11245 value, or checks for CHAR_META can fail when Lisp_Object is a
11246 union type.
11247 * keymap.c (get_keyelt): Likewise.
11248
11249 2000-06-19 Kenichi Handa <handa@etl.go.jp>
11250
11251 * ccl.h (struct ccl_program): New member eol_type.
11252 (struct ccl_spec): New member cr_carryover.
11253
11254 * ccl.c (CCL_WRITE_CHAR): Convert NL according to ccl->eol_type.
11255 (setup_ccl_program): Initialize ccl->eol_type to CODING_EOL_LF.
11256
11257 * coding.c (setup_coding_system) <4>: Reset member `cr_carryover'.
11258 (ccl_coding_driver): On encoding, initialize ccl->eol_type.
11259 (decode_eol_post_ccl): New function.
11260 (decode_coding): Don't detect EOL format here for CCL based coding
11261 systems.
11262 (decode_coding) <coding_type_ccl>: Handle carryovered CR. Call
11263 decode_eol_post_ccl after running the CCL program.
11264 (code_convert_region): Don't detect EOL format here for CCL based
11265 coding systems.
11266 (decode_coding_string): Likewise.
11267
11268 2000-06-18 Ken Raeburn <raeburn@gnu.org>
11269
11270 * charset.c (update_charset_table): Use XINT on "iso_final_char"
11271 when treating it as an integer.
11272
11273 * coding.h (encode_coding_string): Declare.
11274
11275 * keyboard.c (read_key_sequence): Use XINT on "pos" when treating
11276 it as an integer.
11277
11278 * keymap.c (Fwhere_is_internal): Rename argument "keymap" to
11279 "xkeymap" to avoid shadowing the "enum map_type" value that needs
11280 to be passed to get_local_map.
11281
11282 * sound.c (Fplay_sound): Don't call make_number on
11283 Frun_hook_with_args count argument.
11284
11285 * xterm.c (x_send_scroll_bar_event): Fudge lisp object/integer
11286 for lisp objects in X event structure data field, when lisp
11287 objects are represented with unions.
11288 (x_scroll_bar_to_input_event): Ditto.
11289
11290 2000-06-16 Ken Raeburn <raeburn@gnu.org>
11291
11292 * xdisp.c (decode_mode_spec): In "no_value" case, do NUL
11293 termination of string. Fix sense of test whether
11294 Vline_number_display_limit is an integer.
11295
11296 2000-06-16 Gerd Moellmann <gerd@gnu.org>
11297
11298 * xfaces.c (syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
11299 only if HAVE_X_WINDOWS.
11300
11301 * keymap.c (describe_buffer_bindings): Add `\f\n' in front
11302 of titles.
11303
11304 * dispnew.c (update_frame_1): Handle case that cursor vpos is
11305 out of bounds.
11306
11307 2000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
11308
11309 * unexec.c (toplevel): Fix last change, so as not to deprive MSDOS
11310 of its headers.
11311
11312 2000-06-15 Kenichi Handa <handa@etl.go.jp>
11313
11314 * coding.c (decode_coding_emacs_mule): Always set src_base at the
11315 start of the while loop.
11316
11317 2000-06-15 Gerd Moellmann <gerd@gnu.org>
11318
11319 * atimer.c (alarm_signal_handler): Add forward declaration.
11320
11321 * data.c (set_internal): Remove debug code.
11322
11323 2000-06-14 Gerd Moellmann <gerd@gnu.org>
11324
11325 * Makefile.in (bootstrap-temacs): Add `-I../src'.
11326
11327 * unexec.c (toplevel) [COFF]: Include coff.h.
11328
11329 * s/lynxos.h: New file.
11330
11331 * keymap.c (Fsingle_key_description): Enclose function key and
11332 event symbol names in angle brackets.
11333
11334 * xdisp.c (setup_echo_area_for_printing): Call
11335 message_log_maybe_newline if message_buf_print is not set.
11336
11337 * print.c (printchar, strout): Don't check message_buf_print
11338 before calling setup_echo_area_for_printing because that
11339 function does something useful even when message_buf_print is
11340 already set.
11341
11342 * xdisp.c (message_truncate_lines, Qmessage_truncate_lines):
11343 New variables.
11344 (ensure_echo_area_buffers): Initialize echo buffer's
11345 truncate lines setting to nil.
11346 (with_echo_area_buffer): Don't set the echo buffer's truncate
11347 lines setting here.
11348 (set_message_1): Set it here instead, based on the value
11349 of message_truncate_lines.
11350 (resize_mini_window): Handle case that lines are truncated.
11351 (syms_of_xdisp): Initialize Qmessage_truncate_lines.
11352 DEFVAR_BOOL message-truncate-lines.
11353
11354 * keyboard.c (read_char): Bind message-truncate-lines to t
11355 while displaying a help-echo.
11356
11357 * lisp.h (Qmessage_truncate_lines): External declaration.
11358
11359 2000-06-13 Gerd Moellmann <gerd@gnu.org>
11360
11361 * xdisp.c (Vline_number_display_limit): Renamed from
11362 line_number_display_limit.
11363 (syms_of_xdisp): Use DEFVAR_LISP for line-number-display-limit.
11364 Extend documentation string. Initialize
11365 Vline_number_display_limit to nil meaning no limit.
11366 (decode_mode_spec): Use Vline_number_display_limit with its new
11367 meaning.
11368
11369 * xterm.c (x_check_font) [GLYPH_DEBUG]: Add prototype.
11370
11371 2000-06-13 Richard Stallman <rms@gnu.org>
11372
11373 * frame.c (Fmodify_frame_parameters): Doc fix.
11374
11375 * xfns.c (x_set_frame_parameters): Comment fix.
11376
11377 * frame.c (store_frame_param): Call swap_in_global_binding if the
11378 variable's current binding was chosen based on this frame.
11379
11380 * data.c (swap_in_global_binding): New function.
11381
11382 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
11383
11384 * msdos.c (IT_write_glyphs): Don't use CODING_REQUIRE_ENCODING
11385 macro, instead AND with CODING_REQUIRE_ENCODING_MASK.
11386
11387 2000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
11388
11389 * msdos.h (EMACS_MSDOS_H): Renamed from MSDOS_H_.
11390
11391 2000-06-12 Jason Rumney <jasonr@gnu.org>
11392
11393 * w32bdf.h (EMACS_W32BDF_H): Renamed from __W32BDF_H__
11394
11395 * w32.h (EMACS_W32_H): Renamed from _NT_H_
11396
11397 * w32gui.h (EMACS_W32GUI_H): Renamed from __W32GUI_H__
11398
11399 * w32inevt.h (EMACS_W32INEVT_H): Renamed from __NTINEVT_H__
11400
11401 2000-06-12 Gerd Moellmann <gerd@gnu.org>
11402
11403 * xfaces.c (Fdump_colors) [DEBUG_X_COLORS]: New function.
11404 (syms_of_xfaces): Defsubr Sdump_colors.
11405 (x_free_colors): Don't treat b&w specially on default visual.
11406 (x_free_dpy_colors): New function.
11407 (free_face_colors): Don't check visual class; it's done
11408 in x_free_colors.
11409
11410 * xterm.c (x_frame_of_widget): New function.
11411 (x_alloc_nearest_color_for_widget): Use it.
11412 (x_copy_dpy_color): New function.
11413 (x_destroy_window): Free various colors.
11414
11415 2000-06-12 Kenichi Handa <handa@etl.go.jp>
11416
11417 * ccl.h (EMACS_CCL_H): Renamed from _CCL_H.
11418
11419 * charset.h (EMACS_CHARSET_H): Renamed from _CHARSET_H.
11420
11421 * coding.h (EMASC_CODING_H): Renamed from _CODING_H.
11422
11423 * composite.h (EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
11424
11425 * fontset.h (EMACS_FONTSET_H): Renamed from _FONTSET_H.
11426
11427 2000-06-11 Dave Love <fx@gnu.org>
11428
11429 * systime.h (EMACS_SYSTIME_H): Renamed from _SYSTIME_H.
11430
11431 2000-06-11 Eli Zaretskii <eliz@is.elta.co.il>
11432
11433 * msdos.h: Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead.
11434
11435 2000-06-11 Gerd Moellmann <gerd@gnu.org>
11436
11437 * xmenu.c (xmenu_show): Cast second parameter of lw_popup_menu
11438 to `XEvent *'.
11439
11440 2000-06-10 Kenichi Handa <handa@etl.go.jp>
11441
11442 * regex.c (MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
11443 (regex_compile): Fix the code for handling the case of single byte
11444 char and multibyte char being mixed in a range within [...].
11445
11446 * fileio.c (Finsert_file_contents): Be sure to setup src_multibyte
11447 and dst_multibyte members of coding.
11448
11449 * charset.c (update_charset_table): Update the table
11450 bytes_by_char_head.
11451 (init_charset_once): Initialize elements of bytes_by_char_head to
11452 1 except for leading codes for private charases.
11453
11454 * charset.h (CHARSET_8_BIT_GRAPHIC): Define as 0x80.
11455 (UNIBYTE_STR_AS_MULTIBYTE_P): Fix for an invalid multibyte sequence.
11456
11457 2000-06-09 Ken Raeburn <raeburn@gnu.org>
11458
11459 * xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
11460 access the data it doesn't point to.
11461
11462 2000-06-08 Gerd Moellmann <gerd@gnu.org>
11463
11464 * xterm.c (XTread_socket) <FocusIn>: Queue a FOCUS_IN_EVENT which
11465 will be translated to a switch-frame event when reading the
11466 event queue. This is necessary because Emacs otherwise won't
11467 perform a switch-frame to a new frame until some other event, for
11468 example a keystroke event, forces it to do so. This has various
11469 effects, one visible being that the cursor of a frame created with
11470 C-x 5 2 or switched to with a window manager key binding like
11471 A-TAB stays hollow because selected_window isn't on the newly
11472 focused frame until the switch-frame is performed.
11473
11474 * keyboard.c (kbd_buffer_get_event): Handle FOCUS_IN_EVENT by
11475 generating a switch-frame event if necessary.
11476
11477 * termhooks.h (enum event_kind): Add FOCUS_IN_EVENT.
11478
11479 * xdisp.c (handle_fontified_prop): Don't GCPRO local var `pos';
11480 it's an integer.
11481
11482 2000-06-08 Kenichi Handa <handa@etl.go.jp>
11483
11484 * fontset.c (Fset_fontset_font): The arg CHARACTER may be a charset.
11485
11486 2000-06-07 Gerd Moellmann <gerd@gnu.org>
11487
11488 * window.c (displayed_window_lines): Take empty lines at
11489 the bottom of a window into account.
11490
11491 * window.c (displayed_window_lines): New function.
11492 (Fmove_to_window_line): Use displayed_window_lines to determine
11493 the number of lines to move, instead of using the window's height.
11494
11495 * lread.c (readevalloop): If READCHARFUN sets point to ZV, arrange
11496 to stop reading, even if the form read sets point to a different
11497 value when evaluated.
11498
11499 * xdisp.c (display_line): Fix code deciding in which line to
11500 put the cursor.
11501
11502 2000-06-07 Kenichi Handa <handa@etl.go.jp>
11503
11504 * fileio.c (e_write): Free composition data if stored in
11505 coding->cmp_data.
11506
11507 2000-06-06 Gerd Moellmann <gerd@gnu.org>
11508
11509 * xdisp.c (display_line): Set row's and iterator's
11510 starts_in_middle_of_char_p and ends_in_middle_of_char_p flags.
11511 Set cursor even if row ends in the middle of a character.
11512 (dump_glyph_row): Print values of new flags.
11513 (redisplay_window) <cursor movement in unchanged window>: When
11514 point has been moved forward, and PT is at the end of the cursor
11515 row, don't place the cursor in the next row if the cursor row ends
11516 in the middle of a character or at ZV.
11517
11518 * dispextern.h (struct it): Add starts_in_middle_of_char_p.
11519 (struct glyph_row): Add starts_in_middle_of_char_p and
11520 ends_in_middle_of_char_p.
11521 (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P): Test row's
11522 ends_in_middle_of_char_p flag.
11523 (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Likewise.
11524
11525 * term.c (append_glyph): Revert change of 2000-06-06.
11526
11527 * xdisp.c (display_line): Revert change of 2000-06-06. Treat
11528 padding glyph not fitting on line as whole character not
11529 fitting on line.
11530
11531 * xterm.c (x_produce_glyphs): Don't xassert `it->descent > 0';
11532 this isn't true for images with `:ascent 100'.
11533
11534 2000-06-06 Kenichi Handa <handa@etl.go.jp>
11535
11536 * buffer.c (Fset_buffer_multibyte): Don't make the current buffer
11537 as modified if it is originally unmodified.
11538
11539 * term.c (encode_terminal_code): Change the way to check if
11540 terminal coding does any conversion.
11541 (append_glyph): Set glyph->pixel_width correctly.
11542
11543 * xdisp.c (display_line): While checking line continuation, pay
11544 attention to a padding glyph.
11545
11546 2000-06-05 Gerd Moellmann <gerd@gnu.org>
11547
11548 * xdisp.c (redisplay_window): Always use set_buffer_internal_1.
11549
11550 2000-06-05 Dave Love <fx@gnu.org>
11551
11552 * xdisp.c: Include fontset.h.
11553
11554 * xfns.c (x_real_positions): Declare tmp_nchildren as unsigned.
11555
11556 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
11557
11558 * dispnew.c: Conditionally include term.h.
11559
11560 * coding.h: Declare code_convert_string_norecord.
11561
11562 * frame.h (struct frame): Use volatile unconditionally.
11563
11564 * buffer.h: Remove Vbefore_change_function, Vafter_change_function.
11565
11566 * xmenu.c (menu_item_selection): Declare volatile unconditionally.
11567
11568 * systime.h: Protect against multiple inclusion.
11569 (timezone) [USG5_4]: Define as time_t.
11570
11571 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
11572 (Foptimize_char_table, make_temp_name): Declare.
11573
11574 * Makefile.in (xdisp.o): Depend on fontset.h.
11575
11576 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
11577
11578 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
11579 (Foptimize_char_table, make_temp_name): Declare.
11580
11581 * s/irix4-0.h:
11582 * s/irix5-0.h:
11583 * s/netbsd.h: Don't define autoconfiscated MATHERR.
11584
11585 2000-06-02 Dave Love <fx@gnu.org>
11586
11587 * lread.c (_XOPEN_SOURCE, __EXTENSIONS__): Don't define.
11588
11589 2000-06-02 Gerd Moellmann <gerd@gnu.org>
11590
11591 * xfaces.c (realize_x_face): When copying BASE_FACE bitwise to the
11592 result face, set flags in that face indicating that colors may not
11593 be freed.
11594
11595 * xterm.c (x_set_mouse_face_gc): If first glyph isn't a character
11596 glyph, use the ASCII NUL character to determine the face.
11597
11598 2000-06-02 Dave Love <fx@gnu.org>
11599
11600 * sysdep.c: Conditionally include stdlib.h, unistd.h.
11601 (VFORK_RETURN_TYPE): Remove.
11602
11603 * config.in: Add NO_MATHERR.
11604
11605 2000-06-01 Dave Love <fx@gnu.org>
11606
11607 * cmds.c (internal_self_insert): Don't check
11608 Vbefore_change_function, Vafter_change_function.
11609
11610 * insdel.c (signal_before_change, signal_after_change): Likewise.
11611
11612 * buffer.c (Vbefore_change_function, Vafter_change_function):
11613 Variables and their initializations deleted.
11614
11615 * callint.c (Fcall_interactively): Doc fix.
11616
11617 * terminfo.c (ospeed) [HAVE_SPEED_T]: Don't declare extern.
11618
11619 2000-05-31 Dave Love <fx@gnu.org>
11620
11621 * textprop.c: Revert last change -- duplicated.
11622
11623 2000-05-31 Gerd Moellmann <gerd@gnu.org>
11624
11625 * dispnew.c (find_glyph_row_slice, swap_glyphs_in_rows): Put
11626 in #if 0.
11627
11628 * lisp.h (eassert) [!ENABLE_CHECKING]: Define as `(void) 0'.
11629
11630 2000-05-31 Jason Rumney <jasonr@gnu.org>
11631
11632 * search.c (Fre_search_forward, Fre_search_backward)
11633 (Fposix_search_backward, Fposix_search_forward): Fix newlines in docs.
11634
11635 * w32select.c (Fw32_set_clipboard_data): Change QNil to Qnil.
11636
11637 2000-05-30 Jason Rumney <jasonr@gnu.org>
11638
11639 * coding.h (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
11640 [WINDOWSNT]: Add extern for Vw32_system_coding_system.
11641
11642 * dispextern.h (struct glyph) [WINDOWSNT]: Add w32_font_type member.
11643
11644 * fileio.c (Fread_file_name) [HAVE_NTGUI]: Use file dialog.
11645 (Fread_file_name) [HAVE_NTGUI, USE_MOTIF]: Do not attempt to
11646 expand a nil default_filename.
11647
11648 * keyboard.c (make_lispy_event) [WINDOWS_NT]: Pass a window
11649 pointer to glyph_to_pixel_coords, not a frame.
11650
11651 * makefile.nt (w32fns.obj, w32menu.obj): Add charset.h and
11652 coding.h to dependencies.
11653
11654 * w32bdf.c (w32_load_bdf_font): Initialize font->double_byte_p.
11655
11656 * w32console.c (glyph_to_pixel_coords): Change first parameter to
11657 window pointer to be consistent with w32term.c and xterm.c.
11658
11659 * w32fns.c: Format and doc changes to bring closer to xfns.c.
11660 (VIETNAMESE_CHARSET): Define if not defined in system headers.
11661 (Qline_spacing, Qcenter): New variables.
11662 (Qw32_charset_*, w32_codepage_for_font): Moved from w32term.c.
11663 (x_set_line_spacing): New function.
11664 (x_set_frame_parameters): Use FRAME_NEW_WIDTH, FRAME_NEW_HEIGHT macros.
11665 (x_specified_cursor_type): New function.
11666 (x_set_cursor_type): Use it.
11667 (x_set_name, x_set_title): Use ENCODE_SYSTEM to encode titlebar
11668 and icon strings.
11669 (validate_x_resource_name, x_get_resource_string): Measure lengths
11670 of external strings in bytes.
11671 (w32_wnd_proc) [WM_MEASURE_ITEM]: Avoid calling
11672 GetTextExtentPoint32 with NULL title.
11673 (Fx_create_frame): Initialize Qline_spacing.
11674 (w32_load_system_font): Initialize font->double_byte_p.
11675 (x_to_w32_charset): Use Vw32_charset_info_alist.
11676 (Image, busy cursor, tooltip functions): Merged changes from
11677 xfns.c. Not yet functional on Windows.
11678
11679 * w32gui.h (W32FontStruct): Add double_byte_p member.
11680
11681 * w32inevt.c (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
11682 (emacs_button_translation): Use it.
11683 (do_mouse_event): Allow up to 32 mouse buttons by allowing any bit
11684 in `mask' to be set.
11685
11686 * w32menu.c (single_submenu, w32_menu_show): Call ENCODE_SYSTEM on
11687 menu strings.
11688
11689 * w32term.c: Format and doc changes to bring closer to xterm.c.
11690 (w32_char_font_type): New enum.
11691 (Qw32_charset_*, w32_codepage_for_font): Moved to w32fns.c.
11692 (w32_per_char_metric): Use w32_char_font_type instead of unicode_p.
11693 (w32_encode_char): New function.
11694 (x_encode_char): Removed.
11695 (x_get_glyph_and_face_encoding): Use w32_encode_char in place of
11696 x_encode_char and w32_font_is_double_byte.
11697 (x_produce_image_glyph): Use image_ascent.
11698 (x_produce_glyphs): Use new version of w32_per_char_metric and
11699 handle NULL return value. Allow extra line spacing.
11700 (W32_TEXTOUT): Distinguish between Unicode and DBCS text.
11701 (w32_get_glyph_overhangs): Remove unicode_p param. Use
11702 w32_font_type member of glyph instead.
11703 (x_draw_glyph_string): Draw underline and strike-out for BDF fonts.
11704 (fast_find_position): Make sure not to consider rows not visible
11705 in the window.
11706 (w32_read_socket) [WM_MENUSELECT]: Cannot call
11707 w32_menu_display_help with input blocked, as it can abort.
11708 (x_display_and_set_cursor): Choose cursor depending
11709 on buffer-local value of cursor_type.
11710 (x_draw_bar_cursor): Add parameter WIDTH.
11711
11712 * w32term.h (CP_DEFAULT): Define.
11713 (Fx_display_color_p, Fx_display_grayscale_p, image_ascent): Declare.
11714
11715 2000-05-30 Gerd Moellmann <gerd@gnu.org>
11716
11717 * search.c (Fre_search_forward, Fre_search_backward)
11718 (Fposix_search_backward, Fposix_search_forward): Doc fix.
11719
11720 2000-05-30 Kenichi Handa <handa@etl.go.jp>
11721
11722 * coding.c (detect_coding_iso2022): Fix code for checking
11723 CODING_CATEGORY_MASK_ISO_8_2.
11724
11725 2000-05-29 Stefan Monnier <monnier@cs.yale.edu>
11726
11727 * regex.c (PREFETCH_NOLIMIT): New function.
11728 (re_match_2_internal): Use it and adjust the end_match_2 logic.
11729
11730 2000-05-29 Gerd Moellmann <gerd@gnu.org>
11731
11732 * syntax.c (find_defun_start): Move test for
11733 open_paren_in_column_0_is_defun_start outside of the loop.
11734
11735 * xdisp.c (redisplay_window): Really switch buffers when
11736 displaying mode lines, and temporarily set selected_frame to the
11737 frame of the window that's redisplayed.
11738
11739 * xfaces.c (free_realized_faces): Block/unblock input.
11740 (free_realized_multibyte_face): Ditto.
11741
11742 2000-05-29 Dave Love <fx@gnu.org>
11743
11744 * textprop.c (Qkeymap): New variable.
11745 (syms_of_textprop): Intern it.
11746
11747 * keymap.c: Include intervals.h.
11748 (Fkey_binding, Fwhere_is_internal): Deal with `keymap' property.
11749
11750 * Makefile.in (keymap.o): Depend on intervals.h.
11751
11752 * keyboard.c (menu_bar_items, tool_bar_items)
11753 (Fexecute_extended_command): Deal with `keymap' property.
11754 (read_key_sequence): Track map from `keymap' property as well as
11755 `local_map'.
11756
11757 * intervals.c (get_local_map): Extra arg to allow looking for
11758 `keymap' too.
11759
11760 * intervals.h (map_property): New enum.
11761 (get_local_map): Extra arg using it.
11762 (Qkeymap): Declare.
11763
11764 * lisp.h (get_local_map): Don't declare here.
11765
11766 2000-05-29 Kenichi Handa <handa@etl.go.jp>
11767
11768 * Makefile.in (callproc.o): Depend on composite.h.
11769
11770 * callproc.c: Include composite.h.
11771 (Fcall_process): Handle composition correctly.
11772
11773 * coding.h (coding_allocate_composition_data): Extern it.
11774 (coding_restore_composition): Likewise.
11775
11776 * coding.c (DECODE_COMPOSITION_START): If coding->cmp_data is not
11777 yet allocated, finish decoding with result
11778 CODING_FINISH_INSUFFICIENT_CMP.
11779 (coding_allocate_composition_data): Make it non-static.
11780 (coding_restore_composition): Likewise.
11781
11782 2000-05-29 Eli Zaretskii <eliz@is.elta.co.il>
11783
11784 * charset.c (syms_of_charset): Revert last change.
11785
11786 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
11787
11788 * term.c (produce_glyphs): Treat characters from the eight-bit-*
11789 charsets as unibyte, with 1-column screen width. Sent by Kenichi
11790 Handa.
11791
11792 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
11793
11794 * charset.c (syms_of_charset): Set width of character sets
11795 eight-bit-control and eight-bit-graphic to 1 column.
11796
11797 2000-05-26 Gerd Moellmann <gerd@gnu.org>
11798
11799 * config.in (HAVE_SPEED_T): New define.
11800
11801 * sysdep.c, terminfo.c (ospeed) [HAVE_SPEED_T]: Declare as
11802 `extern speed_t'.
11803
11804 2000-05-26 Dave Love <fx@gnu.org>
11805
11806 * coding.c (shrink_decoding_region): Initialize eol_conversion.
11807
11808 * data.c (Qsubrp, Qmany, Qunevalled): New variables.
11809 (Fsubr_arity): New function.
11810 (syms_of_data): Install them.
11811
11812 2000-05-26 Kenichi Handa <handa@etl.go.jp>
11813
11814 * charset.c (init_charset_once): Set the table bytes_by_char_head
11815 correctly.
11816
11817 * fontset.c (syms_of_fontset): Adjust the font name for ascii of
11818 the default fontset to what Emacs uses by default.
11819 (check_registry_encoding): This function deleted.
11820 (Fset_fontset_font): Remove the adhoc condition for the default
11821 fontset. Allow cons in FONTNAME.
11822
11823 * fns.c (map_char_table): Ignore char-table entries for
11824 charsets eight-bit-control and eight-bit-graphic.
11825
11826 2000-05-25 Ken Raeburn <raeburn@gnu.org>
11827
11828 * emacs.c (main): Initialize keyboard syms before initializing
11829 window code, so face names are available.
11830
11831 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
11832
11833 * regex.c (at_begline_loc_p): Also recognize the \\(?:^ case
11834 of an anchor at the beginning of a shy-group.
11835
11836 2000-05-25 Gerd Moellmann <gerd@gnu.org>
11837
11838 * xdisp.c (handle_invisible_prop): Don't try to skip over
11839 invisible text if end of text is already reached.
11840
11841 2000-05-25 Dave Love <fx@gnu.org>
11842
11843 * xdisp.c (Fdump_glyph_matrix): Declare the arg.
11844
11845 * coding.c (encode_eol): Add null statement after label.
11846
11847 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
11848
11849 * w16select.c (Fw16_set_clipboard_data): Fix the change from
11850 2000-05-20.
11851
11852 2000-05-25 Kenichi Handa <handa@etl.go.jp>
11853
11854 * ccl.c (ccl_driver): Fix previous change.
11855
11856 2000-05-25 Kenichi Handa <handa@etl.go.jp>
11857
11858 * coding.c (run_pre_post_conversion_on_str): Set point to the
11859 beginning of buffer before calling coding->post_read_conversion.
11860 (decode_coding_string): Give correct args to
11861 run_pre_post_conversion_on_str.
11862 (encode_coding_string): Likewise.
11863
11864 * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>
11865 <CCL_WriteMultibyteChar2>: Handle charsets eight-bit-control and
11866 eight-bit-graphic correctly.
11867
11868 2000-05-24 Kenichi HANDA <handa@etl.go.jp>
11869
11870 * fileio.c (Finsert_file_contents): Even if a file is not found,
11871 execute codes for setting up coding system. Call
11872 after-insert-file-functions unconditionally.
11873
11874 2000-05-24 Gerd Moellmann <gerd@gnu.org>
11875
11876 * callproc.c, emacs.c, sysdep.c (setpgrp): Don't define if USG and
11877 BSD_PGRPS are not defined.
11878
11879 2000-05-24 Kenichi Handa <handa@etl.go.jp>
11880
11881 * charset.c (update_charset_table): Accept nil in LONG_NAME and
11882 DESCRIPTION.
11883 (syms_of_charset): Avoid building same strings.
11884
11885 2000-05-23 Gerd Moellmann <gerd@gnu.org>
11886
11887 * lread.c (Fload): Add a comment about the meaning of
11888 Vuser_init_file being t.
11889
11890 * puresize.h (BASE_PURESIZE): Increase to 675000.
11891
11892 * s/gnu-linux.h (setpgrp): Don't define it here because this
11893 prevents compilation on GNU/Linux systems with glib 2.2.
11894
11895 * callproc.c, emacs.c, sysdep.c (setpgrp) [HAVE_SETPGID]: Define
11896 as setpgid.
11897
11898 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
11899
11900 * Makefile.in (SOME_MACHINE_LISP): Add disp-table.elc,
11901 dos-vars.elc, ccl.elc, and codepage.elc, all loaded by the MS-DOS
11902 version.
11903 (MSDOS_SUPPORT): Add dos-vars.elc, ccl.elc, and codepage.elc.
11904
11905 2000-05-23 Kenichi Handa <handa@etl.go.jp>
11906
11907 * syntax.c (skip_chars): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
11908
11909 * msdos.c (IT_write_glyphs): Set coding->src_multibyte to 1.
11910
11911 * term.c (encode_terminal_code): Set coding->src_multibyte properly.
11912
11913 * coding.c (encode_eol): Fix a bug of DOS style EOL encoding.
11914
11915 2000-05-22 Kenichi Handa <handa@etl.go.jp>
11916
11917 * keyboard.c (read_char): Allow character codes 128..255 to be
11918 handled by input-method-function.
11919
11920 * insdel.c (adjust_markers_for_replace): Fix previous change.
11921 (adjust_after_replace): If PREV_TEXT is nil, call
11922 adjust_markers_for_insert, not adjust_markers_for_replace.
11923
11924 2000-05-20 NIIBE Yutaka <gniibe@mri.co.jp>
11925
11926 * s/gnu-linux.h (UNIX98_PTYS) [HAVE_GRANDPT]: Define.
11927 (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_OPEN, PTY_TTY_NAME_SPRINTF)
11928 [HAVE_GRANDPT]: Define.
11929 (C_SWITCH_SYSTEM): Add -D_XOPEN_SOURCE.
11930
11931 * sysdep.c (setup_pty): Treat case that UNIX98_PTYS is defined
11932 like SYSV_PTYS.
11933
11934 * config.in (HAVE_GRANDPT, HAVE_GETPT): New defines.
11935
11936 * process.c (toplevel) [UNIX98_PTYS]: Include stdlib.h.
11937
11938 2000-05-20 Kenichi Handa <handa@etl.go.jp>
11939
11940 The following changes are to handle 8-bit characters in a
11941 multibyte buffer/string without facing with byte combining
11942 problem. Two new charsets eight-bit-control (for 0x80..0x9F) and
11943 eight-bit-graphic (for 0xA0..0xFF) are introduced.
11944
11945 * Makefile.in (fns.o): Depend on charset.h.
11946
11947 * alloc.c (Fmake_byte_code): If BYTECODE-STRING is multibyte,
11948 convert it to unibyte.
11949 (make_string): Use parse_str_as_multibyte, not chars_in_text.
11950
11951 * buffer.c (advance_to_char_boundary): Don't use DEC_POS to find a
11952 apparent char boundary.
11953 (Fset_buffer_multibyte): Convert 8-bit characters in the range
11954 0x80..0x9F to/from multibyte form.
11955
11956 * bytecode.c (Fbyte_code): If arg BYTESTR is multibyte, convert it
11957 to unibyte.
11958
11959 * callproc.c (Fcall_process): Always encode an argument string if
11960 it is multibyte. Setup src_multibyte and dst_multibyte members of
11961 process_coding properly.
11962
11963 * category.c (Fmodify_category_entry): Use SPLIT_CHAR, not
11964 SPLIT_NON_ASCII_CHAR.
11965
11966 * ccl.c (CCL_WRITE_CHAR): Be sure to write single byte characters
11967 as is.
11968 (CCL_MAKE_CHAR): Use MAKE_CHAR, not MAKE_NON_ASCII_CHAR.
11969
11970 * charset.c (Qeight_bit_control, Qeight_bit_graphic): New variables.
11971 (SPLIT_CHARACTER_SEQ): This macro deleted.
11972 (SPLIT_MULTIBYTE_SEQ): Assume that multibyte sequence at STR is valid.
11973 (CHAR_COMPONENTS_VALID_P): Handle new charsets; eight-bit-control
11974 and eight-bit-graphic.
11975 (char_to_string): Likewise. Signal an error for too large
11976 character code.
11977 (char_printable_p): Return 0 for 8-bit characters.
11978 (update_charset_table): Update iso_charset_table only when a final
11979 character is non-negative.
11980 (find_charset_in_text): Renamed from find_charset_in_str.
11981 Arguments and return value changed. Callers changed.
11982 (Fdefine_charset): Args ISO-FINAL-CHAR and ISO-GRAPHIC-PLANE can
11983 be -1 if CHARSET is used only internally.
11984 (Fmake_char_internal): Handle new charsets; eight-bit-control and
11985 eight-bit-graphic.
11986 (Fcharset_after): Simplified.
11987 (char_valid_p): Use SPLIT_CHAR, not SPLIT_NON_ASCII_CHAR.
11988 (char_bytes): Return 2 for chars of the range 0xA0..0xFF.
11989 (multibyte_chars_in_text): Simplified by assuming there's no
11990 invalid multibyte sequence.
11991 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte)
11992 (str_as_unibyte): New functions.
11993 (Fstring): Simpified by assuming that byte combining never happens.
11994 (init_charset_once): Initialization for
11995 LEADING_CODE_8_BIT_CONTROL.
11996 (syms_of_charset): Intern and staticpro Qeight_bit_control and
11997 Qeight_bit_graphic. Include them in Vcharset_list. Make charsets
11998 eight-bit-control and eight-bit-graphic.
11999
12000 * charset.h (LEADING_CODE_8_BIT_CONTROL, CHARSET_8_BIT_CONTROL)
12001 (CHARSET_8_BIT_GRAPHIC): New macros.
12002 (SINGLE_BYTE_CHAR_P): Make it faster by using casting.
12003 (CHARSET_ISO_GRAPHIC_PLANE): Use XINT instead of XFASTINT.
12004 (CHARSET_REVERSE_CHARSET): Likewise.
12005 (CHARSET_VALID_P): Handle new charsets; eight-bit-control and
12006 eight-bit-graphic.
12007 (BYTES_BY_CHAR_HEAD, WIDTH_BY_CHAR_HEAD): Optimize for ASCII.
12008 (CHAR_CHARSET, MAKE_CHAR, SPLIT_CHAR, CHAR_BYTES): Likewise.
12009 (PARSE_MULTIBYTE_SEQ) [BYTE_COMBINING_DEBUG]: Abort if we
12010 encounter an invalid multibyte sequence.
12011 (PARSE_MULTIBYTE_SEQ) [not BYTE_COMBINING_DEBUG]: Assume multibyte
12012 sequence is always valid.
12013 (MAKE_NON_ASCII_CHAR, SPLIT_NON_ASCII_CHAR): These macros Deleted.
12014 (UNIBYTE_STR_AS_MULTIBYTE_P, MULTIBYTE_STR_AS_UNIBYTE_P): New macros.
12015 (CHAR_STRING): For 8-bit characters, call char_to_string.
12016 (INC_POS) [not BYTE_COMBINING_DEBUG]: Faster version. Assume
12017 multibyte sequence is always valid.
12018 (BUF_INC_POS) [not BYTE_COMBINING_DEBUG]: Likewise.
12019 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte)
12020 (str_as_unibyte): Extern them.
12021 (BCOPY_SHORT): Fix a bug.
12022 (CHAR_LEN): This macro deleted. Callers changed to use CHAR_BYTES.
12023 (FETCH_STRING_CHAR_ADVANCE): Check multibyteness of STRING.
12024 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): New macro.
12025 (FETCH_CHAR_ADVANCE): Check multibyteness of the current buffer.
12026
12027 * coding.c (ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->result to
12028 CODING_FINISH_INSUFFICIENT_SRC if there's not enough source.
12029 (ONE_MORE_CHAR, EMIT_CHAR, EMIT_ONE_BYTE, EMIT_TWO_BYTE)
12030 (EMIT_BYTES): New macros.
12031 (THREE_MORE_BYTES, DECODE_CHARACTER_ASCII)
12032 (DECODE_CHARACTER_DIMENSION1, DECODE_CHARACTER_DIMENSION2): These
12033 macros deleted.
12034 (CHECK_CODE_RANGE_A0_FF): This macro deleted.
12035 (detect_coding_emacs_mule): Use UNIBYTE_STR_AS_MULTIBYTE_P to
12036 check the validity of multibyte sequence.
12037 (decode_coding_emacs_mule): New function.
12038 (encode_coding_emacs_mule): New macro.
12039 (detect_coding_iso2022): Use ONE_MORE_BYTE to fetch a byte from
12040 the source.
12041 (DECODE_ISO_CHARACTER): Just return a character code.
12042 (DECODE_COMPOSITION_START): Set coding->result instead of result.
12043 (decode_coding_iso2022, decode_coding_sjis_big5, decode_eol): Use
12044 EMIT_CHAR to produced decoded characters. Exit the loop only by
12045 macros ONE_MORE_BYTE or EMIT_CHAR. Don't handle the case of last
12046 block here.
12047 (ENCODE_ISO_CHARACTER): Don't translate character here. Produce
12048 only position codes for an invalid character.
12049 (encode_designation_at_bol): Return new destination pointer. 5th
12050 arg DSTP is changed to DST.
12051 (encode_coding_iso2022, decode_coding_sjis_big5): Get a character
12052 from the source by ONE_MORE_CHAR. Don't handle the case of last
12053 block here.
12054 (DECODE_SJIS_BIG5_CHARACTER, ENCODE_SJIS_BIG5_CHARACTER): These
12055 macros deleted.
12056 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8)
12057 (detect_coding_utf_16, detect_coding_ccl): Use ONE_MORE_BYTE and
12058 TWO_MORE_BYTES to fetch a byte from the source.
12059 (encode_eol): Pay attention to coding->src_multibyte.
12060 (detect_coding, detect_eol): Preserve members src_multibyte and
12061 dst_multibyte.
12062 (DECODING_BUFFER_MAG): Return 2 even for coding_type_raw_text.
12063 (encoding_buffer_size): Set magnification to 3 for all coding
12064 systems that require encoding.
12065 (ccl_coding_driver): For decoding, be sure that the result is
12066 valid multibyte sequence.
12067 (decode_coding): Initialize coding->errors and coding->result.
12068 For emacs-mule, call decode_coding_emacs_mule. For no-conversion
12069 and raw-text, always call decode_eol. Handle the case of last
12070 block here. If not coding->dst_multibyte, convert the resulting
12071 sequence to unibyte.
12072 (encode_coding): Initialize coding->errors and coding->result.
12073 For emacs-mule, call encode_coding_emacs_mule. For no-conversion
12074 and raw-text, always call encode_eol. Handle the case of last
12075 block here.
12076 (shrink_decoding_region, shrink_encoding_region): Detect cases
12077 that we can't skip data more rigidly.
12078 (code_convert_region): Setup src_multibyte and dst_multibyte
12079 members of coding. For decoding, if the buffer is multibyte,
12080 convert the source sequence to unibyte in advance. For encoding,
12081 if the buffer is multibyte, convert the resulting sequence to
12082 multibyte afterward.
12083 (run_pre_post_conversion_on_str): New function.
12084 (code_convert_string): Deleted and divided into the following two.
12085 (decode_coding_string, encode_coding_string): New functions.
12086 (code_convert_string1, code_convert_string_norecord): Call one of
12087 above.
12088 (Fdecode_sjis_char, Fdecode_big5_char): Use MAKE_CHAR instead of
12089 MAKE_NON_ASCII_CHAR.
12090 (Fset_terminal_coding_system_internal)
12091 (Fset_safe_terminal_coding_system_internal): Setup src_multibyte
12092 and dst_multibyte members.
12093 (init_coding_once): Initialize iso_code_class with new enum
12094 ISO_control_0 and ISO_control_1.
12095
12096 * coding.h (enum iso_code_class_type): Member ISO_control_code is
12097 devided into ISO_control_0 and ISO_control_1.
12098 (struct coding_system): New members src_multibyte, dst_multibyte,
12099 errors, and result. Delete member fake_multibyte.
12100 (CODING_REQUIRE_DECODING): Return 1 if coding->dst_multibyte is
12101 nonzero.
12102 (CODING_REQUIRE_ENCODING): Return 1 if coding->src_multibyte is
12103 nonzero.
12104
12105 * data.c (Faref): Use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
12106 (Faset): Likewise.
12107
12108 * editfns.c (Fformat): Be sure to convert 8-bit characters to
12109 multibyte form.
12110 (Ftranspose_region) [BYTE_COMBINING_DEBUG]: Abort if byte
12111 combining occurs.
12112 (Ftranspose_region): Delete codes for handling byte combining.
12113
12114 * fileio.c (Finsert_file_contents): Setup src_multibyte and
12115 dst_multibyte members of coding. On handling REPLACE on unibyte
12116 buffer, convert the result of decode_coding to unibyte. On
12117 inserting into a mutibyte buffer, always call code_convert_region.
12118 (e_write): Setup coding->src_multibyte according to the
12119 multibyteness of the source (buffer or string).
12120
12121 * fns.c (concat): Handle 8-bit characters correctly.
12122 (Fstring_as_unibyte): Be sure to make all 8-bit characters in
12123 unibyte in the result.
12124 (Fstring_as_multibyte): Be sure to make all 8-bit characters in
12125 valid multibyte form in the result.
12126 (map_char_table): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
12127 (Fbase64_encode_region, Fbase64_encode_string): If base64_encode_1
12128 return -1, signal an error.
12129 (base64_encode_1): New arg MULTIBYTE. Get each character by
12130 CHAR_STRING_AND_LENGTH if MULTIBYTE is nonzero. If a multibyte
12131 character is found, return -1.
12132 (Fbase64_decode_region): Delete codes for handling byte-combining.
12133 Treat each decoded byte as a unibyte character.
12134 (Fbase64_decode_string): Return unibyte string.
12135 (Fcompare_strings, concat, string_byte_to_char): Use
12136 FETCH_STRING_CHAR_ADVANCE_NO_CHECK instead off
12137 FETCH_STRING_CHAR_ADVANCE.
12138 (Fstring_lessp): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
12139 (mapcar1): If SEQ is string, always use FETCH_STRING_CHAR_ADVANCE.
12140
12141 * fontset.c (fontset_ref): Use SPLIT_CHAR instead of
12142 SPLIT_NON_ASCII_CHAR.
12143 (fontset_ref_via_base, fontset_set): Likewise
12144
12145 * insdel.c (adjust_markers_for_record_delete): Deleted.
12146 (adjust_markers_for_insert): Argument changed. Caller changed.
12147 (adjust_markers_for_replace): Likewise.
12148 (ADJUST_CHAR_POS, combine_bytes, byte_combining_error)
12149 (CHECK_BYTE_COMBINING_FOR_INSERT): Deleted.
12150 (copy_text): Delete unused local varialbe c_save. For converting
12151 to multibyte, be sure to make all 8-bit characters in valid
12152 multibyte form.
12153 (count_size_as_multibyte): Handle 8-bit characters correctly.
12154 (insert_1_both, insert_from_string_1, insert_from_buffer_1)
12155 (adjust_after_replace, replace_range, del_range_2)
12156 [BYTE_COMBINING_DEBUG]: Abort if byte combining occurs.
12157 (insert_1_both, insert_from_string_1, insert_from_buffer_1)
12158 (adjust_after_replace, replace_range, del_range_2) Delete codes for
12159 handling byte combining.
12160 (adjust_before_replace): Deleted.
12161
12162 * keymap.c (Fsingle_key_description): Use SPLIT_CHAR instead of
12163 SPLIT_NON_ASCII_CHAR.
12164 (describe_vector): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
12165 (Faccessible_keymaps): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
12166 (Fkey_description): Likewise.
12167
12168 * lread.c (read1): On reading multibyte string, be sure to make
12169 all 8-bit chararacters in valid multibyte form.
12170 (readchar): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
12171
12172 * print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE
12173 unconditionally.
12174
12175 * process.c (Fstart_process): GCPRO current_dir before calling
12176 Ffind_operation_coding_system. Encode arguments here.
12177 (create_process): Don't encode arguments here. Setup
12178 src_multibyte and dst_multibyte members of struct coding.
12179 (read_process_output): Setup src_multibyte and dst_multibyte
12180 members of struct coding. If the output is to multibyte buffer,
12181 always decode the output of the process. Adjust the
12182 representation of 8-bit characters to the multibyteness of the output.
12183 (send_process): Setup coding->src_multibyte according to the
12184 multibyteness of the source.
12185
12186 * search.c (wordify): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
12187 (Freplace_match): Use FETCH_STRING_CHAR_ADVANCE and
12188 FETCH_STRING_CHAR_ADVANCE_NO_CHECK appropriately.
12189
12190 * term.c (produce_special_glyphs): Use CHAR_BYTES instead of CHAR_LEN.
12191
12192 * w16select.c (Fw16_set_clipboard_data): Setup members
12193 src_multibyte and dst_multibyte of coding. Adjusted for the
12194 change for find_charset_in_str.
12195 (Fw16_get_clipboard_data): Likewise.
12196
12197 * w32fns.c (w32_to_x_font): Setup members src_multibyte and
12198 dst_multibyte of coding.
12199 (x_to_w32_font): Likewise.
12200
12201 * w32select.c (Fw32_set_clipboard_data): Setup members
12202 src_multibyte and dst_multibyte of coding. Adjusted for the
12203 change for find_charset_in_str.
12204 (Fw32_get_clipboard_data): Likewise.
12205
12206 * xdisp.c (get_next_display_element): Handle 8-bit characters
12207 correctly.
12208 (next_element_from_display_vector): Use CHAR_BYTES instead of CHAR_LEN.
12209 (disp_char_vector): Use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
12210
12211 * xselect.c (selection_data_to_lisp_data): Setup members
12212 src_multibyte and dst_multibyte of coding. Adjusted for the
12213 change for find_charset_in_str.
12214 (lisp_data_to_selection_data): Likewise.
12215
12216 2000-05-19 Gerd Moellmann <gerd@gnu.org>
12217
12218 * buffer.c (Fbury_buffer): Avoid trouble from burying a killed buffer.
12219
12220 * dispextern.h (Vimage_types): Add extern declaration.
12221
12222 * xdisp.c (Vimage_types): Moved here from xfns.c.
12223 (syms_of_xdisp): Move `image-types' variable here from xfns.c.
12224
12225 * xfns.c (Vimages_types): Moved to xdisp.c.
12226 (syms_of_xfns): Move `image-types' to xdisp.c.
12227
12228 * w32fns.c (Vimage_types): Removed.
12229 (syms_of_w32fns): Remove `image-types'.
12230
12231 2000-05-18 Kenichi Handa <handa@etl.go.jp>
12232
12233 * fns.c (map_char_table): Pay attention to character number of
12234 charset. Check the validity of charset at the first level. For
12235 leaf nodes that has nil value, call C_FUNCTION or FUNCTION with
12236 the default value.
12237
12238 * fontset.c: Include "buffer.h".
12239 (fs_load_font): If the face has fontset, record the face ID in
12240 that fontset.
12241 (Finternal_char_font): New function.
12242 (accumulate_font_info): New function.
12243 (Ffontset_info): Rewritten for the new fontset implementation.
12244 (syms_of_fontset): Register Vdefault_fontset in the first element
12245 of Vfontset_table. Include Vdefault_fontset in
12246 Vfontset_alias_alist. Declare `internal-char-font' as a Lisp
12247 function.
12248
12249 2000-05-16 Dave Love <fx@gnu.org>
12250
12251 * m/iris5d.h: Deleted -- unused.
12252
12253 2000-05-16 Gerd Moellmann <gerd@gnu.org>
12254
12255 * xdisp.c, w32.c, print.c, msdos.c, emacs.c: Use the term
12256 `invalid' instead of `illegal'.
12257
12258 * indent.c (Fmove_to_column): When ending within a tab, insert
12259 spaces first so that markers at the end of the tab get adjusted.
12260
12261 * frame.c (frames_bury_buffer): Don't add a buffer to the frame's
12262 buffer list that wasn't selected in that frame.
12263
12264 * filelock.c (get_boot_time): To obtain an 8 char file name, which
12265 is needed on mescaline, use a 2 char prefix, and call
12266 make_temp_name with second arg non-zero.
12267
12268 * fileio.c (make_temp_name): New function, extracted from
12269 Fmake_temp_name.
12270 (Fmake_temp_name): Use it.
12271
12272 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
12273
12274 * window.c (coordinates_in_window): Subtract 1 when computing right_x.
12275
12276 2000-05-15 Gerd Moellmann <gerd@gnu.org>
12277
12278 * Makefile.in (lisp): Add env.elc.
12279
12280 * callproc.c (Fgetenv_internal): Renamed from Fgetenv.
12281
12282 2000-05-12 Gerd Moellmann <gerd@gnu.org>
12283
12284 * search.c (Freplace_match): Handle case of `\N' in the
12285 replacement when there's no group N.
12286
12287 2000-05-11 Gerd Moellmann <gerd@gnu.org>
12288
12289 * xdisp.c (add_to_log): Don't pass the terminating NUL byte
12290 of the message to message_dolog.
12291
12292 * keyboard.c (read_char): Don't clear current message for help
12293 events; let the code handling help events handle this. Change
12294 code detecting help events that should be ignored.
12295
12296 * xdisp.c (handle_single_display_prop): Don't try to set PT if
12297 we're interating over a string.
12298
12299 2000-05-09 Dave Love <fx@gnu.org>
12300
12301 * fileio.c (Fwrite_region): If APPEND arg is an integer, seek to
12302 that offset before writing. Move gcpro region past call of
12303 Ffile_regular_p.
12304
12305 2000-05-04 Dave Love <fx@gnu.org>
12306
12307 * buffer.c (syms_of_buffer) [auto-fill-function]: Doc fix.
12308
12309 2000-05-04 Gerd Moellmann <gerd@gnu.org>
12310
12311 * insdel.c (insert_from_buffer_1): Adjust FROM position by number
12312 of inserted characters when BUF equals the current buffer, and PT
12313 is in front of or equal to FROM.
12314
12315 2000-05-03 Gerd Moellmann <gerd@gnu.org>
12316
12317 * xdisp.c (handle_single_display_prop): If display property value
12318 is invalid, or something not supported on the frame, restore
12319 iterator's position to what it was initially. Make sure to return
12320 0 for invalid and unsupported property values.
12321
12322 * xterm.c (x_produce_glyphs) <composite chars>: Handle case
12323 that x_per_char_metric returns null.
12324
12325 2000-05-02 Gerd Moellmann <gerd@gnu.org>
12326
12327 * xterm.h (struct face): Add forward declaration.
12328 (struct image): Ditto.
12329 (image_ascent): Add prototype.
12330
12331 * xterm.c (x_produce_image_glyph, x_draw_image_foreground)
12332 (x_draw_image_relief, x_draw_image_foreground_1): Call function
12333 image_ascent instead of using IMAGE_ASCENT.
12334
12335 * dispextern.h (DEFAULT_IMAGE_HEIGHT): New macro.
12336 (IMAGE_ASCENT): Removed.
12337
12338 * xfns.c (Qcenter): New variable.
12339 (enum image_value_type): Add IMAGE_ASCENT_VALUE.
12340 (parse_image_spec): Handle IMAGE_ASCENT_VALUE.
12341 (image_ascent): New function.
12342 (lookup_image): Recognize `:ascent center'.
12343 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
12344 (tiff_format, gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
12345 (xbm_load): Don't set image's ascent here.
12346 (xbm_image_p, xpm_image_p, pbm_image_p, png_image_p)
12347 (jpeg_image_p, tiff_image_p, gif_image_p, gs_image_p): Don't
12348 check ascent values here.
12349 (Fimagep, Flookup_image [GLYPH_DEBUG]: Removed.
12350 (syms_of_xfns) [GLYPH_DEBUG]: Don't defsubr removed functions.
12351 (syms_of_xfns): Initialize Qcenter.
12352
12353 * eval.c (Fsignal): If lisp_eval_depth or spepdl_size are near
12354 to the limits, increase the limits.
12355
12356 2000-05-01 Kenichi Handa <handa@etl.go.jp>
12357
12358 * fontset.c (fs_load_font): By default, use 0x00..0x7f for ASCII.
12359 Check Vfont_encoding_alist against the full name of the opened font.
12360
12361 2000-04-28 Gerd Moellmann <gerd@gnu.org>
12362
12363 * xdisp.c (make_cursor_line_fully_visible): Handle case of rows
12364 taller than the window.
12365
12366 2000-04-28 Kenichi Handa <handa@etl.go.jp>
12367
12368 * xfaces.c (realize_x_face): Fix the argument of the second
12369 xassert. BASE_FACE may not be a face for ASCII.
12370
12371 2000-04-27 Gerd Moellmann <gerd@gnu.org>
12372
12373 * print.c (print_object): Treat print-length < 0 as nil.
12374
12375 * Makefile.in (termcapobj): Don't use TERMCAP_OBJ.
12376
12377 * s/freebsd.h (TERMCAP_OBJ): Removed.
12378 (LIBS_TERMCAP): Don't define for __FreeBSD_version >= 400000.
12379
12380 * lread.c (read1): Don't treat period followed by certain
12381 characters as symbol start.
12382
12383 * xfns.c (slurp_file): New function.
12384 (xbm_image_p): Handle case of in-memory XBM files.
12385 (xbm_scan): Rewritten to work on memory buffers instead of files.
12386 (xbm_read_bitmap_data): Renamed from xbm_read_bitmap_file_data.
12387 Work on memory buffers instead of files. If DATA is null test
12388 if buffer looks like an in-memory XBM file.
12389 (xbm_load_image): Renamed from xbm_load_image_file. Work on
12390 memory buffers instead of files.
12391 (xbm_file_p): New function.
12392 (xbm_load): Accept :data DATA where DATA is an in-memory XBM file.
12393
12394 * lread.c (end_of_file_error): New function.
12395 (read1): Call it instead of signaling `end-of-file' directly.
12396
12397 * print.c (print_error_message): Print data of `end-of-file'
12398 with Fprinc instead of Fprin1.
12399
12400 2000-04-26 Ken Raeburn <raeburn@gnu.org>
12401
12402 * window.c (freeze_window_start): Check that minibuffer scroll
12403 window isn't nil before extracting the window structure pointer
12404 from it.
12405
12406 * undo.c (record_delete): If we hit the end of the undo list, stop
12407 picking elements apart.
12408
12409 2000-04-26 Gerd Moellmann <gerd@gnu.org>
12410
12411 * xdisp.c (display_line): If lines are continued, restore
12412 iterator's ascent/descent information to the values before the
12413 first glyph not fitting on the line.
12414
12415 2000-04-25 Gerd Moellmann <gerd@gnu.org>
12416
12417 * xdisp.c (try_window_id) <all changes above window start>: Adjust
12418 positions in glyph matrix. Don't compute new window end positions.
12419
12420 * dispnew.c (increment_matrix_positions): Renamed from
12421 increment_glyph_matrix_buffer_positions.
12422 (increment_row_positions): Renamed from
12423 increment_glyph_row_buffer_positions.
12424
12425 * dispextern.h: Change names of renamed functions from dispnew.c
12426 in prototypes.
12427
12428 2000-04-24 Gerd Moellmann <gerd@gnu.org>
12429
12430 * fileio.c (Fdo_auto_save): Create directories for auto-save
12431 list file if necessary.
12432
12433 * xdisp.c (init_iterator): Set iterator's extra_line_spacing
12434 from buffer or frame.
12435 (automatic_hscrolling_p): New variable.
12436 (hscroll_windows): Scroll windows horizontally only if automatic
12437 hscrolling is allowed.
12438 (syms_of_xdisp): New variable `automatic-hscrolling'.
12439
12440 * frame.h (struct frame): Add member extra_line_spacing.
12441
12442 * xfns.c (x_set_line_spacing): New function.
12443 (Fx_create_frame): Set line spacing from resources.
12444 (Qline_spacing): New variable.
12445 (syms_of_xfns): Initialize Qline_spacing.
12446
12447 * emacs.c (USAGE2): Add `--line-spacing' and `-lsp'.
12448
12449 * buffer.c (init_buffer_once): Handle extra_line_spacing.
12450 (syms_of_buffer): Add `default-line-spacing' and `line-spacing'.
12451 (reset_buffer): Don't initialize extra2 and extra3. Initialize
12452 extra_line_spacing from default value.
12453 (init_buffer_once): Initialize default value of extra_line_spacing.
12454
12455 * buffer.h (struct buffer): Add extra_line_spacing, remove extra2
12456 and extra3.
12457
12458 * xterm.c (x_produce_glyphs): Remove reference to struct it's
12459 prompt_width. Add extra line spacing.
12460
12461 * term.c (produce_glyphs): Remove reference to struct it's
12462 prompt_width.
12463
12464 * dispextern.h (struct it): Remove member prompt_width, add
12465 extra_line_spacing.
12466
12467 2000-04-22 Gerd Moellmann <gerd@gnu.org>
12468
12469 * dispnew.c (update_frame_line): When writing a whole line, make
12470 sure cursor is in the right row afterwards, otherwise a use of
12471 capability `ch' in cmgoto might leave the cursor in the row below.
12472
12473 2000-04-21 Gerd Moellmann <gerd@gnu.org>
12474
12475 * lisp.h (struct Lisp_Buffer_Cons): Remove.
12476
12477 * keyboard.c (timer_check): Fix typo in comment.
12478
12479 2000-04-21 Kenichi Handa <handa@etl.go.jp>
12480
12481 * fontset.c (Fset_fontset_font): Fix docstring. Local variable
12482 name change: ch -> character.
12483
12484 2000-04-20 Gerd Moellmann <gerd@gnu.org>
12485
12486 * keyboard.c (echo_message_buffer): New variable.
12487 (echo_now): Set echo_message_buffer to the echo area buffer used
12488 to display the echo.
12489 (cancel_echoing): Reset echo_message_buffer to nil.
12490 (read_char): Code rewritten that handles canceling an echo or
12491 echoing a dash, respectively.
12492
12493 * fileio.c (Ffile_writable_p) [WINDOWSNT]: Return nil if parent
12494 directory doesn't exist.
12495
12496 2000-04-19 Dave Love <fx@gnu.org>
12497
12498 * fns.c (syms_of_fns): Defsubr mapc.
12499 (concat): Don't allow numeric args.
12500 (Fconcat): Doc change.
12501
12502 2000-04-19 Stefan Monnier <monnier@cs.yale.edu>
12503
12504 * regex.c (re_match_2_internal): Don't shorten the strings anymore,
12505 instead define end_match(1|2) more carefully.
12506 Use GET_CHAR_BEFORE_2 for `begline'.
12507
12508 2000-04-19 Gerd Moellmann <gerd@gnu.org>
12509
12510 * frame.h (SELECTED_FRAME): Change definition to compile cleanly
12511 on 64-bit systems where NULL is defined as `0'.
12512
12513 * xdisp.c (with_echo_area_buffer): Add more `int' parameters for
12514 the `variable argument list' to make it work on Alpha.
12515
12516 * m/alpha.h (_LP64) [!_LP64]: Define.
12517 (ORDINARY_LINK): Define for NetBSD.
12518
12519 * m/macppc.h (ORDINARY_LINK): Define for NetBSD.
12520
12521 2000-04-19 Dave Love <fx@gnu.org>
12522
12523 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Revert 2000-04-14
12524 change.
12525
12526 * Makefile.in (LIBS): Don't use.
12527 (GETLOADAVG_OBJ): Define again.
12528 (otherobj): Add GETLOADAVG_OBJ.
12529
12530 * buffer.c (Fmake_indirect_buffer): Escape newline in doc.
12531
12532 2000-04-18 Gerd Moellmann <gerd@gnu.org>
12533
12534 * lread.c (read_filtered_event): Cancel and start busy cursor.
12535
12536 * xterm.c (x_produce_glyphs) <ASCII chars>: Take into account
12537 that the per-character metrics may be null.
12538
12539 2000-04-17 Gerd Moellmann <gerd@gnu.org>
12540
12541 * buffer.c (clone_per_buffer_values): New function.
12542 (Fmake_indirect_buffer): Add optional argument CLONE. Call
12543 clone_per_buffer_values if CLONE is not nil.
12544
12545 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
12546
12547 2000-04-16 Dave Love <fx@gnu.org>
12548
12549 * Makefile.in: Remove obsolete localcpp stuff.
12550 (GETLOADAVG_OBJ): Don't define.
12551 (obj): Move LIBOBJS...
12552 (otherobj): ... to here.
12553 (MSDOS_OBJ): Convert to make variable -- preprocessing zapped
12554 whitespace-only lines after the continuation (Irix).
12555
12556 2000-04-14 Gerd Moellmann <gerd@gnu.org>
12557
12558 * xfns.c (xpm_load) [DEBUG_X_COLORS]: Register colors.
12559
12560 * s/freebsd.h (LD_SWITCH_SYSTEM): Add `-L /usr/local/lib'.
12561
12562 2000-04-14 Dave Love <fx@gnu.org>
12563
12564 * s/aix3-1.h, s/bsd4-2.h, s/bsd4-3.h, s/cxux.h, s/dgux.h, s/gnu.h:
12565 * s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/rtu.h:
12566 * s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h, s/usg5-2.h:
12567 * s/usg5-3.h, s/xenix.h, s/umax.h: Don't define autoconfiscated
12568 NLIST_STRUCT.
12569
12570 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Don't define
12571 autoconfiscated HAVE_GETLOADAVG.
12572
12573 * s/nextstep.h, s/sco4.h, s/sco5.h: Don't define autoconfiscated
12574 BROKEN_MKTIME.
12575
12576 2000-04-14 Gerd Moellmann <gerd@gnu.org>
12577
12578 * filelock.c (MAKE_LOCK_NAME): Allocate 2 more bytes.
12579 (fill_in_lock_file_name): Avoid existing files that aren't links.
12580
12581 2000-04-14 Dave Love <fx@gnu.org>
12582
12583 * Makefile.in (LIBS, LIBOBJS): New variable.
12584 (INTERVAL_SRC): Convert to make variable.
12585 (INTERVAL_OBJ, MKTIME_OBJ, FLOAT_SUPPORT, FACE_SUPPORT)
12586 (HAVE_X_WINDOWS, OBJECTS_SYSTEM): Remove.
12587 (obj): Substitute INTERVAL_OBJ, add MKTIME_OBJ, GETLOADAVG_OBJ and
12588 add LIBOBJS.
12589 (SOME_MACHINE_OBJECTS): Remove interval stuff.
12590 (lisp): Substitute FACE_SUPPORT, FLOAT_SUP.
12591 (shortlisp): Add facemenu, float-sup, frame.
12592 (SOME_MACHINE_LISP): Remove them from here.
12593 (LIBES): Change unused LDLIBS to autoconf LIBS.
12594
12595 * config.in: Add BROKEN_MKTIME, NLIST_STRUCT, NLIST_NAME_UNION.
12596
12597 2000-04-14 Kenichi Handa <handa@etl.go.jp>
12598
12599 * composite.c (update_compositions): If FROM and TO are not in a
12600 valid range, do nothing.
12601
12602 2000-04-13 Gerd Moellmann <gerd@gnu.org>
12603
12604 * tparam.c (tparam1): Abort when encountering an unknown `%'-specifier.
12605
12606 * s/freebsd.h (TERMCAP_OBJ) [__FreeBSD__ >= 4]: Define as terminfo.o.
12607
12608 * Makefile.in (termcapobj) [LIBS_TERMCAP && TERMCAP_OBJ]: Define
12609 as TERMCAP_OBJ.
12610
12611 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
12612
12613 * fileio.c (a_write): Remove redundant semi-colons.
12614 (e_write): Return -1 if failed to write all the data.
12615 This fixes the changes made at 1999-12-15.
12616
12617 2000-04-12 Dave Love <fx@gnu.org>
12618
12619 * fns.c (mapcar1): Test for null vals to support mapc.
12620 (Fmapc): New function.
12621
12622 2000-04-12 Eli Zaretskii <eliz@is.elta.co.il>
12623
12624 * msdos.c (NUM_MOUSE_BUTTONS): Define.
12625 (IT_frame_up_to_date): Support the buffer local value of
12626 cursor-type, if defined.
12627
12628 2000-04-10 Dave Love <fx@gnu.org>
12629
12630 * editfns.c (preceding-char, following-char): Doc fix.
12631
12632 2000-04-10 Ken Raeburn <raeburn@gnu.org>
12633
12634 * Makefile.in (temacs): Revert 2000-03-12 change.
12635
12636 2000-04-10 Jason Rumney <jasonr@gnu.org>
12637
12638 * xfaces.c (realize_face): Change FRAME_X_P to FRAME_WINDOW_P.
12639
12640 2000-04-10 Gerd Moellmann <gerd@gnu.org>
12641
12642 * xdisp.c (setup_echo_area_for_printing): Choose an echo
12643 area buffer, if it's not set up yet.
12644
12645 * indent.c (compute_motion): Set immediate_quit.
12646
12647 2000-04-09 Gerd Moellmann <gerd@gnu.org>
12648
12649 * xfaces.c (tty_suppress_bold_inverse_default_colors_p): New variable.
12650 (realize_tty_face): Suppress boldness if colors are the inverse of
12651 the default colors, and tty_suppress_bold_inverse_default_colors_p
12652 is set.
12653 (Ftty_suppress_bold_inverse_default_colors): New function.
12654 (syms_of_xfaces): Defsubr it.
12655
12656 * buffer.c (Frestore_buffer_modified_p): New function.
12657 (syms_of_buffer): Defsubr it.
12658
12659 2000-04-08 Ken Raeburn <raeburn@gnu.org>
12660
12661 * charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a
12662 charset id (int) argument, not a charset (Lisp_Object).
12663
12664 * coding.h (code_convert_string): Declare.
12665 * coding.c (code_convert_string_norecord): Pass an int, not a lisp
12666 object, as the fourth argument to code_convert_string.
12667
12668 * fontset.c (make_fontset_for_ascii_face): Use XINT on return value.
12669 (Fset_fontset_font): Use EQ to compare lisp objects.
12670
12671 2000-04-05 Ken Raeburn <raeburn@gnu.org>
12672
12673 * intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for
12674 a pointer that looks like a lisp object.
12675 (SET_INTERVAL_OBJECT): Don't explicitly compare the object with
12676 zero, instead see whether it's an integer object, since they can't
12677 have intervals.
12678 (GET_INTERVAL_OBJECT): Simply assign to the destination.
12679
12680 * dispnew.c (allocate_matrices_for_frame_redisplay)
12681 (direct_output_forward_char): Use X(U)INT and make_number as needed
12682 to convert between (unsigned) int values and lisp integers.
12683 * keyboard.c (read_key_sequence): Likewise.
12684 * lread.c (substitute_object_recurse): Likewise.
12685 * fns.c (concat, hash_lookup, hash_remove): Likewise.
12686 * minibuf.c (do_completion, Fminibuffer_complete_word)
12687 (Fminibuffer_completion_help): Likewise.
12688 * term.c (produce_special_glyphs): Likewise.
12689
12690 * fileio.c (Fwrite_region): Use EQ when comparing lisp objects.
12691 * print.c (print_preprocess, print_object): Likewise.
12692
12693 * search.c (compile_pattern): Use NILP when checking for nil.
12694
12695 * lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 &&
12696 __OPTIMIZE__]: Provide a GNU C macro version that handles
12697 lisp-object unions.
12698 (XSET) [!NO_UNION_TYPE]: Set the value field first, then the type
12699 field, to better cope with ENABLE_CHECKING and calls that modify a
12700 Lisp_Object using its old value.
12701
12702 2000-04-04 Gerd Moellmann <gerd@gnu.org>
12703
12704 * window.c (compare_window_configurations): Signal an error
12705 if parameters C1 or C2 aren't window configurations.
12706
12707 * bytecode.c (Fbyte_code): Add a bunch of BEFORE_POTENTIAL_GC/
12708 AFTER_POTENTIAL_GC calls around calls to functions that can
12709 signal an error and thus invoke the debugger.
12710
12711 2000-04-03 Gerd Moellmann <gerd@gnu.org>
12712
12713 * fns.c (Fbase64_decode_region, Fbase64_decode_string): Signal
12714 an error if decoding fails.
12715
12716 * keyboard.c (lispy_mouse_names): Variable removed.
12717 (Vlispy_mouse_stem): New variable.
12718 (syms_of_keyboard): Initialize Vlispy_mouse_stem.
12719 (make_lispy_event) <mouse_click, scroll_bar_click>: Don't abort
12720 for any mouse button number. Increase size of mouse_syms and
12721 button_down_location as needed. Call modify_event_symbol with
12722 different arguments.
12723 (make_lispy_event) <scroll_bar_click> [USE_TOOLKIT_SCROLL_BARS]:
12724 Call modify_event_symbol with different arguments.
12725 (make_lispy_event) <w32_scroll_bar_click> [WINDOWSNT]: Don't abort
12726 for any button number. Call modify_event_symbol with different
12727 arguments.
12728 (modify_event_symbol): Rename NAME_ALIST to NAME_ALIST_OR_STEM.
12729 Accept a string for NAME_ALIST_OR_STEM.
12730
12731 * lisp.h (larger_vector): Add prototype.
12732
12733 * fns.c (larger_vector): Make externally visible.
12734
12735 * termhooks.h (NUM_MOUSE_BUTTONS): Removed.
12736
12737 2000-04-02 Stefan Monnier <monnier@cs.yale.edu>
12738
12739 * regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
12740 (RE_MULTIBYTE_P, RE_STRING_CHAR_AND_LENGTH): New macros.
12741 (GET_CHAR_BEFORE_2): Moved from charset.h plus fixed minor bug when
12742 we are between str1 and str2.
12743 (MAX_MULTIBYTE_LENGTH, CHAR_STRING) [!emacs]: Provide trivial default.
12744 (PATFETCH): Use `TRANSLATE'.
12745 (PATFETCH_RAW): Fetch multibyte char if applicable.
12746 (PATUNFETCH): Remove.
12747 (regex_compile): Rely on PATFETCH to do most of the multibyte magic.
12748 When writing a char, write it directly into the pattern buffer rather
12749 than going needlessly through a temp char-array.
12750 (re_match_2_internal): Similarly, rely on RE_STRING_CHAR to do the
12751 multibyte magic and remove the useless `#ifdef emacs'.
12752 (bcmp_translate): Don't compare as multibyte chars when in a unibyte
12753 buffer.
12754
12755 * regex.h (struct re_pattern_buffer): Make field `multibyte'
12756 conditional on `emacs'.
12757
12758 * charset.h (GET_CHAR_BEFORE_2): Moved to regex.c.
12759
12760 2000-04-01 Ken Raeburn <raeburn@gnu.org>
12761
12762 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand
12763 non-union-type versions of XMARK and friends here, because XMARK
12764 and friends won't work on an integer field if NO_UNION_TYPE is not
12765 defined.
12766 (make_number): Define as a function if it's not defined as a macro.
12767
12768 * composite.c (run_composite_function): Use NILP when checking for nil.
12769 (syms_of_composite): Delete local var NARGS, pass an int as first
12770 argument to Fmake_hash_table.
12771
12772 * editfns.c (text_property_stickiness): Use NILP to test
12773 Lisp_Object boolean value.
12774 (Fmessage_or_box): Don't use NILP to test int variable.
12775 (Fformat): Use a temporary variable to avoid ENABLE_CHECKING
12776 problems reading from and changing the same lisp value in an
12777 XSETSTRING call.
12778
12779 2000-04-01 Gerd Moellmann <gerd@gnu.org>
12780
12781 * term.c (TN_no_color_video): New variable.
12782 (term_init): Intitialize TN_no_color_video.
12783 (enum no_color_bit): New enumeration.
12784 (MAY_USE_WITH_COLORS_P): New macro.
12785 (turn_on_face): Use it to determine if attributes may be used
12786 combined with colors.
12787
12788 2000-04-01 Ken Raeburn <raeburn@gnu.org>
12789
12790 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
12791 with int lvalues via casts; instead, just yield lisp object lvalues.
12792 (enlarge_window): Variable sizep now points to Lisp_Object. Use
12793 proper accessor macros.
12794 (shrink_window_lowest_first): w->top is Lisp_Object; use XINT.
12795 (grow_mini_window): Fix typo getting int value of root->height.
12796
12797 * xdisp.c (compute_string_pos): Fix order of arguments to
12798 string_pos_nchars_ahead.
12799 (handle_fontified_prop, add_to_log): Pass int, not Lisp_Object, as
12800 count arg to variable-arg routines like Frun_hook_with_args and
12801 Fformat.
12802 (back_to_previous_visible_line_start)
12803 (build_desired_tool_bar_string): Pass Lisp_Object, not int, to
12804 fixed-arg routines like Fget_char_property and Fmake_string.
12805 (reconsider_clip_changes): Use XINT when comparing integer lisp
12806 objects, or passing them as int arguments.
12807 (mark_window_display_accurate, insert_left_trunc_glyphs)
12808 (append_space, extend_face_to_end_of_line): Use make_number when
12809 storing or passing integer values as lisp objects.
12810 (set_cursor_from_row, highlight_trailing_whitespace): Use
12811 INTEGERP, not implicit test against zero, for glyph object.
12812 (try_window_id): Don't use make_number when we want an int value.
12813
12814 * xfaces.c (xlfd_symbolic_value): Make last argument a
12815 Lisp_Object, to be consistent with callers.
12816 (Fbitmap_spec_p): Use XINT to get numeric value of height.
12817 (lface_hash): Apply XFASTINT to lisp values before folding in.
12818
12819 * xfns.c (Fx_show_tip): Use make_number to get lisp objects to
12820 fill in window width and height. Pass an int, not a lisp object,
12821 as first arg to Finsert.
12822
12823 2000-04-01 Gerd Moellmann <gerd@gnu.org>
12824
12825 * xfaces.c (realize_basic_faces): Block input while realizing
12826 the faces.
12827
12828 * keyboard.c (lispy_mouse_names): Add additional mouse names.
12829
12830 * termhooks.h (NUM_MOUSE_BUTTONS): Increase to 15.
12831
12832 2000-03-31 Gerd Moellmann <gerd@gnu.org>
12833
12834 * xterm.c (x_produce_glyphs): When displaying unibyte text
12835 or ASCII, handle case that per-char metric is null.
12836
12837 2000-03-30 Ken Raeburn <raeburn@gnu.org>
12838
12839 * lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
12840
12841 * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW)
12842 (XSUBR, XBUFFER): Verify correct object type before returning
12843 pointer, using eassert.
12844 * frame.h (XFRAME): Likewise.
12845
12846 * buffer.c (Frename_buffer, Fset_buffer_multibyte)
12847 (swap_out_buffer_local_variables, Fmove_overlay): Don't apply
12848 XSYMBOL, XBUFFER, etc, to values that may be nil or of the wrong type.
12849 * data.c (set_internal): Likewise.
12850 * dispextern.h (WINDOW_WANTS_MODELINE_P)
12851 (WINDOW_WANTS_HEADER_LINE_P): Likewise.
12852 * fileio.c (auto_save_1): Likewise.
12853 * insdel.c (check_markers): Likewise.
12854 * marker.c (buf_charpos_to_bytepos, unchain_marker): Likewise.
12855 * undo.c (record_insert): Likewise.
12856 * vmsproc.c (child_sig): Likewise.
12857 * window.c (unshow_buffer, window_loop): Likewise.
12858 * xterm.c (x_erase_phys_cursor): Likewise.
12859
12860 2000-03-30 Gerd Moellmann <gerd@gnu.org>
12861
12862 * xfns.c (free_image_cache): Free the cache structure itself
12863 last, after all its members have been freed.
12864
12865 * lisp.h (xstrdup): Add prototype.
12866
12867 * alloc.c (xstrdup): Moved here from xfaces.c.
12868 (allocating_for_lisp): Variable removed.
12869 (lisp_malloc): Block input around the calls to malloc and mem_insert.
12870
12871 * xfaces.c (realize_tty_face): Use find_symbol_value instead
12872 of Fsymbol_value.
12873 (xstrdup): Moved to alloc.c.
12874
12875 2000-03-29 Ken Raeburn <raeburn@gnu.org>
12876
12877 * scroll.c (CHECK_BOUNDS): Renamed from CHECK.
12878
12879 * emacs.c (main): Fix sense of no-loadup test.
12880
12881 * config.in (ENABLE_CHECKING): Undef.
12882
12883 * lisp.h (struct interval): Replace "parent" field with a union of
12884 interval pointer and Lisp_Object; add new bitfield to use as
12885 discriminant. Change other flag fields to bitfields.
12886 (CHECK): New macro for consistency checking. If ENABLE_CHECKING
12887 is defined and the supplied test fails, print a message and abort.
12888 (eassert): New macro. Use CHECK to provide an assert-like facility.
12889
12890 * intervals.h (NULL_INTERVAL_P): Now applies only to real interval
12891 pointers; abort if the value looks like a lisp object.
12892 (NULL_INTERVAL_P, NULL_PARENT, HAS_PARENT, HAS_OBJECT, SET_PARENT)
12893 (SET_OBJECT, INTERVAL_PARENT, GET_INTERVAL_OBJECT, COPY_PARENT):
12894 Modify for new interval parent definition.
12895
12896 * alloc.c (mark_interval_tree, MARK_INTERVAL_TREE)
12897 (UNMARK_BALANCE_INTERVALS): Update references that need an
12898 addressable lisp object in the interval structure.
12899 (die): New function.
12900 (suppress_checking): New variable.
12901
12902 * intervals.c (interval_start_pos): Just return 0 if there's no
12903 parent object.
12904
12905 2000-03-29 Gerd Moellmann <gerd@gnu.org>
12906
12907 * lread.c (read1): Accept `.' (period) as symbol start like in CL
12908 and earlier Emacs versions.
12909
12910 * keyboard.c (Ftop_level): Cancel busy-cursor.
12911
12912 * eval.c (call_debugger): Cancel busy-cursor.
12913
12914 2000-03-29 Kenichi Handa <handa@etl.go.jp>
12915
12916 * search.c (Freplace_match): Adjust multibyteness of the current
12917 buffer and NEWTEXT. Free allocated memory before signaling an error.
12918
12919 2000-03-28 Stefan Monnier <monnier@cs.yale.edu>
12920
12921 * regex.c (analyse_first): New function obtained by ripping out most
12922 of re_compile_fastmap and generalizing it a little bit so that it
12923 can also just return whether a given (sub)pattern can match the empty
12924 string or not.
12925 (regex_compile): Use `analyse_first' to decide whether the loop-check
12926 needs to be done or not for *, +, *? and +? (the loop check is costly
12927 for non-greedy repetition).
12928 (re_compile_fastmap): Delegate the actual work to `analyse_first'.
12929
12930 2000-03-28 Dave Love <fx@gnu.org>
12931
12932 * s/gnu-linux.h (GC_SETJMP_WORKS): Define for i386, sparc, m68k, alpha.
12933
12934 * alloc.c: Include stdio.h. Test STDC_HEADERS, not __STDC__.
12935
12936 2000-03-27 Stefan Monnier <monnier@cs.yale.edu>
12937
12938 * regex.c (REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as
12939 an expression.
12940 (enum re_opcode_t): Update description of succeed_n.
12941 (PATFETCH): Always define.
12942 (regex_compile): Use lookahead rather than PATUNFETCH (for repetition
12943 operators, char classes, shy-groups and intervals).
12944 Optimize special cases of intervals so as to only use succeed_n and
12945 jump_n when really needed.
12946 (re_compile_fastmap): Simplify handling of jump_n and succeed_n now
12947 that we don't have to handle the special cases any more.
12948 Simplify on_failure_jump handling as well.
12949
12950 2000-03-28 Jason Rumney <jasonr@gnu.org>
12951
12952 * lread.c (Fload): Move safe_p definition to above #ifdef DOS_NT.
12953
12954 2000-03-27 Gerd Moellmann <gerd@gnu.org>
12955
12956 * s/freebsd.h (GC_SETJMP_WORKS): Define.
12957
12958 * s/msdos.h (GC_SETJMP_WORKS): Define.
12959
12960 * alloc.c (mark_maybe_object): New function.
12961 (mark_memory): Use it.
12962 (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK): New macros.
12963 (setjmp_tested_p, longjmp_done): New variables.
12964 (test_setjmp): New function.
12965 (mark_stack) [!GC_SETJMP_WORKS]: Call test_setjmp.
12966 (init_alloc): Initialize setjmp_tested_p and longjmp_done.
12967
12968 * xdisp.c (face_before_or_after_it_pos): Pass multibyteness
12969 to DEC_TEXT_POS and INC_TEXT_POS.
12970
12971 * dispnew.c (direct_output_for_insert): Use DEC_TEXT_POS
12972 with parameter MULTIBYTE_P.
12973
12974 * dispextern.h (INC_TEXT_POS, DEC_TEXT_POS): Add parameter MULTIBYTE_P.
12975
12976 * editfns.c (Fsubst_char_in_region): Don't use INC_POS in unibyte
12977 buffers because it looks for multibyte character byte sequences
12978 which don't exist in unibyte text.
12979
12980 * xterm.h (x_specified_cursor_type, x_copy_color): Add prototypes.
12981
12982 * xfaces.c (register_color, unregister_color, unregister_colors)
12983 [DEBUG_X_COLORS]: New functions.
12984 (x_free_colors) [DEBUG_X_COLORS]: Unregister colors.
12985
12986 * xfns.c (x_set_cursor_color): Get color reference counts right.
12987
12988 * xterm.c (x_copy_color): New function.
12989 (x_alloc_nearest_color) [DEBUG_X_COLORS]: Call register_color.
12990
12991 * buffer.h (MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
12992 (PER_BUFFER_VAR_OFFSET): Renamed from BUFFER_LOCAL_VAR_OFFSET.
12993 (PER_BUFFER_VAR_IDX): Renamed from BUFFER_LOCAL_VAR_IDX.
12994 (PER_BUFFER_VALUE_P): Renamed from BUFFER_HAS_LOCAL_VALUE_P.
12995 (SET_PER_BUFFER_VALUE_P): Renamed from SET_BUFFER_HAS_LOCAL_VALUE_P.
12996 (PER_BUFFER_IDX): Renamed from BUFFER_LOCAL_IDX.
12997 (PER_BUFFER_DEFAULT): Renamed from BUFFER_LOCAL_DEFAULT_VALUE.
12998 (PER_BUFFER_VALUE): Renamed from BUFFER_LOCAL_VALUE.
12999 (PER_BUFFER_SYMBOL): Renamed from BUFFER_LOCAL_SYMBOL.
13000 (PER_BUFFER_TYPE): Renamed from BUFFER_LOCAL_TYPE.
13001
13002 * category.c, data.c, syntax.c, print.c, lread.c: Use new macro
13003 names for handling per-buffer variables.
13004
13005 * buffer.c (buffer_permanent_local_flags): Use MAX_PER_BUFFER_VARS
13006 instead of MAX_BUFFER_LOCAL_VARS.
13007 (last_per_buffer_idx): Renamed from max_buffer_local_idx.
13008
13009 * xfaces.c (lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
13010
13011 * xfns.c (x_specified_cursor_type): New function.
13012 (x_set_cursor_type): Use it.
13013
13014 * buffer.h (struct buffer): Add cursor_type.
13015
13016 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
13017
13018 * regex.c (enum re_opcode_t): New opcode on_failure_jump_nastyloop.
13019 (print_partial_compiled_pattern, re_compile_fastmap):
13020 Handle new opcode.
13021 (regex_compile): Use on_failure_jump_nastyloop for non-greedy loops.
13022 (re_match_2_internal): Add code for on_failure_jump_nastyloop when
13023 executing it as well as when popping it off the stack to find infinite
13024 loops in non-greedy repetition operators.
13025
13026 2000-03-26 Gerd Moellmann <gerd@gnu.org>
13027
13028 * doc.c (Qfunction_documentation): New variable.
13029 (syms_of_doc): Initialize Qfunction_documentation.
13030 (Fdocumentation): If FUNCTION is a symbol with non-nil
13031 `function-documentation' property, return a documentation derived
13032 from that.
13033
13034 * buffer.c (syms_of_buffer): Add default-cursor-type.
13035 (init_buffer_once): Don't let cursor_type have a local value
13036 in every buffer.
13037
13038 * xterm.c (x_display_and_set_cursor): Choose cursor depending
13039 on buffer-local value of cursor_type.
13040 (x_draw_bar_cursor): Add parameter WIDTH.
13041
13042 * buffer.c (reset_buffer): Initialize buffer's cursor_type.
13043 (init_buffer_once): Set default cursor_type value to t.
13044 Mark cursor_type as local everywhere.
13045 (syms_of_buffer): New per-buffer variable cursor-type.
13046
13047 * buffer.h (struct buffer): Remove member local_var_flags,
13048 add local_flags.
13049 (MAX_BUFFER_LOCAL_VARS): New macro.
13050 (BUFFER_LOCAL_VAR_OFFSET, BUFFER_LOCAL_VAR_IDX)
13051 (BUFFER_HAS_LOCAL_VALUE_P, SET_BUFFER_HAS_LOCAL_VALUE_P)
13052 (BUFFER_LOCAL_IDX, BUFFER_LOCAL_DEFAULT_VALUE, BUFFER_LOCAL_VALUE)
13053 (BUFFER_LOCAL_SYMBOL, BUFFER_LOCAL_TYPE): New macros.
13054
13055 * print.c (print_object): Use new macros for per-buffer variables.
13056
13057 * category.c (Fset_category_table): Use new macros for per-buffer
13058 variables.
13059
13060 * buffer.c (buffer_permanent_local_flags): Make a char array.
13061 (max_buffer_local_idx): New variable.
13062 (reset_buffer_local_variables, Fbuffer_local_variables): Rewritten
13063 for new handling of per-buffer variables.
13064 (buffer_slot_type_mismatch): Use new macros for per-buffer vars.
13065 (init_buffer_once): Initialize per-buffer vars differently.
13066 Set max_buffer_local_idx.
13067
13068 * syntax.c (Fset_syntax_table): Use new macros for per-buffer
13069 variables.
13070
13071 * lread.c (defvar_per_buffer): Use new macros for per-buffer variables.
13072
13073 * data.c (do_symval_forwarding, store_symval_forwarding)
13074 (find_symbol_value, set_internal, default_value, Fset_default)
13075 (Fkill_local_variable, Flocal_variable_p): Use new macros for
13076 per-buffer variables.
13077
13078 * Makefile.in (bootstrap-emacs): Use `mv -f' instead of `mv'.
13079
13080 2000-03-24 Gerd Moellmann <gerd@gnu.org>
13081
13082 * xterm.c (x_term_init): Unblock input around call1 of
13083 Qvendor_specific_keysyms.
13084
13085 * syntax.c (open_paren_in_column_0_is_defun_start): New variable.
13086 (find_defun_start): Consider an open parenthesis in column 0
13087 a defun start only if open_paren_in_column_0_is_defun_start is set.
13088 (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start.
13089
13090 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
13091
13092 * eval.c (Fautoload): Add entry in load-history (if after dump).
13093 * lread.c (load-history): Update docstring.
13094
13095 2000-03-24 Gerd Moellmann <gerd@gnu.org>
13096
13097 * indent.c (Fvertical_motion): Always use the current buffer.
13098 Temporarily change the window's buffer, if necessary.
13099
13100 2000-03-23 Gerd Moellmann <gerd@gnu.org>
13101
13102 * xterm.c (fast_find_position): Make sure not to consider rows
13103 not visible in the window.
13104
13105 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
13106
13107 * regex.c (enum syntaxcode): Provide default for non-Emacs.
13108 (re_compile_fastmap, re_match_2_internal): Undo Dave's previous fix.
13109
13110 2000-03-22 Jason Rumney <jasonr@gnu.org>
13111
13112 * w32menu.c (single_submenu): Set help string to NULL if none.
13113 (w32_menu_show): Set help string correctly.
13114 (add-menu-item): Set help string in MIIM_DATA for menu item.
13115 Load SetMenuItemInfoA explicitly.
13116 (w32_menu_display_help): New function.
13117
13118 * w32fns.c (w32_wnd_proc): Handle WM_MENUSELECT message.
13119 (QCdata): Moved to xdisp.c.
13120
13121 * w32term.c (w32_read_socket): Handle WM_MENUSELECT message.
13122 (Vw32_charset_to_codepage_alist): Removed.
13123 (Vw32_charset_info_alist): New variable.
13124 (Qw32_charset_[ansi, default, symbol, shiftjis, hangul, gb2312)
13125 (chinesebig5, oem, easteurope, turkish, baltic, russian, arabic)
13126 (greek, hebrew, thai, johab, mac, unicode]): New symbols.
13127 (x_produce_glyphs): Remove out of date #ifdef 0'd section. Replace
13128 with TODO comment.
13129 (w32_codepage_for_font): Use Vw32_charset_info_alist.
13130 (syms_of_w32term): Remove Vw32_charset_to_codepage_alist.
13131 Define Vw32_charset_info_alist and w32_charset symbols.
13132
13133 2000-03-22 Jason Rumney <jasonr@gnu.org>
13134
13135 * makefile.nt (w32bdf.obj): Update dependencies.
13136
13137 * w32bdf.c: Include frame.h and dispextern.h before fontset.h.
13138
13139 * w32fns.c: Include fontset.h after dispextern.h.
13140 (Fx_create_frame): Do not create fontset.
13141 (w32_load_system_font): Doc fix.
13142 (Fx_close_connection): Free full_name if it is not shared.
13143
13144 * w32term.c: Include fontset.h after dispextern.h.
13145 (x_get_glyph_face_and_encoding): New parameter two_byte_p.
13146 Callers updated.
13147 (w32_per_char_metric): If PCM is invalid, delete and return NULL.
13148 (x_get_char_and_face_encoding): Use FACE_FOR_CHAR to get face_id.
13149 (w32_font_is_double_byte): New function, needs body.
13150 (x_append_glyph): Set glyph->glyph_not_available_p.
13151 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
13152 it->charset. If it->multibyte_p is zero and it->c is a multibyte
13153 character, convert it to a unibyte character.
13154 (struct glyph_string): Delete member `charset'.
13155 (W32_TEXTOUT): Temporarily remove charset_dim until another way of
13156 calculating it is found.
13157 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
13158 the case that per char metric is not available correctly.
13159 (x_fill_glyph_string): Handle the case that the specific glyph is
13160 not available correctly.
13161 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
13162 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
13163 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
13164 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
13165 fontset. Don't call FS_LOAD_FONT.
13166
13167 2000-03-22 Ken Raeburn <raeburn@gnu.org>
13168
13169 * intervals.h (NULL_INTERVAL): Cast to INTERVAL type.
13170 (INT_LISPLIKE): New macro.
13171 (NULL_INTERVAL_P): Use it.
13172 (INTERVAL_HAS_PARENT, INTERVAL_HAS_OBJECT, SET_INTERVAL_PARENT)
13173 (SET_INTERVAL_OBJECT, INTERVAL_PARENT, COPY_INTERVAL_PARENT)
13174 (GET_INTERVAL_OBJECT, INTERVAL_PARENT_OR_NULL): New macros.
13175
13176 * alloc.c (make_interval, gc_sweep): Use new macros; eliminate all
13177 explicit references to "parent" field of struct interval and
13178 associated unclean type conversions.
13179 * intervals.c (create_root_interval, root_interval, rotate_right)
13180 (rotate_left, balance_possible_root_interval, split_interval_right)
13181 (split_interval_left, interval_start_pos, find_interval)
13182 (next_interval, previous_interval, update_interval)
13183 (adjust_intervals_for_insertion, delete_node, delete_interval)
13184 (adjust_intervals_for_deletion, merge_interval_right)
13185 (merge_interval_left, reproduce_tree, graft_intervals_into_buffer)
13186 (copy_intervals_to_string): Likewise.
13187 * intervals.h (AM_LEFT_CHILD, AM_RIGHT_CHILD, RESET_INTERVAL):
13188 Likewise.
13189 * syntax.c (update_syntax_table): Likewise.
13190
13191 * intervals.c (reproduce_tree_obj): New function, like
13192 reproduce_tree but takes a Lisp_Object for the parent. Declare
13193 with prototype.
13194 (graft_intervals_into_buffer): Use it when appropriate.
13195 (reproduce_tree): Declare with prototype.
13196 (balance_possible_root_interval): Check that the parent is a lisp
13197 object before trying to examine its type.
13198
13199 2000-03-22 Gerd Moellmann <gerd@gnu.org>
13200
13201 * xfaces.c (lface_same_font_attributes_p): Compare font attributes
13202 as strings only if both are known to be strings.
13203
13204 * s/openbsd.h (LIBS_TERMCAP): Undef.
13205
13206 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
13207
13208 * regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
13209 definitions for non-Emacs compilation.
13210 (enum re_opcode_t): Remove (not)wordchar and move (not)syntaxspec
13211 outside of `#ifdef emacs'.
13212 (print_partial_compiled_pattern): Update.
13213 (regex_compile): Use (not)syntaxspec(Sword) instead of (not)wordchar.
13214 (re_compile_fastmap): Merge handling of charset and charset_not (for
13215 emacs and non-emacs compilation as well).
13216 Similarly for (not)categoryspec and (not)syntaxspec.
13217 Don't use the fastmap when reaching `anychar' since the added
13218 complexity is not justified.
13219 (re_match_2_internal): Merge (not)wordchar (emacs and non-emacs)
13220 and (not)syntaxspec. Merge (not)categoryspec.
13221
13222 2000-03-22 Kenichi Handa <handa@etl.go.jp>
13223
13224 * dispextern.h [!HAVE_WINDOW_SYSTEM] (FACE_SUITABLE_FOR_CHAR_P)
13225 (FACE_FOR_CHAR): Define them differently for the configuration of
13226 --without-x.
13227
13228 2000-03-21 Dave Love <fx@gnu.org>
13229
13230 * fontset.c (Fset_fontset_font, Ffontset_font): Fix newlines in
13231 doc string.
13232
13233 2000-03-21 Gerd Moellmann <gerd@gnu.org>
13234
13235 * xfaces.c (check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
13236 (lface_fully_specified_p): Don't check contents of
13237 LFACE_FONT_INDEX because that attribute is optional.
13238 (realize_x_face): Remove now unwarranted xassert.
13239
13240 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
13241
13242 The following changes are to make font selection based on
13243 characters, not charset. In addition, they recover fontset
13244 facilities while utilizing the new font selection mechanism.
13245
13246 * Makefile.in (fontset.o): Depend on dispextern.h.
13247
13248 * alloc.c (mark_face_cache): Don't mark face->registry.
13249
13250 * dispextern.h (struct glyph): New member glyph_not_available_p.
13251 Use 22 bits for face_id.
13252 (enum lface_attribute_index): Add LFACE_FONT_INDEX.
13253 (struct face): Delete member registry, new member ascii_face.
13254 (FACE_SUITABLE_FOR_CHAR_P): Renamed from
13255 FACE_SUITABLE_FOR_CHARSET_P. Caller changed.
13256 (FACE_FOR_CHAR): Renamed from FACE_FOR_CHARSET. Caller changed.
13257 (struct it): Delete member charset, new member glyph_not_available_p.
13258
13259 * fontset.h (FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
13260 (struct fontset_info, struct fontset_data): Structs removed.
13261 (allloc_fontset_data, free_fontset_data, fs_regiser_fontset)
13262 (Vglobale_fontset_alist, font_idx_temp): Externs removed.
13263 (fs_load_font, fs_query_fontset): Adjusted for new argument.
13264 (fs_free_face_fontset, fontset_font_pattern)
13265 (face_suitable_for_char_p, face_for_char)
13266 (make_fontset_for_ascii_face): Extern them.
13267 (FS_LOAD_FONT): Adjusted for the change of fontset implementation.
13268 (FS_LOAD_FACE_FONT): New macro.
13269
13270 * fontset.c: All codes rewritten or adjusted for the change of
13271 fontset implementation. Now fontset is represented by char table.
13272 (Vglobal_fontset_alist, font_idx_temp, my_strcasetbl):
13273 Variables removed.
13274 (my_strcasecmp): Function removed.
13275 (Vfontset_table, next_fontset_id, Vdefault_fontset): New variables.
13276 (AREF, ASIZE): New macros.
13277 (FONTSET_FROM_ID, FONTSET_ID, FONTSET_NAME, FONTSET_FRAME)
13278 (FONTSET_ASCII, FONTSET_BASE, BASE_FONTSET_P, FONTSET_REF)
13279 (FONTSET_REF_VIA_BASE, FONTSET_SET): New macros.
13280 (fontset_ref, fontset_ref_via_base, fontset_set, make_fontset)
13281 (fontset_id_valid_p, font_family_registry, fontset_name)
13282 (fontset_ascii, free_face_fontset, face_suitable_for_char_p)
13283 (face_for_char, make_fontset_for_ascii_face, fontset_font_pattern):
13284 New functions.
13285 (fs_load_font): New arg FACE. Caller changed.
13286 (fs_query_fontset): Argument changed. Caller changed.
13287 (Fquery_fontset): call fs_query_fontset.
13288 (fs_register_fontset, alloc_fontset_data, free_fontset_data):
13289 Functions removed.
13290 (clear_fontset_elements, check_registry_encoding)
13291 (check_fontset_name): New functions.
13292 (syms_of_fontset): Set char-table-extra-slots property of fontset
13293 to 3. Staticpro and initialize Vfontset_table and
13294 Vdefault_fontset. Defsubr fontset_font and fontset_list.
13295
13296 * frame.h (struct frame): Member `fontset_data' removed.
13297 (FRAME_FONTSET_DATA): Macro removed.
13298
13299 * frame.c (make_frame): Don't allocate f->fontset_data.
13300 (Fdelete_frame): Don't free f->fontset_data.
13301
13302 * msdos.c (XMenuActivate): Args to lookup_derived_face changed.
13303
13304 * xdisp.c (charset_at_position): Function removed.
13305 (init_iterator): Don't set member charset of struct `it'.
13306 (handle_face_prop, reseat_to_string, set_iterator_to_next)
13307 (next_element_from_display_vector, insert_left_trunc_glyphs):
13308 Likewise.
13309 (face_before_or_after_it_pos): Call FACE_FOR_CHAR, not
13310 FACE_FOR_CHARSET.
13311 (get_next_display_element, append_space)
13312 (extend_face_to_end_of_line): Likewise.
13313
13314 * xfaces.c (Qx_charset_registry, Vface_default_registry):
13315 Variables removed.
13316 (clear_font_table, frame_update_line_height, load_face_font):
13317 Adjusted for the change of fontset implementation.
13318 (load_face_fontset_font): Function removed.
13319 (pixel_point_size): New function.
13320 (font_list): Argument type changed. Caller changed.
13321 (LFACE_FONT): New macro.
13322 (check_lface_attrs): Check attr[LFACE_FONT_INDEX].
13323 (set_lface_from_font_name): Type of arg FONTNAME is changed to
13324 Lisp_Object. Determine the font name by actually loading a font
13325 by the specified pattern. Set LFACE_FONT (lface) to the specified
13326 pattern. Even if a font is not found, don't try alternatives.
13327 (Finternal_set_lisp_face_attribute): Handle `font' slot in lface.
13328 (set_font_frame_param): If `font' is specified in lface, use it.
13329 (Finternal_get_lisp_face_attribute): Handle `font' slot in lface.
13330 (lface_same_font_attributes_p): Likewise.
13331 (make_realized_face): Arguent changed. Caller changed. Set
13332 face->ascii_face to face itself.
13333 (free_realized_face): Free face->fontset if face is for ASCII.
13334 (face_suitable_for_iso8859_1_p, face_suitable_for_charset_p)
13335 (deduce_unibyte_registry, x_charset_registry): Functions removed.
13336 (free_realized_multibyte_face): New function.
13337 (lookup_face, lookup_named_face, lookup_derived_face): Argument
13338 changed. Caller changed.
13339 (try_font_list): Argument type changed.
13340 (face_fontset): Check `font' slot of ATTRS, not `family' slot.
13341 (choose_face_font): Argument changed. Handle fontset properly.
13342 (choose_face_fontset_font): Function removed.
13343 (realize_default_face, realize_named_face): Don't remove the
13344 former face here.
13345 (realize_face): Argument changed. Caller changed. Remove face
13346 with the arg former_face_id in advance. Load font for the new face.
13347 (realize_x_face): Argument changed. Caller changed. For a
13348 multibyte character, share fontset with base_face. For a single
13349 byte character, make a new realized fontset. Don't load a font here.
13350 (realize_tty_face): Argument changed. Caller changed.
13351 (compute_char_face): Call FACE_FOR_CHAR, not FACE_FOR_CHARSET.
13352 (face_at_buffer_position): Don't check multibyte_p for returning
13353 DEFAULT_FACE_ID.
13354 (face_at_string_position): Call FACE_SUITABLE_FOR_CHAR_P, not
13355 FACE_SUITABLE_FOR_CHARSET_P.
13356 (syms_of_xfaces): Remove code for Qx_charset_registry and
13357 Vface_default_registry.
13358
13359 * xterm.c: Include fontset.h after dispextern.h. Undo the changes
13360 related to PER_CHAR_METRIC done by Gerd on 2000-03-03.
13361 (x_per_char_metric): Don't try FONT->default_char. Even if
13362 pcm->width is zero, glyph bits may exist.
13363 (x_encode_char): Always initialize char2b->byte1.
13364 (x_get_char_face_and_encoding): Call FACE_FOR_CHAR to get face_id.
13365 (x_get_glyph_face_and_encoding): New arg two_byte_p. Caller changed.
13366 (x_append_glyph): Set glyph->glyph_not_available_p.
13367 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
13368 it->charset. Handle the case that per char metric is not
13369 available. If it->multibyte_p is zero and it->c is a multibyte
13370 character, convert it to a unibyte character.
13371 (struct glyph_string): Delete member `charset'.
13372 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
13373 the case that per char metric is not available correctly.
13374 (x_fill_glyph_string): Handle the case that the specific glyph is
13375 not available correctly.
13376 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
13377 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
13378 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
13379 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
13380 fontset. Don't call FS_LOAD_FONT.
13381
13382 * xfns.c (Fx_create_frame): Don't cal fs_register_fontset.
13383 (x_create_tip_frame): Likewise.
13384 (Fx_close_connection): Free full_name of font_info.
13385
13386 * fns.c (optimize_sub_char_table): New function.
13387 (Foptimize_char_table): New function.
13388 (syms_of_fns): Defsubr Soptimize_char_table.
13389
13390 2000-03-20 Gerd Moellmann <gerd@gnu.org>
13391
13392 * buffer.c (Fset_buffer_modified_p): Set update_mode_lines
13393 only if buffer is displayed in some window.
13394
13395 * xdisp.c (handle_single_display_prop): Initialize local `value'.
13396 (try_window_reusing_current_matrix): Don't call scroll run
13397 function if run's current and desired position are the same;
13398 this prevents cursor flickering.
13399
13400 2000-03-19 Stefan Monnier <monnier@cs.yale.edu>
13401
13402 * regex.h (RE_TRANSLATE. RE_TRANSLATE_P): Moved to regex.c.
13403
13404 * regex.c (RE_STRING_CHAR): New macro.
13405 (GET_CHAR_AFER_2): Remove.
13406 (RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h.
13407 (enum re_opcode_t): Remove on_failure_jump_exclusive.
13408 (print_partial_compiled_pattern, re_compile_fastmap)
13409 (re_match_2_internal): Remove on_failure_jump_exclusive.
13410 (regex_compile): Turn optimizable P+ loops into PP*, so that the
13411 optimization only need to work for * (ie. can use of_keep_string_jump).
13412 Remove the special case for .*\n since it is now covered by the general
13413 optimization.
13414 (re_search_2): Don't bother with `room'.
13415 (skip_one_char): New function.
13416 (skip_noops): Simplify since `memory' is not needed any more.
13417 (mutually_exclusive_p): Restructure slightly to use `switch' and
13418 add handling for "all" remaining cases.
13419 (re_match_2_internal): Change on_failure_jump_smart to use
13420 on_failure_keep_string_jump (and redirect the end-of-loop jump)
13421 rather than on_failure_jump_exclusive.
13422
13423 2000-03-19 Gerd Moellmann <gerd@gnu.org>
13424
13425 * xfns.c (select_visual): Don't set dpyinfo->n_planes to the
13426 number of bits per RGB because it's everywhere used as the depth
13427 of the visual.
13428
13429 * term.c (calculate_costs): Remove code dealing with X frames.
13430
13431 2000-03-19 Richard M. Stallman <rms@gnu.org>
13432
13433 * lread.c (syms_of_lread): Doc fix for load-convert-to-unibyte.
13434
13435 2000-03-18 Gerd Moellmann <gerd@gnu.org>
13436
13437 * lread.c (read_integer): Unread the last char not consumed.
13438
13439 2000-03-17 Gerd Moellmann <gerd@gnu.org>
13440
13441 * xterm.c (x_update_window_cursor): Don't update in frames
13442 which are in the process of being deleted.
13443
13444 2000-03-16 Gerd Moellmann <gerd@gnu.org>
13445
13446 * Makefile.in (mostlyclean): Add `*.core'.
13447 (clean): Add `bootstrap-emacs'.
13448
13449 * lread.c (read_integer): New function.
13450 (read1): Support read syntax #o, #x, #b, #r.
13451
13452 2000-03-15 Stefan Monnier <monnier@cs.yale.edu>
13453
13454 * regex.c (re_match_2): Fix string shortening (to fit `stop') to
13455 make sure POINTER_TO_OFFSET gives the same value before and after
13456 PREFETCH. Use `dfail' to guarantee "atomic" matching.
13457 (PTR_TO_OFFSET): Use POINTER_TO_OFFSET.
13458 (debug): Now only active if > 0 rather than if != 0.
13459 (DEBUG_*): Update for the new meaning of `debug'.
13460 (print_partial_compiled_pattern): Add missing `succeed' case. Use
13461 CHARSET_* macros in the charset(_not) branch. Fix off-by-two bugs
13462 in `succeed_n', `jump_n' and `set_number_at'.
13463 (store_op1, store_op2, insert_op1, insert_op2)
13464 (at_begline_loc_p, at_endline_loc_p): Add prototype.
13465 (group_in_compile_stack): Move to after its arg's types are
13466 declared and add a prototype.
13467 (PATFETCH): Define in terms of PATFETCH_RAW.
13468 (GET_UNSIGNED_NUMBER): Add the usual `do { ... } while(0)' wrapper.
13469 (QUIT): Redefine as a nop except for NTemacs.
13470 (regex_compile): Handle intervals {,M} as if it was {0,M}. Fix
13471 indentation of the greedy-op and shy-group code.
13472 (at_(beg|end)line_loc_p): Fix argument's types.
13473 (re_compile_fastmap): Ifdef out failure_stack_ptr to shut up gcc.
13474 (re_search_2): Use POS_AS_IN_BUFFER. Simplify `room' computation.
13475 (MATCHING_IN_FIRST_STRING): Remove.
13476 (re_match_2): Use POS_AS_IN_BUFFER. Ifdef out failure_stack_ptr
13477 to shut up gcc. Use FIRST_STRING_P and POINTER_TO_OFFSET. Use
13478 QUIT unconditionally.
13479
13480 2000-03-15 Gerd Moellmann <gerd@gnu.org>
13481
13482 * minibuf.c (Fminibuffer_complete): Set point to ZV if finding
13483 a sole completion.
13484
13485 * process.c (send_process): Add a hint that the function
13486 can call Lisp code to its comment.
13487
13488 * lread.c (load_dangerous_libraries): New variable.
13489 (Vbytecomp_version_regexp): New variable.
13490 (safe_to_load_p): New function.
13491 (Fload): Handle files not compiled with Emacs specially.
13492 (syms_of_lread): New Lisp variable load-dangerous-libraries.
13493
13494 2000-03-14 Gerd Moellmann <gerd@gnu.org>
13495
13496 * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon.
13497
13498 * xterm.c (xim_close_dpy, xim_initialize): Use X11R6-style XIM
13499 support functions only if HAVE_X11R6_XIM is defined.
13500 (xim_instantiate_callback): Define only if HAVE_X11R6_XIM.
13501
13502 * s/sol2.h (INHIBIT_X11R6_XIM): Define.
13503
13504 * xfns.c (X_I18N_INHIBITED): Don't define.
13505 (create_frame_xic): Remove conditional compilation on X_I18N_INHIBITED.
13506 (x_kill_gs_process, x_window): Use FRAME_X_VISUAL.
13507
13508 * config.in (HAVE_X_I18N): Moved here from xterm.h.
13509 (HAVE_X11R6_XIM): Define.
13510
13511 * xterm.h (HAVE_X_I18N) [HAVE_X11R6]: Moved to config.in.
13512
13513 * xterm.c (x_term_init): Add support for X resource `synchronous'.
13514 If set, call XSynchronize.
13515
13516 2000-03-13 Stefan Monnier <monnier@cs.yale.edu>
13517
13518 * regex.c: Declare a new type `re_char' used throughout the code
13519 for the string char type. It's `const unsigned char' to match the
13520 rest of Emacs. Consistently make sure all pointers to strings use
13521 it and make sure all pointers into the pattern use `unsigned char'.
13522 (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of
13523 GET_CHAR_AFTER_2. Also merge wordbound and notwordbound to reduce
13524 code duplication.
13525
13526 * charset.h (GET_CHAR_AFTER_2): Remove.
13527 (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else.
13528
13529 2000-03-12 Ken Raeburn <raeburn@gnu.org>
13530
13531 * Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary
13532 variable before the invocation of YMF_PASS_LDFLAGS, in case both
13533 of them try to use backquotes.
13534
13535 2000-03-12 Dave Love <fx@gnu.org>
13536
13537 * unexelf.c: Restore changes of 1999-10-19.
13538 (unexec): Don't adjust bss for sbss type SHT_PROGBITS; otherwise
13539 fix its type and alignment; copy it from current process.
13540
13541 2000-03-12 Gerd Moellmann <gerd@gnu.org>
13542
13543 * atimer.c (cancel_atimer): Break out of the loop as soon as timer
13544 has been found. Fix bug not computing timer's predecessor.
13545
13546 * fileio.c (Fread_file_name): Handle case that DIR contains a
13547 file name.
13548
13549 * window.c (Fsave_window_excursion): Doc fix.
13550
13551 * xfns.c (x_defined_color): Rewritten to use x_allocate_nearest_color.
13552
13553 2000-03-12 Eli Zaretskii <eliz@is.elta.co.il>
13554
13555 * msdos.c (vga_installed): New function, code moved from
13556 dos_set_window_size.
13557 (Qbar, Qcursor_type, outside_cursor): New variables.
13558 (syms_of_msdos): Intern and staticpro them.
13559 (dos_ttraw) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Save the cursor
13560 shape used outside Emacs when called for the first time.
13561 (dos_ttcooked) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Restore the
13562 cursor shape used outside Emacs.
13563 (msdos_set_cursor_shape, IT_set_cursor_type): New functions.
13564 (IT_frame_up_to_date): Call IT_set_cursor_type, in case the cursor
13565 type has changed.
13566 (IT_set_frame_parameters): Call IT_set_cursor_type if the frame
13567 parameters specify the cursor. Make qreverse a global
13568 variable (renamed to Qreverse).
13569
13570 2000-03-09 Gerd Moellmann <gerd@gnu.org>
13571
13572 * fns.c (Fy_or_n_p): Cancel busy-cursor.
13573
13574 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
13575
13576 This is a big redesign of failure-stack and register handling, prompted
13577 by bugs revealed when trying to add shy-groups. Overall, what happened
13578 is that loops are now structured a little differently, groups can be
13579 shy and the code is a little simpler.
13580
13581 * regex.h: Update the copyright.
13582 (RE_SHY_GROUPS): New value.
13583 (RE_UNMATCHED_RIGHT_PAREN_ORD): Renumber.
13584 (RE_SYNTAX_EMACS): Add RE_SHY_GROUPS.
13585
13586 * regex.c (enum re_opcode_t): Remove jump_past_alt,
13587 maybe_pop_jump, push_dummy_failure and dumy_failure_jump. Add
13588 on_failure_jump_(exclusive, loop and smart). Also fix the comment
13589 for (start|stop)_memory since they now only take one argument (the
13590 second has becomes unnecessary).
13591 (print_partial_compiled_pattern): Adjust for changes in re_opcode_t.
13592 (print_compiled_pattern): Use %ld to printf long ints and flush to
13593 make debugging a little easier.
13594 (union fail_stack_elt): Make the integer unsigned.
13595 (struct fail_stack_type): Add a `frame' element.
13596 (INIT_FAIL_STACK): Init `frame' as well.
13597 (POP_PATTERN_OP): New macro for re_compile_fastmap.
13598 (DEBUG_PUSH, DEBUG_POP): Remove.
13599 (NUM_REG_ITEMS): Remove.
13600 (NUM_NONREG_ITEMS): Adjust.
13601 (FAILURE_PAT, FAILURE_STR, NEXT_FAILURE_HANDLE)
13602 (TOP_FAILURE_HANDLE): New macros for the cycle detection.
13603 (ENSURE_FAIL_STACK): New macro for PUSH_FAILURE_(REG|POINT).
13604 (PUSH_FAILURE_REG, POP_FAILURE_REG, CHECK_INFINITE_LOOP):
13605 New macros.
13606 (PUSH_FAILURE_POINT): Don't push registers any more. The pattern
13607 address pushed is not the destination of the jump but the source
13608 of it instead.
13609 (NUM_FAILURE_ITEMS): Remove.
13610 (POP_FAILURE_POINT): Adapt to the new stack structure (i.e. pop
13611 registers before the actual failure point). Don't hardcode any
13612 meaning for str==NULL anymore.
13613 (union register_info_type, REG_MATCH_NULL_STRING_P, IS_ACTIVE)
13614 (MATCHED_SOMETHING, EVER_MATCHED_SOMETHING, SET_REGS_MATCHED):
13615 Remove.
13616 (REG_UNSET_VALUE): Use NULL (why not?).
13617 (compile_range): Remove declaration since it doesn't exist.
13618 (struct compile_stack_elt_t): Remove inner_group_offset.
13619 (old_reg(start|end), reg_info, reg_dummy, reg_info_dummy): Remove.
13620 (regex_grow_registers): Remove dead code.
13621 (FIXUP_ALT_JUMP): New macro.
13622 (regex_compile): Add shy-groups Change loops to use
13623 on_failure_jump_smart&jump instead of
13624 on_failure_jump&maybe_pop_jump. Change + loops to eliminate the
13625 initial (dummy_failure_)jump. Remove c1_base (looks like unused
13626 variable to me). Use `jump' instead of `jump_past_alt' and don't
13627 bother with push_dummy_failure in alternatives since it is now
13628 unnecessary. Use FIXUP_ALT_JUMP. Eliminate a useless `#ifdef
13629 emacs' for (re)allocating the stack.
13630 (re_compile_fastmap): Remove dead variables i and num_regs. Exit
13631 from loop when bufp->can_be_null rather than jumping to `done'.
13632 Avoid jumping backwards so as to ensure termination. Use
13633 PATTERN_STACK_EMPTY and POP_PATTERN_OP. Improved handling of
13634 backreferences. Remove dead code in handling of `anychar'.
13635 (skip_noops, mutually_exclusive_p): New functions taken from the
13636 handling of `maybe_pop_jump' in re_match_2_internal. Slightly
13637 improve mutually_exclusive_p to handle ".+\n".
13638 (lowest_active_reg, highest_active_reg)
13639 (NO_(LOWEST|HIGHEST)_ACTIVE_REG) Remove.
13640 (re_match_2_internal): Use %p instead of 0x%x when printf'ing
13641 ptrs. Don't SET_REGS_MATCHED anymore. Remove many dead
13642 variables. Push register (in `start_memory') on the stack rather
13643 than storing it in old_reg(start|end). Remove the cycle detection
13644 from `stop_memory', replaced by the use of on_failure_jump_loop
13645 for greedy loops. Add code for the new on_failure_jump_<foo>.
13646 Remove ad-hoc code in `on_failure_jump' to push more registers in
13647 the case of a loop. Take out code from `maybe_pop_jump' into
13648 separate functions and adapt it to the semantics of
13649 `on_failure_jump_smart'. Remove jump_past_alt, dummy_failure_jump
13650 and push_dummy_failure. Remove dummy_failure handling and
13651 handling of `failures to jump to on_failure_jump' (this last one
13652 was already dead code, it seems).
13653 (group_match_null_string_p, alt_match_null_string_p)
13654 (common_op_match_null_string_p): Remove.
13655
13656 2000-03-08 Dave Love <fx@gnu.org>
13657
13658 * config.in: Don't depend on __STDC__ for volatile.
13659 Add POINTER_TYPE, PTR, PROTOTYPES.
13660
13661 * hftctl.c, strftime.c: Use PROTOTYPES.
13662 * eval.c (find_handler_clause): Likewise.
13663
13664 * mem-limits.h: Use POINTER_TYPE.
13665
13666 * lisp.h (P_): Define based on PROTOTYPES, not __STDC__.
13667 (memory_warnings): Declare using POINTER_TYPE.
13668
13669 2000-03-08 Gerd Moellmann <gerd@gnu.org>
13670
13671 * xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor.
13672
13673 * xdisp.c (display_echo_area): Temporarily inhibit garbage collection.
13674
13675 * xfns.c: Remove obsolete code in #if 0.
13676 (Fx_focus_frame): New function.
13677
13678 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
13679
13680 * coding.c (coding_category_name): Add coding-category-utf-8,
13681 coding-category-utf-16-be, coding-category-utf-16-le.
13682 (UTF_8_1_OCTET_P, UTF_8_EXTRA_OCTET_P, UTF_8_2_OCTET_LEADING_P,
13683 UTF_8_3_OCTET_LEADING_P, UTF_8_4_OCTET_LEADING_P,
13684 UTF_8_5_OCTET_LEADING_P, UTF_8_6_OCTET_LEADING_P): New macros.
13685 (detect_coding_utf_8): New function.
13686 (UTF_16_INVALID_P, UTF_16_HIGH_SURROGATE_P
13687 UTF_16_LOW_SURROGATE_P): New macros.
13688 (detect_coding_utf_16): New function
13689 (detect_coding_mask): When priorities are specified, skip any
13690 categories that have `nil' coding-system. Fix bug of returning
13691 wrong mask when PRIORITIES is specified and detect_coding_XXX()
13692 returns a mask not set in PRIORITIES.
13693 (detect_eol_type_in_2_octet_form): New function.
13694 (detect_eol): selects detect_eol_type_XXX to call according to
13695 cooding->category_idx.
13696 (detect_coding_system): Remove `nil' coding-system in the result.
13697 (Fupdate_coding_systems_internal): Update all coding-categories.
13698
13699 * coding.h (CODING_CATEGORY_IDX_UTF_8)
13700 (CODING_CATEGORY_IDX_UTF_16_BE, CODING_CATEGORY_IDX_UTF_16_LE):
13701 New macros.
13702 (CODING_CATEGORY_IDX_RAW_TEXT, CODING_CATEGORY_IDX_BINARY)
13703 (CODING_CATEGORY_IDX_MAX): Adjusted for the above macros.
13704 (CODING_CATEGORY_IDX_UTF_16_LE)
13705 (CODING_CATEGORY_MASK_UTF_8, CODING_CATEGORY_MASK_UTF_16_BE)
13706 (CODING_CATEGORY_MASK_UTF_16_LE): New macros.
13707 (CODING_CATEGORY_MASK_ANY): Include the above macros.
13708 (CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro.
13709
13710 2000-03-07 Gerd Moellmann <gerd@gnu.org>
13711
13712 * doc.c (Fdocumentation_property): If value is not a string,
13713 and doesn't refer to etc/DOC, evaluate it to obtain a string.
13714
13715 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Don't try to
13716 close the display with XtCloseDisplay. This caused a bus error
13717 on OpenWindows.
13718
13719 * minibuf.c (Fminibuffer_complete): Move point to ZV when input is
13720 complete but not unique.
13721
13722 2000-03-06 Gerd Moellmann <gerd@gnu.org>
13723
13724 * process.c (send_process): Remove local variable `procname' that
13725 might become invalid when a GC happens. Instead, access the
13726 process name slot directly.
13727
13728 * xfns.c (x_set_menu_bar_lines_1): Adjust window's orig_top and
13729 orig_height if set.
13730
13731 * frame.c (set_menu_bar_lines_1): Adjust window's orig_top and
13732 orig_height if set.
13733
13734 2000-03-06 Eli Zaretskii <eliz@is.elta.co.il>
13735
13736 * msdos.c (IT_note_mouse_highlight): Return immediately if frame's
13737 glyph matrices have been freed.
13738
13739 2000-03-05 Gerd Moellmann <gerd@gnu.org>
13740
13741 * Makefile.in (tags): Include ../lwlib/TAGS in TAGS.
13742 (bootstrap-temacs): Set LC_ALL to C like for temacs.
13743
13744 * xfns.c (QCdata): Moved to xdisp.c.
13745
13746 * xdisp.c (QCdata): Moved here from xfns.c.
13747 (syms_of_xdisp): Initialize QCdata.
13748
13749 * frame.h (FRAME_INTERNAL_BORDER_WIDTH) [!HAVE_X_WINDOWS]: Define.
13750
13751 * window.c (coordinates_in_window): Use
13752 FRAME_INTERNAL_BORDER_WIDTH_SAFE instead of
13753 FRAME_INTERNAL_BORDER_WIDTH.
13754
13755 * xdisp.c (try_window_id): Recompute unchanged information if
13756 it is obviously invalid.
13757
13758 * xterm.c (x_term_init): Create a colormap if not using the
13759 default visual.
13760
13761 * xterm.h (select_visual): Change prototype.
13762
13763 * xfns.c (select_visual): Rewritten. Recognize user-specified
13764 visual classes.
13765 (visual_classes): New variable.
13766
13767 2000-03-04 Gerd Moellmann <gerd@gnu.org>
13768
13769 * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color)
13770 (lookup_pixel_color, x_laplace, x_build_heuristic_mask)
13771 (png_load): Access colormap of frame using FRAME_X_COLORMAP.
13772 (x_decode_color): Don't handle allocation of white and black specially.
13773 (x_window) [USE_X_TOOLKIT]: Set XtNvisual, XtNdepth, and
13774 XtNcolormap resources.
13775 (x_window) [!USE_X_TOOLKIT]: Pass colormap to XCreateWindow.
13776 (Fx_create_frame): Initialize color members of x_output structure.
13777 (xpm_load): Pass colormap to XPM lib.
13778
13779 * xfaces.c (x_free_colors): Access colormap of frame using
13780 FRAME_X_COLORMAP. Be paranoid about freeing black and white
13781 when default colormap is used.
13782
13783 * xterm.c (x_term_init): Set Colormap member of x_display_info
13784 structure. Copy colormap if resource `privateColormap' is
13785 specified (PseudoColor only).
13786 (x_setup_relief_color): Access colormap of frame using
13787 FRAME_X_COLORMAP.
13788
13789 * xterm.h (struct x_display_info): Add Colormap member `cmap'.
13790 (FRAME_X_COLORMAP, FRAME_X_VISUAL): New macros.
13791
13792 2000-03-04 Jason Rumney <jasonr@gnu.org>
13793
13794 * xfaces.c Change many FRAME_X... macros to FRAME_WINDOW... or
13795 other non-platform-specific equivalents.
13796 [WINDOWSNT]: Include w32term.h, fontset.h and define X
13797 specific functions and macros as their w32 equivalents where
13798 non-platform-specifics are not available.
13799 [HAVE_X_WINDOWS]: Change most of these to HAVE_WINDOW_SYSTEM.
13800 (x_create_gc, x_free_gc) [WINDOWSNT]: Add W32 versions.
13801 (clear_font_table) [WINDOWSNT]: Call w32_unload_font.
13802 (frame_update_line_height): Use macros to access f->output_data.
13803 (defined_color): Remove FIXME comments; fixed.
13804 (x_face_list_fonts, prepare_face_for_display): Put X specifics
13805 into #ifdef blocks. Add WINDOWSNT blocks.
13806 (Fx_list_fonts): Use macros for accessing font data.
13807 (set_lface_from_font_name): Different default fonts for X and
13808 WINDOWSNT.
13809 (font_scalable_p) [WINDOWSNT]: Treat wildcard XLFD_AVGWIDTH as
13810 scalable for backward compatibility.
13811 (realize_tty_face) [MSDOS]: Do the same for WINDOWSNT.
13812 (syms_of_xfaces) [WINDOWSNT]: Allow scalable fonts by default.
13813
13814 * emacs.c (main) [HAVE_NTGUI]: Call syms_of_xfaces instead of
13815 syms_of_w32faces.
13816
13817 * makefile.nt (w32faces.obj): Remove.
13818 (xfaces.obj): Add.
13819
13820 2000-03-03 Jason Rumney <jasonr@gnu.org>
13821
13822 * keyboard.c (make_lispy_event): Call buffer_posn_from_coords with
13823 correct parameters.
13824
13825 2000-03-03 Ken Raeburn <raeburn@gnu.org>
13826
13827 * unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
13828 standard ELF definitions here if the system header does not.
13829
13830 2000-03-03 Gerd Moellmann <gerd@gnu.org>
13831
13832 * xterm.c (PER_CHAR_METRIC): Removed.
13833 (x_per_char_metric_1, x_default_char): New functions.
13834 (x_per_char_metric): If font's default char is invalid, return
13835 metrics of a suitably chosen usable default char.
13836 (x_draw_glyph_string_foreground): If font has an invalid default
13837 char, replace occurrences of unprintable chars with a suitably
13838 chosen usable default char.
13839
13840 2000-03-02 Gerd Moellmann <gerd@gnu.org>
13841
13842 * xterm.c (note_mouse_highlight): Return quickly if frame's
13843 glyph matrices have been freed.
13844
13845 * dispnew.c (free_glyphs): Block input while freeing matrices.
13846
13847 * xfns.c (x_clear_image, x_kill_gs_process): Use x_free_colors.
13848
13849 * xterm.c (x_alloc_lighter_color, x_setup_relief_color):
13850 Use x_free_colors.
13851
13852 * dispextern.h (x_free_colors): Add prototype.
13853
13854 * xfaces.c (x_free_colors): New function.
13855 (unload_color, free_face_colors): Use it.
13856
13857 2000-03-02 Eli Zaretskii <eliz@is.elta.co.il>
13858
13859 * msdos.h (FRAME_INTERNAL_BORDER_WIDTH): Define to zero.
13860
13861 * window.c [MSDOS]: Include msdos.h.
13862
13863 2000-03-02 Dave Love <fx@gnu.org>
13864
13865 * m/powerpcle.h, m/sparc.h: Don't set C_OPTIMIZE_SWITCH.
13866
13867 * m/mips-siemens.h, m/news-r6.h, m/news-risc.h, m/tekxd88.h: Don't
13868 set C_OPTIMIZE_SWITCH for gcc.
13869
13870 2000-03-02 Kenichi Handa <handa@etl.go.jp>
13871
13872 * coding.c (coding_save_composition): Be sure to allocate
13873 composition data area in coding even if there's no composition in
13874 the current run.
13875
13876 2000-03-01 Jason Rumney <jasonr@gnu.org>
13877
13878 * w32term.c: Equivalent changes to those made to xterm.c on
13879 2000-02-25 and 2000-02-24.
13880
13881 * w32fns.c: Equivalent changes to those made to xfns.c on
13882 2000-02-25 and 2000-02-21.
13883
13884 * sysdep.c: [WINDOWSNT]: Use sys_read and sys_write to ensure
13885 correct line-end convention is followed.
13886
13887 * w32menu.c [HAVE_BOXES]: Remove #undef.
13888 (single_keymap_panes): Remove code for simulating checkmarks.
13889 (single_menu_item): Remove notbuttons_ptr argument. Callers changed.
13890 Remove code for drawing simulated checkmarks.
13891 (w32_menu_show): make unibyte help string correctly.
13892 (add_menu_item): draw standard Windows checkmarks. Draw radio
13893 buttons as radio buttons if possible.
13894
13895 2000-03-01 Gerd Moellmann <gerd@gnu.org>
13896
13897 * sysdep.c (start_of_text): Don't define this function for NetBSD
13898 with ELF.
13899
13900 * m/pmax.h (START_FILES, CANNOT_DUMP) [__NetBSD__ || __OpenBSD__]:
13901 Don't define.
13902 (UNEXEC) [__NetBSD__ || __OpenBSD__]: Define to unexelf.o.
13903 (LINKER): Don't undef if __NetBSD__ is defined.
13904
13905 * m/mips.h (LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
13906
13907 * fileio.c [__NetBSD__]: Define `unix'.
13908
13909 * xfns.c (start_busy_cursor): Allow floats for busy-cursor-delay.
13910
13911 2000-02-29 Gerd Moellmann <gerd@gnu.org>
13912
13913 * atimer.c (start_atimer): Don't abort when timers are stopped.
13914 (append_atimer_lists): New function.
13915 (cancel_atimer, stop_other_atimers, run_all_atimers): Handle
13916 arbitrary lists of stopped and running atimers.
13917
13918 * atimer.c (cancel_atimer): Handle canceling an atimer when
13919 some timers are stopped.
13920
13921 * xfns.c (cancel_busy_cursor): Set busy_cursor_atimer to null
13922 after canceling it.
13923
13924 * fns.c (maybe_resize_hash_table): Handle case of new size
13925 coming out as being the same as old size.
13926
13927 2000-02-27 Jason Rumney <jasonr@gnu.org>
13928
13929 * makefile.nt: Add atimer.h to dependencies.
13930 * w32.c (init_environment): Set Vw32_num_mouse_buttons here.
13931 * w32console.c: Only disable window system features for dispextern.h
13932 (initialize_w32_display): Build a display info for the console.
13933 * w32faces.c (tty_defined_color): Apply xfaces.c change from 02-17.
13934 * w32fns.c (w32_wnd_proc) [WM_LBUTTON_DOWN, WM_RBUTTON_DOWN,
13935 WM_LBUTTON_UP, WM_RBUTTON_UP]: Do not treat 4 or more button mice
13936 as 2 button mice.
13937 * w32gui.h (struct W32FontStruct): Revert last change after change
13938 to xdisp.c.
13939 * w32menu.c (single_submenu): Set up help string.
13940 [!HAVE_MULTILINGUAL_MENU]: Don't overwrite item_name with descrip.
13941 (w32_dialog_show): Set up help string.
13942 * w32term.c (w32_display_info_for_display): Remove unused function.
13943 (w32_draw_bitmap): Use pre-built bitmaps.
13944 (w32_initialize_display_info): New function to initialize parts of
13945 display info that are common to both GUI and console frames.
13946 (w32_term_init): Use w32_initialize_display_info. Do not set
13947 Vw32_num_mouse_buttons here, as it is not called for console
13948 frames. Build bitmaps for indicating truncated lines etc.
13949 (x_delete_display): Destroy pre-built bitmaps.
13950 * xdisp.c (handle_single_display_prop): Use FONT_HEIGHT macro.
13951 (echo_area_display): Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM.
13952
13953 2000-02-27 Dave Love <fx@gnu.org>
13954
13955 * lisp.h: Add a bunch of prototypes.
13956
13957 2000-02-26 Kenichi Handa <handa@etl.go.jp>
13958
13959 * keyboard.c (read_char): Set `usec' correctly.
13960
13961 2000-02-25 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
13962
13963 * ccl.c (ccl_driver) [CCL_MapMultiple]: When the mapped value is
13964 `lambda', set reg[RRR] to the map index.
13965 (ccl_driver) [CCL_MapSingle]: When the mapped value is found, set
13966 reg[RRR] to 0. Otherwise, set it to -1.
13967
13968 2000-02-25 Gerd Moellmann <gerd@gnu.org>
13969
13970 * emacs.c (main): Remove code snippet commented out with `//'.
13971
13972 2000-02-25 Richard M. Stallman <rms@gnu.org>
13973
13974 * fileio.c (Ffile_symlink_p): If result starts with a `/'
13975 and contains a `:', prepend `/:'.
13976
13977 * window.c (select_window_1): If selected_window is nil,
13978 don't "swap out" the buffer's point.
13979 (Fset_window_configuration): Set selected_window to nil
13980 before calling Fselect_window.
13981 (unshow_buffer): Don't set point in buffer from window's point
13982 if another more recently selected window also shows the buffer.
13983
13984 2000-02-25 Gerd Moellmann <gerd@gnu.org>
13985
13986 * keyboard.c (recursive_edit_1): Cancel busy-cursor.
13987
13988 * xfns.c (inhibit_busy_cursor, busy_count): Removed.
13989 (Fx_show_busy_cursor, Fx_hide_busy_cursor): Removed.
13990 (busy_cursor_atimer, busy_cursor_shown_p, Vbusy_cursor_delay):
13991 New variables.
13992 (DEFAULT_BUSY_CURSOR_DELAY): New define.
13993 (start_busy_cursor, cancel_busy_cursor, show_busy_cursor)
13994 (hide_busy_cursor): New functions.
13995 (syms_of_xfns): DEFVAR_LISP Vbusy_cursor_delay.
13996
13997 * minibuf.c (read_minibuf): Cancel busy-cursor.
13998
13999 * keyboard.c (command_loop_1): Call start_busy_cursor before
14000 Fcommand_execute and cancel_busy_cursor after it.
14001 (timer_check): Remove busy-cursor code.
14002 (Fread_key_sequence, Fread_key_sequence_vector): Start/cancel busy
14003 cursor timer.
14004
14005 * process.c (wait_reading_process_input): Remove busy-cursor code.
14006
14007 * eval.c (Fsignal): Call cancel_busy_cursor instead of
14008 Fx_hide_busy_cursor.
14009
14010 * dispextern.h (Fx_show_busy_cursor, Fx_hide_busy_cursor):
14011 Remove prototyoes.
14012 (start_busy_cursor, cancel_busy_cursor): Add prototypes.
14013
14014 * lisp.h (Fx_hide_busy_cursor): Remove prototype.
14015
14016 * xterm.c (XTread_socket): Remove busy-cursor code.
14017
14018 * dispnew.c (flush_stdout) [GLYPH_DEBUG]: New function.
14019 (build_frame_matrix_from_leaf_window): Put code handling
14020 glyph row's not being a slice of a frame row in #if 0.
14021 (sync_window_with_frame_matrix_rows): New function.
14022 (frame_row_to_window): New function.
14023 (mirror_line_dance): Handle copies between windows.
14024
14025 * lread.c (Fload): Use `xfree' instead of `free'.
14026 (init_obarray): Use `xmalloc' instead of `malloc'.
14027
14028 * window.c (Fset_window_buffer): Set WINDOW to the window
14029 after decoding.
14030 (coordinates_in_window): Take frame's internal border width
14031 into account.
14032
14033 2000-02-24 Gerd Moellmann <gerd@gnu.org>
14034
14035 * xterm.c (x_display_and_set_cursor): Display cursor of
14036 non-selected windows depending on the setting of
14037 cursor_in_non_selected_windows.
14038
14039 * xdisp.c (cursor_in_non_selected_windows): New variable.
14040 (syms_of_xdisp): DEFVAR_BOOL it.
14041
14042 2000-02-23 Gerd Moellmann <gerd@gnu.org>
14043
14044 * data.c (Fstring_to_number): If number is greater than what
14045 fits into an integer, return a float.
14046
14047 * eval.c (specbind): Remove references to
14048 keyword_symbols_constant_flag.
14049
14050 * data.c (keyword_symbols_constant_flag): Removed.
14051 (Fmakunbound, set_internal, syms_of_data): Remove references to
14052 keyword_symbols_constant_flag.
14053
14054 * bytecode.c (Fbyte_code): Remove keyword_symbols_constant_flag.
14055
14056 2000-02-23 Kenichi Handa <handa@etl.go.jp>
14057
14058 * syntax.c (multibyte_syntax_as_symbol): New variable.
14059 (syms_of_syntax): Declare it as a Lisp variable.
14060 (SYNTAX_WITH_MULTIBYTE_CHECK): New macro.
14061 (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are
14062 nonzero, treat all multibyte characters as symbol.
14063 (init_syntax_once): Give syntax `word' to all multibyte characters.
14064
14065 2000-02-22 Eli Zaretskii <eliz@is.elta.co.il>
14066
14067 * frame.c (Fdelete_frame): Don't let echo_area_window remain on
14068 a deleted frame.
14069
14070 2000-02-21 Gerd Moellmann <gerd@gnu.org>
14071
14072 * frame.c (Fmouse_position): GCPRO retval instead of x and y.
14073
14074 * xfns.c (x_window_to_frame, x_any_window_to_frame)
14075 (x_non_menubar_window_to_frame): Check the busy-cursor window.
14076
14077 2000-02-21 Dave Love <fx@gnu.org>
14078
14079 * frame.c (Vmouse_position_function): New variable.
14080 (Fmouse_position): Use it.
14081 (syms_of_frame): Install it.
14082
14083 * charset.c (find_charset_in_str): Fix use of `c' instead of `c1'.
14084
14085 2000-02-20 Gerd Moellmann <gerd@gnu.org>
14086
14087 * fileio.c (Finsert_file_contents): Unbind the binding of
14088 standard-output done by temp_output_buffer_setup.
14089
14090 * eval.c (funcall_lambda): Don't bind Qmocklisp_arguments unless
14091 Vmocklisp_arguments is nil. Inline Fcar and Fcdr.
14092 (specbind, unbind_to): Handle most common case of non-constant
14093 symbol with trivial value specially.
14094
14095 * bytecode.c (Fbyte_code) <Bvarset>: Inline most common case.
14096
14097 2000-02-20 Richard M. Stallman <rms@gnu.org>
14098
14099 * data.c (Fmake_variable_buffer_local): Doc fix.
14100 Init found_for_buffer to 0.
14101 (Fmake_variable_frame_local): If the variable has already
14102 been buffer-local, set the check_frame field.
14103
14104 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
14105
14106 * msdos.c (IT_write_glyphs): Allocate a larger screen_buf as data
14107 produced for CODING_MODE_LAST_BLOCK requires.
14108
14109 2000-02-18 Dave Love <fx@gnu.org>
14110
14111 * keyboard.c (echo_keystrokes): Remove declaration.
14112 (Vecho_keystrokes) New variable.
14113 (read_char, record_menu_key, read_key_sequence): Use it to allow
14114 use of float value.
14115 (syms_of_keyboard): Change Vecho_keystrokes declaration.
14116
14117 * lread.c: Undef feature selection macros before defining.
14118
14119 2000-02-18 Gerd Moellmann <gerd@gnu.org>
14120
14121 * data.c (let_shadows_buffer_binding_p): Ignore specbindings
14122 for symbols other than the symbol in question.
14123
14124 2000-02-17 Dave Love <fx@gnu.org>
14125
14126 * s/sol2.h (C_DEBUG_SWITCH): Define to allow optimization.
14127
14128 2000-02-17 Gerd Moellmann <gerd@gnu.org>
14129
14130 * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef.
14131
14132 * alloc.c (enum mem_type): Compile unconditionally.
14133
14134 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
14135
14136 * xfaces.c (tty_defined_color): Don't return faulire indication
14137 for unspecified-fg and unspecified-bg pseudo-colors.
14138
14139 2000-02-17 Gerd Moellmann <gerd@gnu.org>
14140
14141 * alloc.c (mark_object): Don't mark symbol names in pure space.
14142 (gc_sweep): Don't unmark symbol names in pure space.
14143
14144 * lisp.h (GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
14145 (GC_MARK_STACK_CHECK_GCPROS, GC_USE_GCPROS_CHECK_ZOMBIES)
14146 [GC_MARK_STACK]: New defines.
14147 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, UNGCPRO)
14148 [GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS]: Define as no-ops.
14149
14150 * emacs.c (main) [GC_MARK_STACK]: Initialize stack_base.
14151
14152 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use
14153 allocate_buffer instead of xmalloc.
14154
14155 * alloc.c (toplevel): Include setjmp.h.
14156 (PURE_POINTER_P): New define.
14157 (enum mem_type) [GC_MARK_STACK]: New enumeration.
14158 (Vdead) [GC_MARK_STACK]: New variable.
14159 (lisp_malloc): Add parameter TYPE, call mem_insert if
14160 GC_MARK_STACK is defined.
14161 (allocate_buffer): New function.
14162 (lisp_free) [GC_MARK_STACK]: Call mem_delete.
14163 (free_float) [GC_MARK_STACK]: Set type to Vdead.
14164 (free_cons) [GC_MARK_STACK]: Set car to Vdead.
14165 (stack_base, mem_root, mem_z) [GC_MARK_STACK]: New variables.
14166 (MEM_NIL) [GC_MARK_STACK]: New define.
14167 (struct mem_node) [GC_MARK_STACK]: New structure.
14168 (mem_init, mem_find, mem_insert, mem_delete, mem_insert_fixup)
14169 (mem_delete_fixup, mem_rotate_left, mem_rotate_right)
14170 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
14171 (live_misc_p, live_vector_p, live_buffer_p, mark_memory)
14172 (mark_stack) [GC_MARK_STACK]: New functions.
14173 (Fgarbage_collect) [GC_MARK_STACK]: Call mark_stack.
14174 (clear_marks): Removed.
14175 (gc_sweep): Set free conses' car, free floats' type, free
14176 symbols' function to Vdead. Use lisp_free to free buffers.
14177 (init_alloc_once): Initialize Vdead.
14178 (survives_gc_p): Return non-zero for pure objects.
14179
14180 * alloc.c: Add comments throughout the file.
14181
14182 * atimer.c (stop_other_atimers): Don't call cancel_atimer because
14183 that unblocks alarms.
14184
14185 * alloc.c, bytecode.c, data.c, dispnew.c, ecrt0.c, editfns.c,
14186 emacs.c, floatfns.c, fns.c, lread.c, print.c, config.in, lisp.h,
14187 Makefile.in: Remove `LISP_FLOAT_TYPE' and `standalone'.
14188
14189 * frame.c (make_frame): Set frame initiallly to `garbaged'.
14190
14191 2000-02-17 Kenichi Handa <handa@etl.go.jp>
14192
14193 * xdisp.c (decode_mode_spec_coding): Delete superfluous code to
14194 avoid infinite error signaling. Allocate sufficient memory for
14195 eol_str in the case that eoltype is Lisp_Int.
14196
14197 2000-02-17 Stefan Monnier <monnier@cs.yale.edu>
14198
14199 * syntax.c (Fforward_comment): Undo the previous change, since cc-mode
14200 depends on the previous behavior.
14201
14202 2000-02-16 Gerd Moellmann <gerd@gnu.org>
14203
14204 * sysdep.c (vfork) [!HAVE_VFORK]: Removed.
14205
14206 2000-02-15 Gerd Moellmann <gerd@gnu.org>
14207
14208 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define.
14209
14210 * process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
14211 Workaround for FreeBSD bug. Clear output queue after EAGAIN in
14212 write(2).
14213
14214 2000-02-15 Richard M. Stallman <rms@gnu.org>
14215
14216 * data.c (set_internal): Don't make variable buffer-local
14217 if within a let-binding for the same buffer.
14218 (let_shadows_buffer_binding_p): New function.
14219
14220 * eval.c (specbind): For buffer-local value,
14221 record the current buffer also.
14222 (unbind_to): Cope with that change.
14223
14224 2000-02-15 Gerd Moellmann <gerd@gnu.org>
14225
14226 * window.c (Fsave_window_excursion): Doc fix.
14227
14228 2000-02-15 Stefan Monnier <monnier@cs.yale.edu>
14229
14230 * syntax.c (back_comment): Make sure we only consider comment-starters
14231 of the relevant style and return -1 in case of a failure to find the
14232 beginning of the comment.
14233 (Fforward_comment): If back_comment fails, go back to the position just
14234 after the comment-end.
14235 (scan_lists): Add comment describing a very minor bug.
14236
14237 2000-02-14 Stefan Monnier <monnier@cs.yale.edu>
14238
14239 * minibuf.c (Ftry_completion, Fall_completions): Add a reference to
14240 `completion-regexp-list' in the docstring.
14241
14242 2000-02-14 Dave Love <fx@gnu.org>
14243
14244 * xfaces.c (tty_defined_color): Declare color_idx unsigned long.
14245
14246 2000-02-14 Stefan Monnier <monnier@cs.yale.edu>
14247
14248 * regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
14249 to Emacs' syntax. Also fix the comment about set/not-set meanings
14250 since Emacs syntax is not the value 0 any more.
14251 * search.c (compile_pattern_1): Remove RE_CHAR_CLASSES from the syntax
14252 since it's now part of RE_SYNTAX_EMACS.
14253
14254 2000-02-12 Dave Love <fx@gnu.org>
14255
14256 * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on Alpha.
14257
14258 2000-02-12 Gerd Moellmann <gerd@gnu.org>
14259
14260 * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively.
14261
14262 2000-02-12 Dave Love <fx@gnu.org>
14263
14264 * s/aix3-2.h, s/osf-1.h: Define C_DEBUG_SWITCH for non-gcc.
14265
14266 * s/ux4800.h, s/umips.h, s/umax.h, s/sol2.h, s/sco5.h, s/rtu.h:
14267 * s/ptx4.h, s/umax.h, s/dgux.h, s/bsd4-2.h, s/bsd4-3.h:
14268 * s/hpux.h: Don't define HAVE_VFORK.
14269
14270 * s/gnu-linux.h: Don't define HAVE_VFORK or HAVE_SYS_SIGLIST.
14271
14272 * s/nextstep.h: Don't define HAVE_ALLOCA.
14273
14274 * config.in: Add vfork bits.
14275
14276 2000-02-12 Gerd Moellmann <gerd@gnu.org>
14277
14278 * process.c (Fopen_network_stream) [POLL_FOR_INPUT]: Register
14279 unwind function to undo the effect of stopping atimers.
14280
14281 * keyboard.c (bind_polling_period): Stop all timers except poll_timer.
14282
14283 * atimer.c (stopped_atimers): New variable.
14284 (stop_other_atimers, run_all_atimers, unwind_stop_other_atimers):
14285 New functions.
14286
14287 * atimer.h (stop_other_atimers, run_all_atimers)
14288 (unwind_stop_other_atimers): Add function prototypes.
14289
14290 * s/hpux10.h (HAVE_XRMSETDATABASE): Define if not already defined.
14291
14292 2000-02-11 Ken Raeburn <raeburn@gnu.org>
14293
14294 * Makefile.in (LIBX): Link in tiff library before jpeg, since tiff
14295 library may depend on jpeg.
14296 (atimer.o): Depends on atimer.c.
14297
14298 2000-02-11 Kenichi Handa <handa@etl.go.jp>
14299
14300 * insdel.c (del_range_1): Call update_compositions.
14301 (del_range_both): Call update_compositions just once..
14302
14303 2000-02-10 Dave Love <fx@gnu.org>
14304
14305 * xfns.c (create_frame_xic): Fix initialization of automatic
14306 aggregates for pcc.
14307
14308 2000-02-09 Kenichi Handa <handa@etl.go.jp>
14309
14310 * ccl.c (CCL_MAKE_CHAR): New macro.
14311 (ccl_driver) <CCL_TranslateCharacter>: Check the validity of
14312 registers by CCL_MAKE_CHAR before calling translate_char.
14313 <CCL_TranslateCharacterConstTbl> Likewise.
14314
14315 2000-02-08 Dave Love <fx@gnu.org>
14316
14317 * lread.c (__EXTENSIONS__): Define.
14318
14319 2000-02-08 Gerd Moellmann <gerd@gnu.org>
14320
14321 * puresize.h (BASE_PURESIZE): Increase to 650000.
14322
14323 2000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
14324
14325 * msdos.c (XMenuActivate): Turn off the cursor after displaying
14326 the help message.
14327
14328 2000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
14329
14330 * s/msdos.h (INTERNAL_TERMINAL): Add capabilities se, so, us, ue,
14331 md, mh, mb, mr, and me to the fake termcap entry.
14332
14333 2000-02-06 Ken Raeburn <raeburn@gnu.org>
14334
14335 * sound.c (sound_cleanup): Don't call device close routine if the
14336 function pointer is null.
14337
14338 2000-02-06 Andrew Innes <andrewi@gnu.org>
14339
14340 * dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
14341 around image definitions and prototypes.
14342 (gamma_correct) [WINDOWSNT]: New prototype.
14343
14344 * w32term.c (x_make_frame_visible): Replace call to
14345 input_poll_signal with poll_for_input.
14346
14347 * window.c [WINDOWSNT]: Include w32term.h.
14348
14349 * xdisp.c [WINDOWSNT]: Include w32term.h.
14350
14351 * makefile.nt: Add dependencies on w32gui.h.
14352 (OBJ1): Include atimer.obj.
14353 ($(BLD)\atimer.obj): New dependency rule.
14354
14355 * w32.c (sigmask): New function (does nothing).
14356 (sigunblock): Ditto.
14357
14358 * frame.c [WINDOWSNT]: Include w32term.h.
14359
14360 * w32gui.h (struct W32FontStruct): Add ascent and descent slots.
14361
14362 * lread.c (syms_of_lread): Fix literal newlines.
14363
14364 * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around
14365 the string constant limit (2048 bytes) in MSVC.
14366 (main): Ditto.
14367
14368 2000-02-05 INOUE Seiichiro <inoue@ainet.or.jp>
14369
14370 * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit area.
14371 (x_display_cursor) [HAVE_X_I18N]: Don't set it here.
14372 (XTread_socket) [HAVE_X_I18N]: <KeyPress, KeyRelease>: Don't
14373 dispatch the event.
14374
14375 2000-02-04 Dave Love <fx@gnu.org>
14376
14377 * fileio.c: Remove some unused vars.
14378 (_GNU_SOURCE): Define (for euidaccess).
14379
14380 * lread.c (_XOPEN_SOURCE): Declare (for ftello).
14381
14382 * minibuf.c (read_minibuf_noninteractive): Remove undeclared
14383 gcpro1, gcpro2.
14384 (read_minibuf): Deal with allow_props correctly.
14385
14386 2000-02-03 Eli Zaretskii <eliz@is.elta.co.il>
14387
14388 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Enlarge to 60000.
14389
14390 2000-02-03 Ken Raeburn <raeburn@gnu.org>
14391
14392 * search.c (compile_pattern): If a cache entry has a nil regexp,
14393 fill in that entry instead of clobbering a previously cached
14394 string regexp.
14395
14396 2000-02-02 Ken Raeburn <raeburn@gnu.org>
14397
14398 * puresize.h (BASE_PURESIZE): Increase to 610000.
14399
14400 2000-02-02 Gerd Moellmann <gerd@gnu.org>
14401
14402 * frame.c (Fframe_parameters): Add GCPRO because tty_color_name
14403 can GC.
14404
14405 2000-02-02 Kenichi Handa <handa@etl.go.jp>
14406
14407 * ccl.c (ccl_driver) <CCL_WriteExprRegister>: Set jump_address
14408 instead of incrementing ic directly.
14409 <CCL_WriteExprConst> Likewise.
14410 <ccl_set_expr>: Set ic to jump_address.
14411
14412 * fileio.c (e_write): Fix the handling of
14413 CODING_FINISH_INSUFFICIENT_SRC.
14414
14415 2000-02-01 Dave Love <fx@gnu.org>
14416
14417 * editfns.c (Fpropertize): Doc fix.
14418
14419 * process.c (Fstart_process): Doc fix.
14420
14421 * eval.c: Fix various doc strings not to duplicate information
14422 from help-manyarg-func-alist.
14423
14424 * window.c (Fset_window_margins): Don't make interactive. Doc fix.
14425
14426 * doc.c (Vhelp_manyarg_func_alist): New variable.
14427 (Fdocumentation): Use it.
14428 (syms_of_doc): Define it.
14429
14430 2000-01-31 Gerd Moellmann <gerd@gnu.org>
14431
14432 * xterm.c (xim_open_dpy): Remove unused local variable.
14433
14434 * emacs.c (USAGE): Use term `display options' instead of `X options'.
14435
14436 * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
14437 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
14438
14439 * fns.c (sweep_weak_table): New function.
14440 (sweep_weak_hash_tables): Use it. Keep on marking until there
14441 is no more change.
14442
14443 2000-01-30 Gerd Moellmann <gerd@gnu.org>
14444
14445 * xterm.c (x_delete_display): Update next_noop_dpyinfo to ensure
14446 that XTread_socket does not crash by trying to call XNoOp on a
14447 closed display.
14448
14449 2000-01-30 Jason Rumney <jasonr@gnu.org>
14450
14451 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
14452 Change selected_frame to SELECTED_FRAME ().
14453 (w32_console_mouse_position): Remove #ifndef MULE from around
14454 `insist' parameter.
14455
14456 * makefile.nt: Remove dosfns.obj.
14457
14458 * term.c (term_init) [WINDOWSNT]: Initialize TN_max_colors.
14459
14460 * w32fns.c (w32_defined_color): Check for valid frame before
14461 applying gamma correction. Eliminate dependency on frame elsewhere.
14462 (w32_load_system_font): Switch FIXED_PITCH and VARIABLE_PITCH.
14463 (w32_to_x_font): Use resx and resy not height_in and width_in.
14464 (x_to_w32_font): Doc fix.
14465 (xlfd_strip_height): New function to strip and return font height.
14466 (w32_font_match): Compare height separately from rest of xlfd
14467 spec, using xlfd_strip_height.
14468
14469 * w32term.c (w32_term_init): Swap resx and height_in, resy and
14470 width_in. Use w32_defined_color in place of defined_color.
14471
14472 * w32faces.c: Merge more of DOS and X specifics in preparation for
14473 merge with xfaces.c.
14474 (defined_color): Remove FIXME comment.
14475 (tty_color_name): Provide w32-specific function.
14476 (realize_tty_face): Handle FACE_TTY_DEFAULT*_COLOR specially.
14477
14478 * w32console.c (turn_on_face, turn_off_face): Removed.
14479 (w32_face_attributes): New function.
14480 (Global_variables): Reduce scope where possible.
14481 (clear_frame, ins_del_lines, scroll_line): Use char_attr_normal as
14482 fill attribute.
14483 (hl_mode): Don't modify text attributes.
14484 (write_glyphs): Don't do anything if len <= 0. Use
14485 w32_face_attributes to get attributes for drawing. Write
14486 terminating codes using char_attr_normal.
14487 (reset_terminal_modes, set_terminal_modes): Turn off highlight.
14488 (update_begin, update_end): Likewise.
14489 (vga_stdcolor_name): New function.
14490 (initialize_w32_display): Remove char_attr_reverse and char_attr.
14491 (Fset_screen_color): Remove char_attr_reverse.
14492
14493 2000-01-29 Gerd Moellmann <gerd@gnu.org>
14494
14495 * xfns.c (xic_set_preeditarea): Take window parameter and
14496 window-relative pixel-positions.
14497
14498 * xterm.c (x_display_cursor): Set XIC pre-edit area only if window
14499 is its frame's selected window.
14500 (xim_instantiate_callback): Likewise.
14501
14502 * xfns.c (x_create_im): Removed.
14503 (DEFAULT_STYLE, DEFAULT_FONT): Removed.
14504 (supported_xim_styles): Renamed from supported_styles.
14505 (best_xim_style): Renamed from best_style.
14506 (create_frame_xic): Renamed from xic_create_frame.
14507 (free_frame_xic): Renamed from xic_destroy_frame.
14508
14509 2000-01-29 INOUE Seiichiro <inoue@ainet.or.jp>
14510
14511 * xterm.c (XTread_socket) [HAVE_X_I18N]: If event is for none of
14512 our frames, call XFilterEvent with 2nd parameter `None'.
14513 (XTread_socket) <KeyPress> [HAVE_X_I18N]: Handle XmbLookupString
14514 returning XBufferOverflow.
14515 (XTread_socket) <ConfigureNotify> [HAVE_X_I18N]: Set XIC status area.
14516 (x_display_cursor) [HAVE_X_I18N]: Set XIC pre-edit area.
14517 (x_new_fontset) [HAVE_X_I18N]: Create XIC status area fontset.
14518 (xim_destroy_callback, xim_open_dpy, xim_instantiate_callback)
14519 (xim_initialize, xim_close)
14520 [HAVE_X_I18N && HAVE_X11R6]: New functions.
14521 (x_destroy_window) [HAVE_X_I18N]: Call xic_destroy_frame.
14522 (x_term_init) [HAVE_X_I18N]: Call xim_initialize.
14523 (x_delete_display) [HAVE_X_I18N]: Call xim_close.
14524
14525 * xterm.h (struct x_display_info) [HAVE_X_I18N]: Add members `xim'
14526 and `xim_styles'.
14527 (struct x_output) [HAVE_X_I18N]: Remove member `xim', add
14528 `xic_style' and `xic_xfs'.
14529 (FRAME_MENUBAR_HEIGHT, FRAME_X_XIM, FRAME_X_XIM_STYLES)
14530 (FRAME_XIC_STYLE, FRAME_XIC_FONTSET): New macros.
14531 (FRAME_XIM): Removed.
14532
14533 * xfns.c (supported_styles): New variable.
14534 (DEFAULT_STYLE, DEFAULT_FONT): New macros
14535 (xic_create_xfontset, best_style, xic_create_frame)
14536 (xic_destroy_frame, xic_set_preeditarea, xic_set_statusarea)
14537 (xic_set_xfontset): New functions.
14538
14539 2000-01-28 Dave Love <fx@gnu.org>
14540
14541 * s/irix6-5.h: Revert last change after change to irix5-0.h.
14542
14543 * m/iris4d.h (C_SWITCH_MACHINE): Don't use -G0.
14544
14545 2000-01-28 Gerd Moellmann <gerd@gnu.org>
14546
14547 * buffer.c (Fother_buffer): Don't call Fset_buffer_major_mode
14548 for *scratch* if it already existed.
14549
14550 * emacs.c (USAGE): New macro.
14551 (main): Use it to display usage information.
14552
14553 2000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
14554
14555 Support for the menu-help feature:
14556
14557 * msdos.h: Change prototypes of XMenuAddSelection and XMenuActivate.
14558
14559 * msdos.c (IT_clear_end_of_line): Print the extent of the cleared
14560 part of the line to the termscript file.
14561 (IT_clear_to_end): Clear the entire line, not just its beginning.
14562 (menu_help_message, prev_menu_help_message): New variables.
14563 (IT_menu_make_room): Make room for the help_text member.
14564 (IT_menu_display): New argument disp_help; all callers changed.
14565 If disp_help is non-zero, store the help text of the active menu
14566 item in menu_help_message.
14567 (XMenuAddPane): Initialize the help_text member to NULL.
14568 (XMenuAddSelection): New argument help_text. Store it in the
14569 XMenu structure.
14570 (XMenuActivate): New argument help_callback. If the value of
14571 menu_help_message has changed since the last time, display the
14572 menu help message text while waiting for the mouse to move. Clear
14573 the echo area before exiting.
14574 (XMenuDestroy): Free the help_text member.
14575
14576 2000-01-27 Gerd Moellmann <gerd@gnu.org>
14577
14578 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT]: Pass help to
14579 XMenuAddSelection. Pass help callback to XMenuActivate.
14580 (menu_help_callback) [!USE_X_TOOLKIT]: New function.
14581
14582 2000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
14583
14584 * atimer.c (start_atimer) [!HAVE_SETITIMER]: Use EMACS_SET_SECS
14585 and EMACS_SET_USECS.
14586
14587 2000-01-26 Dave Love <fx@gnu.org>
14588
14589 * editfns.c (Fchar_after, Fchar_before): Doc fix.
14590
14591 * bytecode.c (Fbyte_code): Use {BEFORE,AFTER}_POTENTIAL_GC where
14592 an error may be signalled.
14593
14594 2000-01-26 Gerd Moellmann <gerd@gnu.org>
14595
14596 * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
14597 LD_SWITCH_SYSTEM inherited from irix5-0.h.
14598
14599 * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
14600
14601 2000-01-25 Gerd Moellmann <gerd@gnu.org>
14602
14603 * charset.c (Fstring): If there is a multibyte char among
14604 the args, always return a multibyte string.
14605
14606 2000-01-25 Gerd Moellmann <gerd@gnu.org>
14607
14608 * sysdep.c (sys_select): Turn atimers off and on instead of
14609 recording and restoring old alarm handler
14610
14611 * process.c (toplevel): Include atimer.h.
14612 (create_process_1): Rewritten.
14613 (create_process): Use atimers instead of alarm.
14614 (wait_reading_process_input) [hpux]: Turn atimers off instead
14615 of turning off SIGALRM.
14616 (wait_reading_process_input): Turn off atimers instead off
14617 calling stop_polling.
14618
14619 * emacs.c (main): Call init_atimer.
14620
14621 * keyboard.c (toplevel): Include systime.h and atimer.h.
14622 (polling_for_input): Removed because unused.
14623 (input_poll_signal) [POLL_FOR_INPUT]: Removed.
14624 (poll_timer): New variable.
14625 (poll_for_input, poll_for_input_1): New functions.
14626 (start_polling, stop_polling): Rewritten.
14627
14628 * keyboard.h (polling_for_input): Removed.
14629
14630 * atimer.h, atimer.c: New files.
14631
14632 * Makefile.in (obj): Add atimer.o.
14633 (atimer.o): New target.
14634
14635 * blockinput.h (pending_atimers): Add extern declaration.
14636 (UNBLOCK_INPUT): Rewritten. Handle pending atimers.
14637
14638 * lisp.h (popup_activated_flag): Add extern declaration.
14639
14640 * xmenu.c (popup_activated_flag): Make externally visible.
14641 (popup_activate_callback) [USE_MOTIF]: Increment popup_activated_flag.
14642 (popup_deactivate_callback) [USE_MOTIF]: Decrement it.
14643
14644 * xterm.c (toplevel): Include atimer.h.
14645 (toolkit_scroll_bar_interaction): New variable.
14646 (Fxt_process_timeouts): Removed.
14647 (x_process_timeouts): New function.
14648 (xt_action_hook): Clear toolkit_scroll_bar_interaction.
14649 (x_send_scroll_bar_event): Set toolkit_scroll_bar_interaction.
14650 (x_make_frame_visible): Call poll_for_input_1 instead of
14651 input_poll_signal. Don't call alarm.
14652 (x_initialize): Install timer calling x_process_timeouts.
14653
14654 2000-01-24 Dave Love <fx@gnu.org>
14655
14656 * s/irix5-0.h: Don't set LD_SWITCH_SYSTEM -- we use unexelf now.
14657 Don't use -cckr -- apparently not now necessary.
14658
14659 2000-01-24 Eli Zaretskii <eliz@is.elta.co.il>
14660
14661 * msdos.c (IT_menu_display): Truncate long menu lines at the right
14662 screen boundary.
14663
14664 2000-01-23 Jason Rumney <jasonr@gnu.org>
14665
14666 * w32fns.c (w32_defined_color): Apply gamma correction before
14667 trying to map to the palette.
14668 (w32_wnd_proc) [WM_ERASE_BACKGROUND]: Pass device context of frame
14669 to w32_clear_rect.
14670
14671 * w32term.c (w32_fill_rect): Do not try to deal with NULL hdc
14672 here. Callers changed to always pass real device context.
14673 (w32_draw_bitmap): Likewise.
14674 (w32_get_glyph_overhangs): Likewise.
14675 (w32_draw_box_rect): Make use of s->hdc rather than getting a new one.
14676 (w32_set_vertical_scroll_bar): Pass correct HWND parameters to
14677 pfnSetScrollInfo and SetScrollRange.
14678 (x_get_char_face_and_encoding): Don't turn iso8859-1 characters
14679 back into MULE characters after decoding them.
14680 (x_get_glyph_face_and_encoding): Likewise.
14681 (w32_per_char_metric): Use GetCharExtentPoint32W as fallback when
14682 GetCharABCWidthsW fails, since this is defined on Windows 9x.
14683 (x_produce_glyphs): Calculate per char metrics for a character
14684 that we know exists in default font when font_not_found_p is true.
14685
14686 2000-01-22 Jason Rumney <jasonr@gnu.org>
14687
14688 * makefile.nt (intervals.obj, composite.obj): New modules.
14689 (composite.h): Added as dependency where appropriate.
14690
14691 * w32gui.h (XGCValue): New struct for emulating X GCs.
14692
14693 * w32term.h (XCharStruct): New struct for emulating X.
14694
14695 * w32console.c (turn_on_face, turn_off_face): New functions.
14696 (change_line_highlight): New prototype for new redisplay.
14697 (write_glyphs): Support multibyte text. Support faces.
14698
14699 * w32faces.c: Complete rewrite for new redisplay based on new xfaces.c.
14700
14701 * w32fns.c: Use SELECTED_FRAME macro in place of selected_frame
14702 throughout. struct frame * in place of FRAME_PTR.
14703 Skeleton support for images, toolbars, tooltips from xfns.c.
14704 (Fx_create_frame): Use system default for default scroll bar width.
14705 (w32_get_arg): Renamed from x_get_arg.
14706 (Fx_file_dialog): New function.
14707 (w32_list_fonts): Check cache before asking system.
14708 (Vw32_enable_synthesized_fonts): New variable.
14709 (Vw32_enable_italics): Obsolete, removed.
14710
14711 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
14712 Use SELECTED_FRAME macro.
14713
14714 * w32menu.c: Add skeleton support for help strings on menus.
14715 (add_menu_item): Native checkbox and radio support added, but not
14716 yet enabled due to bugs.
14717 (push_menu_item): Add parameters type, selection and help.
14718 Callers updated.
14719 Formatting changes to reduce unnecessary diffs with xmenu.c.
14720
14721 * w32select.c (Fw32_set_clipboard_data): Update call to
14722 find_charset_in_str.
14723
14724 * w32term.c: Complete rewrite for new redisplay based on new
14725 xterm.c with necessary sections merged back in from old w32term.c.
14726
14727 2000-01-21 Richard M. Stallman <rms@gnu.org>
14728
14729 * data.c (set_internal): Further fix in same criterion.
14730
14731 2000-01-20 Richard M. Stallman <rms@gnu.org>
14732
14733 * data.c (set_internal): Fix the criteria for whether
14734 to swap out the old cached binding.
14735
14736 2000-01-19 Dave Love <fx@gnu.org>
14737
14738 * lread.c: (syms_of_lread) [user-init-file]: Doc change.
14739
14740 2000-01-18 Kenichi Handa <handa@etl.go.jp>
14741
14742 * regex.c (re_compile_fastmap): While checking a range table for
14743 `charset', skip flag bits for a character class correctly.
14744
14745 2000-01-17 Gerd Moellmann <gerd@gnu.org>
14746
14747 * m/news-risc.h (LD_SWITCH_MACHINE): Define differently for GCC.
14748
14749 * xfns.c (x_window): Call lw_create_widget with new parameter list.
14750
14751 * widget.c (EmacsFrameSetCharSize): Change size of children first
14752 because of problems with main window geometry management under Lesstif.
14753
14754 * xmenu.c (enum menu_item_idx): New enumeration replacing defines
14755 MENU_ITEMS_ITEM_.*.
14756 (MENU_ITEMS_ITEM_HELP): New enumerator.
14757 (push_menu_item): Add parameter HELP. Record help in menu_items.
14758 (single_menu_item, single_submenu, list_of_items): Call
14759 push_menu_item with new parameter.
14760 (single_submenu): Set help string in widget value.
14761 (menu_highlight_callback): New function.
14762 (set_frame_menubar): Call lw_create_widget with new
14763 parameter list.
14764 (xmenu_show, xdialog_show): Ditto.
14765
14766 2000-01-13 Gerd Moellmann <gerd@gnu.org>
14767
14768 * sound.c (Fplay_sound): Improve doc string.
14769
14770 2000-01-11 Richard M. Stallman <rms@gnu.org>
14771
14772 * lisp.h (set_internal): Enter the new arg.
14773
14774 * eval.c (specbind): Record buffer-local variables specially,
14775 indicating which buffer's binding was saved.
14776 (unbind_to): Restore buffer-local variables specially
14777 in the proper buffer.
14778
14779 * data.c (set_internal): New arg BUF.
14780
14781 * eval.c (specbind, unbind_to): Pass new arg to set_internal.
14782 * data.c (Fset): Pass new arg to set_internal.
14783 * bytecode.c (Fbyte_code): Pass new arg to set_internal.
14784
14785 2000-01-11 Gerd Moellmann <gerd@gnu.org>
14786
14787 * .gdbinit: Adapt to new strings. Add xbacktrace, xreload, xprintsym.
14788
14789 2000-01-11 Richard M. Stallman <rms@gnu.org>
14790
14791 * minibuf.c (Ftry_completion): Doc fix.
14792
14793 2000-01-11 Gerd Moellmann <gerd@gnu.org>
14794
14795 * keyboard.c (Fclear_this_command_keys): Clear recent_keys
14796 vector, too.
14797
14798 2000-01-11 Andreas Schwab <schwab@suse.de>
14799
14800 * coding.c (code_convert_region): Initialize total_skip.
14801
14802 2000-01-08 Dave Love <fx@gnu.org>
14803
14804 * eval.c (Fuser_variable_p): Check customizability too.
14805
14806 2000-01-07 Gerd Moellmann <gerd@gnu.org>
14807
14808 * minibuf.c (Fcompleting_read): Doc fix.
14809
14810 2000-01-05 Gerd Moellmann <gerd@gnu.org>
14811
14812 * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and
14813 -L /usr/local/lib.
14814
14815 * xfns.c (x_create_im): New function to set IM and IC of a frame.
14816 Check that input style is supported before trying to create an
14817 IC for it.
14818 (x_window): Call x_create_im.
14819
14820 2000-01-04 Gerd Moellmann <gerd@gnu.org>
14821
14822 * xfns.c (current_gif_memory_src): New variable.
14823 (gif_load): Record the address of the current memory source
14824 in current_gif_memory_src.
14825 (gif_read_from_memory): Use current_gif_memory_src.
14826
14827 * systime.h (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME): Give
14828 macros statement form.
14829
14830 * sound.c (struct sound): Renamed from struct sound_file.
14831 (struct sound): Add members `data' and `header_size'.
14832 (enum sound_attr): Add SOUND_DATA.
14833 (current_sound, current_sound_device): Variables renamed from
14834 sound_file and sound_device.
14835 (parse_sound): Parse :data.
14836 (parse_sound): Handle sound data in strings.
14837 (find_sound_type): Function renamed from find_sound_file_type.
14838 (wav_init, au_init): Fail if sound's header_size is smaller than
14839 needed header size.
14840 (wav_play, au_play): Play sounds from string data.
14841
14842 * puresize.h (BASE_PURE_SIZE): Increase to 600000.
14843
14844 * lisp.h: Add prototype for allocate_string_data.
14845
14846 * alloc.c (Fgarbage_collect): Return number of live and free strings.
14847
14848 * alloc.c (mark_buffer): Remove code in #if 0.
14849 (gc_sweep): Ditto.
14850 (UNMARK_BALANCE_INTERVALS): Give the macro statement form.
14851 (strings_consed): New variable.
14852 (allocate_string): Set it.
14853 (syms_of_alloc): Add DEFVAR_INT for strings_consed.
14854 (Fmemory_use_counts): Return strings_consed. Use Flist.
14855
14856 * alloc.c: General cleanup in comments etc. Remove conditional
14857 compilation for `standalone'.
14858
14859 * lisp.h (struct Lisp_String): Make DATA member `unsigned char *'.
14860
14861 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P):
14862 (GC_STRING_BYTES, GC_STRING_CHARS): New macros.
14863 (DONT_COPY_FLAG): Removed.
14864 (SBLOCK_SIZE, LARGE_STRING_BYTES): New macros.
14865 (struct sdata, struct sblock): New
14866 (struct string_block): Rewritten.
14867 (STRINGS_IN_STRING_BLOCK): New macro.
14868 (oldest_sblock, current_sblock, total_strings, total_free_strings)
14869 (large_sblocks, string_blocks, string_free_list): New variables.
14870 (NEXT_FREE_LISP_STRING, SDATA_OF_STRING, SDATA_SIZE): New macros.
14871 (init_strings): Rewritten.
14872 (allocate_string, allocate_string_data, compact_small_strings)
14873 (free_large_strings, sweep_strings): New functions.
14874 (STRING_BLOCK_SIZE, STRING_BLOCK_OUTSIZE)
14875 (struct string_block_head, current_string_block)
14876 (first_string_block, large_string_blocks, STRING_FULLSIZE)
14877 (STRING_PAD): Removed.
14878 (make_uninit_multibyte_string, make_pure_string): Rewritten.
14879 (Fgarbage_collect): Don't set mark bit in large strings.
14880 (mark_object): Mark strings differently. Mark symbol names
14881 differently.
14882 (survives_gc_p): Test marked strings differently.
14883 (gc_sweep): Sweep strings differently, unmark strings in
14884 symbol names.
14885 (compact_strings): Removed.
14886
14887 2000-01-04 Eli Zaretskii <eliz@is.elta.co.il>
14888
14889 * xfaces.c (syms_of_xfaces): defsubr Scolor_gray_p and
14890 Scolor_supported_p even if HAVE_X_WINDOWS is not defined.
14891
14892 2000-01-04 Kenichi Handa <handa@etl.go.jp>
14893
14894 * fileio.c (Finsert_file_contents): Signal error if visiting file
14895 in a non-empty buffer.
14896
14897 * term.c (encode_terminal_code): Fix the previous change.
14898
14899 2000-01-03 Gerd Moellmann <gerd@gnu.org>
14900
14901 * xfaces.c (syms_of_xfaces): Change Sface_color_gray_p to
14902 Scolor_gray_p, Sface_color_supported_p to Scolor_supported_p.
14903
14904 * s/hpux9.h (NO_EDITRES): Define even if HAVE_LIBXMU.
14905
14906 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14907
14908 * xdisp.c (handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No
14909 need to test for MSDOS frames.
14910
14911 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14912
14913 * dosfns.c (unspecified_colors): Remove.
14914 (msdos_stdcolor_idx): Use global variables unspecified_fg and
14915 unspecified_bg.
14916 (msdos_stdcolor_name): Return strings for unspecified fore- and
14917 back-ground colors.
14918
14919 * xfaces.c (Qunspecified_fg, Qunspecified_bg): Remove.
14920 (syms_of_xfaces): Remove their staticpro's.
14921 (tty_color_name): Return Lisp strings for unspecified fore- and
14922 back-ground colors.
14923 (Finternal_set_lisp_face_attribute): Remove the special treatment
14924 for Qunspecified_{f,b}g.
14925 (realize_default_face): Replace Qunspecified_{f,b}g with a Lisp string.
14926
14927 2000-01-03 Gerd Moellmann <gerd@gnu.org>
14928
14929 * xdisp.c (reseat_at_next_visible_line_start): Position before
14930 newline only if ending up on a newline.
14931 (next_element_from_ellipsis): Return success. Handle case of
14932 displaying no ellipsis. Fix case of ellipsis defined in display table.
14933 (next_element_from_buffer): Return 0 if next_element_from_ellipsis
14934 returns 0.
14935
14936 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14937
14938 * xfaces.c (Fcolor_gray_p): Renamed from face-color-gray-p.
14939 (Fcolor_supported_p): Renamed from face-color-supported-p.
14940
14941 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
14942
14943 * xfaces.c (tty_defined_color): Pass frame to tty-color-desc. The
14944 list of colors renamed to tty-defined-color-alist.
14945 (tty_color_name): Pass the frame to tty-color-by-index.
14946 (realize_tty_face): tty-color-alist is now a function which
14947 accepts the frame as argument.
14948
14949 * term.c (Ftty_display_color_p): Accept an optional argument FRAME.
14950
14951 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
14952
14953 * term.c (insert_glyphs): Pass glyph, not &glyph, to
14954 encode_terminal_code.
14955
14956 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
14957
14958 * dispnew.c (mode_line_string): Support termcap frames as well.
14959
14960 2000-01-01 Gerd Moellmann <gerd@gnu.org>
14961
14962 * syntax.c (Fforward_word): Undo previous change.
14963
14964 * editfns.c (Fconstrain_to_field): Don't constrain if
14965 inhibit-field-text-motion is non-nil.
14966 (Fline_beginning_position): Undo previous change.
14967 (Fline_end_position): Ditto.
14968
14969 * syntax.c (Fforward_word): Notice field boundaries only if
14970 inhibit-field-text-motion is nil.
14971
14972 * lisp.h: Add extern declaration for Vinhibit_field_text_motion.
14973
14974 * editfns.c (Vinhibit_field_text_motion): New variable.
14975 (inhibit-field-text-motion): New DEFVAR_LISP.
14976 (Fline_beginning_position, Fline_end_position): Notice field
14977 boundaries only if inhibit-field-text-motion is nil.
14978
14979 * xfns.c (x_create_x_image_and_pixmap): Remove parameter FILE.
14980 All calls adjusted.
14981 (x_build_heuristic_mask): Likewise.
14982 (xbm_load_image_from_file): Change error output.
14983 (xbm_load, xpm_load, pbm_load, png_load, jpeg_load, tiff_load)
14984 (gif_load, gs_load, x_kill_gs_process): Ditto.
14985
14986 * xfns.c (gif_load): Avoid sign extension and thus out of bounds
14987 color indices when accessing raster pixels.
14988 (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only
14989 one of :file or :data.
14990 (enum pbm_keyword_index): Add PBM_DATA.
14991 (pbm_format): Add :data.
14992 (pbm_image_p): Allow either :file or :data.
14993 (pbm_read_file): New function.
14994 (pbm_scan_number): Rewritten to read from string.
14995 (pbm_load): Support :data.
14996
14997 See ChangeLog.8 for earlier changes.
14998
14999 ;; Local Variables:
15000 ;; coding: iso-2022-7bit
15001 ;; End:
15002
15003 Copyright (C) 2001 Free Software Foundation, Inc.
15004 Copying and distribution of this file, with or without modification,
15005 are permitted provided the copyright notice and this notice are preserved.