Fix last change.
[bpt/emacs.git] / src / ChangeLog
CommitLineData
c28b847b
GM
12001-03-05 Gerd Moellmann <gerd@gnu.org>
2
3 * minibuf.c (read_minibuf): Clean up the binding stack if
4 called noninteractively.
5
b86644f2
KH
62001-03-05 Kenichi Handa <handa@etl.go.jp>
7
8 * coding.c (syms_of_coding): Docstring modified.
9
203682cc 102001-03-05 Kenichi Handa <handa@etl.go.jp>
b86644f2
KH
11
12 * charset.c (char_to_string): If a single byte char has modifier
13 bits that can't be reflected to the character code, ignore them
14 instead of signalling an error.
15
e30bd7b7
EZ
162001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
17
18 * s/msdos.h: Update copyright notice.
19
20 * dosfns.h: Update copyright notice.
21
22 * dosfns.c: Update copyright notice.
23
24 * msdos.c: Update copyright notice.
25
b52b65bd
GM
262001-03-02 Gerd Moellmann <gerd@gnu.org>
27
28 * xterm.c (glyph_rect): New function.
29 (XTmouse_position): Use it to raise the threshold for mouse
30 movement event generation.
31
53c4b1e6
EZ
322001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
33
34 * msdos.c (Fmsdos_remember_default_colors): If default-frame-alist
35 specifies (reverse . t), reverse the initial screen colors.
36 (IT_set_frame_parameters): If the property is foreground-color,
37 but we are reversing the colors, set bg_set, not fg_set. Likewise
38 for setting background-color and reversing: set fg_set. Set
39 unspecified-fg and unspecified-bg correctly when (reverse . t) is
40 in effect.
41
42 * xfaces.c (Finternal_set_lisp_face_attribute)
43 [!HAVE_WINDOW_SYSTEM]: Record the new attribute in the frame's
44 parameters alist.
45
f964b4d7
GM
462001-03-02 Gerd Moellmann <gerd@gnu.org>
47
ef53d75e
GM
48 * fileio.c (Fexpand_file_name): Collapse sequences of slashes
49 to a single slash in the middle of file names.
50
cda0f4da
GM
51 * editfns.c (Fcurrent_time_zone) [HAVE_TM_ZONE || HAVE_TZNAME]:
52 Accept only alphanumeric time zone names.
53
f964b4d7
GM
54 * xterm.c (XTset_vertical_scroll_bar): Don't clear a zero height
55 or width area.
56 (XTset_vertical_scroll_bar, x_scroll_bar_create): Don't configure
57 a widget to zero height.
58
c3c45f65
GM
592001-03-01 Gerd Moellmann <gerd@gnu.org>
60
61 * window.c (Fwindow_end): Call move_it_past_eol only if
62 ending up on a partially visible line.
63
028d739a
DL
642001-03-01 Dave Love <fx@gnu.org>
65
66 * ccl.c (Fccl_execute): Doc fix.
67
57c5889c
GM
682001-03-01 Gerd Moellmann <gerd@gnu.org>
69
35f59f6b
GM
70 * xfns.c (Fx_create_frame): Adjust the frame's height for presence
71 of the tool bar before calling x_figure_window_size.
72
f84ff02c
GM
73 * xmenu.c (free_frame_menubar): Set the frame's menubar_widget to
74 NULL after destroying it, otherwise XTread_socket can access a
75 destroyed widget when input is unblocked.
76
420f628c
GM
77 * xfns.c (x_set_foreground_color): Set the background of the
78 cursor GC.
79
57c5889c
GM
80 * xfns.c (x_set_font): Handle case of x_new_fontset returning the
81 same name as before, although there was a change in fontsets.
82
224227d1
KR
832001-02-28 Ken Raeburn <raeburn@gnu.org>
84
4560730a
KR
85 * lisp.h (Fframe_parameter): Declare.
86
224227d1 87 * window.c (set_window_buffer): Field vscroll is an int, not a
57c5889c 88 Lisp_Object.
224227d1 89
ece93c02
GM
902001-02-28 Gerd Moellmann <gerd@gnu.org>
91
11ef99b9
GM
92 * xterm.c (x_set_window_size): Don't use `None' with widgets; use
93 NULL instead.
94
95 * xfns.c (Fx_hide_tip): Don't use `None' with widgets; use
96 NULL instead.
97
ece93c02
GM
98 * alloc.c (toplevel): Include process.h.
99 (enum mem_type): Add MEM_TYPE_PROCESS, MEM_TYPE_HASH_TABLE,
100 MEM_TYPE_FRAME, MEM_TYPE_WINDOW enumerators.
101 (allocate_vectorlike): Make it a static function. Add parameter TYPE.
102 (allocate_vector, allocate_hash_table, allocate_window)
103 (allocate_frame, allocate_process, allocate_other_vector): New
104 functions.
105 (Fmake_vector): Call allocate_vector instead of allocate_vectorlike.
106 (mark_maybe_pointer): New function.
107 (mark_memory): Also mark Lisp data to which only pointers
108 remain and not Lisp_Objects.
109 (min_heap_address, max_heap_address): New variables.
110 (mem_find): Return MEM_NIL if START is below min_heap_address or
111 above max_heap_address.
112 (mem_insert): Compute min_heap_address and max_heap_address.
113
114 * process.c (make_process): Use allocate_process.
115
116 * frame.c (make_frame): Use allocate_frame.
117
118 * window.c (make_window, make_dummy_parent): Use allocate_window.
119 (Fcurrent_window_configuration): Use allocate_other_vector.
120
121 * lisp.h (allocate_vectorlike): Remove prototype.
122 (allocate_vector, allocate_other_vector, allocate_frame)
123 (allocate_window, allocate_process, allocate_hash_table):
124 Add prototypes.
125
126 * fns.c (Fdelete, larger_vector): Use allocate_vector.
127 (make_hash_table, copy_hash_table): Use allocate_hash_table.
128
063af457
KH
1292001-02-27 Kenichi Handa <handa@etl.go.jp>
130
131 * coding.c (ccl_coding_driver): If ccl->eight_bit_control is zero,
132 treat the produced bytes as a valid multibyte sequence.
133
134 * ccl.c (CCL_WRITE_MULTIBYTE_CHAR): New macro.
135 (ccl_driver) <CCL_WriteMultibyteChar2>: Use
136 CCL_WRITE_MULTIBYTE_CHAR instead of CCL_WRITE_CHAR.
137 <ccl_finish>: Set ccl->eight_bit_control properly.
138
139 * ccl.h (struct ccl_program): New member eight_bit_control.
140
f58c6494
SM
1412001-02-26 Stefan Monnier <monnier@cs.yale.edu>
142
143 * keymap.c (Faccessible_keymaps): Pass `is_metized' to
144 accessible_keymaps_char_table.
145 (accessible_keymaps_char_table): Obey `is_metized'.
146 (where_is_internal, Fwhere_is_internal): Don't confuse int and
147 Lisp_Object.
148
c596c392
GM
1492001-02-26 Gerd Moellmann <gerd@gnu.org>
150
151 * dispnew.c: Check HAVE_TERM_H before including term.h.
152
425de386
AI
1532001-02-24 Andrew Innes <andrewi@gnu.org>
154
155 * makefile.w32-in: Update copyright notice.
156
2ba11bbd
SM
1572001-02-24 Stefan Monnier <monnier@cs.yale.edu>
158
159 * keymap.c (where_is_internal): Accept non-ascii integer prefixes.
160
66c56ed1
KH
1612001-02-24 Kenichi Handa <handa@etl.go.jp>
162
4c1593ce
KH
163 * Makefile.in (lisp): Add international/utf-8.elc.
164
66c56ed1
KH
165 * fontset.c (Fnew_fontset): Fix handling of the case that an
166 element of FONTLIST is a cons of family and registry.
167
796ead7e
JR
1682001-02-23 Jason Rumney <jasonr@gnu.org>
169
170 * w32fns.c (Fx_create_frame): Don't add FRAME_TOOL_BAR_LINES
171 to height unconditionally.
172
173 * w32term.c (x_set_glyph_string_background_width): Extend the
174 background face to the end of the drawing area in the text area,
175 only.
176 (x_insert_glyphs): Call window_box_left to obtain the left
177 x-coordinate of the area to shift.
178
179 * w32menu.c (set_frame_menubar): Run activate-menu-bar-hook with
180 safe_run_hooks.
181
f6839838
AI
1822001-02-22 Andrew Innes <andrewi@gnu.org>
183
184 * makefile.nt ($(BLD)\dired.obj): Remove reference to VMS header
185 files.
186 ($(BLD)\dispnew.obj):
187 ($(BLD)\editfns.obj):
188 ($(BLD)\fileio.obj):
189 ($(BLD)\filelock.obj):
190 ($(BLD)\keyboard.obj):
191 ($(BLD)\w32proc.obj):
192 ($(BLD)\process.obj):
193 ($(BLD)\sysdep.obj): Ditto.
194
195 * makefile.w32-in ($(BLD)/dired.$(O)): Remove reference to VMS
196 header files.
197 ($(BLD)/dispnew.$(O)):
198 ($(BLD)/editfns.$(O)):
199 ($(BLD)/fileio.$(O)):
200 ($(BLD)/filelock.$(O)):
201 ($(BLD)/keyboard.$(O)):
202 ($(BLD)/w32proc.$(O)):
203 ($(BLD)/process.$(O)):
204 ($(BLD)/sysdep.$(O)): Ditto.
205
c224f70b
GM
2062001-02-22 Gerd Moellmann <gerd@gnu.org>
207
51695746
GM
208 * xdisp.c (forward_to_next_line_start): When taking the shortcut
209 at the start of the function, check that the \n in it->c is
210 from the iterator's current position.
211
a61b7058
GM
212 * xdisp.c (handle_single_display_prop): Add parameter
213 DISPLAY_REPLACED_BEFORE_P. If it is non-zero ignore display
214 properties which replace the display of text with something else.
215 (handle_display_prop): Call handle_single_display_prop with
216 additional argument saying if we already replaced text display
217 with something else. Use AREF.
218 (with_echo_area_buffer_unwind_data, display_menu_bar)
219 (decode_mode_spec_coding): Use AREF and ASIZE.
220
3473f362
GM
221 * vms-pp.c, vmsdir.h, vmsmap.c, vmsproc.h, vms-pp.trans, vmsfns.c,
222 * vmspaths.h, vmstime.c, vms-pwd.h, vmsgmalloc.c, vmsproc.c,
223 * vmstime.h: Files removed.
224
2bb58df3
GM
225 * unexencap.c, unexfx2800.c: Files removed.
226
c224f70b
GM
227 * dispnew.c (direct_output_for_insert): Give up if we are showing
228 a message or just cleared the message because we might need to
229 resize the echo area window or display an empty echo area.
230
ffc9ff0c
GM
2312001-02-21 Gerd Moellmann <gerd@gnu.org>
232
0528abe1
GM
233 * xdisp.c (redisplay_internal): Do the
234 mark_window_display_accurate after all windows have been
235 redisplayed because this call resets flags in buffers which are
236 needed for proper redisplay.
237
ffc9ff0c
GM
238 * keyboard.c, minibuf.c, lread.c, fns.c, eval.c: Use
239 display_hourglass_p, start_hourglass, cancel_hourglass instead of
240 the old names.
241
242 * w32term.h (struct x_output): Rename busy_cursor to
243 hourglass_cursor, busy_window to hourglass_window, busy_p to
244 hourglass_p.
245
246 * msdos.h (struct x_output): Rename busy_window to
247 hourglass_window, busy_p to hourglass_p.
248
249 * xterm.h (struct x_output): Rename busy_cursor to
250 hourglass_cursor, busy_window to hourglass_window, busy_p to
251 hourglass_p.
252
253 * xfns.c: Rename everything containing *busy_cursor* and similar
254 to *hourglass*.
255 (syms_of_w32fns): Rename x-busy-pointer-shape to
256 x-hourglass-pointer-shape, display-busy-cursor to
257 display-hourglass, busy-cursor-delay to hourglass-delay.
258
259 * w32fns.c: Rename everything containing *busy_cursor* and similar
260 to *hourglass*.
261 (syms_of_w32fns): Rename x-busy-pointer-shape to
262 x-hourglass-pointer-shape, display-busy-cursor to
263 display-hourglass, busy-cursor-delay to hourglass-delay.
264
265 * xterm.c (XTread_socket): Test x_output's hourglass_p instead
266 of its busy_p flag.
267
268 * dispextern.h (start_hourglass, cancel_hourglass)
269 (display_hourglass_p): Renamed from *busy_cursor*.
270
ab2c5f0a
GM
2712001-02-20 Gerd Moellmann <gerd@gnu.org>
272
d17e49a8
GM
273 * keyboard.c (read_char): When an event from unread-command-events
274 is from the tool or menu bar, set *USE_MOUSE_MENU to 1.
275
fa97adf6
GM
276 * window.c (Fwindow_end): Handle case that WINDOW's buffer is not
277 equal to the current buffer.
278
ab2c5f0a
GM
279 * xdisp.c (setup_echo_area_for_printing): Set truncate_lines to
280 nil, otherwise we're left with truncate_lines t when a message
281 is printed with message-truncate-lines bound to t.
282
aeac019e
GM
2832001-02-19 Gerd Moellmann <gerd@gnu.org>
284
c8bc6f65
GM
285 * window.c (Fmove_to_window_line): Undo last change.
286 (displayed_window_lines): Call line_bottom_y to determine
287 the line's bottom position.
288
289 * dispextern.h (line_bottom_y): Add prototype.
290
291 * xdisp.c (line_bottom_y): New function extracted from
292 pos_visible_p.
293 (pos_visible_p): Use it.
294
980a2d69
GM
295 * keyboard.c (recursive_edit_1): Bind `inhibit-redisplay' and
296 set redisplaying_p to 0 here instead of in Frecursive_edit.
297 (Frecursive_edit): Don't bind `inhibit-redisplay' and don't
298 set redisplaying_p.
299
184d2372
GM
300 * xdisp.c (Qinhibit_menubar_update, inhibit_menubar_update):
301 New variables.
302 (syms_of_xdisp): Initialize new variables.
303 (update_menu_bar): Do nothing if inhibit_menubar_update is set.
304 Specbind `inhibit-menubar-update' when updating the menu bar.
305
65048e97
GM
306 * xmenu.c (set_frame_menubar): Run activate-menu-bar-hook with
307 safe_run_hooks.
308
309 * xdisp.c (update_menu_bar): Run activate-menu-bar-hook with
310 safe_run_hooks.
311
a57c4026
GM
312 * emacs.c (malloc_initialize_hook): Handle case thet `environ'
313 is null.
314
aeac019e
GM
315 * ralloc.c (__morecore) [!SYSTEM_MALLOC]: Move declaration
316 to the start of the file.
317
76846b31
GM
3182001-02-16 Gerd Moellmann <gerd@gnu.org>
319
f3f053f3 320 * window.c (set_window_buffer): Fix last change.
25237df5 321
f3f053f3
GM
322 * window.c (set_window_buffer): Set window's vscroll to 0.
323
dad75588
GM
324 * window.c (coordinates_in_window): Increase width of area
325 where the vertical line can be dragged.
326
c220b753
GM
327 * xterm.c (x_set_glyph_string_background_width): Extend the
328 background face to the end of the drawing area in the text
329 area, only.
330
c56b1c1b
GM
331 * xdisp.c (handle_single_display_prop): Set iterator's position
332 to where the `display' property starts, like for images.
333 (dump_glyph): New function.
334 (dump_glyph_row): Use it. Dump info about marginal areas.
335
336 * dispnew.c (direct_output_for_insert): Recognize more cases where
337 glyphs can be written instead of being inserted.
338
339 * xterm.c (x_insert_glyphs): Call window_box_left to obtain
340 the left x-coordinate of the area to shift.
341
76846b31
GM
342 * dired.c (directory_files_internal): Set result list to nil
343 before retrying.
344
0fc71a77
KH
3452001-02-15 Kenichi Handa <handa@etl.go.jp>
346
347 * ccl.c (ccl_driver) [CCL_ReadMultibyteChar2]: If SRC points an
348 invalid multibyte sequence, treat *SRC as a character of
349 eight-bit-graphic.
350
25078b54
EZ
3512001-02-15 Eli Zaretskii <eliz@is.elta.co.il>
352
353 * textprop.c (Fset_text_properties): Doc fix.
354
8399f8a0
GM
3552001-02-15 Gerd Moellmann <gerd@gnu.org>
356
357 * dispnew.c (update_text_area): Undo change of 2001-01-12.
358
9a2a6f73
DL
3592001-02-14 Dave Love <fx@gnu.org>
360
361 * coding.c: Doc and message fixes.
362
bf853fee
AI
3632001-02-14 Andrew Innes <andrewi@gnu.org>
364
365 * w32fns.c (w32_wnd_proc) <WM_GETMINMAXINFO>: Allow resizing the
366 Emacs frame above the screen size.
367
78c663d8
GM
3682001-02-14 Gerd Moellmann <gerd@gnu.org>
369
370 * xdisp.c (reseat_1): Set iterator's end_charpos to ZV.
371
7cc9f69f
GM
3722001-02-13 Gerd Moellmann <gerd@gnu.org>
373
0a411995
GM
374 * insdel.c (del_range_1, del_range_byte, del_range_both): Handle
375 case that TO ends up beyond ZV after running before-change-functions.
376
5ddc1b75
GM
377 * window.c (window_loop) <GET_BUFFER_WINDOW>: Prefer to return
378 the selected window if it is showing the buffer in question.
379
7cc9f69f
GM
380 * dired.c (directory_files_internal): Initialize errno.
381 (toplevel): Include errno.h.
382
2e6621ca
GM
3832001-02-13 Kenichi Handa <handa@etl.go.jp>
384
385 * xfaces.c (best_matching_font): New parameter width_ratio.
386 Multiply avgwidth by width_ratio.
387 (choose_face_font): Call best_matching_font with width_ratio
388 calculated from the column width of C.
389
60222d69
AI
3902001-02-12 Andrew Innes <andrewi@gnu.org>
391
392 The following changes are to draw box lines inside characters area
393 if line-width is negative.
394
395 * w32term.c (x_produce_image_glyph): Pay attention to the case that
396 face->box_line_width is negative.
397 (x_produce_stretch_glyph): Likewise.
398 (x_produce_glyphs): Likewise.
399 (x_estimate_mode_line_height): Likewise.
400 (x_draw_glyph_string_background): Likewise.
401 (x_draw_glyph_string_foreground): Likewise.
402 (x_draw_composite_glyph_string_foreground): Likewise.
403 (x_draw_glyph_string_box): Likewise.
404 (x_draw_image_foreground): Likewise.
405 (x_draw_image_relief): Likewise.
406 (x_draw_image_foreground_1): Likewise.
407 (x_draw_image_glyph_string): Likewise.
408
9804b846
KH
4092001-02-09 Kenichi Handa <handa@etl.go.jp>
410
411 The following changes are to draw box lines inside characters area
412 if line-width is negative.
413
414 * xterm.c (x_produce_image_glyph): Pay attention to the case that
415 face->box_line_width is negative.
416 (x_produce_stretch_glyph): Likewise.
417 (x_produce_glyphs): Likewise.
418 (x_estimate_mode_line_height): Likewise.
419 (x_draw_glyph_string_background): Likewise.
420 (x_draw_glyph_string_foreground): Likewise.
421 (x_draw_composite_glyph_string_foreground): Likewise.
422 (x_draw_glyph_string_box): Likewise.
423 (x_draw_image_foreground): Likewise.
424 (x_draw_image_relief): Likewise.
425 (x_draw_image_foreground_1): Likewise.
426 (x_draw_image_glyph_string): Likewise.
427
428 * xfaces.c (Finternal_set_lisp_face_attribute): The value of :box
429 and :line-width can be negative.
430 (realize_x_face): The value of attrs[LFACE_BOX_INDEX] can be
431 negative.
432
49be9f70
JR
4332001-02-09 Jason Rumney <jasonr@gnu.org>
434
435 * w32term.c (w32_encode_char): Treat eight bit graphic and control
436 characters the same as ASCII and latin-1.
437 (x_display_and_set_cursor): Check for the focus frame's selected
438 window instead of selected_window.
439 (x_after_update_window_line): Don't clear if frame's internal
440 border width is zero.
441 (x_new_font): Don't change a tooltip's size.
442 (w32_initialize): Set char_ins_del_ok to 1.
443
444 * w32fns.c (Fx_show_tip): Fix calls to make_number.
445 (x_set_font): If font hasn't changed, avoid recomputing
446 faces and other things.
447 (x_set_tool_bar_lines): Do nothing if frame is
448 minibuffer-only,
449 (Fx_create_frame): Add the tool bar height to the frame
450 height.
451 (x_create_tip_frame): Prevent changing the tooltip's
452 background color by specifying a color for the default font
453 in .Xdefaults.
454 (Qcancel_timer): New variable.
455 (syms_of_w32fns): Initialize and staticpro it.
456 (Fx_hide_tip, Fx_show_tip): Use it.
457 (Fx_show_tip): Make sure to set tip_timer to nil when canceling
458 the timer.
459 (toplevel): Lisp code for generating parts of syms_of_w32fns removed.
460
461 * w32.c (init_environment): Duplicate local string before putenv.
462
555e35d2
SZ
4632001-02-09 ShengHuo ZHU <zsh@cs.rochester.edu>
464
465 * charset.c (Fstring): A typo.
466
19c92c94
KH
4672001-02-09 Kenichi Handa <handa@etl.go.jp>
468
e47a1c33
KH
469 * charset.c (Fstring): If all arguments are less than 256, return
470 a unibyte string.
471
472 * editfns.c (Fchar_to_string): If CHARACTER is less than 256,
473 return a unibyte string.
474
19c92c94
KH
475 * coding.c (code_convert_region): After detecting a coding, if
476 nothing found, set coding->composing to COMPOSITION_NO.
477 (decode_coding_string): Likewise.
478
d8e675f5
SM
4792001-02-08 Stefan Monnier <monnier@cs.yale.edu>
480
481 * w32term.c (w32_set_scroll_bar_thumb): Use `double' for `range'
482 to avoid overflow.
483
bd503487
KH
4842001-02-07 Kenichi Handa <handa@etl.go.jp>
485
486 * charset.c (parse_str_to_multibyte): New function.
487
488 * charset.h (parse_str_to_multibyte): Extern it.
489
490 * print.c (print_string): If we are going to print a unibyte
491 string into a multibyte buffer, convert the string to multibyte by
492 str_to_multibyte.
493
a8370d72
AI
4942001-02-06 Andrew Innes <andrewi@gnu.org>
495
496 * w32xfns.c (select_palette): Do nothing if palette hasn't yet
497 been created. It seems we can get sent window messages such as
498 WM_ERASEBKGND before we properly update a frame.
499
c363a1d6
GM
5002001-02-06 Gerd Moellmann <gerd@gnu.org>
501
502 * dispnew.c (update_frame_line): Rename parameter FRAME to F.
503 Avoid some unnecessary cursor positioning.
504
a08332c0
GM
5052001-02-05 Gerd Moellmann <gerd@gnu.org>
506
507 * xfaces.c (split_font_name): Compute numeric value of
508 XLFD_AVGWIDTH.
509 (LFACE_AVGWIDTH): New macro.
510 (LFACEP): Use AREF.
511 (check_lface_attrs): Check LFACE_AVGWIDTH.
512 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
513 (set_lface_from_font_name): Set LFACE_AVGWIDTH.
514 (merge_face_vectors): Check LFACE_AVGWIDTH.
515 (Finternal_make_lisp_face): Use AREF.
516 (xm_set_menu_resources_from_menu_face)
517 (xl_set_menu_resources_from_menu_face): Check LFACE_AVGWIDTH.
518 (Finternal_lisp_face_empty_p): Use AREF.
519 (lface_same_font_attributes_p): Compare LFACE_AVGWIDTH.
520 (better_font_p, exact_face_match_p): Add parameter AVGWIDTH.
521 Compare average widths..
522 (best_matching_font): Arrange for comparing average widths.
523
524 * dispextern.h (enum lface_attribute_index): Add
525 LFACE_AVGWIDTH_INDEX (invisible from Lisp).
526
5cb3c8d4
DL
5272001-02-05 Dave Love <fx@gnu.org>
528
529 * puresize.h: Revert last change following loadup.el change.
530
193fba87
AI
5312001-02-05 Andrew Innes <andrewi@gnu.org>
532
533 * makefile.w32-in ($(EMACS)): Use $(THISDIR) instead of . in
534 invocation of temacs, to work with Windows 2000.
535 (bootstrap-emacs): Ditto.
536
e16f52ce
GM
5372001-02-05 Gerd Moellmann <gerd@gnu.org>
538
7a58ab59
GM
539 * xterm.c (x_display_and_set_cursor): Check for the focus
540 frame's selected window instead of selected_window.
541
e89aaabd
GM
542 * xdisp.c (try_scrolling): If point is in the line below the
543 window, make sure to move the iterator at least a canonical
544 char height down.
545
e16f52ce
GM
546 * window.c (Fmove_to_window_line): Don't add 1 if window is
547 vscrolled.
548
789ce875
KH
5492001-02-05 Kenichi Handa <handa@etl.go.jp>
550
551 * ccl.c (CCL_WRITE_CHAR): Check if CH is valid or not. If
552 invalid, execute CCL_INVALID_CMD.
553 (ccl_driver): If the CCL program is terminated because of
554 CCL_STAT_INVALID_CMD, copy the remaining source data to the
555 destination instead of throwing them away.
556
20b28f82
GM
5572001-02-02 Gerd Moellmann <gerd@gnu.org>
558
79fb38c0
GM
559 * xfns.c (x_set_font): If font hasn't changed, avoid recomputing
560 faces and other things.
561
20b28f82
GM
562 * xdisp.c (get_next_display_element): Fix case of empty
563 display table entry.
564
5a72551e
EZ
5652001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
566
eb24d0bf
EZ
567 * editfns.c (Fconstrain_to_field): Doc fix.
568
6a3f48c7
EZ
569 * xfaces.c (Fclear_face_cache): Rename the `thorougly' argument
570 into `thoroughly', to make it consistent with the doc string.
571
5a72551e
EZ
572 * window.c (Fenlarge_window, Fshrink_window): Doc fix.
573
01acdb05
GM
5742001-02-01 Gerd Moellmann <gerd@gnu.org>
575
0353b28f
GM
576 * search.c (search_buffer): Call set_search_regs with a byte
577 position, not a character position.
578
01acdb05
GM
579 * xfns.c (x_set_tool_bar_lines): Do nothing if frame is
580 minibuffer-only,
581
e86b5133
EZ
5822001-02-01 Eli Zaretskii <eliz@is.elta.co.il>
583
584 * frame.c (Fmodify_frame_parameters): Doc fix.
585
7442878f
GM
5862001-01-31 Gerd Moellmann <gerd@gnu.org>
587
01acdb05
GM
588 * frame.h (EMACS_FRAME_H_INCLUDED): Use an include blocker
589 identifier which is not reserved by Standard C.
590
7442878f
GM
591 * frame.h (FRAME_RIGHT_SCROLL_BAR_WIDTH): New define.
592
593 * window.c (enum window_part): New enumeration.
594 (Qleft_fringe, Qright_fringe): Replace Qleft_bitmap_area and
595 Qright_bitmap_area.
596 (coordinates_in_window): Return an enumerator from enum
597 window_part. Fix handling of right scroll bar.
598 (Fcoordinates_in_window_p): Doc fix. Return `left-fringe' and
599 `right-fringe' instead of `left-bitmap-area' and
600 `right-bitmap-area'. Use enumerators from enum window_part
601 instead of hard-coded integers.
602 (check_window_containing, window_from_coordinates): Use
603 enumerators from enum window_part instead of hard-coded integers.
604 (syms_of_window): Replace Qleft_bitmap_area and
605 Qright_bitmap_area.with Qleft_fringe and Qright_fringe.
606
7c132cba
EZ
6072001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
608
609 * editfns.c (Fformat_time_string): Doc fix.
610
c359dd9e
SM
6112001-01-31 Stefan Monnier <monnier@cs.yale.edu>
612
613 * keymap.c (Fwhere_is_internal): Use the first valid binding
614 if no ascii binding is found (when firstonly is t).
615
ce070307
GM
6162001-01-31 Gerd Moellmann <gerd@gnu.org>
617
b4f30ec5
GM
618 * window.c (Fscroll_right, Fscroll_left): Use interactive_p
619 instead of Finteractive_p.
620
621 * lisp.h (interactive_p): Add prototype.
622
623 * eval.c (interactive_p): New function.
624 (Finteractive_p): Use it.
625
ce070307
GM
626 * alloc.c (Fmake_list): Add a QUIT in the loop; unroll the loop.
627
f57b6e64
DL
6282001-01-31 Dave Love <fx@gnu.org>
629
d61c7afe
DL
630 * .gdbinit (hook-run): Define to run xreload.
631
f57b6e64
DL
632 * textprop.c (Fset_text_properties): Fix newline in doc string.
633
eef93f99
GM
6342001-01-30 Gerd Moellmann <gerd@gnu.org>
635
636 * xdisp.c (build_desired_tool_bar_string, syms_of_xdisp): Use
637 DEFAULT_TOOL_BAR_BUTTON_MARGIN and DEFAULT_TOOL_BAR_BUTTON_RELIEF.
638
639 * dispextern.h (Vtool_bar_button_margin:): Declare extern.
640 (DEFAULT_TOOL_BAR_BUTTON_MARGIN, DEFAULT_TOOL_BAR_BUTTON_RELIEF)
641 (DEFAULT_TOOL_BAR_IMAGE_HEIGHT): New defines.
642
643 * xfns.c (Fx_create_frame): Add the tool bar height to the frame
644 height.
645
d9c1f6f9
DL
6462001-01-30 Dave Love <fx@gnu.org>
647
648 * bytecode.c (Fbyte_code) <Bgeq>: Add BEFORE_POTENTIAL_GC and
649 AFTER_POTENTIAL_GC.
650
e8f044a0
GM
6512001-01-29 Gerd Moellmann <gerd@gnu.org>
652
653 * bytecode.c (Fbyte_code) <Bcurrent_column>: Add
654 BEFORE_POTENTIAL_GC and AFTER_POTENTIAL_GC.
655
8e1db7b3
EZ
6562001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
657
658 * textprop.c (Fset_text_properties): Doc fix.
659
4eefd9d2
GM
6602001-01-29 Gerd Moellmann <gerd@gnu.org>
661
662 * xdisp.c (forward_to_next_line_start): Remove xassert.
663
fccb8288
EZ
6642001-01-29 Jason Rumney <jasonr@gnu.org>
665
4eefd9d2 666 * w32term.c (x_draw_row_bitmaps): Delay obtaining HDC to avoid
fccb8288
EZ
667 returning without releasing it.
668
76581eab
KH
6692001-01-29 Kenichi Handa <handa@etl.go.jp>
670
671 * w32fns.c (w32_font_match): Allocate three more bytes to regex
672 for '^', '$', and '\0'.
673
83a96b4d
AC
6742001-01-28 Andrew Choi <akochoi@i-cable.com>
675
5604ec34
AC
676 * fontset.c (fontset_pattern_regexp): Allocate three more bytes to
677 regex for '^', '$', and '\0'.
678
83a96b4d
AC
679 * alloc.c (allocate_string) [macintosh]: Call check_string_bytes
680 only if current_sblock has been initialized.
681
682 * frame.c (Fdelete_frame) [macintosh]: Allow deletion of initial
683 terminal frame even if it is the only visible frame.
684
c09a6440
KH
6852001-01-28 Kenichi Handa <handa@etl.go.jp>
686
687 * fontset.c (font_family_registry): Even if FONTNAME conform to
688 XLFD, if it specifies other fields than family and registry,
689 return FONTANME. New argument FORCE if nonzero cancel that
690 feature.
691 (fontset_font_pattern): Call font_family_registry with FORCE 1 for
692 a signle byte character. Don't set FAMILY part to nil here. It
693 is handled by the caller choose_face_font.
694 (Fnew_fontset): Call font_family_registry with FORCE 0.
695 (Fset_fontset_font): Likewise.
696
4dcd74e6
GM
6972001-01-27 Gerd Moellmann <gerd@gnu.org>
698
699 * xdisp.c (display_line): Don't treat a newline as fitting
700 on the line.
701
d2906bf8
GM
7022001-01-26 Gerd Moellmann <gerd@gnu.org>
703
0130fe1a
GM
704 * window.c (size_window): Set the window's orig_top to nil when
705 changing heights, so that a future shrink_mini_window won't
706 restore a bogus height.
707
550f0e6a
GM
708 * frame.c (do_switch_frame): If selected frame has a mini-window,
709 resize that to exact size.
710
b7b20fbd
GM
711 * dispnew.c (adjust_glyph_matrix): Always clear desired matrices.
712
a47b7816
GM
713 * xdisp.c (display_line): Simplify check for glyphs fitting
714 entirely in the line.
715
d2906bf8
GM
716 * xfns.c (xic_style): New variable.
717 (create_frame_xic): Move static variable to global scope for
550f0e6a 718 the case that `static' gets defined away.
d2906bf8 719
73df2b1e
KH
7202001-01-26 Kenichi Handa <handa@etl.go.jp>
721
722 * coding.c (decode_coding): Set a flag for inhibiting
723 inconsistent eol.
724 (code_convert_region): Always set saved_coding_symbol.
725 (decode_coding_string): Likewise. Update coding->symbol when we
726 encounter a inconsistent eol by the same way as
727 code_convert_region.
728
6613cfc4
GM
7292001-01-25 Gerd Moellmann <gerd@gnu.org>
730
c5e6e06b
GM
731 * xfns.c (x_set_tool_bar_lines): Use x_clear_area instead of
732 XClearArea.
733
734 * xterm.c (x_after_update_window_line): Don't clear if frame's
735 internal border width is zero.
736 (x_clear_area): New function.
737 (x_after_update_window_line, x_clear_end_of_line)
738 (x_scroll_bar_create, x_scroll_bar_set_handle)
739 (XTset_vertical_scroll_bar, x_erase_phys_cursor): Use x_clear_area
740 instead of XClearArea.
741
742 * xterm.h (x_clear_area): Add prototype.
743
6613cfc4
GM
744 * xfns.c (Fx_file_dialog): Remove a workaround for Lesstif
745 which doesn't seem necessary anymore with Lesstif 0.92.
746
650cc6cc
DL
7472001-01-25 Dave Love <fx@gnu.org>
748
34ac3367
DL
749 * puresize.h (BASE_PURESIZE): Up to 720000.
750
650cc6cc
DL
751 * keymap.c (Fwhere_is_internal): Declare gcpro3, gcpro4.
752
5e37dc22
GM
7532001-01-25 Gerd Moellmann <gerd@gnu.org>
754
e1e441f9
GM
755 * xdisp.c (echo_area_display): Don't call redisplay_internal
756 when Emacs is shutting down. We can't run hooks etc. that
757 would be necessary to do a redisplay.
758
5e37dc22
GM
759 * lread.c (read_integer): Use type EMACS_INT instead of int.
760
0fb94c7f
EZ
7612001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
762
763 * ccl.c (ccl_driver): Fix last change.
764
e3778624
KH
7652001-01-25 Kenichi Handa <handa@etl.go.jp>
766
767 * ccl.h (sturct ccl_program): New member suppress_error.
768
bb264518 769 * ccl.c (ccl_driver): If ccl->suppress_error is nonzero, don't
e3778624
KH
770 insert error message to the output.
771 (setup_ccl_program): Initialize ccl->suppress_error to 0.
772
773 * coding.h (struct coding_system): New member suppress_error.
774
775 * coding.c (ccl_coding_driver): Setup ccl->suppress_error.
776 (Fset_terminal_coding_system_internal): Set the member
777 suppress_error to 1.
778 (Fset_safe_terminal_coding_system_internal): Likewise.
779
245ed2b1
SM
7802001-01-24 Stefan Monnier <monnier@cs.yale.edu>
781
782 * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
783 as if it was a `charset'.
784
f9aaedb6
GM
7852001-01-24 Gerd Moellmann <gerd@gnu.org>
786
787 * keymap.c (Fwhere_is_internal): Don't nreverse the cached
788 value in where_is_cache; the next lookup in the cache returns
789 something bogus if we do.
790
c3902c3e
EZ
7912001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
792
793 * xdisp.c (syms_of_xdisp) <Stool_bar_lines_needed>: Don't defsubr
794 if HAVE_WINDOW_SYSTEM isn't defined.
795
3497f73e
GM
7962001-01-24 Gerd Moellmann <gerd@gnu.org>
797
e7e41584
GM
798 * fns.c (sweep_weak_table): Fix code taking items out of
799 the hash collision chain. Some cleanup.
800
3497f73e
GM
801 * xterm.c (x_new_font): Don't change a tooltip's size.
802
803 * xfns.c (x_create_tip_frame): Prevent changing the tooltip's
804 background color by specifying a color for the default font
805 in .Xdefaults.
806
3d48e687
KH
8072001-01-24 Kenichi Handa <handa@etl.go.jp>
808
96531b20
KH
809 * ccl.c (CCL_READ_CHAR): Change the argument name from r to REG as
810 a workaround for SunOS 4's cc.
811 (CCL_CALL_FOR_MAP_INSTRUCTION): Use "if (1)..." not "do {...".
812 (CCL_SUCCESS, CCL_SUSPEND, CCL_INVALID_CMD): Likewise.
813 (ccl_driver) <CCL_ReadMultibyteChar2>: Remove unnecessay "do"
814 statement.
3d48e687 815
a30629d2
GM
8162001-01-23 Gerd Moellmann <gerd@gnu.org>
817
818 * xterm.c (x_set_window_size_1): New function extracted from
819 x_set_window_size.
820 (x_set_window_size): Use it.
821 (x_set_window_size) [USE_X_TOOLKIT]: Handle case that window
822 doesn't have a widget, like tooltips.
823
5a43decf
EZ
8242001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
825
826 * window.c (syms_of_window) <scroll-preserve-screen-position>: Doc
827 fix.
828
b0e98867
KH
8292001-01-23 Kenichi Handa <handa@etl.go.jp>
830
831 * fns.c (Fset_char_table_default): Fix to make sub char-table
832 correctly.
833
50606b4c
GM
8342001-01-22 Gerd Moellmann <gerd@gnu.org>
835
cb2ddc53 836 * xdisp.c (build_desired_tool_bar_string): Make sure we have
a30629d2 837 a desired tool bar string, even if there are no tool bar
cb2ddc53
GM
838 items.
839
57c28064
GM
840 * xdisp.c (Ftool_bar_lines_needed): New function.
841 (syms_of_xdisp): Defsubr it.
842
50606b4c
GM
843 * editfns.c (Fformat): Don't extend text properties from arguments
844 to padding chars in the result.
845
2f169c38
EZ
8462001-01-20 Eli Zaretskii <eliz@is.elta.co.il>
847
848 * s/msdos.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS.
849
0f32f023
AI
8502001-01-20 Andrew Innes <andrewi@gnu.org>
851
852 * w32term.c (w32_ring_bell): Only support visible bell on w32
853 frames.
854 (w32_initialize): Don't set term hooks that aren't actually needed
855 in windowed mode.
856
857 * xfaces.c (realize_default_face):
858 (realize_face):
859 (realize_tty_face): Remove references to FRAME_W32_CONSOLE_P.
860
861 * xdisp.c (handle_single_display_prop): Remove references to
862 FRAME_W32_CONSOLE_P.
863
864 * dispnew.c (Fredraw_frame): Remove reference to
865 FRAME_W32_CONSOLE_P.
866
867 * frame.h (output_method): Remove output_w32_console method.
868 (FRAME_W32_CONSOLE_P): Remove macro.
869
870 * frame.c (Qw32_console): Remove variable.
871 (Fframep): Remove references to it.
872 (syms_of_frame): Ditto.
873 (Fframe_parameters): Remove references to FRAME_W32_CONSOLE_P.
874
875 * term.c (FRAME_TERMCAP_P) [WINDOWSNT]: Reinstate original
876 redefinition.
877
7173eada
KH
8782001-01-20 Kenichi Handa <handa@etl.go.jp>
879
880 * editfns.c (Fformat): Use lisp_string_width instead of strwidth.
881
755b45ce
AI
8822001-01-19 Andrew Innes <andrewi@gnu.org>
883
884 * w32.c (init_environment): Add a version-independent site-lisp
885 directory to EMACSLOADPATH, after the version dependent one.
886
0a949811
GM
8872001-01-19 Gerd Moellmann <gerd@gnu.org>
888
8501998a
GM
889 * editfns.c (Fbuffer_substring): Doc fix.
890
0a949811
GM
891 * xdisp.c (message_dolog, message2, message2_nolog): Rename
892 parameter LEN to NBYTES.
893
e6ebcbbe
KH
8942001-01-19 Kenichi Handa <handa@etl.go.jp>
895
200ecca2
KH
896 * charset.c (strwidth): Use c_string_width.
897 (c_string_width): New function.
898 (lisp_string_width): New arguments PRECISION, NCHARS, NBYTES.
899 Caller changed.
900
901 * charset.h (c_string_width, lisp_string_width): Extern them.
902
903 * doprnt.c (doprnt1): Get byte length of Lisp string correctly.
904
e6ebcbbe
KH
905 * indent.c (check_composition): Check validity of composition.
906
200ecca2
KH
907 * xdisp.c (store_frame_title): Pay attention to width of non-ASCII
908 characters by calling c_string_width.
909 (x_consider_frame_title): Get byte length of frame tile string
910 correctly.
911 (display_mode_element): Pay attention to width of non-ASCII
912 characters by calling strwidth.
913
8692ca92
GM
9142001-01-18 Gerd Moellmann <gerd@gnu.org>
915
8962e303
GM
916 * xfns.c (Qcancel_timer): New variable.
917 (syms_of_xfns): Initialize and staticpro it.
918 (Fx_hide_tip, Fx_show_tip): Use it.
919 (Fx_show_tip): Make sure to set tip_timer to nil when canceling
920 the timer.
921 (toplevel): Lisp code for generating parts of syms_of_xfns removed.
922
91523be9
GM
923 * window.c (Fwindow_live_p): Use WINDOW_LIVE_P.
924
925 * window.h (WINDOW_LIVE_P): New macro.
926
b0b7ed0e
GM
927 * window.c (window_size_fixed): New variable.
928 (syms_of_window): Add a DEFVAR_BOOL for window-size-fixed, for
929 the doc string.
930
06bccf8e
GM
931 * eval.c (specbind): If binding a per-buffer variable which
932 doesn't have a buffer-local value in the current buffer, change
933 the global value by changing the value of the symbol bound in all
934 buffers not having their own value, to make it consistent with
935 what happens with other buffer-local variables.
936
8692ca92
GM
937 * xterm.c (x_initialize): Set char_ins_del_ok to 1.
938
939 * xdisp.c (forward_to_next_line_start): Stop at end of buffer
940 when searching for a newline.
941
bb3a3b50
KH
9422001-01-18 Kenichi Handa <handa@etl.go.jp>
943
944 * xdisp.c (display_string): Fix previous change.
945
c2cc16fa
JR
9462001-01-18 Jason Rumney <jasonr@gnu.org>
947
948 * w32term.c (x_produce_stretch_glyph): Only use Qspace when
949 GLYPH_DEBUG is defined.
950 (x_produce_glyphs): Don't xassert `it->descent > 0'; this isn't
951 true for images with `:ascent 100'.
952 (x_set_mouse_face_gc): If the last used mouse face has gone in the
953 meantime, use face MOUSE_FACE_ID.
954 If first glyph isn't a character glyph, use the ASCII NUL
955 character to determine the face.
956 (expose_area): Do not treat left margin specially.
957 (note_mode_line_highlight): If no local_map, check global keymap.
958 (note_mouse_highlight): Initialize overlay.
959 (clear_mouse_face): Don't return if tip_frame is
960 non-nil.
961 (show_scroll_bars): Remove unused function.
962 (w32_read_socket) [WM_KILLFOCUS]: Set help_echo to Qnil.
963 (x_draw_bar_cursor): Remove extra test for out of bounds cursor.
964 Clip to row.
965 (x_erase_phys_cursor): Don't apply XWINDOW to variable that may be
966 nil.
967 (x_free_frame_resources): Unload relief colors.
968
9c11f79e
GM
9692001-01-17 Gerd Moellmann <gerd@gnu.org>
970
3aec8722
GM
971 * xdisp.c (forward_to_next_line_start): Avoid calling
972 get_next_display_element when the newline is already found. This
973 may change the iterator's position, when its current position is
974 equal to the iterator's stop_charpos.
975
f3ffc2c3
GM
976 * dispnew.c (direct_output_for_insert): If char_ins_del_ok is
977 zero, use this method only at the end of a line.
978
a86110a8
GM
979 * xfaces.c (x_face_list_fonts): Don't BLOCK_INPUT around the
980 call to x_list_fonts. Call x_list_fonts with SIZE -1 only
981 if SCALABLE_FONTS_P is set.
982
d26d6fd9
GM
983 * xfaces.c (x_face_list_fonts): Call x_list_fonts with SIZE -1,
984 so that scalable fonts are included.
985
9c11f79e
GM
986 * xterm.c (x_list_fonts): Allow scalable fonts if SIZE is < 0,
987 In the cache, use a key containing the information if scalable
988 fonts are included.
989 (x_load_font): Adapt to change of keys in the font cache.
990
9912001-01-17 Kim F. Storm <storm@filanet.dk>
992
d26d6fd9
GM
993 * xfaces.c (x_face_list_fonts): Use x_list_fonts instead of
994 XListFonts to take advantage of font caching.
995
9c11f79e
GM
996 * xterm.c (x_list_fonts): Ensure caching font information when
997 called for a null frame, which is the case frequently when Emacs
998 starts.
999
51446987
GM
10002001-01-17 Gerd Moellmann <gerd@gnu.org>
1001
f864120f
GM
1002 * xfns.c (QCconversion): Replaces QCalgorithm.
1003
1004 * w32fns.c (QCconversion): Replaces QCalgorithm. Update copyright.
1005
1006 * xdisp.c (build_desired_tool_bar_string): Use :conversion instead
1007 of :algorithm.
1008
e37d1417
GM
1009 * xdisp.c (redisplay_tool_bar): Change tool bar's height when
1010 not everything could be displayed.
1011
51446987
GM
1012 * line.h, x-list-font.c: Files removed because unused.
1013
9ad4f3e5
AI
10142001-01-17 Andrew Innes <andrewi@gnu.org>
1015
1016 * dired.c (directory_files_internal): Convert result from readdir
1017 to a unibyte string initially, to avoid possible misinterpretation
1018 of some bytes as the internal form of Emacs characters.
1019
2eda09b5
KH
10202001-01-17 Kenichi Handa <handa@etl.go.jp>
1021
1022 * fns.c (concat): Be sure to avoid putting the same `composition'
1023 property on the adjacent regions.
1024
826f3788
GM
10252001-01-16 Gerd Moellmann <gerd@gnu.org>
1026
f251459d
GM
1027 * window.c (Fset_window_hscroll): Don't set window's min_hscroll
1028 here.
1029 (Fscroll_right, Fscroll_left): Set it here instead, if called
1030 interactively.
1031
d57b83b3
GM
1032 * buffer.c (Fset_buffer_modified_p): Set buffer's
1033 prevent_redisplay_optimizations_p flag.
1034
826f3788
GM
1035 * dispnew.c, callproc.c, fns.c, keyboard.c, process.c, sunfns.c,
1036 * sysdep.c, vmsproc.c, xselect.c: Call
1037 redisplay_preserve_echo_area with additional arg.
1038
1039 * dispextern.h, lisp.h (redisplay_preserve_echo_area): Change
1040 prototype.
1041
1042 * xdisp.c (redisplay_preserve_echo_area): Add parameter
1043 FROM_WHERE, for debugging.
1044
261d788b
KH
10452001-01-16 Kenichi Handa <handa@etl.go.jp>
1046
1047 * ccl.c (Fregister_ccl_program): Handle the return value of
1048 resolve_symbol_ccl_program correctly.
bda6b481
KH
1049 (CCL_Extension): Fix typo (originally CCL_Extention). Caller
1050 changed.
261d788b 1051
bccee4f2
GM
10522001-01-15 Gerd Moellmann <gerd@gnu.org>
1053
e4ded23c
GM
1054 * xterm.c (x_set_mouse_face_gc): If the last used mouse face
1055 has gone in the meantime, use face MOUSE_FACE_ID.
1056
ae24cb3b
GM
1057 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: If
1058 x_display_info_for_display returns null, don't try to close
1059 the display; we didn't open it.
1060
bccee4f2
GM
1061 * dispnew.c (save_or_restore_current_matrices): Function removed.
1062 (save_current_matrix, restore_current_matrix): New functions.
1063 (adjust_frame_glyphs_for_frame_redisplay): Use them to save and
1064 restore the frame's current matrix. Due to the glyph pointer
1065 setup done in adjust_glyph_matrix, there is no easy way to make
1066 saving the current matrix in the desired matrix generally correct,
1067 so don't try it.
1068
ebeccffa
KH
10692001-01-15 Kenichi Handa <handa@etl.go.jp>
1070
1071 * xdisp.c (insert_left_trunc_glyphs): Overwrite padding glyphs by
1072 truncation glyphs.
1073 (display_line): Optimize for wide characters.
e4ded23c 1074 (display_string): Don't try to display a multi-column character
ebeccffa
KH
1075 partially. On ttys, produce more than one truncation glyph for
1076 multi-column characters that don't fit on the line.
1077
64388126
KH
10782001-01-13 Kenichi Handa <handa@etl.go.jp>
1079
1080 * md5.c (WORDS_BIG_ENDIAN) [__BYTE_ORDER == __BIG_ENDIAN]: Define
1081 it instead of WORDS_BIGENDIAN. Caller changed.
1082
8edb0a6f
JR
10832001-01-13 Jason Rumney <jasonr@gnu.org>
1084
1085 * w32fns.c (Fimage_size, image_ascent, lookup_image)
1086 (IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR, parse_image_spec)
1087 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
1088 (tiff_format, gif_format, gs_format): Adapt to change of image
1089 margins.
1090
1091 * w32term.c (x_produce_image_glyph, x_draw_image_foreground)
1092 (x_draw_image_relief, x_draw_image_foreground_1)
1093 (x_draw_image_glyph_string): Adapt to change of image margins.
1094
1095 * w32.c (init_environment, sys_shutdown, sys_pipe): Remove unused
1096 variables.
1097
1098 * w32bdf.c (search_file_line, get_cached_font_char)
1099 (cache_char_offset, create_offscreen_bitmap): Remove unused variables.
1100
1101 * w32inevt.c (w32_console_toggle_lock_key): Add parentheses.
1102
1103 * w32fns.c (x_to_w32_color, x_set_icon_name, xlfd_strip_height)
1104 (w32_list_synthesized_fonts, lookup_image, Fx_file_dialog)
1105 (Fw32_send_sys_command): Remove unused variables.
1106 (w32_msg_pump): Add parentheses.
1107
1108 * w32term.c (w32_fill_rect, w32_read_socket, x_bitmap_icon)
1109 (x_new_fontset, x_calc_absolute_position, x_iconify_frame):
1110 Add parentheses.
1111
4956d1ef
GM
11122001-01-12 Gerd Moellmann <gerd@gnu.org>
1113
b30623be
GM
1114 * xdisp.c (Vtool_bar_button_margin): Replaces tool_bar_button_margin.
1115 (build_desired_tool_bar_string): Handle Vtool_bar_button_margin
1116 being a pair of margins.
1117 (syms_of_xdisp): Change DEFVAR_INT of tool-bar-button-margins
1118 to DEFVAR_LISP. Extend doc.
1119
1120 * xfns.c (Fimage_size, image_ascent): Adapt to the change of image
1121 margins.
1122 (lookup_image): If `:margin MARGIN' is specified, and MARGIN is a
1123 pair of integers `(X . Y)', use X for the horizontal and Y for the
1124 vertical margin.
1125 (IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR): New enumerator.
1126 (parse_image_spec): Check it.
1127 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
1128 (tiff_format, gif_format, gs_format): Use
1129 IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR for :margin.
1130
1131 * xterm.c (x_produce_image_glyph, x_draw_image_foreground)
1132 (x_draw_image_relief, x_draw_image_foreground_1)
1133 (x_draw_image_glyph_string): Adapt to the change of image margins.
1134
1135 * dispextern.h (struct image): Replace member `margin' with
1136 `hmargin' and `vmargin'.
1137
4554cc79
GM
1138 * xdisp.c (Fdump_tool_bar_row) [GLYPH_DEBUG]: Add parameters ROW
1139 and GLYPHS.
1140
1141 * dispnew.c (update_text_area): Put code which decrements the
1142 stop position when the row's face extends to the end of the
3bffc665 1143 line in #if 0.
4554cc79 1144
3cccce8d
GM
1145 * xfns.c (x_set_mouse_color): Fix color allocation.
1146
4956d1ef
GM
1147 * keyboard.c: Call get_local_map with new argument list.
1148
1149 * intervals.c (get_local_map): Change TYPE to Lisp_Object.
1150
1151 * intervals.h (enum map_property): Removed.
1152 (get_local_map): Change prototype.
1153
1154 * keymap.c: Call get_local_map with new argument list.
1155 (Fwhere_is_internal): Rename parameter XKEYMAP to KEYMAP.
1156
2c2ff7f2
GM
11572001-01-11 Gerd Moellmann <gerd@gnu.org>
1158
a23887b9
GM
1159 * xdisp.c (build_desired_tool_bar_string): Correct the computation
1160 of the size needed for the tool bar string. For the last image,
1161 use a `display' property that reaches to the end of the string.
1162
a7ee2d2e
GM
1163 * xselect.c (selection_request_dpyinfo): New variable.
1164 (x_handle_selection_request): Set it.
1165 (x_selection_request_lisp_error): Don't call
1166 x_decline_selection_request if selection request's display has
1167 been closed.
1168
2c2ff7f2
GM
1169 * xfaces.c (x_free_colors, x_free_dpy_colors) [DEBUG_X_COLORS]: Do
1170 the unregister_colors before calling XFreeColors.
1171
457b792c
GM
11722001-01-10 Dave Love <fx@gnu.org>
1173
1174 * Makefile.in (${etc}DOC): Depend on ${shortlisp} and
1175 ${SOME_MACHINE_LISP}, not ${lisp}.
1176
c1efd260
GM
11772001-01-10 Gerd Moellmann <gerd@gnu.org>
1178
a98b5ed9 1179 * xdisp.c (display_line): On ttys, produce more than one
4554cc79 1180 truncation glyph for multi-column characters that don't fit on the
a98b5ed9
GM
1181 line.
1182
ac95a621
GM
1183 * xselect.c (x_reply_selection_request): Add a comment.
1184
c1efd260
GM
1185 * xfns.c (Fx_backspace_delete_keys_p): Use XkbGetMap and
1186 XkbGetNames instead of XkbGetKeyboard.
1187
1bfb1345
DL
11882001-01-10 Dave Love <fx@gnu.org>
1189
1190 * sysdep.c (random): Revert the declaration.
1191
38119822
GM
11922001-01-09 Gerd Moellmann <gerd@gnu.org>
1193
35f464a7
GM
1194 * lisp.h (STRING_BYTES) [GC_CHECK_STRING_BYTES]: Call
1195 function string_bytes.
1196 (GC_CHECK_STRING_BYTES): Moved here from alloc.c.
1197
1198 * alloc.c (CHECK_STRING_BYTES) [GC_CHECK_STRING_BYTES]: New macro.
1199 (check_sblock, string_bytes) [GC_CHECK_STRING_BYTES]: New functions.
1200 (check_string_bytes) [GC_CHECK_STRING_BYTES]: Add parameter ALL_P.
1201 (allocate_string) [GC_CHECK_STRING_BYTES]: Always check strings in
1202 the current sblock.
1203 (mark_object) [GC_CHECK_STRING_BYTES]: Use CHECK_STRING_BYTES.
1204 (gc_sweep) [GC_CHECK_STRING_BYTES]: Call check_string_bytes
1205 after sweeping strings, and at the end.
1206 (GC_CHECK_STRING_BYTES): Moved to lisp.h.
1207
38119822
GM
1208 * alloc.c (Fgarbage_collect): Use a record_unwind_protect to
1209 ensure that pop_message is called.
1210
1211 * keyboard.c (Fexecute_extended_command): Use a
1212 record_unwind_protect to ensure that pop_message is called.
1213
1214 * lisp.h (push_message_unwind): Add prototype.
1215
1216 * xdisp.c (push_message_unwind): New function.
1217
1218 * fileio.c (do_auto_save_unwind): Do the pop_message here
1219 instead of in Fdo_auto_save.
1220 (Fdo_auto_save): Don't call pop_message.
1221
f47a9ec4
KR
12222001-01-08 Ken Raeburn <raeburn@gnu.org>
1223
1224 * xfns.c (xpm_load) [!ALLOC_XPM_COLORS]: Declare local variable I
1225 in inner block.
1226
a758f97d
GM
12272001-01-08 Gerd Moellmann <gerd@gnu.org>
1228
6d0afc03
GM
1229 * window.c (window_scroll_pixel_based): Adjust glyph matrices
1230 when increasing window's vscroll.
1231
a758f97d
GM
1232 * macros.c (Qkbd_macro_termination_hook): New variable.
1233 (syms_of_macros): Initialize and staticpro it.
1234 (pop_kbd_macro): Run kbd-macro-termination-hook.
1235
1236 * xterm.c (XTread_socket) <LeaveNotify>: Set help_echo to nil.
1237
1bfb1345 12382001-01-07 Dave Love <fx@gnu.org>
64d4ec0f
DL
1239
1240 * keyboard.c (Fread_key_sequence_vector): Avoid newline in
1241 arglist, for documentation's sake.
1242
0dac6924
AI
12432001-01-06 Andrew Innes <andrewi@gnu.org>
1244
1245 * makefile.w32-in (clean): Delete $(COMPILER_TEMP_FILES) instead
1246 of *.pdb.
1247
8182406a
AI
12482001-01-05 Andrew Innes <andrewi@gnu.org>
1249
1250 * term.c (update_end): Don't check updating_frame; for some reason
1251 this can be 0 sometimes, such as after dismissing a popup menu,
1252 and isn't necessary given the explicit frame argument.
1253
3828218c
GM
12542001-01-05 Gerd Moellmann <gerd@gnu.org>
1255
1256 * sysdep.c: Don't prototype srandom; it takes an unsigned argument
1257 on some systems, and an unsigned long on others, like FreeBSD 4.1.
1258
2f5ded21
GM
12592001-01-04 Gerd Moellmann <gerd@gnu.org>
1260
1261 * xterm.c (clear_mouse_face): Don't return if tip_frame is
1262 non-nil.
1263
1264 * xfns.c (x_create_tip_frame): Preserve the value of
1265 face_change_count around the creation of the tip frame.
1266
1267 * xfns.c (last_show_tip_args): New variable.
1268 (compute_tip_xy): New function.
1269 (Fx_show_tip): Reuse an existing tip frame, if possible.
1270 (syms_of_xfns): Initialize and staticpro last_show_tip_args.
1271
dfad65fa
DL
12722001-01-04 Dave Love <fx@gnu.org>
1273
64d4ec0f
DL
1274 * editfns.c (Fformat): Doc fix.
1275
dfad65fa
DL
1276 * systime.h (set_file_times): Prototype.
1277
1278 * widget.h (EmacsFrameSetCharSize_): Prototype.
1279
1280 * sysdep.c (random, srandom): Declare explicitly.
1281
1282 * dispextern.h (move_it_vertically_backward): Declare.
1283
85fe3b5e
GM
12842001-01-04 Gerd Moellmann <gerd@gnu.org>
1285
0f2ac578
GM
1286 * xfns.c (x_create_tip_frame): Call face-set-after-frame-default,
1287 like in Fx_create_frame.
1288
482cca61
GM
1289 * xfaces.c (set_font_frame_param): Don't do anything for
1290 non-graphical frames.
1291
85fe3b5e
GM
1292 * window.c (Fdelete_other_windows): Set window's window_end_valid
1293 to nil when changing the window's start. Don't change the
1294 window's start when its top position hasn't changed. If we do,
1295 this will set the window's optional_new_start, which act's like a
1296 force_start during redisplay with C-x 1 M-> under particular
1297 circumstances (see report from Per Starback to emacs-pretest-bug
1298 from 2000-12-13.).
1299
3e99d3b4
GM
13002001-01-03 Gerd Moellmann <gerd@gnu.org>
1301
a77dc1ec
GM
1302 * xdisp.c (forward_to_next_line_start): Reset it->c if taking the
1303 short cut at the start of the function. Add an assertion.
1304 (reseat_at_next_visible_line_start): Add an assertion.
1305
2f3cad6c
GM
1306 * window.c (Frecenter): When changing the window start, set the
1307 window's window_end_valid to nil.
1308 (Fwindow_end): Fix window-end computation when UPDATE is non-nil.
1309
1310 * dispextern.h (move_it_past_eol): Add prototype.
1311
1312 * xdisp.c (move_it_past_eol): New function.
1313
3e99d3b4
GM
1314 * window.c (Fwindow_end): Doc fix.
1315
13162001-01-03 Dave Love <fx@gnu.org>
1317
1318 * dired.c (Ffile_attributes): Fix last change, removing BSD4_3
1319 kluge.
1320
bafb434c
GM
13212001-01-03 Gerd Moellmann <gerd@gnu.org>
1322
1323 * xdisp.c (try_window_reusing_current_matrix): Fix bug setting
1324 the enabled_p flag of the glyph row at window_end_vpos to 0.
1325 (handle_single_display_prop): Fix last change.
1326
5297fb00
RS
13272001-01-02 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1328
1329 * window.c (Frecenter): Doc fix.
1330
13d6a61c
AI
13312001-01-02 Andrew Innes <andrewi@gnu.org>
1332
1333 * term.c (FRAME_TERMCAP_P) [WINDOWSNT]: Remove redefinition.
1334
1335 * frame.h (output_method): Add output_w32_console method.
1336 (FRAME_W32_CONSOLE_P): New macro.
1337
1338 * frame.c (make_terminal_frame) [WINDOWSNT]: Make terminal frames
1339 use output_w32_console method.
1340 (Qw32_console): New Lisp_Object.
1341 (Fframep): Return it.
1342 (syms_of_frame): Init it.
1343 (Fframe_parameters): Report w32console as font for w32_console
1344 frames.
1345
1346 * xfaces.c (realize_default_face): Set face foreground and
1347 background to unspecified for w32_console frames.
1348 (realize_face): Realize face cache for w32_console frames.
1349 (realize_tty_face): Accept w32_console frames.
1350
1351 * xdisp.c (handle_single_display_prop): Return if frame is
1352 w32_console.
1353 (init_iterator) [WINDOWSNT]: Initialize frame face cache if
1354 necessary, even if running interactively.
1355
1356 * dispnew.c (Fredraw_frame): Call set_terminal_modes for
1357 w32_console frames.
1358
1359 * w32term.c (x_update_begin):
1360 (x_update_end):
1361 (x_clear_frame):
1362 (x_ins_del_lines):
1363 (x_change_line_highlight):
1364 (x_delete_glyphs):
1365 (w32_ring_bell):
1366 (x_update_begin):
1367 (x_update_end):
1368 (w32_reassert_line_highlight):
1369 (w32_frame_rehighlight):
1370 (w32_frame_raise_lower): Do nothing if not w32 frame.
1371
1372 * w32xfns.c (get_frame_dc): Abort if called on a non-w32 frame.
1373
1374 * w32fns.c (Fx_display_color_cells): Determine correct value, when
1375 system doesn't tell us directly.
1376 (Fx_display_visual_class): Implement properly.
1377
d6bb0c0d
GM
13782001-01-02 Gerd Moellmann <gerd@gnu.org>
1379
1380 * window.c (Frecenter): Handle centering in graphical frames
1381 specially. Centering on the basis of line counts doesn't work
1382 reliably with variable-height lines.
1383
315f5865
EZ
13842001-01-02 Eli Zaretskii <eliz@is.elta.co.il>
1385
1386 * widget.c (EmacsFrameSetCharSize): Remove unused variables `ac'
1387 and al[].
1388
1389 * composite.c (run_composition_function): Remove unused variable
1390 `val'.
1391 (update_compositions): Remove unused variable `hook'.
1392
1393 * intervals.c (get_local_map): Remove unused variable `tem'.
1394
1395 * doprnt.c (doprnt1): Remove unused variable `size'.
1396
1397 * fns.c (Flength): Remove unused variable `tail'.
1398 (Fdelete): Remove unused variable `size'.
1399
1400 * editfns.c (Ftranspose_regions): Remove unused variables `gcpro1'
1401 and `gcpro2'.
1402
1403 * doc.c (Fsnarf_documentation): Remove unused variables `fun' and
1404 `tem'.
1405
1406 * data.c (find_symbol_value): Remove extra 3rd argument in the
1407 call to swap_in_symval_forwarding.
1408
1409 * undo.c (Fprimitive_undo): Remove unused block-scope variable
1410 `end'.
1411
1412 * search.c (shrink_regexp_cache): Remove unused variable `cpp'.
1413 (trivial_regexp_p): Remove unused variable `c'.
1414 (boyer_moore): Remove unused variable `k'.
1415
1416 * indent.c (current_column): Remove unused variable `stopchar'.
1417 (Fcompute_motion): Remove unused variable `contin'.
1418
1419 * casefiddle.c (casify_object): Remove unused variable `tolen'.
1420
1421 * dired.c (directory_files_internal): Fix a typo in a comment.
1422 Remove an unused variable `handler'.
1423 (file_name_completion): Remove unused function-scope variable
1424 `dp'.
1425 (Ffile_attributes) <dirname, sdir>: Make declarations conditioned
1426 on BSD4_2.
1427
1428 * fileio.c (e_write): Remove unused variable
1429 `require_encoding_p'.
1430
1431 * marker.c (Fmarker_position): Remove unused variables `pos', `i',
1432 and `buf'.
1433 (Fmarker_insertion_type): Remove unused variable `buf'.
1434
1435 * insdel.c (make_gap): Remove unused variable `result'.
1436
1437 * keyboard.c (record_char): Remove unused function-scope variable
1438 `help'.
1439 (kbd_buffer_get_event): Remove unused block-scope variable `idx'.
1440 (menu_bar_items): Remove unused function-scope variable `tem'.
1441
1442 * fontset.c (fontset_ref): Remove unused variable `i'.
1443 (fontset_set): Remove unused variables `j' and `tmp'.
1444 (make_fontset): Remove unused variables `i', `j', `elt' and
1445 `base_elt'.
1446 (make_fontset_for_ascii_face): Remove unused variable `name'.
1447 (fs_load_font): Remove unused variable `font_idx'.
1448 (fs_query_fontset): Remove unused function-local variable
1449 `fontset'.
1450 (list_fontsets): Remove unused variable `tail'.
1451 (Fnew_fontset): Remove unused variables `family' and `registry'.
1452 (accumulate_font_info): Remove unused variable `tmp'.
1453 (Ffontset_font): Remove unused variable `id'.
1454 (syms_of_fontset): Remove unused variable `i'.
1455
1456 * xfns.c (x_display_info_for_name): Cast 0 to "char *" in the call
1457 to x_term_init.
1458 (lookup_image): Remove unused variable `file'.
1459 (xbm_load): Remove unused variables `bitmap_data', `height', and
1460 `width'. Remove function-local variable `i', leave the
1461 block-local one.
1462 (gif_load): Remove unused variable `inc'.
1463
1464 * xterm.c (XTread_socket): Remove unused variables `p' and
1465 `pend'.
1466 (XTread_socket) <LeaveNotify>: Remove unused variable `frame',
1467 leave only the one in the inner block.
1468
1469 * xfaces.c (face_fontset, realize_default_face): Remove unused
1470 variable `fontset'.
1471 (face_at_buffer_position): Remove unused variable `multibyte_p'.
1472
1473 * term.c (encode_terminal_code): Remove unused variable `c'.
1474
1475 * ccl.c (Fccl_execute): Cast ccl_driver parameters to `unsigned
1476 char *' instead of `char *'.
1477
1478 * category.c (Fcategory_docstring): Remove unused variable `doc'.
1479 (Fget_unused_category): Remove unused variable
1480 `docstring_vector'.
1481 (Fchar_category_set): Remove unused variables `val', `charset',
1482 `c1' and `c2'.
1483
1484 * coding.c (detect_coding_iso2022, setup_coding_system): Remove
1485 unused variable `i'.
1486 (detect_coding_mask): Remove unused variable `idx'.
1487 (detect_coding): Remove unused variable `i'.
1488 (ccl_coding_driver): Remove unused variable `result'.
1489 (run_pre_post_conversion_on_str): Remove unused variable `prev'.
1490 (decode_coding_string): Remove unused variables `to' and
1491 `gcpro1'.
1492 (encode_coding_string): Remove unused variables `gcpro1' and
1493 `saved_coding_symbol'.
1494 (Ffind_coding_systems_region_internal): Remove function-local
1495 variable args[], leave only the block-local one.
1496 (code_convert_region1): Remove unused variable `len'.
1497
1498 * charset.c (char_printable_p): Remove unused variable `chars'.
1499 (Fsplit_char, Fchar_bytes): Remove unused variable `val'.
1500 (str_to_multibyte): Remove unused variable `c'.
1501
1502 * window.c (size_window): Remove block-local variable `min_size'.
1503
1504 * xdisp.c (make_cursor_line_fully_visible): Remove unused variable
1505 `header_line_height'.
1506 (append_space, extend_face_to_end_of_line): Declare `saved_what'
1507 enum display_element_type.
1508
1a8a9daf
GM
15092001-01-02 Gerd Moellmann <gerd@gnu.org>
1510
6dde6abc
GM
1511 * xterm.c (x_connection_closed): Catch X errors around all
1512 statements that call X. Save away the error message in a local
1513 copy.
1514
1883b2c6
GM
1515 * xterm.c (x_connection_closed): Set handling_signal to 0 at
1516 the start.
1517
a13be207
GM
1518 * xdisp.c (pos_visible_p): Take into account that CHARPOS maybe
1519 in or at the start of invisible text.
1520
1a8a9daf
GM
1521 * dispnew.c (update_window): Don't check_current_matrix_flags.
1522
3608c0f9
JR
15232001-01-01 Jason Rumney <jasonr@gnu.org>
1524
1525 * w32fns.c (x_figure_window_size): Do not allow new_height and
1526 new_width of frame to override specified values.
1527
abb1acc4
KH
15282000-12-30 Kenichi Handa <handa@etl.go.jp>
1529
d279f620
KH
1530 * composite.c (find_composition): Fix a code for searching
1531 backward.
abb1acc4 1532
762a68ec
GM
15332000-12-29 Gerd Moellmann <gerd@gnu.org>
1534
9c8b8382
GM
1535 * dispnew.c (check_current_matrix_flags) [GLYPH_DEBUG]: New
1536 function.
1537 (update_window) [GLYPH_DEBUG]: Call it.
1538 (scrolling_window): Prevent including current rows which are below
1539 what's displayed in the window.
1540
1541 * xdisp.c (try_window_reusing_current_matrix)
1542 <new start <= old start>: Disable rows in the current matrix
1543 which are below the window after scrolling.
1544
762a68ec
GM
1545 * xdisp.c (move_it_by_lines): Don't do optimizations if NEED_Y_P
1546 is zero. It's not worth the complexity.
1547 (invisible_text_between_p): Put in #if 0 because unused.
1548
2d5912c1
GM
15492000-12-28 Gerd Moellmann <gerd@gnu.org>
1550
46f6a258
GM
1551 * xfns.c (Fx_backspace_delete_keys_p): Check library and server
1552 XKB versions. Call XkbFreeKeyboard with 2nd arg 0.
1553
89f93679
GM
1554 * keyboard.c (echo_char): If C is an integer, always call
1555 push_key_description. Former code could signal an invalid
1556 character error.
1557
1558 * keymap.c (push_key_description): Add parameter FORCE_MULTIBYTE.
1559 If set, print multibyte text.
1560 (Fsingle_key_description): Call push_key_description with
1561 FORCE_MULTIBYTE set.
1562 (describe_buffer_bindings): Likewise.
1563
1564 * lisp.h (push_key_description): Add prototype.
1565
c06017fb
GM
1566 * xdisp.c (echo_area_display): Bind redisplay-dont-pause to t
1567 around the call to redisplay_internal.
1568
f1d2ce7f
GM
1569 * xfns.c: Use #if GLYPH_DEBUG instead of #ifdef GLYPH_DEBUG.
1570
2d5912c1
GM
1571 * dispnew.c: Use #if GLYPH_DEBUG instead of #ifdef GLYPH_DEBUG.
1572
9371f831
KH
15732000-12-28 Kenichi Handa <handa@etl.go.jp>
1574
1575 * ccl.c (CCL_WRITE_CHAR): Check variable `extra_bytes'.
1576 (ccl_driver): New local variable `extra_bytes'.
1577
1578 * ccl.h (struct ccl_spec): New member eight_bit_carryover.
1579
1580 * coding.c (setup_coding_system): Initialize
1581 coding->spec.ccl.eight_bit_carryover.
1582 (ccl_coding_driver): Pay attention to carried over 8-bit bytes.
1583
0c80628a
KH
15842000-12-28 Kenichi Handa <handa@etl.go.jp>
1585
1586 * coding.c (SAFE_ONE_MORE_BYTE): New macro.
1587 (DECODE_EMACS_MULE_COMPOSITION_CHAR): New macro.
1588 (DECODE_EMACS_MULE_COMPOSITION_RULE): New macro.
1589 (decode_composition_emacs_mule): New function.
1590 (decode_coding_emacs_mule): Decode composition sequence by calling
1591 decode_composition_emacs_mule.
1592 (ENCODE_COMPOSITION_EMACS_MULE): New macro.
1593 (encode_coding_emacs_mule): Changed from macro to function. If
2d5912c1 1594 a text contains compositions, encode them correctly.
0c80628a
KH
1595 (setup_coding_system): Set coding->commong_flags for emacs-mule so
1596 that decoding and encoding are required.
1597
3e32cc27
GM
15982000-12-27 Gerd Moellmann <gerd@gnu.org>
1599
5e25feee
GM
1600 * xfaces.c (PT_PER_INCH): New macro.
1601 (xlfd_point_size): Compute real point size from font's pixel size.
1602 (pixel_point_size, build_scalable_font_name): Use PT_PER_INCH
1603 instead of 72.
1604
892d8fcd
GM
1605 * .gdbinit: Comment out the line pointing to the Lesstif source
1606 directory.
1607
12c8b416
GM
1608 * window.c (Frecenter): Use displayed_window_lines instead
1609 of window_internal_height.
1610
6061fbf0
GM
1611 * xterm.c (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
1612 instead of x-toolkit-scroll-bars-p.
1613 (Vx_toolkit_scroll_bars): Renamed from x_toolkit_scroll_bars_p.
1614
1615 * w32term.c (syms_of_xterm): DEFVAR_LISP x-toolkit-scroll-bars
1616 instead of x-toolkit-scroll-bars-p.
1617 (Vx_toolkit_scroll_bars): Renamed from x_toolkit_scroll_bars_p.
1618
3e32cc27
GM
1619 * dispnew.c (struct redisplay_history) [GLYPH_DEBUG]: New.
1620 (REDISPLAY_HISTORY_SIZE) [GLYPH_DEBUG]: New macro.
1621 (redisplay_history, history_idx, history_tick) [GLYPH_DEBUG]: New
1622 variables.
1623 (add_window_display_history, add_frame_display_history)
1624 (Fdump_redisplay_history) [GLYPH_DEBUG]: New functions.
1625 (build_frame_matrix_from_leaf_window): Remove unused code.
1626 (build_frame_matrix_from_leaf_window) [GLYPH_DEBUG]: Add to
1627 redisplay history.
1628 (update_frame) [GLYPH_DEBUG]: Add to redisplay history.
1629 (update_window) [GLYPH_DEBUG]: Likewise.
1630 (syms_of_display): Defsubr dump-redisplay-history.
1631
31798cfe
GM
16322000-12-23 Gerd Moellmann <gerd@gnu.org>
1633
f717c2ba
GM
1634 * keyboard.c (echo_prompt): Always set current_kboard->echoptr to
1635 the end of the prompt. Set echo_after_prompt to the offset
1636 of echoptr in echobuf.
1637
aeb2b8fc
GM
1638 * xdisp.c (init_from_display_pos): Pop until the iterator's
1639 stack is empty; there may be frames for stretch or images
1640 on the stack.
1641
31798cfe
GM
1642 * dispnew.c (save_frame_matrix, restore_frame_matrix): Removed.
1643 (save_or_restore_current_matrix): New function for the same
1644 purpose, but more efficient.
1645 (adjust_frame_glyphs_for_frame_redisplay): Use it.
1646
f8156156
EZ
16472000-12-23 Eli Zaretskii <eliz@is.elta.co.il>
1648
1649 * xdisp.c (syms_of_xdisp): Fix last change.
1650
bdd6d4e8
GM
16512000-12-23 Gerd Moellmann <gerd@gnu.org>
1652
1653 * xdisp.c (syms_of_xdisp): Doc fix.
1654
1655 * xdisp.c (redisplay_window): Remove label restore_buffers;
1656 use finish_scroll_bars instead to make sure that scroll bars
1657 are redeemed. If we don't do this, flickering can result from
1658 scroll bars being destroyed and recreated.
1659
9436cdf9
JR
16602000-12-22 Jason Rumney <jasonr@gnu.org>
1661
1662 * w32term.c (w32_draw_bitmap): Fix drawing so it does not appear
1663 in the wrong colors when the foreground is not black.
1664 (expose_window): Don't redraw the window that's currently being
1665 updated.
1666
951f9df5
GM
16672000-12-22 Gerd Moellmann <gerd@gnu.org>
1668
856ff7a7
GM
1669 * window.c (size_window): When setting the window's too_small_ok
1670 flag, compare old size with minimum size depending on WIDTH_P,
1671 don't compare with window_min_width.
1672
951f9df5
GM
1673 * window.c (delete_window): Simplify somewhat.
1674 (Fset_window_configuration): Don't SET_FRAME_GARBAGED after
1675 freeing window matrices. The flag windows_or_buffers_changed is
1676 set, so the next redisplay will consider all windows; this should
1677 suffice.
1678
886bc933
KH
16792000-12-22 Kenichi Handa <handa@etl.go.jp>
1680
1681 * coding.c (ccl_coding_driver): Initialize ccl->cr_consumed.
1682
1683 * ccl.h (struct ccl_program): New member cr_consumed.
1684
1685 * ccl.c (CCL_WRITE_CHAR): Don't handle EOL conversion here.
1686 (CCL_READ_CHAR): Handle EOL conversion here.
1687 (ccl_driver) <CCL_ReadMultibyteChar2>: Likewise.
1688
177f4e88
GM
16892000-12-21 Gerd Moellmann <gerd@gnu.org>
1690
6ba384dc
GM
1691 * xdisp.c (Fdump_glyph_row) [GLYPH_DEBUG]: Add optional arg
1692 GLYPHS.
1693
1694 * dispextern.h (GLYPH_EQUAL_P): Also compare pixel widths,
1695 otherwise tabs of different size compare equal.
1696
1697 * callint.c (Fcall_interactively): Prevent a compiler warning.
1698
1699 * print.c (print_unwind): Return nil.
1700 (PRINTDECLARE): Initialize all local variables.
1701 (print_preprocess): Add a default case.
1702
8e15274f
GM
1703 * lisp.h (Qinhibit_point_motion_hooks): Declare extern.
1704
1705 * undo.c (Fprimitive_undo): Bind `inhibit-point-motion-hooks' to t.
1706
177f4e88
GM
1707 * window.c (delete_window, Fsplit_window)
1708 (Fset_window_configuration): Calls to ensure_frame_matrix removed.
1709
1710 * dispextern.h (ensure_frame_matrix): Function declaration removed.
1711
1712 * dispnew.c (ensure_frame_matrix): Removed.
1713 (save_frame_matrix, restore_frame_matrix): New functions.
1714 (adjust_frame_glyphs_for_frame_redisplay): Use them.
1715
1716 * xdisp.c (dump_glyph_row, dump_glyph_matrix, Fdump_glyph_matrix)
1717 [GLYPH_DEBUG]: Extended to dump glyphs in short form.
1718
99012074
AI
17192000-12-21 Andrew Innes <andrewi@gnu.org>
1720
1721 * w32term.c (x_update_begin): Regenerate the palette here, rather
1722 than for each window.
1723
1724 * w32xfns.c (select_palette): Avoid calling SelectPalette if
1725 palette is NULL, since this corrupts memory! Also get
1726 display_info reference from frame.
1727
29ef7d2d
JR
17282000-12-21 Jason Rumney <jasonr@gnu.org>
1729
1730 * w32bdf.c (w32_init_bdf_font): Fix test for valid bmp heap.
1731
1732 * w32term.c (x_draw_hollow_cursor): Delay obtaining the frame's DC
1733 to avoid returning without releasing it.
3e27fa1f 1734
3f9d67a6
KH
17352000-12-21 Kenichi Handa <handa@etl.go.jp>
1736
587fc3f9
KH
1737 * keymap.c (push_key_description): Don't convert eight-bit-control
1738 and eight-bit-graphic to multibyte character.
1739
3f9d67a6
KH
1740 * charset.c (Fmake_char_internal): If CHARSET doesn't have a
1741 generic character and CODE1 is nil, return the smallest character
1742 in CHARSET.
1743
774ba8c9
DL
17442000-12-20 Dave Love <fx@gnu.org>
1745
1746 * s/osf5-0.h (NSIG): Don't redefine.
1747
88416888
SM
17482000-12-20 Stefan Monnier <monnier@cs.yale.edu>
1749
1750 * keymap.c (where_is_internal): Check ascii_sequence_p rather than
1751 excluding menu-bar and tool-bar.
1752 (Fwhere_is_internal): Check ascii_sequence_p when looking up the cache.
1753 (menu_item_p): Remove.
1754 (where_is_internal_1): Don't ignore menu-items.
1755
a6426c6f
GM
17562000-12-20 Gerd Moellmann <gerd@gnu.org>
1757
03ff8aab
GM
1758 * xdisp.c (hscroll_window_tree): Take window's min_hscroll
1759 into account.
1760
1761 * window.c (make_window): Initialize window's min_hscroll.
1762 (Fset_window_hscroll): Set window's hscroll and min_hscroll.
1763 (set_window_buffer, temp_output_buffer_show): Set min_hscroll
1764 to zero.
1765 (struct saved_window): New member min_hscroll.
1766 (SAVED_WINDOW_VECTOR_SIZE): Set to 17.
1767 (Fset_window_configuration): Set window's min_hscroll.
1768 (save_window_save): Save window's min_hscroll.
1769 (compare_window_configurations): Compare min_hscroll values.
1770
1771 * window.h (struct window): New member min_hscroll.
1772
1773 * keyboard.c (echo_prompt): Prevent a compiler warning.
1774
8de4aaf8
GM
1775 * xdisp.c (try_cursor_movement): Fix last change. The real
1776 condition is that PT is at the end of the row, and should
1777 be displayed at the start of the next row.
1778
3f7e3031
GM
1779 * xdisp.c (try_cursor_movement): If we end on a partially
1780 visible line, end we already decided to scroll, return -1.
1781
a6426c6f
GM
1782 * dispextern.h (ensure_frame_matrix): Add prototype.
1783
1784 * window.c (delete_window, Fsplit_window)
1785 (Fset_window_configuration): Call ensure_frame_matrix.
1786
1787 * dispnew.c (fake_current_matrices, ensure_frame_matrix): New
1788 functions.
1789 (adjust_frame_glyphs_for_frame_redisplay): If display has been
1790 completed, call fake_current_matrices instead of marking frame
1791 garbaged.
1792
57fa2774
JR
17932000-12-20 Jason Rumney <jasonr@gnu.org>
1794
1795 * w32fns.c (syms_of_w32fns): Initialize and staticpro tip_frame.
1796
d925df90
EZ
17972000-12-19 Eli Zaretskii <eliz@is.elta.co.il>
1798
1799 * fns.c (Frequire): Doc fix.
1800
7b93a85b
GM
18012000-12-19 Gerd Moellmann <gerd@gnu.org>
1802
71d4497a
GM
1803 * window.c (window_scroll_pixel_based): Don't use
1804 move_it_vertically.
1805
c74e645b
GM
1806 * dispnew.c (direct_output_for_insert): Fix check for mini-window
1807 currently displaying a message.
1808
7b93a85b
GM
1809 * bytecode.c (toplevel) [CHECK_FRAME_FONT]: Include frame.h and
1810 xterm.h.
1811 (Fbyte_code) [CHECK_FRAME_FONT]: Check the selected frame's font.
1812
90d97e64
AI
18132000-12-18 Andrew Innes <andrewi@gnu.org>
1814
1815 * w32.c (w32_strerror): New function.
1816
1817 * w32.h (w32_strerror): New extern.
1818
1819 * w32fns.c (Fw32_shell_execute): Use it.
1820
91c9e6ce
GM
18212000-12-18 Gerd Moellmann <gerd@gnu.org>
1822
1823 * s/hpux10.h (_FILE_OFFSET_BITS): Undef again.
1824
6f4745e2
EZ
18252000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
1826
1827 * msdos.c (IT_set_face): Obey inverse_video.
1828
c9e088ce
KH
18292000-12-18 Kenichi Handa <handa@etl.go.jp>
1830
1831 * dired.c (directory_files_internal): Always return decoded filenames.
1832
c3695f5f
GM
18332000-12-18 Gerd Moellmann <gerd@gnu.org>
1834
52d8e4ff
GM
1835 * xterm.c (x_connection_closed): Prevent being called recursively
1836 because of an error condition in XtCloseDisplay.
1837
62be9979
GM
1838 * xdisp.c (init_iterator): If noninteractive, and the frame's
1839 face cache is null, make one.
1840
5f7a1890
GM
1841 * xfns.c (show_busy_cursor): Check for live frames more
1842 thoroughly.
1843
c3695f5f
GM
1844 * process.c (wait_reading_process_input): Check for pending
1845 input when running timers.
1846
78555fbe
EZ
18472000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
1848
1849 * msdos.c (IT_write_glyphs): Compute the glyph face from
1850 str->face_id.
1851
b2b36264
KH
18522000-12-18 Kenichi Handa <handa@etl.go.jp>
1853
1854 * process.c (read_process_output): Don't run a filter if the code
1855 decoder produces nothing but carryover.
1856
9c543fbf
AI
18572000-12-17 Andrew Innes <andrewi@gnu.org>
1858
1859 * w32.c (sys_rename): Only check errno against EEXIST, and not
1860 EACCES, when determining whether rename failed because the target
1861 exists. This was resulting in indefinite looping on Windows 9x if
1862 the source file was locked by another process.
1863
1864 * w32fns.c (Ffile_system_info): New function.
1865 (syms_of_w32fns): Defsubr it.
1866
10c2b5a8
GM
18672000-12-17 Gerd Moellmann <gerd@gnu.org>
1868
b0228ace
GM
1869 * window.c (coordinates_in_window): Fix computation for
1870 position on vertical line between mode lines.
1871
10c2b5a8
GM
1872 * xfns.c (unwind_create_frame): Return t if frame was deleted.
1873 Don't alter tip_frame or tip_window.
1874 (unwind_create_tip_frame): Set tip_frame to nil only if frame
1875 was deleted.
1876
c844a81a
GM
1877 * w32fns.c (unwind_create_frame): Return t if frame was deleted.
1878 Don't alter tip_frame or tip_window.
1879 (unwind_create_tip_frame): Set tip_frame to nil only if frame
1880 was deleted.
1881
6c825f8e
EZ
18822000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
1883
1884 * fileio.c (Fcopy_file): Rename the last argument to keep_time, to
1885 be consistent with the doc string. Reported by NAKAJIMA Mikio
1886 <minakaji@osaka.email.ne.jp>.
1887
af4bb4c8
KH
18882000-12-16 Kenichi Handa <handa@etl.go.jp>
1889
1890 * xfaces.c (Vface_ignored_fonts): New variable.
1891 (x_face_list_fonts): Ignore fonts matching Vface_ignored_fonts.
1892 (syms_of_xfaces): Declare Vface_ignored_fonts as a Lisp variable.
1893
8062e53a
GM
18942000-12-15 Gerd Moellmann <gerd@gnu.org>
1895
e87b8809
GM
1896 * dispnew.c (update_window): Detect pending input every nth line
1897 updated, i.e. do it depending on real work done, and not on the
1898 vpos of the line.
1899
1900 * xterm.c (expose_window): Don't redraw the window that's
1901 currently being updated.
1902
a6768cc5
GM
1903 * window.c (Fset_window_point): Remove test for
1904 cursor_in_non_selected_windows.
1905
4ea7fdca
GM
1906 * lread.c (read1): Recognize end of file after `\\'.
1907
8062e53a
GM
1908 * xfns.c (x_create_tip_frame): Use unwind_create_tip_frame,
1909 not unwind_create_frame.
1910
bb7959c1
GM
19112000-12-15 Dave Love <fx@gnu.org>
1912
1913 * s/usg5-4.h (bcopy) [IRIX6]: Don't special-case definition of
1914 bcopy & al.
1915
1916 * s/irix6-5.h: #undef bcopy & al here. Include strings.h.
1917
ced04c42
KH
19182000-12-15 Kenichi Handa <handa@etl.go.jp>
1919
c5443913
KH
1920 * coding.c (setup_coding_system): Clear all members of the struct
1921 coding_system at first.
bc137305
KH
1922 (detect_coding): Call detect_coding_mask with a correct MULTIBYTEP
1923 argument.
1924 (code_convert_region): Don't override coding->src_multibyte and
1925 coding->dst_multibyte.
c5443913 1926
ced04c42
KH
1927 * fns.c (Fmd5): Docstring improved.
1928
c2d7f289
MB
19292000-12-15 Miles Bader <miles@gnu.org>
1930
1931 * xdisp.c (window_box_height): Only use mode-line glyph-rows that
1932 are actually marked as mode-lines; otherwise use
1933 estimate_mode_line_height.
1934
9d7d9263
GM
19352000-12-14 Gerd Moellmann <gerd@gnu.org>
1936
1937 * editfns.c (Fformat): Prevent a buffer overrun when the format
1938 specifies a precision.
1939
7cf0153a
EZ
19402000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
1941
1942 * msdos.c (Fmsdos_set_mouse_buttons): Signal an error if the
1943 argument is outside the range [2..3].
1944
1de0f662
AI
19452000-12-14 Andrew Innes <andrewi@gnu.org>
1946
1947 * w32fns.c (Fx_hide_tip): Avoid unnecessary work when there's
1948 nothing to do. Bind inhibit-quit.
1949 (tip_frame): Make it a Lisp_Object.
1950 (x_create_tip_frame): Set tip_frame after it has been added to
1951 Vframe_list.
1952 (Fx_show_tip): Don't set tip_frame here.
1953 (image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]: New
1954 variables.
1955 (unwind_create_frame, unwind_create_tip_frame): New functions.
1956 (Fx_create_frame, x_create_tip_frame): Handle errors signaled
1957 while a frame is only partially constructed.
1958
1959 * w32term.c (clear_mouse_face): Treat tip_frame as a Lisp_Object.
1960 (x_free_frame_resources): New function.
1961 (x_destroy_window): Use it.
1962
02387dcc
GM
19632000-12-14 Gerd Moellmann <gerd@gnu.org>
1964
1965 * xfns.c (Fx_backspace_delete_keys_p): New function.
1966 (syms_of_xfns): Defsubr it.
1967
1968 * config.in (HAVE_XKBGETKEYBOARD): Add.
1969
0544ef49
KH
19702000-12-14 Kenichi Handa <handa@etl.go.jp>
1971
98d62747
KH
1972 * keyboard.c (echo_prompt): Argument type changed to Lisp_Object.
1973 Always store string in multibyte representation in echobuf.
1974 (echo_char): Always store string in multibyte representation in
1975 echobuf.
1976 (echo_now): Call message2_nolog with the arg MULTIBYTE 1.
1977 (read_key_sequence): Adjusted for the change of echo_prompt.
1978
a20193cd
KH
1979 * fns.c (Fmd5): Docstring improved.
1980
191b83b6
KH
1981 * lisp.h (detect_coding_system): Prototype adjusted.
1982
0544ef49
KH
1983 * coding.c (ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
1984 (detect_coding_emacs_mule, detect_coding_iso2022,)
1985 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8)
1986 (detect_coding_utf_16, detect_coding_ccl): Make them static. New
1987 argument MULTIBYTEP. Callers changed.
1988 (detect_coding_mask, detect_coding_system): New argument
1989 MULTIBYTEP. Callers changed.
1da1bb05
KH
1990 (decode_coding_string): Set coding->src_multibyte and
1991 coding->dst_multibyte before calling detect_coding and detect_eol.
1992 Update them after some coding system is detected.
1993
d5b3eb1b
SM
19942000-12-13 Stefan Monnier <monnier@cs.yale.edu>
1995
1996 * keymap.c (get_keyelt): Only eval the filter if `autoload' is set.
1997
1998 * keyboard.c (menu_bar_items, tool_bar_items):
1999 Set `autoload' when looking up `tool-bar' or `menu-bar' submap.
2000
f7f8bb69
GM
20012000-12-13 Gerd Moellmann <gerd@gnu.org>
2002
19f71add
GM
2003 * xfns.c (image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]:
2004 New variables.
2005 (unwind_create_frame, unwind_create_tip_frame): New functions.
2006 (Fx_create_frame, x_create_tip_frame): Handle errors signaled
2007 while a frame is only partially constructed.
2008
2009 * xterm.h (x_free_frame_resources): Declare.
2010
2011 * xterm.c (x_free_frame_resources): New function.
2012 (x_destroy_window): Use it.
2013
e10da507
GM
2014 * dispnew.c (update_window): If do_mouse_tracking is non-nil,
2015 don't interrupt the update for pending input initially, i.e.
2016 update at least some lines.
2017
2018 * keyboard.c (do_mouse_tracking): Make externally visible.
2019
d5b3eb1b 2020 * xterm.c (x_term_init): Declare gray_bitmap_bits as `extern char *'.
f7f8bb69
GM
2021
2022 * xfns.c (gray_bitmap_bits): Declare `char *'.
2023
90aa2856
GM
20242000-12-12 Gerd Moellmann <gerd@gnu.org>
2025
2026 * xdisp.c (display_tool_bar_line): Make sure that tool bar
2027 lines start with a relief line.
2028
a308c9cd
DL
20292000-12-12 Dave Love <fx@gnu.org>
2030
2031 * window.c (Fdisplay_buffer): Doc fix.
2032 (Fwindow_list): Remove unused var.
2033
2034 * buffer.h (mmap_set_vars): Declare.
2035
2036 * window.h (Fset_window_point): Declare.
2037
d575011f
EZ
20382000-12-12 Eli Zaretskii <eliz@is.elta.co.il>
2039
bf6282d2 2040 * msdos.c (fast_find_position): Don't overstep the last window row.
d575011f
EZ
2041 (IT_note_mouse_highlight): Initialize portion to -1. Remove
2042 unused variable `area'. When looking for a row under (X,Y), give
2043 up if some of the previous rows is not enabled.
2044
ecf4d726
GM
20452000-12-12 Gerd Moellmann <gerd@gnu.org>
2046
2ebf6139
GM
2047 * window.c (Fset_window_point): If displaying cursors in windows
2048 other than the selected window, make sure redisplay updates
2049 other windows to show the new value of point in the window.
2050
2051 * dispextern.h (cursor_in_non_selected_windows): Declare extern.
2052
bfdb75ee
GM
2053 * buffer.c (Fkill_buffer): Don't Fset_buffer when testing if
2054 the buffer is the sole visible buffer when in the mini-buffer.
2055
4fdbd809
GM
2056 * xdisp.c (setup_echo_area_for_printing, with_echo_area_buffer):
2057 Bind `inhibit-read-only' to t.
2058 (unwind_with_echo_area_buffer): Use AREF.
2059
c0006262
GM
2060 * xfns.c (Fx_hide_tip): Simplified.
2061
e9a59cad
GM
2062 * s/freebsd.h, s/netbsd.h (GC_MARK_STACK): Use
2063 GC_MAKE_GCPROS_NOOPS instead of `1'.
2064
ecf4d726
GM
2065 * s/gnu-linux.h (GC_MARK_STACK): Define as GC_MAKE_GCPROS_NOOPS.
2066
e5959a9a
GM
20672000-12-11 Gerd Moellmann <gerd@gnu.org>
2068
a3642e49
GM
2069 * xfns.c (Fx_hide_tip): Fix last change.
2070
44b5a125
GM
2071 * xfns.c (Fx_hide_tip): Avoid unnecessary work when there's
2072 nothing to do. Bind inhibit-quit.
2073 (tip_frame): Make it a Lisp_Object.
2074 (x_create_tip_frame): Set tip_frame after it has been added to
2075 Vframe_list.
2076 (Fx_show_tip): Don't set tip_frame here.
2077
2078 * xterm.c (clear_mouse_face): Treat tip_frame as a Lisp_Object.
2079
2080 * xdisp.c (prepare_menu_bars): Changes for tip_frame being a
2081 Lisp_Object.
2082
2083 * dispextern.h: Change external declaration of tip_frame.
2084
d990421f
GM
2085 * keymap.c (Fkey_description): If KEYS is an empty key sequence,
2086 return an empty string.
2087
4db87380
GM
2088 * xdisp.c (try_cursor_movement): Check update_mode_lines instead
2089 of the window's update_mode_line flag, since the former is set by
2090 force-mode-line-update, not the latter. This makes
2091 column-number-mode slightly faster.
2092
e5959a9a
GM
2093 * xdisp.c (try_window_id) <all changes above window start>:
2094 Set the cursor.
2095
169fe44e
GM
20962000-12-11 Paul Eggert <eggert@twinsun.com>
2097
2098 * config.in (HAVE_FTELLO): Remove.
2099 (HAVE_FSEEKO): Add.
2100 (_XOPEN_SOURCE): Remove; the large-file code no longer needs it.
2101 * lread.c (file_offset, file_tell): Depend on HAVE_FSEEKO, not
2102 HAVE_FTELLO.
2103 * s/hpux10.h (_FILE_OFFSET_BITS): Do not undef.
2104 * s/isc3-0.h, s/osf5-0.h: Update comment about _XOPEN_SOURCE.
2105
59ec59ae
MB
21062000-12-11 Miles Bader <miles@gnu.org>
2107
2108 * window.c (displayed_window_lines): Don't round up when
2109 converting empty space at bottom to lines.
ff904dd6
MB
2110 Handle non-newline-terminated final lines properly.
2111 (Fwindow_text_height): New function (used to be in lisp).
2112 (syms_of_window): Initialize it.
59ec59ae 2113
42ebfa31
SM
21142000-12-09 Stefan Monnier <monnier@cs.yale.edu>
2115
2116 * syntax.c (scan_lists): Check that the right quote char has the
2117 right Sstring syntax when jumping over strings.
2118 (init_syntax_once): Use Smax rather than 13.
2119
5cdb3cf3
MB
21202000-12-09 Miles Bader <miles@gnu.org>
2121
2122 * window.c (Fpos_visible_in_window_p): Replace FULLY parameter
2123 with PARTIALLY, inverting the sense.
2124 (window_scroll_pixel_based): Scroll partially visible lines into
2125 place if we hit the beginning or end of the buffer.
a12167c5
MB
2126 (displayed_window_lines): Don't include partially visible lines.
2127 (Fmove_to_window_line): Skip past any partially visible first line.
5cdb3cf3 2128
842b2a94
GM
21292000-12-08 Gerd Moellmann <gerd@gnu.org>
2130
2131 * keymap.c (current_minor_maps): Use malloc. Prevent a leak.
2132
2133 * tparam.c (tparam1): Change the way buffers are reallocated to be
2134 portable and less obfuscated.
2135
2136 * termcap.c (tgetent): Change the way buffers are reallocated to
2137 be portable and less obfuscated.
2138
2139 * macros.c (store_kbd_macro_char): Change the way buffers are
2140 reallocated to be portable and less obfuscated.
2141
2142 * lread.c (read1): Change the way buffers are reallocated to be
2143 portable and less obfuscated.
2144
2145 * doc.c (Fsubstitute_command_keys): Change the way buffers
2146 are reallocated so that it is portable.
2147
137cad7c
EZ
21482000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
2149
2150 * dosfns.c (Ffile_system_info): New function.
2151 (syms_of_dosfns): Defsubr it.
2152
5c7f629c
SM
21532000-12-07 Stefan Monnier <monnier@cs.yale.edu>
2154
2155 * alloc.c (gc_sweep): Add comment.
2156
959e647d
GM
21572000-12-07 Gerd Moellmann <gerd@gnu.org>
2158
28fcb7dc
GM
2159 * sound.c (vox_configure): Change order of ioctls. Don't
2160 set SNDCTL_DSP_SPEED from bps, don't set SNDCTL_DSP_SAMPLESIZE.
2161 Ignore errors when changing volume.
2162 (vox_close): Don't reset the device.
2163
926b7e5e
GM
2164 * process.c (read_process_output): Make sure the process marker's
2165 position is valid when the process buffer is changed in
2166 after-change functions. W3 does that.
2167
959e647d
GM
2168 * xfns.c (x_free_gcs): New function.
2169
2170 * xterm.h (x_free_gcs): Add prototype.
2171
2172 * widget.c (EmacsFrameDestroy): Call x_free_gcs instead of
2173 freeing GCs here.
2174
2175 * xterm.c (x_destroy_window): Call x_free_gcs so that
2176 resources of non-toolkit X windows will be freed.
2177
478ea067
AI
21782000-12-07 Andrew Innes <andrewi@gnu.org>
2179
2180 * w32fns.c (xlfd_charset_of_font): Fix last change.
2181
fbee3231
DL
21822000-12-06 Dave Love <fx@gnu.org>
2183
67292061
DL
2184 * md5.h (__P): Don't define -- it comes from config.h.
2185
fbee3231
DL
2186 * strftime.c: Change some #if foo to #ifdef foo.
2187
4ee87dbb
AI
21882000-12-06 Andrew Innes <andrewi@gnu.org>
2189
2190 * w32term.h (CP_INVALID): Rename to CP_UNKNOWN.
2191
2192 * w32fns.c (xlfd_charset_of_font): Don't overwrite fontname
2193 argument.
2194 (w32_codepage_for_font): Rename CP_INVALID to CP_UNKNOWN.
2195 (w32_list_fonts): Don't choke if pattern doesn't specify a
2196 codepage.
2197
9765b4a4
GM
21982000-12-06 Gerd Moellmann <gerd@gnu.org>
2199
d285b373
GM
2200 * alloc.c (gc_sweep): Prevent symbols read during loadup
2201 from being freed.
2202
384333ee
GM
2203 * xdisp.c (underlying_face_id): New function.
2204 (handle_face_prop, face_before_or_after_it_pos): Use it
2205 to determine the face ``under'' a string. Let strings inherit
2206 the face of the buffer under them.
2207
2208 * xfaces.c (face_at_string_position): Update function comment.
2209
d4b72d58
GM
2210 * dispnew.c (adjust_glyph_matrix): Don't reuse a window's current
2211 matrix if the window's left position has changed; we need to
2212 redraw it in this case.
2213
2214 * dispextern.h (struct glyph_matrix): Add member window_left_x.
2215
e1d05387
GM
2216 * window.c (coordinates_in_window): Check mouse on mode-line or
2217 header-line first.
2218
eb1b0c74
GM
2219 * alloc.c (Fgarbage_collect): Dox fix. Return a list as
2220 advertized by the function documentation.
2221
d94d636f
GM
2222 * window.c (syms_of_window): Doc fix.
2223
3887b449
GM
2224 * sound.c (vox_configure): Set volume for left and right channel.
2225 (sound_cleanup): Return nil.
2226
efc8f57a
GM
2227 * xdisp.c (move_it_by_lines): Fix paren typo.
2228
9765b4a4
GM
2229 * xterm.c (x_load_font): Don't use the font's max_bounds for
2230 computing the height of the font. If max_bounds' ascent or
2231 descent are greater than the font's ascent or descent, this means
2232 glyphs overlap, which should be handled now by redisplay.
2233
6529ed87
GM
2234 * window.c (Veven_window_heights): New variable.
2235 (syms_of_window): DEFVAR_LISP it.
2236 (Fdisplay_buffer): Check Veven_window_heights before evening the
2237 window heights.
2238
0eb2ecde
MB
22392000-12-06 Miles Bader <miles@gnu.org>
2240
2241 * xfaces.c (Finternal_set_lisp_face_attribute): If FRAME is `t',
2242 update `default-frame-alist' instead of setting no frame parameters.
2243
03d7a167
KH
22442000-12-06 Kenichi Handa <handa@etl.go.jp>
2245
2246 * composite.c (update_compositions): Fix typo (use the correct
2247 variable).
2248
5f8803c2
JR
22492000-12-05 Jason Rumney <jasonr@gnu.org>
2250
2251 * md5.h: Remove underscores from function declarations.
2252 (__attribute__, __alignof__) [!__GNUC__]: Define.
2253
2254 * md5.c: Delay include of md5.h until after namespace cleaning.
2255
c28a075b
JR
2256 * makefile.w32-in (fns.o): Depend on md5.h
2257 (md5.o): New target.
2258 (sunfns.o): Remove.
2259
2260 * makefile.nt: Likewise.
2261
ff3c7056
JR
22622000-12-05 Jason Rumney <jasonr@altavista.net>
2263
2264 * w32term.c (expose_area): Complete last change.
2265
0c21eeeb
KR
22662000-12-05 Ken Raeburn <raeburn@gnu.org>
2267
2268 * minibuf.c: Include intervals.h.
2269
f201d732
JR
22702000-12-05 Jason Rumney <jasonr@gnu.org>
2271
2272 * w32term.c (x_produce_glyphs): If a font for a component of
2273 a composition is not found, use 1 pixel dot ascent and 0 dot
2274 descent value to avoid displaying terribly tall empty boxes.
2275 (expose_area): Pass x-coordinate relative to the exposed
2276 area to x_draw_glyphs instead of a window-relative coordinate.
2277
21999ab9
GM
22782000-12-05 Gerd Moellmann <gerd@gnu.org>
2279
4d2036e4
GM
2280 * xdisp.c (next_element_from_ellipsis): Save face before selective
2281 display in saved_face_id, and set face_before_selective_p.
2282 (reseat_1): Reset face_before_selective_p.
2283 (append_space, extend_face_to_end_of_line): If iterator's
2284 face_before_selective_p is set, use the face from saved_face_id.
2285 (extend_face_to_end_of_line): For tty frames, make sure to
2286 use the right face id when producing spaces at the end of
2287 the line.
2288
2289 * dispextern.h (struct it): Add face_before_selective_p.
2290
52be17cc
GM
2291 * keyboard.c (record_char): Don't record identical help-echo
2292 events in recent_keys.
2293
8a4f36cc
GM
2294 * xterm.c [USE_X_TOOLKIT]: Close the display.
2295 (xim_close_dpy): Handle case that the display has been closed.
2296
57d6e381
GM
2297 * xterm.c (x_destroy_window): Reset the frame's X window after
2298 destroying it.
2299
21999ab9
GM
2300 * dispnew.c (adjust_glyph_matrix): Make sure to initialize local
2301 variable window_width.
2302 (line_draw_cost): Fix code skipping over spaces at the end of the
2303 line when must_write_spaces is not set.
2304 (scrolling_window): Fix code inserting runs in list of all runs.
2305
91372bb7
KH
23062000-12-05 Kenichi Handa <handa@etl.go.jp>
2307
2308 * coding.c (setup_coding_system): Be sure to initialize
2309 coding->category_idx.
2310
6c083b4c
GM
23112000-12-04 Gerd Moellmann <gerd@gnu.org>
2312
0c68ce6f
GM
2313 * xterm.c (PER_CHAR_METRIC): Removed because not used.
2314
6452929e
GM
2315 * xterm.c (expose_area): Pass x-coordinate relative to the exposed
2316 area to x_draw_glyphs instead of a window-relative coordinate.
2317
d7f31e22
GM
2318 * fileio.c (auto_save_error): Add parameter ERROR. Show the
2319 error in the message.
2320
ae18aa3b
GM
2321 * keyboard.c (Fread_key_sequence): Don't start the busy cursor
2322 timer after having read a key. It's not good for code reading
2323 several keys in a loop, like an input method.
2324
caa15ef7
GM
2325 * fileio.c (Finsert_file_contents): When VISIT is t, don't
2326 record undo information for format-decode.
2327
2328 * undo.c (Fprimitive_undo): Bind inhibit-read-only to t if
2329 current buffer is read-only, not if it isn't.
2330
6c083b4c
GM
2331 * keyboard.c (record_char): Record `help-echo' input events
2332 in recent_keys only if they display some help. Don't record
2333 `help-echo' events as macro char.
2334
caa15ef7
GM
23352000-12-04 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2336
2337 * editfns.c (save_excursion_restore): Don't move point
2338 in another window if it is showing the wrong buffer.
2339 Avoid the call to Fwindow_live_p, for speed.
2340
5a13529b
KH
23412000-12-04 Kenichi Handa <handa@etl.go.jp>
2342
e225faa7
KH
2343 * xfaces.c (struct font_name): New member registry_priority.
2344 (split_font_name): Initialize the above member to zero.
2345 (concat_font_list): New function.
2346 (font_list): Include fonts of all alternative registries.
2347 (FONT_POINT_SIZE_QUANTUM): New macro.
2348 (better_font_p): Ignore point size difference less than
2349 FONT_POINT_SIZE_QUANTUM. Use registry_prioprity as a last resort.
2350
e89648b4
KH
2351 * xterm.c (x_produce_glyphs): If a font for a component of
2352 a composition is not found, use 1 pixel dot ascent and 0 dot
2353 descent value to avoid displaying terribly tall empty boxes.
2354
5a13529b
KH
2355 * ccl.c (stack_idx_of_map_multiple): Don't use C initializier.
2356
d7935eb6
KR
23572000-12-03 Ken Raeburn <raeburn@gnu.org>
2358
2359 * coding.h (code_convert_string1): Declare.
2360
2361 * fns.c (Fmd5): Pass lisp objects, not integers, to call3.
2362
2363 * lisp.h (Fmake_variable_buffer_local, Fbuffer_file_name):
2364 Declare.
2365
0dd5e255
JR
23662000-12-02 Jason Rumney <jasonr@gnu.org>
2367
2368 * w32term.c (w32_bdf_per_char_metric): Dereference pointer
2369 correctly for single byte character case.
2370 (w32_per_char_metric): Do not try to make any assumptions about
2371 the metrics of BDF fonts.
250cfece
JR
2372 (x_estimate_mode_line_height): If `mode-line' face
2373 hasn't a font, use that of the frame, as drawing glyphs
2374 does.
2375 (note_mouse_highlight): Change the cursor shape on the vertical
2376 border between windows [not enabled].
2377
2378 * w32term.h (struct w32_output): Add member horizontal_drag_cursor.
2379
2380 * w32fns.c (Fx_create_frame): Reintroduce the call to
2381 face-set-after-frame-defaults.
2382 (Vx_window_horizontal_drag_shape): New variable.
2383 (syms_of_xfns): DEFVAR_LISP it.
2384 (x_set_mouse_color): Create frame's horizontal_drag_cursor [not
2385 enabled].
0dd5e255 2386
b5d8d2ca
GM
23872000-12-02 Simon Josefsson <simon@josefsson.org>
2388
2389 * fns.c (Fmd5): Use a different logic to decide the coding system
2390 to use.
2391
2392 * coding.h (Qwrite_region, Qcoding_system_error): Declare extern.
2393
fbb87147
EZ
23942000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
2395
2396 * fileio.c (Fread_file_name) [DOS_NT]: Don't crash if homedir is
2397 NULL.
2398
447e9da0
GM
23992000-12-01 Gerd Moellmann <gerd@gnu.org>
2400
7708ced0
GM
2401 * xterm.c (x_calc_absolute_position): Don't subtract menubar's
2402 height for YNegative.
2403 (x_calc_absolute_position) [USE_MOTIF]: Use the column widget's
2404 height; also see comment there.
2405
447e9da0
GM
2406 * window.c (coordinates_in_window): Handle computations for
2407 positions on the vertical bar and fringes differently for
2408 window-system frames. Consider some pixels near the vertical bar
2409 as on the bar if the frame doesn't have vertical scroll bars.
2410 Associate positions between mode or header lines with the
2411 right window, the left one.
2412
86d1db20
JR
24132000-12-01 Jason Rumney <jasonr@gnu.org>
2414
2415 * w32term.c (w32_clear_window): Avoid clearing an invalid frame.
2416
2417 * w32xfns.c (get_frame_dc): Avoid changing the palette on an
2418 invalid frame.
2419
a1d58e5b
GM
24202000-12-01 Gerd Moellmann <gerd@gnu.org>
2421
2422 * window.c (struct saved_window): Add members orig_top and
2423 orig_height.
2424 (SAVED_WINDOW_VECTOR_SIZE): Increment to 16.
2425 (save_window_save, Fset_window_configuration): Save/restore
2426 window's orig_top and orig_height.
2427
89c609af
JR
24282000-12-01 Jason Rumney <jasonr@gnu.org>
2429
4d177746 2430 * w32term.c (x_draw_vertical_border): Fix call to w32_fill_rect.
86d1db20 2431
89c609af
JR
2432 * w32fns.c (x_set_cursor_color): Fix last change.
2433
eccc05db
GM
24342000-11-30 Gerd Moellmann <gerd@gnu.org>
2435
31b6671b
GM
2436 * xdisp.c (echo_area_display): If cursor is in the echo area, make
2437 sure that the next redisplay displays the minibuffer, so that
2438 the cursor will be replaced with what the minibuffer wants.
2439
eccc05db
GM
2440 * xterm.c: Test USE_TOOLKIT_SCROLL_BARS everywhere with #ifdef and
2441 #ifndef instead of using #if.
2442 (XTread_socket) [USE_MOTIF] <KeyPress>: Call XmIsScrollBar only if
2443 USE_TOOLKIT_SCROLL_BARS is defined.
2444
162de750
JR
24452000-11-30 Jason Rumney <jasonr@gnu.org>
2446
2447 * w32fns.c (x_set_cursor_color): Use x_update_cursor instead of
2448 x_display_cursor.
2449
693c4692
GM
24502000-11-30 Gerd Moellmann <gerd@gnu.org>
2451
2452 * fns.c (Fmd5): Doc fix.
2453
b5d8d2ca 24542000-11-30 Simon Josefsson <simon@josefsson.org>
edfb795e
GM
2455
2456 * fns.c (Fmd5): New function.
2457 (syms_of_fns): Defsubr md5.
2458
2459 * Makefile.in (obj): Add md5.o
2460
b02cd40b
GM
24612000-11-30 Gerd Moellmann <gerd@gnu.org>
2462
edfb795e
GM
2463 * md5.h, md5.c: New files, taken from glibc.
2464
df3aedcf
GM
2465 * xmenu.c (popup_get_selection): Use xmalloc instead of malloc.
2466
b02cd40b
GM
2467 * xterm.c (x_estimate_mode_line_height): If `mode-line' face
2468 hasn't a font, use that of the frame, as drawing glyphs
2469 does.
2470
8b5176cd
SM
24712000-11-29 Stefan Monnier <monnier@cs.yale.edu>
2472
2473 * eval.c (Frun_hooks): Allow 0 arguments.
2474
346598f1
GM
24752000-11-29 Gerd Moellmann <gerd@gnu.org>
2476
f9396e03
GM
2477 * xterm.c (XTmouse_position) [USE_X_TOOLKIT]: When the mouse
2478 is over the menu bar widget, say it's not on the frame.
2479
4a967a9b
GM
2480 * xfns.c (Fx_create_frame): Reintroduce the call to
2481 face-set-after-frame-defaults.
2482
346598f1
GM
2483 * eval.c (Fsignal): Reset handling_signal.
2484
222456a1
JR
24852000-11-28 Jason Rumney <jasonr@gnu.org>
2486
2487 * w32menu.c (add_menu_item): Reset menu item text when changing
2488 type to radio button.
2489
8049ddc0
GM
24902000-11-28 Gerd Moellmann <gerd@gnu.org>
2491
346598f1 2492 * xselect.c: Update copyright.
f4f4ee4d 2493
bebe4a2c
GM
2494 * window.c (coordinates_in_window): If on a mode or header line,
2495 but sufficiently close to its start, return ``on vertical
2496 border''. This gives us a way to drag windows horizontally when
2497 using toolkit scroll bars.
2498
2499 * xterm.c (note_mouse_highlight): Change the cursor shape
2500 on the vertical border between windows.
2501
2502 * xterm.h (struct x_output): Add member horizontal_drag_cursor.
2503
2504 * xfns.c (Vx_window_horizontal_drag_shape): New variable.
2505 (syms_of_xfns): DEFVAR_LISP it.
2506 (x_set_mouse_color): Create frame's horizontal_drag_cursor.
2507
8d2c2642
GM
2508 * textprop.c (text_read_only): New function.
2509 (verify_interval_modification): Use it instead of signaling
2510 `text-read-only'. This makes it easier to catch this error
2511 with a breakpoint.:
2512
8049ddc0
GM
2513 * xdisp.c (forward_to_next_line_start): Check for newlines,
2514 not end of line, which includes CR.
2515
5a2bae6c
KH
25162000-11-28 Kenichi Handa <handa@etl.go.jp>
2517
2518 * coding.c (Ffind_coding_systems_region_internal): Be sure to
2519 include no-conversion.
2520
ae31f84d
JR
25212000-11-27 Jason Rumney <jasonr@gnu.org>
2522
2523 * w32fns.c (w32_load_system_font): Always mark font as double byte
2524 if codepage is unicode.
2525
67f1cf4c
GM
25262000-11-27 Gerd Moellmann <gerd@gnu.org>
2527
4a74d071
GM
2528 * xdisp.c (forward_to_next_line_start): If already on a newline,
2529 just consume it to avoid unintended skipping over invisible text
2530 below.
2531
902ae620
GM
2532 * keyboard.c (lucid_event_type_list_p): Handle `help-echo',
2533 `vertical-line', `mode-line' and `header-line' events.
2534
2535 * xdisp.c (try_window_id): Avoid starting to display in the middle
67f1cf4c
GM
2536 of a character, a TAB for instance. This is easier than to set
2537 up the iterator exactly, and it's not a frequent case, so the
2538 additional effort wouldn't really pay off.
2539
c1e279c2
AC
25402000-11-26 Andrew Choi <akochoi@i-cable.com>
2541
67f1cf4c 2542 * emacs.c (main) [macintosh]: Call syms_of_frame before calling
c1e279c2
AC
2543 init_window_once.
2544
a609568a
JR
25452000-11-25 Jason Rumney <jasonr@gnu.org>
2546
48b21762
JR
2547 * keyboard.c (make_lispy_event) [mouse_wheel, drag_n_drop]: Args
2548 to window_from_coordinates should be pixel coordinates.
2549
a609568a
JR
2550 * w32fns.c (x_to_w32_font): Do not filter out italic fonts, as new
2551 redisplay handles them properly.
2552
a658d039
MB
25532000-11-25 Miles Bader <miles@gnu.org>
2554
2555 * indent.c (compute_motion): Keep pos_byte in sync with pos.
2556
d3416cca
JR
25572000-11-24 Jason Rumney <jasonr@gnu.org>
2558
2559 * w32.c (init_environment): Set LANG environment variable based on
2560 locale settings, if not set.
2561
2562 * w32fns.c (x_set_tool_bar_lines): Clear internal border when
2563 making tool bar smaller. When clearing the frame, also
2564 clear current matrices. Clear frame when tool bar disappears.
2565 Don't use more lines for the tool-bar than is available.
2566 (x_change_window_heights): New function.
2567
ba193890
GM
25682000-11-24 Gerd Moellmann <gerd@gnu.org>
2569
2be8f184
GM
2570 * xdisp.c (init_from_display_pos): If POS says we're already after
2571 an overlay string ending at POS, make sure to pop the iterator
2572 because it will be in front of that overlay string. When POS is
2573 ZV, we've thereby also ``processed'' overlay strings at ZV.
2574
ba193890
GM
2575 * xfaces.c (lface_from_face_name): Function comment fix.
2576
1862a24e
MB
25772000-11-24 Miles Bader <miles@gnu.org>
2578
2579 * xdisp.c (display_menu_bar, display_mode_line): Change the way we
2580 apply `mode-line-inverse-video' -- zero means force display using
2581 the default face, non-zero means display using the specialized face.
2582 (syms_of_xdisp): `mode-line-inverse-video' defaults to true again.
2583
f07fa1b8
KH
25842000-11-23 Kenichi Handa <handa@etl.go.jp>
2585
2586 * alloc.c (Fmake_string): Use MAX_MULTIBYTE_LENGTH, instead of
2587 hard coded `4'.
2588
2bcdf662
EZ
25892000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
2590
2591 * coding.c (decode_coding_emacs_mule): Fix the case of
2592 CODING_EOL_LF, which used uninitialized value of c.
2593
ba8299ff
SM
25942000-11-23 Stefan Monnier <monnier@cs.yale.edu>
2595
2596 * xdisp.c (syms_of_xdisp): Make fontification-functions buffer-local.
2597
f4117c4d
GM
25982000-11-22 Gerd Moellmann <gerd@gnu.org>
2599
03e757c1
GM
2600 * buffer.c (Fmake_indirect_buffer): Don't treat nil as a
2601 buffer object.
2602
f4117c4d
GM
2603 * frame.h (struct frame): Replace desired_tool_bar_items,
2604 current_tool_bar_items, n_desired_tool_bar_items,
cc362d76 2605 n_current_tool_bar_items with tool_bar_items and n_tool_bar_items.
f4117c4d
GM
2606
2607 * frame.c (make_frame): Change initialization of tool bar
2608 items accordingly.
2609
2610 * xterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
cc362d76 2611 Change references to members deleted from struct frame to use the
f4117c4d
GM
2612 new ones.
2613
2614 * xdisp.c (update_tool_bar, build_desired_tool_bar_string): Change
cc362d76 2615 references to members deleted from struct frame to use the new
f4117c4d
GM
2616 ones.
2617
2618 * dispnew.c (update_frame): Do nothing with frame's tool bar
2619 items.
2620
2621 * alloc.c (mark_object) <frame>: Mark tool bar items differently.
2622
2623 * w32term.c (x_tool_bar_item, w32_handle_tool_bar_click)
cc362d76 2624 (note_tool_bar_highlight): Change references to members deleted
f4117c4d
GM
2625 from struct frame to use the new ones.
2626
f8e2f3f2
MB
26272000-11-23 Miles Bader <miles@gnu.org>
2628
2629 * xdisp.c (display_menu_bar): Or `mode-line-inverse-video' with
2630 the face's inverse-video attribute, rather than overriding it.
2631
60e8e0a5
GM
26322000-11-22 Gerd Moellmann <gerd@gnu.org>
2633
2634 * xfns.c (x_set_tool_bar_lines): Clear internal border when
2635 making tool bar smaller.
2636
92dd1b29
DL
26372000-11-22 Dave Love <fx@gnu.org>
2638
2639 * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): Don't define.
2640
e672fdce
MB
26412000-11-22 Miles Bader <miles@gnu.org>
2642
3a17d6cc
MB
2643 * keyboard.c (Vminibuffer_message_timeout): New variable.
2644 (command_loop_1): Use it to determine message timeout.
2645 (syms_of_keyboard): Initialize it.
2646
60e8e0a5 2647 * xdisp.c (syms_of_xdisp): `mode-line-inverse-video' defaults to nil.
e672fdce 2648
e9655d81
KH
26492000-11-22 Kenichi Handa <handa@etl.go.jp>
2650
2651 * sysdep.c: Move the code for declaring h_errno after #include
2652 <netdb.h>.
2653
77270fac
GM
26542000-11-21 Gerd Moellmann <gerd@gnu.org>
2655
cd913aae
GM
2656 * xfns.c (Fx_hide_tip) [USE_LUCID]: Add a hack to redisplay
2657 the menu bar when the tooltip is unmapped.
2658
77270fac
GM
2659 * buffer.c (Fkill_buffer): Notice if the buffer to kill is the
2660 sole visible buffer when we're currently in the mini-buffer, and
2661 give up if so.
2662
556635d6
JR
26632000-11-21 Jason Rumney <jasonr@gnu.org>
2664
2665 * w32select.c (Fw32_set_clipboard_data): Save a copy of what is
2666 put on the clipboard.
2667 (Fw32_get_clipboard_data): Compare data on clipboard with saved
2668 copy of what Emacs last put there. If they are the same, do not
2669 use the clipboard copy to avoid losing data due to coding
2670 conversions.
2671
5b7bde64
MB
26722000-11-22 Miles Bader <miles@gnu.org>
2673
2674 * minibuf.c (Vminibuffer_prompt_properties): New variable.
2675 (syms_of_minibuf): Initialize it.
2676 (read_minibuf): Add properties from Vminibuffer_prompt_properties
2677 to prompt, don't make read-only.
2678
ff23e1dd
GM
26792000-11-21 Gerd Moellmann <gerd@gnu.org>
2680
3c64f287
GM
2681 * bytecode.c (Fbyte_code) <Bvarbind, Bunwind_protect>: Add
2682 BEFORE/AFTER_POTENTIAL_GC.
2683
7aaf4388
GM
2684 * s/hpux10.h (_FILE_OFFSET_BITS): Undef.
2685
f5f47add 2686 * buffer.c (mmap_free_1): Avoid a compiler warning.
1a15cca0 2687
ff23e1dd
GM
2688 * term.c, cm.c: Don't try to include termcap.h; see comment there.
2689
37c35586
KH
26902000-11-21 Kenichi Handa <handa@etl.go.jp>
2691
2692 * s/sol2-5.h: Move #undef USE_MMAP_FOR_BUFFERS out of #if 0
2693 ... #endif scope.
2694
ff9ab414
GM
26952000-11-20 Gerd Moellmann <gerd@gnu.org>
2696
c51d2b5e
GM
2697 * xfns.c (x_create_tip_frame): Use CWSaveUnder only if the
2698 screen supports it.
2699
29a01b72
GM
2700 * s/gnu-linux.h: Don't use `#cpu'.
2701
09dfdf85
GM
2702 * buffer.c (MAP_FAILED): Define it as `((void *) -1)' if it's
2703 not defined in mman.h.
2704
ff9ab414
GM
2705 * xterm.c (scroll_bar_windows, scroll_bar_windows_size): New
2706 variables.
2707 (x_send_scroll_bar_event): Store the window in scroll_bar_windows
2708 and store an index in the XClientMessageEvent. Storing a
2709 Lisp_Object or pointer can fail on a 64 bit system, since X only
2710 transfers 32 bits.
2711 (x_scroll_bar_to_input_event): Get the window from
2712 scroll_bar_windows.
2713
81459ac9
DL
27142000-11-20 Dave Love <fx@gnu.org>
2715
2716 * Makefile.in (LIBX): Reorder for -lX11 after -lXpm.
2717
56c13ae6
GM
27182000-11-20 Gerd Moellmann <gerd@gnu.org>
2719
2720 * s/sol2-5.h (USE_MMAP_FOR_BUFFERS): Undefine.
2721
495a6df3
KH
27222000-11-20 Kenichi Handa <handa@etl.go.jp>
2723
2bcf3714
KH
2724 * charset.c (get_new_private_charset_id): Don't limit CHARSET_ID
2725 by WIDTH.
2726
495a6df3
KH
2727 * alloc.c (make_string): Fix previous change. Be sure to make
2728 unibyte string correctly.
2729
6d950f4c
GM
27302000-11-19 Gerd Moellmann <gerd@gnu.org>
2731
39b39373
GM
2732 * window.c (Fwindow_list): Change parameter list to be XEmacs
2733 compatible.
2734 (window_list_1): New function.
2735 (window_loop): Use it instead of Fwindow_list.
2736
b95b34e5
GM
2737 * sysdep.c (emacs_ospeed): New variable.
2738 (toplevel): Don't declare ospeed extern.
2739 (init_baud_rate): Use emacs_ospeed instead of ospeed.
2740
2741 * termcap.c (ospeed): Remove.
2742 (tputs) [!emacs]: Remove unused code.
2743 (tgetent): Avoid a compiler warning.
2744
e83dc917
GM
2745 * xterm.c (x_set_toolkit_scroll_bar_thumb, x_scroll_bar_create)
2746 (x_scroll_bar_remove, XTset_vertical_scroll_bar): Call
b95b34e5 2747 SCROLL_BAR_X_WIDGET with additional argument DPY.
e83dc917
GM
2748
2749 * xterm.h (struct scroll_bar): Members x_widget_low, x_widget_high
2750 removed.
2751 (SCROLL_BAR_X_WIDGET): Get the widget via XtWindowToWidget.
2752 Take the X display as additional argument.
2753 (SET_SCROLL_BAR_X_WIDGET): Store the window of the widget, since
2754 `Widget' is a pointer type that's not easily stored in Lisp_Object
2755 form in a portable way.
2756
6d950f4c
GM
2757 * dispnew.c (update_text_area): Fix last change.
2758
e47306e6
GM
27592000-11-18 Gerd Moellmann <gerd@gnu.org>
2760
fb3cd89b
GM
2761 * xdisp.c: Use BINDING_STACK_SIZE throughout.
2762
2763 * xfns.c (x_set_tool_bar_lines): When clearing the frame, also
2764 clear current matrices.
2765
edaa9aed
GM
2766 * buffer.c (mmap_enlarge): Don't print a message on stderr
2767 if mapping new memory at the end of the existing region fails.
2768
e47306e6
GM
2769 * dispnew.c (update_text_area): Don't skip over equal glyphs
2770 when the last current glyph overlaps the glyph to its right.
2771
509633e3
MB
27722000-11-18 Miles Bader <miles@gnu.org>
2773
2774 * xdisp.c (message_log_check_duplicate): Let "..."-detection match
2775 lines that *end* with "..." too (that's the most common case!).
2776
d392e9c5
GM
27772000-11-18 Gerd Moellmann <gerd@gnu.org>
2778
67988445
GM
2779 * xdisp.c (resize_mini_window): Temporarily change to the
2780 mini-window's buffer if necessary.
1bfdbe43 2781
d392e9c5
GM
2782 * xfns.c (Fx_show_tip): Use default y-offset of -10 so that
2783 the tooltip obscures less text under it.
2784
27852000-11-17 Gerd Moellmann <gerd@gnu.org>
2786
2787 * puresize.h (BASE_PURESIZE): Increase to 700000.
2788
92bb977f
JR
27892000-11-18 Jason Rumney <jasonr@gnu.org>
2790
2791 * w32term.c (w32_draw_bitmap): Use face to set colors.
2792
26fbf20b
DL
27932000-11-17 Dave Love <fx@gnu.org>
2794
2795 * lread.c (Fload): Fix #ifdef for pcc.
2796
100b593b
GM
27972000-11-17 Gerd Moellmann <gerd@gnu.org>
2798
2799 * xdisp.c (pos_visible_p): Compute the default character height
2800 differently.
2801
a288d0d1
GM
28022000-11-16 Gerd Moellmann <gerd@gnu.org>
2803
cac94de6
GM
2804 * xdisp.c (pos_visible_p): Handle case that we reach ZV without
2805 knowing the line's height; use the default font's height in that
2806 case.
2807
a288d0d1
GM
2808 * xfaces.c (weight_table): Add `demi' with the same meaning as
2809 `demibold'.
2810
981fb6f6
KH
28112000-11-16 Kenichi Handa <handa@etl.go.jp>
2812
2cca872d 2813 * dispnew.c (null_row): New global static variable.
981fb6f6
KH
2814 (clear_glyph_row): Delete local static variable null_row.
2815
e5fa381b
JR
28162000-11-15 Jason Rumney <jasonr@gnu.org>
2817
2818 * w32term.c (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
2819 (w32_alloc_lighter_color): Use new brightness calculations from
2820 xterm.c. Scale delta to be in the range expected by W32.
2821 (w32_draw_relief_rect): Use frame relief colors.
2822
8e42f043
GM
28232000-11-15 Gerd Moellmann <gerd@gnu.org>
2824
6d133d1f
GM
2825 * frame.c (syms_of_frame_1): Removed; code moved to syms_of_frame.
2826 (Qinhibit_default_face_x_resources): New variable.
2827 (syms_of_frame): Initialize it.
2828 (Fmodify_frame_parameters): Bind inhibit-default-face-x-resources.
2829
2830 * xdisp.c (pos_visible_p): Improve function comment.
2831
2832 * lisp.h (BINDING_STACK_SIZE): New macro.
2833
8e42f043
GM
2834 * dired.c (directory_files_internal) [EAGAIN || EINTR]: Retry
2835 reading the directory if readdir returns null and errno is EAGAIN
2836 or EINTR.
2837
e8c87124
SM
28382000-11-14 Stefan Monnier <monnier@cs.yale.edu>
2839
2840 * xdisp.c (try_scrolling): Set scroll_max to max of scroll_* args
2841 so setting scroll-step to 1 doesn't defeat scroll-conservatively.
2842 Set amount_to_scroll to max of dx and scroll_step so that
2843 scroll-conservatively doesn't defeat scroll-step>1.
2844 (syms_of_xdisp): Add a hint in scroll-step's docstring to use
2845 scroll-conservatively for line-at-a-time scrolling.
2846
5f0c971d
GM
28472000-11-14 Gerd Moellmann <gerd@gnu.org>
2848
2849 * window.c (Fpos_visible_in_window_p): Call pos_visible with
2850 extra argument.
2851
2852 * xdisp.c (current_mode_line_height, current_header_line_height):
2853 New variables.
2854 (init_xdisp): Initialize them.
2855 (pos_visible_p): Add parameter EXACT_MODE_LINE_HEIGHTS_P. Compute
2856 and use exact mode line heights if it is set.
2857
2858 * lisp.h (pos_visible_p): Change prototype.
2859
2860 * dispextern.h (CURRENT_MODE_LINE_HEIGHT)
2861 (CURRENT_HEADER_LINE_HEIGHT): Look at current_mode_line_height
2862 and current_header_line_height first.
2863 (current_mode_line_height, current_header_line_height): Declare
2864 extern.
2865
d7361edf
MB
28662000-11-14 Miles Bader <miles@lsi.nec.co.jp>
2867
2868 * xterm.c (x_alloc_lighter_color): Use real brightness calculation.
2869 Just use FACTOR/2 instead of HIGHLIGHT_COLOR_DARK_BOOST.
2870 (HIGHLIGHT_COLOR_DARK_BOOST): Macro removed.
2871
ee5e440a
MB
28722000-11-14 Miles Bader <miles@gnu.org>
2873
2874 * xterm.c (x_alloc_lighter_color): Include an additive component
2875 too for dark colors, because FACTOR isn't enough.
2876 (HIGHLIGHT_COLOR_DARK_BOOST, HIGHLIGHT_COLOR_DARK_BOOST_LIMIT):
2877 New macros.
2878
5ca020fc
GM
28792000-11-13 Gerd Moellmann <gerd@gnu.org>
2880
2881 * keyboard.c (show_help_echo): Call message3_nolog with number of
2882 bytes in the help string as 2nd parameter, instead of the number
2883 of characters.
2884
9d348294
MB
28852000-11-13 Miles Bader <miles@gnu.org>
2886
2887 * lread.c (openp): Return -2 instead of 0 for the `remote file' case.
2888 (Fload): Use new openp return protocol.
2889 Don't try to use Vload_source_file_function to load .elc files.
2890 * xfns.c (x_create_bitmap_from_file, x_find_image_file): Use new
2891 openp return protocol.
2892 * w32fns.c (x_create_bitmap_from_file, x_find_image_file): Likewise.
2893
1729bb9a
KH
28942000-11-11 Kenichi Handa <handa@etl.go.jp>
2895
4e677396
KH
2896 * syssignal.h: Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
2897
2898 * m/ibmrs6000.h (BROKEN_SIGAIO, BROKEN_SIGPTY, BROKEN_SIGPOLL):
2899 Defined these macros.
2900 (NLIST_STRUCT): Avoid re-defining it.
2901
1729bb9a
KH
2902 * s/hpux10.h (C_SWITCH_X_SYSTEM): Include -I/usr/include/X11R6 and
2903 -I/usr/contrib/X11R6/include.
2904 (LD_SWITCH_X_DEFAULT): Include -L/usr/lib/X11R6.
2905
a82fe213
JR
29062000-11-10 Jason Rumney <jasonr@gnu.org>
2907
2908 * w32term.h (CP_8BIT, CP_UNICODE, CP_INVALID): New pseudo-codepages.
2909
2910 * w32term.c (w32_encode_char): Handle CP_UNICODE specially.
2911 (w32_use_unicode_for_codepage): Use new pseudo-codepages.
2912
2913 * w32fns.c (Qw32_charset_hangeul): Rename to match w32 headers.
2914 (Qw32_charset_vietnamese): New symbol.
2915 (xlfd_charset_of_font): New function.
2916 (w32_load_system_font): Use it.
2917 (x_to_w32_charset): Use Fassoc to find charset info. Special case
2918 when Vw32_charset_info_alist is nil to ensure default face always
2919 has font. Use Fcar and Fcdr for safety.
2920 (w32_to_x_charset): Use Vw32_charset_info_alist for mappings.
2921 (w32_codepage_for_font): Use xlfd_charset_of_font. Use new
2922 pseudo-codepages for special cases.
2923 (w32_to_x_font): New parameter to allow charset portion to be
2924 specified where there is many to one mapping. Callers changed.
2925 (w32_list_fonts): Avoid listing fonts that won't display.
2926
52d89894
GM
29272000-11-10 Gerd Moellmann <gerd@gnu.org>
2928
2929 * xfaces.c (Vface_alternative_font_registry_alist): New variable.
2930 (font_list_1): Renamed from font_list.
2931 (font_list): New function, trying alternative registries from
2932 Vface_alternative_font_registry_alist.
2933 (Finternal_set_alternative_font_registry_alist): New function.
2934 (syms_of_xfaces): Initialize and Staticpro
2935 Vface_alternative_font_registry_alist. Defsubr
2936 Finternal_set_alternative_font_registry_alist.
2937
651cd3da
KR
29382000-11-09 Ken Raeburn <raeburn@gnu.org>
2939
2940 * lisp.h (Flooking_at): Declare.
2941
388ac098
GM
29422000-11-09 Gerd Moellmann <gerd@gnu.org>
2943
778fbc46
GM
2944 * dired.c (directory_files_internal): Fix a braino.
2945
388ac098
GM
2946 * dired.c (directory_files_internal): Add missing GCPRO's.
2947 Some cleanup.
2948
ecaedde1
GM
29492000-11-08 Gerd Moellmann <gerd@gnu.org>
2950
f7eb32aa
GM
2951 * xdisp.c (syms_of_xdisp): Change doc of max-mini-window-height.
2952 (resize_mini_window): Return quickly if Vresize_mini_window is
2953 nil. Don't return if Vmax_mini_window_height is nil.
2954
2955 * xdisp.c (Vresize_mini_window, Qgrow_only): New variables.
2956 (syms_of_xdisp): Initialize them.
2957 (resize_mini_window): Act according to the setting of
2958 Vresize_mini_window.
2959 (syms_of_xdisp): Initialize Vmenu_bar_update_hook to nil.
2960
ecaedde1
GM
2961 * xterm.c (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Map the
2962 scroll bar widget after configuring it, so that it will appear at
2963 the right position from the start.
2964 (XTredeem_scroll_bar): Cleaned up.
2965
3747ef2c
KH
29662000-11-08 Kenichi Handa <handa@etl.go.jp>
2967
2968 * xterm.c (VCENTER_BASELINE_OFFSET): Fix previous change. If the
5d16e624 2969 font is taller than the frame line, we don't have to bias the
3747ef2c
KH
2970 division by two.
2971
2972 * w32term.c (VCENTER_BASELINE_OFFSET): Likewise.
2973
03391420
DL
29742000-11-07 Dave Love <fx@gnu.org>
2975
7758f1c1 2976 * config.in (HAVE_MKSTEMP): Add.
03391420
DL
2977
2978 * callproc.c (Fcall_process_region) [HAVE_MKSTEMP]: Use it.
2979
b5de343d
GM
29802000-11-07 Gerd Moellmann <gerd@gnu.org>
2981
acad3c0b
GM
2982 * window.c (Fset_window_configuration): Don't try to preserve
2983 point in the current buffer, if that buffer is displayed in more
2984 than one window.
2985
b5de343d
GM
2986 * xfaces.c (lookup_named_face): If default face isn't realized,
2987 try to realize it. Return -1 if not successful.
2988 (Fx_list_fonts): Handle case that face cannot be determined.
2989 (Fface_font): Likewise.
2990
cdb1fe49
GM
29912000-11-06 Gerd Moellmann <gerd@gnu.org>
2992
2993 * window.c (displayed_window_lines): Detect partially
2994 visible lines at the bottom correctly.
2995
d3a67486
SM
29962000-11-06 Stefan Monnier <monnier@cs.yale.edu>
2997
2998 * fileio.c (Fwrite_region): Use `visiting' rather than `visit'
2999 when ensuring we don't do visit in indirect buffer.
3000
ff8dd5d5
KH
30012000-11-06 Kenichi Handa <handa@etl.go.jp>
3002
3003 * composite.h (compose_chars_in_text): Add prototype.
3004
3005 * composite.c (Vcomposition_function_table): New variable.
3006 (Qcomposition_function_table): New variable.
3007 (run_composition_function): Call
3008 Vcompose_chars_after_function with three arguments.
3009 (compose_chars_in_text): New function.
3010 (syms_of_composite): Modified the doc-string of
3011 Vcompose_chars_after_function. Declare composition-function-table
3012 as a lisp variable, and initialize it.
3013
3014 * xfns.c (x_encode_text): Suppress producing escape sequences for
3015 composition.
3016
3017 * xselect.c: Include composite.h.
3018 (selection_data_to_lisp_data): Call compose_chars_in_text on STR.
3019
d1145f85
AI
30202000-11-05 Andrew Innes <andrewi@gnu.org>
3021
3022 * w32term.c (x_produce_glyphs): Fix typo in enum name.
3023
3024 * sysdep.c (read_input_waiting): Remove extraneous argument to
3025 read_socket_hook.
3026
3027 * w32fns.c (Fx_server_version): Include w32_build_number in the
3028 return list.
3029
3030 * w32heap.c (w32_build_number): New variable.
3031 (cache_system_info): Set it.
3032
3033 * w32heap.h (w32_build_number): Add extern.
3034
3035 * emacs.c (syms_of_emacs): Update docstring for
3036 system-configuration, to reflect the actual usage on MS-Windows.
3037
e85ee976
GM
30382000-10-31 Gerd Moellmann <gerd@gnu.org>
3039
26dcb81b
GM
3040 * keyboard.c (read_char) <wrong_kboard>: Make sure that we
3041 process idle timers while waiting for another event.
3042
0a894bad
GM
3043 * dispnew.c (update_frame_line): Handle case where spaces in
3044 the default face are colored.
3045
e85ee976
GM
3046 * xdisp.c (redisplay_tool_bar): Don't set fonts_changed_p if
3047 window height hasn't changed.
3048
01b220b6
JR
30492000-10-31 Jason Rumney <jasonr@gnu.org>
3050
3051 * w32term.c (x_produce_glyphs): Handle composite characters.
3052 (x_draw_glyph_string_foreground)
3053 (x_draw_composite_glyph_string_foreground): Restore old font.
3054
4e6b7204
MB
30552000-10-31 Miles Bader <miles@lsi.nec.co.jp>
3056
3057 * minibuf.c (read_minibuf): Reset the undo history just before
3058 starting the recursive-edit.
3059
d4358b37
GM
30602000-10-30 Gerd Moellmann <gerd@gnu.org>
3061
563f68f1
GM
3062 * xfaces.c (menu_face_change_count): New variable.
3063 (Finternal_set_lisp_face_attribute): Increment it for changes
3064 of the `menu' face.
3065 (realize_basic_faces): Reflect changes in the `menu' faces
3066 in menu bars.
3067
82e274d1
GM
3068 * xdisp.c (try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
3069 dy obtained from the iterator's y-position after moving from
3070 scroll_margin_pos to PT; see comment there.
3071
0dbf9fd2
GM
3072 * xdisp.c (safe_eval_handler): Call add_to_log.
3073
906b3b14
GM
3074 * xfaces.c (resolve_face_name): Handle case that FACE_NAME
3075 is not a symbol or string.
3076
d4358b37
GM
3077 * xdisp.c (echo_area_display): Don't perform a display update from
3078 inside redisplay. The update will happen anyway at the end of
3079 redisplay, and it can confuse redisplay (GC messages while
3080 redisplaying, for instance.)
3081
70c825df
SM
30822000-10-30 Stefan Monnier <monnier@cs.yale.edu>
3083
cf9b4b0b
SM
3084 * xrdb.c (x_load_resources): Use the class name in the defaults.
3085
70c825df
SM
3086 * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
3087 (regex_compile): Catch bogus \(\1\).
3088
a1d34b1e
GM
30892000-10-30 Gerd Moellmann <gerd@gnu.org>
3090
cae71efe
GM
3091 * xterm.c (x_alloc_nearest_color): Fix last change to compare
3092 RGB values.
3093
35efe0a1
GM
3094 * xterm.c (x_alloc_nearest_color): If allocation succeeds, and
3095 we have a color cache, check that the cached color equals the
3096 allocated color. If not, clear the color cache.
3097
1d3baf74
GM
3098 * window.c (displayed_window_lines): Change buffers if necessary.
3099 Fix computation of displayed lines.
3100
a1d34b1e
GM
3101 * keyboard.c (syms_of_keyboard): Change DEFVAR_LISP of
3102 update_menu_bindings to DEFVAR_BOOL.
3103
70737ea9
KH
31042000-10-30 Kenichi Handa <handa@etl.go.jp>
3105
70c825df 3106 * search.c (Fset_match_data): Be sure to make search_regs always sane.
80406070 3107
fa0cb51d
KH
3108 * puresize.h (BASE_PURESIZE): Increase to 680000.
3109
70737ea9
KH
3110 * fns.c (Foptimize_char_table): Fix arg for CHARSET_DIMENSION.
3111
0e4c08e8
JR
31122000-10-29 Jason Rumney <jasonr@gnu.org>
3113
3114 * w32term.h (FONT_DESCENT): Negate descent of BDF fonts.
3115
3116 * w32term.c (w32_bdf_per_char_metric): Negate descent.
3117 (w32_cache_char_metrics): Handle possibility that 'x' does not
3118 exist in a BDF font.
3119 (W32_TEXTOUT): w32_BDF_TextOut wants number of bytes not chars.
3120
3121 * w32bdf.h (bdffont): Add nchars.
3122
3123 * w32bdf.c (set_bdf_font_info): Set it.
3124 (w32_BDF_TextOut): Swap byte order of double byte characters.
3125 (w32_load_bdf_font): Set double_byte_p based on bdf_font->nchars.
3126
45b84006
EZ
31272000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
3128
3129 * frame.c (Fframe_parameters): Fix the change from 2000-10-16:
3130 don't override the colors in frame's param_alist, unless they are
3131 unspecified.
3132
3133 * term.c (reassert_line_highlight): If inverse_video is non-zero,
3134 reverse the effect of the highlight flag.
3135
caf9deee
KR
31362000-10-27 Ken Raeburn <raeburn@gnu.org>
3137
3138 * window.h (Fwindow_live_p): Declare.
3139
ae0b9b46
KR
3140 * undo.c (record_delete): Check that last_undo_buffer is really a
3141 buffer before applying XBUFFER to it.
3142
3143 * keymap.c (where_is_internal): Pass lisp object, not integer, to
3144 Faref.
3145
02067692
SM
31462000-10-27 Stefan Monnier <monnier@cs.yale.edu>
3147
3148 * lisp.h (KEYMAPP): New macro.
3149 (get_keymap): Remove.
3150 (get_keymap_1): Rename get_keymap.
3151
3152 * keyboard.h (get_keymap_1, Fkeymapp): Remove prototype.
3153
3154 * xterm.c (note_mode_line_highlight): Use KEYMAPP.
3155
3156 * xmenu.c (single_submenu): Use KEYMAPP.
3157 (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp.
3158 Use KEYMAPP rather than Fkeymapp.
3159
3160 * w32term.c (note_mode_line_highlight): Use KEYMAPP.
3161
3162 * w32menu.c (True, False): Remove (use TRUE and FALSE instead).
3163 (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp.
3164 Use KEYMAPP rather than Fkeymapp.
3165 (single_submenu): Use KEYMAPP.
3166 (w32_menu_show, w32_dialog_show): Use TRUE.
3167
3168 * minibuf.c (Fread_from_minibuffer): Update call to get_keymap.
3169
3170 * keymap.c (KEYMAPP): Remove (moved to lisp.h).
3171 (Fkeymapp): Use KEYMAPP.
3172 (get_keymap): Rename from get_keymap_1. Remove old def.
3173 Return t when autoload=0 and error=0 and the keymap needs autoloading.
3174 (Fcopy_keymap): Check (eq (car x) 'keymap) rather than using Fkeymapp.
3175 (Fminor_mode_key_binding): Don't raise an error if the binding
3176 is not a keymap.
3177 (Fuse_global_map, Fuse_local_map): Allow autoloading.
3178 (Faccessible_keymaps): Fetch keymaps rather than checking Fkeymapp.
3179
3180 * keyboard.c (read_char): get_keymap_1 -> get_keymap.
3181 Allow Vspecial_event_map to be autoloaded.
3182 (menu_bar_items): Fetch the keymap rather than using keymapp.
3183 (menu_bar_one_keymap): No need to follow func-indirect any more.
3184 (parse_menu_item): get_keymap_1 -> get_keymap.
3185 (tool_bar_items): Fetch the keymap rather than using keymapp.
3186 (read_key_sequence): Use KEYMAPP.
3187
3188 * intervals.c (get_local_map): Use get_keymap rather than following
3189 function-indirections explicitly.
3190
3191 * doc.c (Fsubstitute_command_keys): get_keymap_1 -> get_keymap.
3192
f9d80af3
JR
31932000-10-27 Jason Rumney <jasonr@gnu.org>
3194
3195 * w32fns.c (Fx_create_frame): Make default fontsize on w32 10
3196 point, as Windows has oversized fonts.
3197
3198 * fontset.c (syms_of_fontset) [WINDOWSNT]: Likewise.
3199
a3ba27da
GM
32002000-10-27 Gerd Moellmann <gerd@gnu.org>
3201
3202 * gmalloc.c [GC_MCHECK]: Add code from mcheck.c of glibc-1.09.1.
3203 (freehook, reallochook): Handle null pointer arguments.
3204 (__malloc_initialize) [GC_MCHECK]: Call mcheck.
3205
aa3b80cc
SM
32062000-10-27 Stefan Monnier <monnier@cs.yale.edu>
3207
3208 * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
3209 (re_match_2_internal, re_match_2_internal, re_match_2_internal):
3210 Giving in to popular pressure to shut up the compiler with casts.
3211
e24e84cc
GM
32122000-10-27 Gerd Moellmann <gerd@gnu.org>
3213
3214 * xterm.c (x_draw_glyph_string): Treat XA_UNDERLINE_POSITION as a
3215 signed value, and use a default value computed from the font's
3216 maximum descent.
3217
05ea7ef2
MB
32182000-10-27 Miles Bader <miles@lsi.nec.co.jp>
3219
3220 * xterm.c (x_draw_glyph_string): Add a workaround so that fonts
3221 that specify a negative underline position can still use underlines.
3222
3223 * window.c (Fpos_visible_in_window_p): Make POS default to
3224 WINDOW's point, not the current buffer's point.
3225
0b95284b
DL
32262000-10-26 Dave Love <fx@gnu.org>
3227
3228 * s/sol2-5.h: Don't define SYSTEM_MALLOC so that we can find out
3229 when it's necessary.
3230
6c5b90af
GM
32312000-10-26 Gerd Moellmann <gerd@gnu.org>
3232
8b6d9dc9
GM
3233 * window.c (size_window): Compute size difference from sum of old
3234 child window sizes instead of from parent's size.
3235
6bc92b2e
GM
3236 * xdisp.c (pos_visible_p): Change current buffer if necessary.
3237 Handle obscured lines at the top of the window.
3238
3239 * frame.c (Fdelete_frame): Doc fix. Move running the hook
3240 down after the last error condition check.
3241
6c5b90af
GM
3242 * frame.c (Fdelete_frame): Run delete-frame-hook.
3243
42f92d4d
KH
32442000-10-26 Kenichi Handa <handa@etl.go.jp>
3245
3246 * coding.c (decode_coding): Fix previous change (check also
3247 CODING_MODE_LAST_BLOCK).
3248
d97151cb
SM
32492000-10-25 Stefan Monnier <monnier@cs.yale.edu>
3250
e7efc503
SM
3251 * regex.c: More `unsigned char' -> `re_char' changes.
3252 Also change several `int' into `re_wchar_t'.
3253 (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
3254 (PUSH_FAILURE_POINTER): Don't cast any more.
3255 (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
3256 We want GCC to complain, since this piece of code makes
3257 re_match non-reentrant, which *should* be fixed.
3258 (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
3259 (EXTEND_BUFFER): Use RETALLOC.
3260 (SET_LIST_BIT): Don't cast.
3261 (re_wchar_t): New type.
3262 (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
3263 that those two functions will always properly return.
3264 (IMMEDIATE_QUIT_CHECK): Cast to void.
3265 (analyse_first): Use recursion rather than an explicit stack.
3266 (re_compile_fastmap): Can't fail anymore.
3267 (re_search_2): Don't check re_compile_fastmap for failure.
3268 (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
3269 Now also sets the new value (passed in a new argument).
3270 (re_match_2_internal): Use it.
3271 Also, use a new var `reg' of type size_t when looping through regs
3272 rather than reuse the inappropriate `mcnt'.
3273
d97151cb
SM
3274 * keymap.c (where_is_cache, where_is_cache_keymaps): New vars.
3275 (Fset_keymap_parent, store_in_keymap): Flush the where-is cache.
3276 (where_is_internal): Renamed from Fwhere_is_internal.
3277 Don't DEFUN any more. Arg `xkeymap' replaced by `keymaps'.
3278 (Fwhere_is_internal): New function wrapping where_is_internal.
3279 (where_is_internal_1): Handle the case where we're filling the cache.
3280 (syms_of_keymap): Init and gcpro the where_is_cache(|_keymaps).
3281
d5789b65
MB
32822000-10-25 Miles Bader <miles@gnu.org>
3283
3284 * xdisp.c (pos_visible_p): Don't add `it.current_y' twice.
3285
4ecda532
GM
32862000-10-25 Gerd Moellmann <gerd@gnu.org>
3287
3288 * window.c (pos_fully_visible_p): Removed.
3289 (Fpos_visible_in_window_p): Use pos_visible_p to determine
3290 if position is visible and/or fully visible.
3291
3292 * lisp.h (pos_visible_p): Add prototype.
3293
3294 * xdisp.c (pos_visible_p): New function.
3295
68c3a137
KH
32962000-10-25 Kenichi Handa <handa@etl.go.jp>
3297
3298 * process.c (send_process): If OBJECT is t, it means that the data
3299 is from C string, but we should encode it. Before calling
3300 setup_raw_text_coding_system, be sure to flush out data by the
3301 previous coding system.
3302
7ae1c032
MB
33032000-10-25 Miles Bader <miles@lsi.nec.co.jp>
3304
ff4dcd4b
MB
3305 * buffer.c (overlays_at): Only let CHANGE_REQ inhibit an
3306 assignment of startpos to prev when startpos == pos.
3307
7ae1c032
MB
3308 * editfns.c (find_field): Set the field stickiness correctly from
3309 overlay fields. Use renamed `text_property_stickiness'.
3310 (text_property_stickiness): Renamed from `char_property_stickiness'.
ebe2a441 3311 Only check text properties, not overlays.
7ae1c032
MB
3312 * textprop.c (get_char_property_and_overlay): New function.
3313 (Fget_char_property): Use it.
3314 * intervals.h (get_char_property_and_overlay): Add declaration.
3315
49801145
SM
33162000-10-25 Stefan Monnier <monnier@cs.yale.edu>
3317
3318 * keymap.c: Use AREF, ASET and ASIZE macros.
3319 (Fmake_sparse_keymap): Docstring fix.
3320 (synkey): Remove.
3321 (shadow_lookup): Move up.
3322 Handle the case where lookup-key returns an integer.
3323 (where_is_internal_1): Drop arg `keymap'. Don't check shadowing.
3324 (where_is_internal_2): Adapt to fewer args for where_is_internal_1.
3325 (Fwhere_is_internal): Allow `xkeymap' to be a list of keymaps.
3326 Simplify/rewrite the keymap-finding code.
3327 Add check for command shadowing, using shadow_lookup.
3328
39e776cd
SM
33292000-10-24 Stefan Monnier <monnier@cs.yale.edu>
3330
3331 * keymap.c (fix_submap_inheritance): Use get_keymap_1 on parent_entry
3332 rather than KEYMAPP, to allow EQ to work correctly if parent_entry is
3333 a symbol.
3334
2488aba5
AI
33352000-10-24 Andrew Innes <andrewi@gnu.org>
3336
3337 * dired.c (directory_files_internal_unwind): New function.
3338 (directory_files_internal): Use it to ensure closedir is called
3339 even if expand-file-name or file-attributes throw, eg. because of
3340 a user interrupt. Also enable immediate_quit while calling
3341 re_search, so that matching can be interrupted as well.
3342
b94fdf61
AI
33432000-10-24 Andrew Innes <andrewi@gnu.org>
3344
3345 * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
3346 NT-Emacs only.
3347 (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
3348 so that re_search functions only quit when callers expect them to.
3349
33502000-10-24 Kenichi Handa <handa@etl.go.jp>
3351
3352 * regex.c (regex_compile): Change the way of handling a range from
3353 a char less than 256 to a char not less than 256.
3354
1946f901
GM
33552000-10-24 Gerd Moellmann <gerd@gnu.org>
3356
7ae2f10f
GM
3357 * window.c (size_window): Prevent setting window's width or
3358 height to a negative value (esp. with XSETFASTINT).
3359
5dcab13e
GM
3360 * gmalloc.c (state_protected_p, last_state_size, last_heapinfo)
3361 [GC_MALLOC_CHECK && GC_PROTECT_MALLOC_STATE]: New variables.
3362 (protect_malloc_state) [GC_MALLOC_CHECK &&
3363 GC_PROTECT_MALLOC_STATE]: New function.
3364 (PROTECT_MALLOC_STATE): New macro.
3365 (__malloc_initialize, morecore, _malloc_internal)
3366 (_free_internal) _realloc_internal): Use it to make _heapinfo
3367 read-only outside of gmalloc.
3368
63e1b552
GM
3369 * keymap.c: Update copyright.
3370
1946f901
GM
3371 * .gdbinit (xbacktrace): Handle case that $bt->function isn't
3372 a symbol.
3373
4fa09beb
GM
33742000-10-24 Colin Walters <walters@cis.ohio-state.edu>
3375
3376 * filelock.c (unlock_all_files): Use unlock_file to expand each
3377 buffer's file_truename before trying remove its lock file.
3378
23afac01
EZ
33792000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
3380
3381 * coding.c (decode_coding_emacs_mule): If coding->eol_type is CR
3382 or CRLF, decode EOLs.
3383
04448b95
KH
33842000-10-24 Kenichi Handa <handa@etl.go.jp>
3385
3386 * window.c (Fdisplay_buffer): Fix doc.
3387
3090a5a5
JR
33882000-10-23 Jason Rumney <jasonr@gnu.org>
3389
3390 * fontset.c (syms_of_fontset) [WINDOWSNT]: Special case for
3391 ASCII font of default fontset on Windows.
3392
3393 * w32term.c (VCENTER_BASELINE_OFFSET): Bias division (see
3394 xterm.c comment below).
3395
3396 * w32fns.c (x_to_w32_font): Initialize dpi from dpyinfo->resy.
3397
a83fee2c
GM
33982000-10-23 Gerd Moellmann <gerd@gnu.org>
3399
3400 * xterm.c (x_connection_closed): Reset handling_signal.
3401
3402 * alloc.c (emacs_blocked_free) [GC_MALLOC_CHECK]: Handle freeing
3403 null.
3404
6ffdb539
MB
34052000-10-23 Miles Bader <miles@gnu.org>
3406
3407 * window.c (window_scroll_pixel_based, window_scroll_line_based):
3408 Pass nil for FULLY argument to Fpos_visible_in_window_p to
3409 maintain old behavior.
3410 * minibuf.c (Fminibuffer_complete): Likewise.
3411
7f1c969b
MB
34122000-10-23 Miles Bader <miles@lsi.nec.co.jp>
3413
3414 * xterm.c (VCENTER_BASELINE_OFFSET): Bias the division by two, so
3415 that when a font can't be exactly centered, it errs up rather than
3416 down.
3417
23afac01 34182000-10-23 ShengHuo ZHU <zsh@cs.rochester.edu>
8ec118cd
SZ
3419
3420 * fns.c (Fbase64_decode_string): The decoded result should be
3421 unibyte.
3422
1a578e9b
AC
34232000-10-23 Andrew Choi <akochoi@i-cable.com>
3424
3425 * dispextern.h [macintosh]: Include macgui.h instead of macterm.h.
3426
3427 * dispnew.c [macintosh]: Include macterm.h.
a83fee2c 3428 (init_display) [macintosh]: Initialization for window system.
1a578e9b
AC
3429
3430 * emacs.c (main) [macintosh]: Call syms_of_textprop,
3431 syms_of_macfns, syms_of_ccl, syms_of_fontset, syms_of_xterm,
3432 syms_of_search, x_term_init, and init_keyboard before calling
3433 init_window_once. Also, call syms_of_xmenu.
3434
3435 * fontset.c (syms_of_fontset) [macintosh]: Set ASCII font of
3436 default fontset to Monaco.
3437
3438 * frame.c [macintosh]: Include macterm.h. Remove declarations of
3439 NewMacWindow and DisposeMacWindow.
3440 (make_terminal_frame) [macintosh]: Call make_mac_terminal_frame
3441 instead of calling NewMacWindow and setting fields of
3442 f->output_data.mac directly. Call init_frame_faces.
3443 (Fdelete_frame) [macintosh]: Remove unused code.
3444 (Fmodify_frame_parameters) [macintosh]: Call
3445 x_set_frame_parameters instead of mac_set_frame_parameters.
3446
3447 * frame.h [macintosh]: Define menu_bar_lines field in struct
3448 frame. Define FRAME_EXTERNAL_MENU_BAR macro.
3449
3450 * keyboard.c [macintosh]: Include macterm.h.
3451 (kbd_buffer_get_event) [macintosh]: Generate delete_window_event
3452 and menu_bar_activate_event type events as for X and NT.
3453 (make_lispy_event) [macintosh]: Construct lisp events of type
3454 MENU_BAR_EVENT as for X and NT.
3455
3456 * sysdep.c [macintosh]: Remove declaration for sys_signal.
3457 Include stdlib.h. Remove definition of Vx_bitmap_file_path.
3458 (sys_subshell) [macintosh]: Remove definition entirely.
3459 (init_sys_modes) [macintosh]: Do not initialize Vwindow_system and
3460 Vwindow_system_version here. Remove initialization of
3461 Vx_bitmap_file_path.
3462 (read_input_waiting): Correct the number of parameters passed to
3463 read_socket_hook.
3464 Move all Macintosh functions to mac/mac.c.
3465
3466 * term.c [macintosh]: Include macterm.h.
3467
3468 * window.c [macintosh]: Include macterm.h.
3469
3470 * xdisp.c [macintosh]: Include macterm.h. Declare
3471 set_frame_menubar and pending_menu_activation.
3472 (echo_area_display) [macintosh]: Do not return if terminal frame
3473 is the selected frame.
3474 (update_menu_bar) [macintosh]: Check FRAME_EXTERNAL_MENU_BAR (f).
3475 Allow only the selected frame to set menu bar.
3476 (redisplay_window) [macintosh]: Obtain menu bar to redisplay by
3477 calling FRAME_EXTERNAL_MENU_BAR (f).
3478 (display_menu_bar) [macintosh]: Check FRAME_MAC_P (f).
3479
3480 * xfaces.c [macintosh]: Include macterm.h. Define x_display_info
3481 and check_x. Declare XCreateGC. Define x_create_gc and
3482 x_free_gc. Initialize font_sort_order.
3483 (x_face_list_fonts) [macintosh]: Use the same code as WINDOWSNT,
3484 but call x_list_fonts instead of w32_list_fonts.
3485 (Finternal_face_x_get_resource) [macintosh]: Do not call
3486 display_x_get_resource.
3487 (prepare_face_for_display) [macintosh]: Set xgcv.font.
3488 (realize_x_face) [macintosh]: Load the font if it is specified in
3489 ATTRS.
3490 (syms_of_xfaces) [macintosh]: Initialize Vscalable_fonts_allowed
3491 to Qt.
3492
1ffbabe3
SM
34932000-10-22 Stefan Monnier <monnier@cs.yale.edu>
3494
3495 * keymap.c (fix_submap_inheritance): Don't do anything if parent_entry
3496 is nil: since we go to the end of submap anyway, we'd end up
3497 setting nil to nil.
3498 (access_keymap): Don't use KEYMAPP on meta_map since KEYMAPP
3499 doesn't obey autoload.
3500
bed43f1d
EZ
35012000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
3502
1ffbabe3 3503 * msdos.c (dos_set_window_size): Update screen dimension variables.
bed43f1d 3504
ea4233a7
JR
35052000-10-21 Jason Rumney <jasonr@gnu.org>
3506
3507 * w32term.c (w32_cache_char_metrics): Double check that font is
3508 really fixed pitch before trusting tmPitchAndFamily.
3509
f3d3c491
AI
35102000-10-21 Andrew Innes <andrewi@gnu.org>
3511
3512 * w32gui.h (w32_char_font_type): Move enum from w32term.c
3513
3514 * w32term.h: Extern decl for w32_cache_char_metrics.
3515
3516 * w32bdf.c (w32_load_bdf_font): Call w32_cache_char_metrics.
3517
3518 * w32fns.c (w32_load_system_font): Call w32_cache_char_metrics.
3519 (w32_unload_font): Free per_char array if present.
3520
3521 * w32term.c (w32_per_char_metric): Remove HDC argument. Use
3522 cached information in emulated XFontStruct to handle common cases
3523 quickly. Do not allocate XCharStruct for return.
3524 (w32_native_per_char_metric): New function.
3525 (w32_bdf_per_char_metric): Fill in supplied XCharStruct instead of
3526 allocating one.
3527 (x_produce_glyphs): Don't get an HDC. Change calls to
3528 w32_per_char_metric to match arg change above. Remove calls to
3529 free results.
3530 (w32_get_glyph_overhangs): Ditto.
3531 (w32_cache_char_metrics): New function.
3532
3533 * makefile.w32-in: Change .obj to .$(O) in all dependencies.
3534 ($(BLD)/casefiddle.$(O)): Remove compile command.
3535 ($(BLD)/gmalloc.$(O)): Remove compile command.
3536 ($(BLD)/dispnew.obj):
3537 ($(BLD)/keyboard.obj):
3538 ($(BLD)/w32inevt.obj):
3539 ($(BLD)/w32bdf.obj):
3540 ($(BLD)/alloc.obj):
3541 ($(BLD)/buffer.obj):
3542 ($(BLD)/editfns.obj):
3543 ($(BLD)/emacs.obj):
3544 ($(BLD)/fileio.obj):
3545 ($(BLD)/fns.obj):
3546 ($(BLD)/indent.obj):
3547 ($(BLD)/insdel.obj):
3548 ($(BLD)/intervals.obj):
3549 ($(BLD)/minibuf.obj):
3550 ($(BLD)/print.obj):
3551 ($(BLD)/scroll.obj):
3552 ($(BLD)/sysdep.obj):
3553 ($(BLD)/textprop.obj):
3554 ($(BLD)/widget.obj):
3555 ($(BLD)/xdisp.obj): Add dependency on w32gui.h.
3556 ($(BLD)/term.obj): Add dependency on dispextern.h.
3557
3558 * makefile.nt ($(BLD)\dispnew.obj):
3559 ($(BLD)\keyboard.obj):
3560 ($(BLD)\w32inevt.obj):
3561 ($(BLD)\w32bdf.obj):
3562 ($(BLD)\alloc.obj):
3563 ($(BLD)\buffer.obj):
3564 ($(BLD)\editfns.obj):
3565 ($(BLD)\emacs.obj):
3566 ($(BLD)\fileio.obj):
3567 ($(BLD)\fns.obj):
3568 ($(BLD)\indent.obj):
3569 ($(BLD)\insdel.obj):
3570 ($(BLD)\intervals.obj):
3571 ($(BLD)\minibuf.obj):
3572 ($(BLD)\print.obj):
3573 ($(BLD)\scroll.obj):
3574 ($(BLD)\sysdep.obj):
3575 ($(BLD)\textprop.obj):
3576 ($(BLD)\widget.obj):
3577 ($(BLD)\xdisp.obj): Add dependency on w32gui.h.
3578 ($(BLD)\term.obj): Add dependency on dispextern.h
3579
18ad4821
EZ
35802000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
3581
3582 * minibuf.c (Fminibuffer_complete): Call Fpos_visible_in_window_p
3583 with an additional argument of Qt.
3584
de54681a
MB
35852000-10-21 Miles Bader <miles@gnu.org>
3586
3587 * window.c (pos_fully_visible_in_window_p): New function.
3588 (Fpos_visible_in_window_p): Add FULLY argument.
3589 Use pos_fully_visible_in_window_p.
3590 (window_scroll_pixel_based, window_scroll_line_based): Update
3591 calls to Fpos_visible_in_window_p.
3592 * lisp.h (Fpos_visible_in_window_p): Update prototype
3593
13c844fb
GM
35942000-10-20 Gerd Moellmann <gerd@gnu.org>
3595
3596 * alloc.c (toplevel): Conditionalize compilation of mem_*
3597 functions differently.
3598
d9506268
JR
35992000-10-20 Jason Rumney <jasonr@gnu.org>
3600
3601 * alloc.c (toplevel): Move #ifdef GC_MARK_STACK back to above
3602 mem_init where it used to be. mem_z etc not defined otherwise.
3603
8094989b
GM
36042000-10-20 Gerd Moellmann <gerd@gnu.org>
3605
3606 * alloc.c (toplevel) [SYSTEM_MALLOC || DOUG_LEA_MALLOC]: Undef
3607 GC_MALLOC_CHECK.
3608 (toplevel) [GC_MARK_STACK || GC_MALLOC_CHECK]: Move mem_node
3609 structure definition and related variabled to the top of the file.
3610 Include this code when GC_MALLOC_CHECK is defined.
3611 (lisp_malloc, lisp_free) [GC_MALLOC_CHECK]: Don't
3612 register/unregister allocated region.
3613 (emacs_blocked_free) [GC_MALLOC_CHECK]: Check if freeing something
3614 which isn't allocated.
3615 (emacs_blocked_malloc) [GC_MALLOC_CHECK]: Check if returning
3616 something which is already in use.
3617 (emacs_blocked_realloc) [GC_MALLOC_CHECK]: Likewise.
3618 (mem_insert) [GC_MALLOC_CHECK]: Use _malloc_internal.
3619 (mem_delete) [GC_MALLOC_CHECK]: Use _free_internal.
3620 (init_alloc_once) [GC_MALLOC_CHECK]: Call mem_init.
3621
3622 * gmalloc.c (_malloc_internal) [GC_MALLOC_CHECK]: Use
3623 _malloc_internal instead of malloc.
3624 (_free_internal) [GC_MALLOC_CHECK]: Use _free_internal instead
3625 of free.
3626
ea456eb4
AI
36272000-10-20 Andrew Innes <andrewi@gnu.org>
3628
3629 * strftime.c [!WINDOWSNT]: Don't apply Solaris 2.5 work-around on
3630 Windows.
3631 (my_strftime) <macro>: Don't use macro arg list when redefining as
3632 _strftime_copytm.
3633 (my_strftime) <function>: Supply 0 as ut argument.
3634
e64c3a75
JR
36352000-10-19 Jason Rumney <jasonr@altavista.net>
3636
3637 * w32console.c: Do not undef HAVE_WINDOW_SYSTEM before
3638 including dispextern.h, as it stops faces from working.
3639
3640 * w32fns.c (Fx_create_frame): Don't bother calling
3641 face-set-after-frame-default since the caller does it for us
3642 anyway. Clean up calls to x_get_arg to be consistent with X.
3643
3644 * w32term.c (x_produce_glyphs): Handle
3645 unibyte_display_via_language_environment correctly.
3646 (w32_draw_box_rect): Fix the calculation of width and height.
3647
3648 * w32menu.c (add_menu_item): Do not use MF_OWNERDRAW for titles,
3649 as it has stopped working.
3650 (Fx_popup_menu, Fx_popup_dialog): Check for tool-bar position like
3651 menu-bar.
3652
17401c97
GM
36532000-10-19 Gerd Moellmann <gerd@gnu.org>
3654
3655 * eval.c (skip_debugger): Prevent a compiler warning.
3656 (Fcondition_case): Likewise.
3657 (Fbacktrace_frame): Use a null interactive spec.
3658
773272d8
KH
36592000-10-19 Kenichi Handa <handa@etl.go.jp>
3660
3661 * xterm.c (x_find_ccl_program): Check also fontp->full_name.
3662
a42943e9
GM
36632000-10-18 Gerd Moellmann <gerd@gnu.org>
3664
e50517d9
GM
3665 * strftime.c: Sync with glibc, file version 1.78.
3666 (my_strftime) [HAVE_TZNAME]: Use `UTC' instead of `GMT' which
3667 should no longer be used according to ISO 8601.
3668
9035a35a
GM
3669 * keymap.c (access_keymap): If IDX has a meta prefix, and there's
3670 no map for meta_prefix_char, don't try to use it as a keymap.
3671 Instead, if T_OK is non-zero, look up a default binding, if any,
3672 otherwise, if T_OK is zero, return nil.
3673
a42943e9
GM
3674 * xfns.c (x_to_xcolors, x_set_mouse_color, lookup_pixel_color)
3675 (x_to_xcolors, png_load): Use x_query_color.
3676
3677 * xterm.c (x_color_cells, x_query_colors, x_query_color): New
3678 functions.
3679 (x_alloc_nearest_color): Use it to reduce calls to XQueryColors
3680 which can be slow.
3681 (x_copy_color, x_alloc_lighter_color): Likewise.
3682
3683 * xterm.h (struct x_display_info): Add color_cells and ncolor_cells.
3684 (x_query_color, x_query_colors): Add prototype.
3685
3686 * alloc.c (allocate_string) [GC_CHECK_STRING_BYTES]: Call
3687 check_string_bytes only if not noninteractive, increase count to 50.
3688
00de2987
MB
36892000-10-18 Miles Bader <miles@lsi.nec.co.jp>
3690
3691 * insdel.c (adjust_markers_for_delete): Handle before-insertion
3692 markers correctly.
3693
54918e2b
GM
36942000-10-17 Gerd Moellmann <gerd@gnu.org>
3695
1f0b3fd2
GM
3696 * alloc.c (pure_bytes_used): Renamed from pureptr.
3697 (ALIGN): New macro.
3698 (pure_alloc): New function.
3699 (make_pure_string, pure_cons, make_pure_float, make_pure_vector):
3700 Use it.
3701 (Fpurecopy): Use PURE_POINTER_P.
3702
68c5d1db
GM
3703 * xdisp.c (try_cursor_movement): Use cursor_row_p also when
3704 PT has moved backward.
3705
9a038881
GM
3706 * xdisp.c (cursor_row_p): Take continued lines into account.
3707
361b097f
GM
3708 * alloc.c (mark_object) [GC_CHECK_STRING_BYTES]: Check validity of
3709 string's size_byte.
3710 (check_string_bytes) [GC_CHECK_STRING_BYTES]: New function.
3711 (check_string_bytes_count) [GC_CHECK_STRING_BYTES]: New variable.
3712 (allocate_string) [GC_CHECK_STRING_BYTES]: Call it for every 10th
3713 string allocated.
3714
54918e2b
GM
3715 * xdisp.c (forward_to_next_line_start): Switch iterator's handling
3716 of selective display off while searching for the next line start.
3717
03ed0806
KH
37182000-10-17 Kenichi Handa <handa@etl.go.jp>
3719
3720 * Makefile.in (term.o): Depend on dispextern.h.
3721
7e05cdaf
SM
37222000-10-16 Stefan Monnier <monnier@cs.yale.edu>
3723
3724 * keymap.c (keymap_memberp): Ensure that nil is not a member.
3725
a6801fd1
GM
37262000-10-16 Gerd Moellmann <gerd@gnu.org>
3727
483de32b
GM
3728 * xdisp.c (set_iterator_to_next): Reset box start and end flags of
3729 the iterator at the beginning, so that they can be set later on,
3730 for instance in reseat_at_next_visible_line_start, without being
3731 overwritten.
3732
a6801fd1
GM
3733 * xfns.c (pbm_format): Add :foreground and :background keywords.
3734 (PBM_FOREGROUND, PBM_BACKGROUND): New enumerators.
483de32b 3735 (xbm_load): Recognize foreground and background color
a6801fd1
GM
3736 specifications.
3737
dbf1fcc1
EZ
37382000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
3739
3740 * dispextern.h (unspecified_fg, unspecified_bg): Declare.
3741
3742 * dosfns.c (unspecified_fg, unspecified_bg): Remove extern
3743 declaration.
3744
3745 * msdos.c (IT_set_face): Compare highlighted face with the default
3746 face, and invert colors if these faces' colors are identical.
3747 (Fmsdos_remember_default_colors): Don't swap foreground and
3748 background colors in initial_colors[].
3749 (IT_set_frame_parameters): Don't swap frame's foreground and
3750 background pixels. If ALIST includes "(reverse . t)", swap
3751 foreground-color and background-color properties in frame's
3752 param_alist. If the original frame's param_alist doesn't specify
3753 the colors, store unspecified-fg and unspecified-bg, reversed if
3754 required.
3755
3756 * frame.c (Fframe_parameters): If a tty's frame's param_alist says
3757 the colors are unspecified and reversed, reverse fore- and back-
3758 ground in the returned value.
3759 (Fframe_parameter): Ditto.
3760
b41fe2c3
GM
37612000-10-16 Gerd Moellmann <gerd@gnu.org>
3762
3a6b59d9
GM
3763 * xdisp.c (find_last_unchanged_at_beg_row): Renamed from
3764 get_last_unchanged_at_beg_row.
3765 (find_first_unchanged_at_end_row): Renamed from
3766 get_first_unchanged_at_end_row.
3767 (find_first_unchanged_at_end_row): Convert assertions to
3768 unconditional tests which abort. When looking for a row in
3769 unchanged text, don't go further back than first_text_row.
3770
b41fe2c3
GM
3771 * xdisp.c (try_scrolling) <cursor in scroll margin at the bottom>:
3772 Don't add in the last line's height when deciding if the new
3773 position is below the scroll margin.
9d1af64f 3774
b41fe2c3 37752000-10-16 Miles Bader <miles@gnu.org>
f657bbf6
MB
3776
3777 * editfns.c (Fconstrain_to_field): Check carefully for field
3778 boundaries if either OLD_POS or NEW_POS has a non-nil field
3779 property, even if they're the same.
3780
c412cb7b
KH
37812000-10-16 Kenichi Handa <handa@etl.go.jp>
3782
3783 * xterm.c (x_draw_box_rect): Fix the calculation of width and
3784 height for XFillRectangle.
3785
5586f3eb
SM
37862000-10-15 Stefan Monnier <monnier@cs.yale.edu>
3787
3788 * syntax.c (Fstring_to_syntax): New function extracted from
3789 Fmodify_syntax_entry.
3790 (Fmodify_syntax_entry): Use it and document the ! and | fences.
3791 (skip_chars, Fforward_comment): Remove unused variables.
3792 (syms_of_syntax): Add defsubr for string-to-syntax.
3793 (describe_syntax): Add code for comment and string fences.
3794
db785038
SM
37952000-10-14 Stefan Monnier <monnier@cs.yale.edu>
3796
3797 * keymap.c (access_keymap): Add AUTOLOAD parameter.
3798 Do the meta->esc mapping. Call get_keyelt before returning.
3799 Start scanning from the second element (the first is always `keymap')
3800 to make it easier to detect when we reach a parent map.
3801 Handle the case of inheriting from a symbol whose function is a map.
3802 (Fkeymap_parent): Also handle the `inherit from symbol' case.
3803 (fix_submap_inheritance, Fdefine_key): Update call to access_keymap.
3804 (get_keyelt, Flookup_key): Update call to access_keymap.
3805 Remove the meta->esc mappings.
3806 (define_as_prefix): Delete old disabled code.
3807 (menu_item_p): New function.
3808 (where_is_internal_1): Skip over the few remaining menu items.
3809 * lisp.h (access_keymap): Update prototype.
3810 * keyboard.c (read_char, menu_bar_items, tool_bar_items):
3811 Update call to access_keymap.
3812 (follow_key, read_key_sequence): Update calls to access_keymap.
3813 Remove the meta->esc mappings.
3814
cafafe0b
GM
38152000-10-13 Gerd Moellmann <gerd@gnu.org>
3816
a2e2a7f6
GM
3817 * dispnew.c (direct_output_for_insert): Call set_iterator_to_next
3818 with additional argument.
3819
cafafe0b
GM
3820 * xdisp.c (cursor_row_p): New function.
3821 (try_cursor_movement, display_line): Use it.
3822
3823 * xdisp.c (append_space): Also save/restore iterator's current
3824 character and its length.
3825
3826 * xdisp.c (init_from_display_pos): Add an assertion.
3827 (handle_stop): Don't set iterator's add_overlay_start.
3828 (handle_invisible_prop): Likewise.
3829 (load_overlay_strings): If text under an overlay is invisible,
3830 take both before- and after-strings into account when the iterator
3831 is positioned either at the start or at the end of the overlay.
3832 (forward_to_next_line_start): Rewritten.
3833 (reseat_at_next_visible_line_start): Rewritten.
3834 (set_iterator_to_next): Add parameter RESEAT_P.
3835
3836 * dispextern.h (struct it): Remove member add_overlay_start.
3837 (set_iterator_to_next): Change prototype.
3838
c744452b
KH
38392000-10-13 Kenichi Handa <handa@etl.go.jp>
3840
3841 * coding.c (code_convert_region): Be sure to initialize
3842 coding->category_idx.
e4a3f4e1
KH
3843 (decode_coding_string): Set coding->src_multibyte and
3844 coding->dst_multibyte before using CODING_REQUIRE_DECODING.
3845 (encode_coding_string): Set coding->src_multibyte and
3846 coding->dst_multibyte before using CODING_REQUIRE_ENCODING.
c744452b 3847
321fd26f
SM
38482000-10-12 Stefan Monnier <monnier@cs.yale.edu>
3849
3850 * xfns.c (Fx_create_frame): Don't bother calling
3851 face-set-after-frame-default since the caller does it for us anyway.
3852
76832439
EZ
38532000-10-12 Eli Zaretskii <eliz@is.elta.co.il>
3854
3855 * window.c (coordinates_in_window): Fix detection of vertical line
3856 on character terminals.
3857
2483cf58
GM
38582000-10-12 Gerd Moellmann <gerd@gnu.org>
3859
3860 * editfns.c (save_excursion_save): Additionally record the
3861 selected window.
3862 (save_excursion_restore): If buffer was visible in a window, and a
3863 different window was selected, and the old selected window is
3864 still live, restore point in that window.
3865
eb991b25
KH
38662000-10-12 Kenichi Handa <handa@etl.go.jp>
3867
8a0eba09
KH
3868 * xterm.c (x_produce_glyphs): Handle
3869 unibyte_display_via_language_environment correctly.
3870
20401fcc
KH
3871 * regex.c (regex_compile): Change the way of handling a range from
3872 unibyte char to multibyte char.
3873
3874 * syntax.c (skip_chars): Change the way of handling a range from
3875 unibyte char to multibyte char.
3876
eb991b25
KH
3877 * process.c (read_process_output): Cancel previous change.
3878
365dd325
EZ
38792000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
3880
c1b096cb
EZ
3881 * search.c (Fsearch_backward, Fsearch_forward): Doc fix.
3882
365dd325
EZ
3883 * charset.c (Ffind_charset_string): Doc fix.
3884 (Ffind_charset_region): Doc fix.
3885
eb483c2b
KH
38862000-10-11 Kenichi Handa <handa@mule.m17n.org>
3887
3888 * process.c (read_process_output): Fix previous change. Adjust
3889 multibyteness of text to insert in a buffer by
df3c11b9 3890 string_make_unibyte/multibyte instead of
eb483c2b
KH
3891 Fstring_as_unibyte/multibyte.
3892
b40bfb99
AS
38932000-10-10 Andreas Schwab <schwab@suse.de>
3894
3895 * alloc.c (mark_object): Remove all workarounds installed on
3896 1993-08-08.
3897
caff31d4
KH
38982000-10-10 Kenichi Handa <handa@etl.go.jp>
3899
3900 * fns.c (READ_QUADRUPLET_BYTE): Set *NCHARS_RETURN before
3901 returning.
3902 (base64_encode_1): Make it work for a text of multibyte form.
3903 (Fbase64_decode_region): Allocate sufficient memory for multibyte
3904 case. Don't call str_to_multibyte because base64_decode_1
3905 produces correct multibyte form for eight-bit codes.
3906 (Fbase64_decode_string): Adjusted for the change of
3907 base64_decode_1.
3908 (base64_decode_1): New args MULTIBYTE and NCHARS_RETURN. If
3909 MULTIBYTE is nonzero, produce correct multibyte form for eight-bit
3910 codes.
3911
3912 * charset.h (CHAR_STRING): Optimized for single byte characters.
3913
cba026ef
AS
39142000-10-09 Andreas Schwab <schwab@suse.de>
3915
3916 * process.c (Fopen_network_stream) [HAVE_GETADDRINFO]: Reset S to
3917 -1 after socket is closed, to fall through to error processing.
3918
1e21fe48
EZ
39192000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
3920
3921 * msdos.c (IT_set_frame_parameters): Don't initialize Lisp_Object
365dd325 3922 variables. If ALIST includes foreground-color or
1e21fe48
EZ
3923 background-color, change also the colors of the default face for
3924 this frame.
3925
a640322e
EZ
39262000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
3927
3928 * msdos.c (top-level) <Qbackground_color, Qforeground_color>: Make
3929 them extern (they are defined on xfaces.c).
3930 (syms_of_msdos): Don't intern and don't staticpro
3931 Qbackground_color and Qforeground_color.
3932
a115794c
EZ
39332000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
3934
3935 * frame.c (Fframe_parameter): For non-windowed frames, if
3936 f->param_alist says foreground or background color is unspecified,
3937 call tty_color_name to return the color name computed from the
3938 frame's current colors.
3939
f5533b63
DL
39402000-10-06 Dave Love <fx@gnu.org>
3941
3942 * terminfo.c (ospeed): Don't declare.
3943
3944 * sysdep.c: Don't include string.h.
3945 (h_errno): Declare conditional also on TRY_AGAIN.
3946
3947 * charset.c (Ffind_charset_string): Doc fix.
3948
3949 * fns.c (Fbase64_encode_region, Fbase64_encode_string)
3950 (Fbase64_decode_region, Fbase64_decode_string): More explicit
3951 error messages.
3952
2b06561a
DL
39532000-10-05 Dave Love <fx@gnu.org>
3954
3955 * xmenu.c (Fx_popup_menu, Fx_popup_dialog): Check for tool-bar
3956 position like menu-bar.
3957
ca839c85
GM
39582000-10-05 Gerd Moellmann <gerd@gnu.org>
3959
3960 * keyboard.c (Frecursive_edit): Make sure redisplay can happen.
3961
3962 * xdisp.c (handle_single_display_prop): Use safe_call1.
3963 (safe_call): Renamed from call_function.
3964 (safe_call1): New function.
3965 (handle_fontified_prop): Use safe_call1 instead of call1.
3966 (safe_eval): Renamed from eval_form.
3967 (safe_eval_handler): Renamed from eval_handler.
3968 (handle_single_display_prop, display_mode_element): Use safe_eval
3969 instead of eval_form.
3970
3971 * xfaces.c (merge_face_heights): Use safe_call instead of
3972 call_function.
3973
3974 * keyboard.c (show_help_echo): Use safe_call instead of
3975 call_function; use safe_eval instead of eval_form.
3976
3977 * lisp.h (safe_call): Renamed from call_function.
3978 (safe_eval): Renamed from eval_form.
3979 (safe_call1): Add prototype.
3980
a3489ece
MB
39812000-10-05 Miles Bader <miles@lsi.nec.co.jp>
3982
3983 * xfns.c (image_ascent): Rearrange ascent calculation for the
3984 has-a-font case.
3985
35810b6f
SM
39862000-10-04 Stefan Monnier <monnier@cs.yale.edu>
3987
3988 * keymap.c (Fwhere_is_internal): Ignore `menu-bar' and `tool-bar'.
3989 (where_is_internal_1): Don't bother ignoring menu-items any more.
3990
3dc78168
GM
39912000-10-04 Gerd Moellmann <gerd@gnu.org>
3992
3993 * keyboard.c (update_menu_bindings): New variable.
3994 (parse_menu_item): Use AREF. If update_menu_bindings
3995 is 0, don't update menu bindings.
3996 (syms_of_keyboard): New Lisp variable `update-menu-bindings'.
3997
1efc2bb9
EZ
39982000-10-03 Eli Zaretskii <eliz@is.elta.co.il>
3999
4000 * alloc.c (Fgarbage_collect): Prevent compiler warning for a call
4001 to `mark_object'.
4002
3f679f55
SM
40032000-10-02 Stefan Monnier <monnier@cs.yale.edu>
4004
4005 * syntax.c (forw_comment): Match nestedness of ender/starter.
4006 (Fforward_comment): Treat an unmatched \n comment-ender as whitespace.
4007 (prev_char_comstart_first): Remove.
4008 (back_comment): Check two-char comment markers more carefully
4009 to better handle overlapping cases like *//* or /* */* */ ...
4010 Match nestedness of ender/starter.
4011
2021ab61
DL
40122000-10-02 Dave Love <fx@gnu.org>
4013
4014 * config.in (HAVE_GAI_STRERROR): Add undef.
4015
4016 * process.c (Fopen_network_stream): Use it.
4017
4018 * m/alpha.h (NO_REMAP): Don't define.
4019
64e6cc18
GM
40202000-10-02 Gerd Moellmann <gerd@gnu.org>
4021
4022 * lisp.h (wrong_type_argument): Remove NO_RETURN, the function can
4023 return with a string converted to an integer or vice versa when
4024 Vmocklisp_arguments is t.
4025 (Fsignal): Likewise. The function can return for `quit'.
4026 (struct gcpro): Declare member `var' to point to a volatile
4027 Lisp_Object.
4028
4029 * eval.c (error): Prevent compiler warning.
4030
b1904cd9
SM
40312000-09-30 Stefan Monnier <monnier@cs.yale.edu>
4032
4033 * keymap.c (keymap_memberp): New function.
4034 (Fset_keymap_parent): Use it.
4035 (fix_submap_inheritance): Use get_keyelt, get_keymap_1 and KEYMAPP.
4036 Use keymap_memberp to avoid creating cycles.
4037 (access_keymap): Use KEYMAPP.
4038
71c9ec51
GM
40392000-09-30 Gerd Moellmann <gerd@gnu.org>
4040
4041 * process.c (Fopen_network_stream) [HAVE_GETADDRINFO]: Use
64e6cc18
GM
4042 gai_strerror. Make sure xerrno is set if connect fails. Improve
4043 error recovery.
71c9ec51 4044
c70c6b58
JR
40452000-09-29 Jason Rumney <jasonr@gnu.org>
4046
4047 * w32term.c (w32_char_font_type, w32_encode_char)
4048 (x_produce_glyphs): Distinguish single and multibyte BDF fonts.
4049 (w32_bdf_per_char_metric): New function.
4050 (w32_per_char_metric): Use it.
4051 (x_draw_glyph_string_background): Always draw background for BDF
4052 glyphs.
4053
4054 * w32bdf.h (glyph_struct, cache_bitmap): Cache bitmap data, not
4055 GDI object which is a scarce resource.
4056
4057 * w32bdf.c (search_file_line): Fix skipping of whitespace.
4058 (get_quoted_string): Fix limit on memchr search.
4059 (set_bdf_font_info): Use unsigned chars. Negate yoffset.
4060 (w32_init_bdf_font): Initialize codepoint and bitmap heaps.
4061 (w32_free_bdf_font): Free bitmaps and codepoints on heaps.
4062 (get_cached_font_char, cache_char_offset): Use macro
4063 BDF_CODEPOINT_RANGE_COVER_P.
4064 (cache_char_offset): Use HeapAlloc to allocate codepoints on own heap.
4065 (clear_cached_bitmap_slots): New function.
4066 (GET_HEX_VALUE): G-Z, g-z are not hex.
4067 (w32_get_bdf_glyph): Convert to DIB format. Return bytes read.
4068 (get_bitmap_with_cache): Use new cache implementation.
4069 (create_offscreen_bitmap): New function.
4070 (w32_BDF_TextOut): Use it. Draw glyphs as DIBs.
4071
4072 * w32term.c (x_produce_glyphs): If the distance from the current
4073 position to the next tab stop is less than a canonical character
4074 width, use the tab stop after that.
4075 (x_draw_glyphs): Handle case START and END are out of bounds more
4076 carefully.
4077 (x_clear_mouse_face): Block/unblock input.
4078 (x_display_and_set_cursor): Don't show a hollow box cursor for
4079 buffers whose cursor_type is nil.
4080
fe01239f
GM
40812000-09-29 Gerd Moellmann <gerd@gnu.org>
4082
4083 * xfns.c (x_set_tool_bar_lines): Clear frame when tool bar
4084 disappears.
4085
4086 * dispextern.h (updating_frame): Declare extern.
4087
e7c52f1f
AS
40882000-09-29 Andreas Schwab <schwab@suse.de>
4089
4090 * m/ia64.h: Remove hack of not prototyping bcopy, etc.
4091
de6e1f7c
GM
40922000-09-29 Gerd Moellmann <gerd@gnu.org>
4093
25126faa
GM
4094 * keyboard.c (menu_bar_one_keymap): If KEYMAP is a symbol,
4095 use its function definition.
4096 (tool_bar_items): Likewise.
4097
de6e1f7c
GM
4098 * lisp.h (fatal): Declare NO_RETURN.
4099
454ee39b
KH
41002000-09-29 Kenichi Handa <handa@etl.go.jp>
4101
4102 * keymap.c: Remove the line "#undef NULL".
4103
96301c5f
GM
41042000-09-28 Gerd Moellmann <gerd@gnu.org>
4105
4106 * xterm.c (x_make_frame_visible): Try harder to make the frame
4107 visible.
4108
efffeeb4
DL
41092000-09-28 Dave Love <fx@gnu.org>
4110
ecb8b666
DL
4111 * s/osf5-0.h: Define USE_MMAP_FOR_BUFFERS, not REL_ALLOC_MMAP.
4112
dc3cd20f
DL
4113 * s/sunos413.h (USE_MMAP_FOR_BUFFERS): Define.
4114
4115 * .gdbinit (xreload): Note its need on GNU/Linux.
4116
efffeeb4
DL
4117 * m/alpha.h (XUINT) [REL_ALLOC && _MALLOC_INTERNAL]: Don't declare
4118 r_alloc, r_alloc_free.
4119
8610d903
KH
41202000-09-28 Kenichi Handa <handa@etl.go.jp>
4121
4122 * syntax.c (skip_chars): Handle negation correctly.
4123
8901d1ac
GM
41242000-09-27 Gerd Moellmann <gerd@gnu.org>
4125
6f22f1ad
GM
4126 * xfaces.c (realize_default_face): Call set_lface_from_font_name
4127 with non-zero FORCE_P argument.
4128
8901d1ac
GM
4129 * dispnew.c (adjust_glyph_matrix, enable_glyph_matrix_rows):
4130 Add assertions.
4131
4132 * xdisp.c (window_box_height): Add an assertion.
4133
4134 * xfns.c (x_set_tool_bar_lines): Don't use more lines for the
4135 tool-bar than is available.
4136 (x_change_window_heights): Renamed from x_set_menu_bar_lines_1.
4137
36f1966f
DL
41382000-09-27 Dave Love <fx@gnu.org>
4139
efffeeb4 4140 * s/irix6-5.h: Now works 64-bit. Tidied.
36f1966f 4141
31d929e5
GM
41422000-09-26 Gerd Moellmann <gerd@gnu.org>
4143
c98863bf
GM
4144 * lisp.h (XINT) [EXPLICIT_SIGN_EXTEND]: Use BITS_PER_EMACS_INT
4145 instead of BITS_PER_INT.
4146 (XINT, XUINT) [NO_UNION_TYPE]: Cast result to EMACS_INT and
4147 EMACS_UINT, respectively.
4148 (NO_UNION_TYPE) [USE_LISP_UNION_TYPE]: Undefine.
4149
4150 * m/sparc.h (BITS_PER_EMACS_INT) [__arch64__]: Don't define.
4151
4152 * unexelf.c (ELFSIZE) [__NetBSD__ && __sparc_v9__]: Define to 64.
4153
77072ab1
GM
4154 * window.c (freeze_window_starts): Construct last argument for
4155 foreach_window differently.
4156
4157 * xfns.c (x_decode_color): Don't return a Lisp_Object.
4158
4159 * lisp.h (union Lisp_Object) [!NO_UNION_TYPE]: Use EMACS_INT and
4160 EMACS_UINT instead of `int' and `unsigned int'.
4161 (XSET) [EXPLICIT_SIGN_EXTEND]: Use EMACS_INT instead of `int'.
4162
4163 * frame.h (struct frame): Make the `nothing' member of union
4164 output_data an EMACS_INT.
4165
31d929e5
GM
4166 * alloc.c (GC_CHECK_STRING_BYTES): Temporarily define, for bug
4167 hunting.
4168 (struct sdata) [GC_CHECK_STRING_BYTES]: Always record the string's
4169 size in the sdata structure.
4170 (SDATA_NBYTES, SDATA_DATA): New macros.
4171 (SDATA_OF_STRING, SDATA_SIZE) [GC_CHECK_STRING_BYTES]: Define
4172 differently for the different layout of the sdata structure.
4173 (allocate_string_data) [GC_CHECK_STRING_BYTES]: Record string size
4174 in sdata.
4175 (sweep_strings, compact_small_strings) [GC_CHECK_STRING_BYTES]:
4176 Check that size recorded in the string size and size recorded in
4177 the sdata structure agree.
4178
3e60b029
DL
41792000-09-25 Dave Love <fx@gnu.org>
4180
4181 * buffer.c: Include stdio.h.
4182
4183 Partly suggested by Eduardo Horvath <eeh@netbsd.org>.
4184
4185 * ralloc.c (__malloc_extra_blocks): Declare as __malloc_size_t.
4186
4187 * alloc.c (__malloc_size_t) [DOUG_LEA_MALLOC]: Don't redefine it.
4188 (__malloc_size_t) [!DOUG_LEA_MALLOC]: Define unconditionally as
4189 size_t.
4190 (__malloc_extra_blocks): Declare as __malloc_size_t.
4191
8ff16b4e
GM
41922000-09-25 Gerd Moellmann <gerd@gnu.org>
4193
755a2ccd
GM
4194 * alloc.c (mark_image): Use GC_NILP instead of NILP.
4195
d8b4516f
GM
4196 * keyboard.c (show_help_echo): Set help_echo_showing_p.
4197 (read_char): If help-echo is showing, preserve the echo area
4198 when redisplaying.
4199
4200 * xdisp.c (help_echo_showing_p): New variable.
4201 (set_message): Reset it to 0.
4202 (init_xdisp): Initialize help_echo_showing_p.
4203
4204 * dispextern.h (help_echo_showing_p): Declare extern.
4205
4206 * config.in: Fix typo in __GNUC_MINOR__.
4207
4208 * keyboard.h (quit_throw_to_read_char): Declare NO_RETURN.
4209
b11af2dd
GM
4210 * s/freebsd.h (POSIX_SIGNALS): Define.
4211
8ff16b4e
GM
4212 * xterm.c (x_clear_mouse_face): Block/unblock input.
4213
844eb643
DL
42142000-09-24 Dave Love <fx@gnu.org>
4215
4216 * fns.c (base64_encode_1): Fix last change.
4217
b30ab1b3
GM
42182000-09-22 Gerd Moellmann <gerd@gnu.org>
4219
4220 * dispnew.c (enable_glyph_matrix_rows): Remove xasserts.
4221
4222 * xdisp.c (try_window_reusing_current_matrix): More fixes
4223 for the case window has a header-line.
4224
c6cbe5f0
DL
42252000-09-22 Dave Love <fx@gnu.org>
4226
4c7c1f3f
DL
4227 * xdisp.c (syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
4228 a doc string.
4229
4230 * xterm.c [SOLARIS2]: Remove redundant include of string.h.
4231
c6cbe5f0
DL
4232 * fns.c (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix.
4233
550a625e
GM
42342000-09-21 Gerd Moellmann <gerd@gnu.org>
4235
4c7c1f3f 4236 * config.in (NO_RETURN): Define as `__attribute__((__noreturn__))'
fca99116
GM
4237 for GCC >= 2.5.
4238
4239 * lisp.h (wrong_type_argument, Fthrow, Fsignal, error): Declare
4240 NO_RETURN.
4241
80d26f99
GM
4242 * window.c, term.c, xmenu.c, xrdb.c, emacs.c, macros.c,
4243 * keymap.c, insdel.c, marker.c, minibuf.c, fileio.c, dired.c,
4244 * indent.c, search.c, alloc.c, data.c: Avoid some more compiler
4245 warnings.
4246
4247 * marker.c (byte_char_debug_check): Return void.
4248
623a0aae
GM
4249 * xfns.c (Fx_create_frame): Set default frame parameter value
4250 for tool-bar-lines to 1.
4251
4252 * dispnew.c (scrolling_window): Compare y-positions of rows
4253 equal at the start. Some simplification.
4254
4255 * xdisp.c (try_window_reusing_current_matrix): Fix computation of
4256 reused rows' y-position in the case window has a header-line, and
4257 new window start is greater than old window start.
4258
42ac0ae5
GM
4259 * process.c (process_sent_to): New variable.
4260 (send_process): Workaround for a crash on sparc-sun-solaris-2.6
4261 with GCC 2.95.2 caused by a parameter being clobbered by longjmp.
4262 Declare more parameters volatile.
4263
550a625e
GM
4264 * lread.c (Vrecursive_load_depth_limit): New variable.
4265 (Fload): Check recursive loads whose recursion depth exceeds
4266 Vrecursive_load_depth_limit.
4267 (syms_of_lread): DERFAR_LISP recursive-load-depth-limit.
4268
8320414c
GM
42692000-09-20 Gerd Moellmann <gerd@gnu.org>
4270
f46c275e
GM
4271 * fileio.c (Fread_file_name): Doc fix.
4272
4273 * editfns.c (Fmessage_or_box): Doc fix.
4274
4275 * fns.c (Fy_or_n_p, Fyes_or_no_p): Doc fix.
4276
b7e11c5b
GM
4277 * xfns.c (xbm_scan): Allow C-style comments.
4278
8320414c
GM
4279 * xfns.c (xpm_init_color_cache) [ALLOC_XPM_COLORS]: If color
4280 symbols are specified, add color translations to the cache.
4281 (xpm_color_bucket, xpm_cache_color) [ALLOC_XPM_COLORS]: New
4282 functions.
4283 (xpm_lookup_color) [ALLOC_XPM_COLORS]: Use xpm_color_bucket and
4284 xpm_cache_color.
4285 (xpm_load) [ALLOC_XPM_COLORS]: Pass frame and XPM attributes
4286 structures to xpm_init_color_cache.
4287
da1608d9
GM
42882000-09-19 Gerd Moellmann <gerd@gnu.org>
4289
4290 * dispnew.c (update_window_line): Make sure to always draw
4291 mode-lines.
4292
6badfa25
AI
42932000-09-19 Andrew Innes <andrewi@gnu.org>
4294
4295 * makefile.nt (bootstrap-emacs): Don't change directory.
4296
3a5f42bb
KH
42972000-09-19 Kenichi Handa <handa@etl.go.jp>
4298
1b7649bd
KH
4299 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Fix previous change.
4300
3a5f42bb
KH
4301 * ccl.c (Fccl_execute_on_string): Make multibyte string correctly.
4302 If output buffer is too small, signal an appropriated error.
4303
9f83cf0b
DL
43042000-09-18 Dave Love <fx@gnu.org>
4305
4306 * keyboard.c (menu_bar_items, tool_bar_items)
4307 (current_active_maps): Remove redundant get_local_map call.
4308
28c7826c
GM
43092000-09-18 Gerd Moellmann <gerd@gnu.org>
4310
5cefa566
GM
4311 * xterm.c (x_display_and_set_cursor): Don't show a hollow box
4312 cursor for buffers whose cursor_type is nil.
4313
6fed3546
GM
4314 * xterm.c (x_draw_image_glyph_string): Remove a comment describing
4315 a feature to implement that is already implemented.
4316 (note_mouse_highlight, x_find_ccl_program): Avoid some compiler
4317 warnings.
4318
4319 * xfns.c (x_clear_image_1): New function.
4320 (x_clear_image): Use it.
4321 (x_from_xcolors): Use x_clear_image_1; don't free the image's
4322 mask.
4323
05b1f851
GM
4324 * dispnew.c (update_window): Move test for invisible lines
4325 at the top to update_window_line.
4326 (update_window_line): Handle invisible lines here.
4327
f4779de9
GM
4328 * xfns.c (clear_image_cache): Clear current matrices of all
4329 frames sharing an image cache. Block input while freeing
4330 images. Fix timestamp comparison.
4331 (x_clear_image): Also free the mask.
4332
28c7826c
GM
4333 * xfns.c (lookup_image): Block input while loading the image so
4334 that we won't get interrupted in a state where the image isn't yet
4335 set up completely.
4336 (xbm_load_image, xbm_load, xpm_load, xpm_load, lookup_rgb_color)
4337 (lookup_pixel_color, x_to_xcolors, x_from_xcolors)
4338 (x_disable_image, x_build_heuristic_mask, pbm_load, png_load)
4339 (jpeg_load, tiff_load, gif_load, gs_load): Don't block/unblock
4340 input.
4341
b7412313
GM
43422000-09-16 Gerd Moellmann <gerd@gnu.org>
4343
4344 * dispnew.c (update_window): Make sure to make desired rows
4345 current even if they are completely invisible at the top
4346 of a window.
4347
47e351a3
GM
43482000-09-15 Gerd Moellmann <gerd@gnu.org>
4349
7f8f1edc
GM
4350 * xfns.c (lookup_image): Build mask before applying an algorithm.
4351 Recognize algorithm `disabled'.
4352 (cross_disabled_images): New variable.
4353 (COLOR_INTENSITY): New macro.
4354 (x_detect_edges): Use COLOR_INTENSITY.
4355 (x_disable_image): New function.
4356 (syms_of_xfns): DEFVAR_BOOL cross_disabled_images.
4357
4358 * xdisp.c (build_desired_tool_bar_string): For a toolbar item in
4359 disabled state, don't apply an image transformation algorithm if
4360 the user specified an image for the disabled state. Use
28c7826c 4361 `:algorithm disabled' for creating a disabled item's image if the
7f8f1edc
GM
4362 user hasn't specified an image.
4363
ebb8f116
GM
4364 * xfns.c (ALLOC_XPM_COLORS): Define if we can use Emacs' color
4365 allocation functions with the XPM lib.
4366 (struct xpm_cached_color) [ALLOC_XPM_COLORS]: New structure.
4367 (XPM_COLOR_CACHE_BUCKETS) [ALLOC_XPM_COLORS]: New macro.
4368 (xpm_color_cache) [ALLOC_XPM_COLORS]: New variable.
4369 (xpm_init_color_cache, xpm_free_color_cache, xpm_lookup_color)
4370 (xpm_alloc_color, xpm_free_colors) [ALLOC_XPM_COLORS]: New
4371 functions.
4372 (xpm_load) [ALLOC_XPM_COLORS]: Use Emacs' own color allocation
4373 functions, if possible, because these handle color allocation
4374 failure more gracefully.
4375 (Fimage_mask_p): New function.
4376
47e351a3
GM
4377 * xfns.c (QCmatrix, QCcolor_adjustment, QCmask, Qemboss)
4378 (Qedge_detection, Qheuristic): New symbols.
4379 (syms_of_xfns): Initialize new symbols.
4380 (lookup_image): Handle `:mask X', `:algorithm emboss', and
4381 `algorithm (edge-detection ...)'.
4382 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format):
4383 (tiff_format, gif_format, gs_format): Add `:mask'.
4384 (XBM_MASK, XPM_MASK, PBM_MASK, PNG_MASK, JPEG_MASK, TIFF_MASK)
4385 (GIF_MASK, GS_MASK): New enumerators.
4386 (x_laplace_read_row, x_laplace_write_row): Functions removed.
4387 (emboss_matrix, laplace_matrix): New variables.
4388 (x_to_xcolors, x_from_xcolors, x_detect_edges, x_emboss)
4389 (x_edge_detection): New functions.
4390 (x_laplace): Rewritten in terms of x_detect_edges.
4391 (x_build_heuristic_mask): If image has a mask, free it.
4392
fe83b953
AI
43932000-09-14 Andrew Innes <andrewi@gnu.org>
4394
4395 * makefile.w32-in: Revert to Unix line endings.
4396
3021e816
AI
43972000-09-14 Andrew Innes <andrewi@gnu.org>
4398
4399 * makefile.w32-in: Standardize indentation somewhat.
4400 (bootstrap-temacs): Use $(ARGQUOTE) instead of literal quotes, to
4401 cater for differences between shells.
4402
4403 * w32term.c (w32_per_char_metric): Handle non-TrueType fonts.
4404
2a32b5ea
GM
44052000-09-14 Gerd Moellmann <gerd@gnu.org>
4406
4407 * xterm.c (x_produce_glyphs): If the distance from the current
4408 position to the next tab stop is less than a canonical character
4409 width, use the tab stop after that.
4410
b4331e96
DL
44112000-09-14 Dave Love <fx@gnu.org>
4412
4413 * buffer.c (alloc_buffer_text): Fix xmalloc call.
4414
ef9e4345
GM
44152000-09-14 Gerd Moellmann <gerd@gnu.org>
4416
085536c2
GM
4417 * xdisp.c (handle_fontified_prop): While running fontification
4418 functions, bind `fontification-functions' and
4419 `after-change-functions' to nil.
4420
ef9e4345
GM
4421 * s/freebsd.h, s/irix-5.0.h, s/sol2.h, s/template.h
4422 (USE_MMAP_FOR_BUFFERS): Define instead of REL_ALLOC_MMAP.
4423
4424 * Makefile.in (mallocobj) [SYSTEM_MALLOC]: Don't add ralloc.o.
4425
4426 * emacs.c: Change conditional compilation on REL_ALLOC_MMAP to
4427 USE_MMAP_FOR_BUFFERS.
4428
4429 * insdel.c (make_gap): Use enlarge_buffer_text.
4430
4431 * buffer.c: Move allocation with mmap here, from ralloc.c. Change
4432 conditional compilation on REL_ALLOC_MMAP to USE_MMAP_FOR_BUFFERS.
4433 (mmap_alloc, mmap_free, mmap_realloc) [REL_ALLOC_MMAP]: Renamed
4434 from former r_alloc_* functions in ralloc.c.
4435 (mmap_page_size, mmap_initialized_p) [REL_ALLOC_MMAP]: New
4436 variables.
4437 (MEM_ALIGN) [REL_ALLOC_MMAP]: New macro.
4438 (mmap_init) [REL_ALLOC_MMAP]: New function.
4439 (alloc_buffer_text, enlarge_buffer_text, free_buffer_text): New
4440 functions replacing macros BUFFER_ALLOC, BUFFER_REALLOC, and
4441 BUFFER_FREE.
4442
4443 * buffer.h (BUFFER_ALLOC, BUFFER_REALLOC, BUFFER_FREE): Removed.
4444 (enlarge_buffer_text): Add prototype.
4445
4446 * ralloc.c: Remove everything having to do with the use of mmap.
4447
f8608968
GM
44482000-09-13 Gerd Moellmann <gerd@gnu.org>
4449
2a494b2d
GM
4450 * sound.c (Fplay_sound): Doc fix.
4451
8c907a56
GM
4452 * keyboard.c: Avoid some more compiler warnings.
4453 (parse_tool_bar_item): Ignore cached key bindings.
4454
f8608968
GM
4455 * alloc.c: Add some comments about DOUG_LEA_MALLOC's use of mmap
4456 and allocation of Lisp data.
4457
6ab70e9a
GM
44582000-09-12 Gerd Moellmann <gerd@gnu.org>
4459
d12d0a9b
GM
4460 * xfaces.c: Remove conditional compilation on SCALABLE_FONTS.
4461 (Finternal_set_lisp_face_attribute): If frame is 0, set new frame
4462 defaults first.
4463
6ab70e9a
GM
4464 * lread.c (Fload): Put code checking for recursive loads in #if 0.
4465
63c36c3c
KH
44662000-09-12 Miyashita Hisashi <himi@meadowy.org>
4467
4468 * ccl.c: Comment fixed.
4469 (MAX_MAP_SET_LEVEL): Increased to 30.
4470 (PUSH_MAPPING_STACK): Enclose with do-while block.
4471 (POP_MAPPING_STACK): Likewise.
4472 (stack_idx_of_map_multiple): New variable.
4473 (CCL_CALL_FOR_MAP_INSTRUCTION): New macro.
4474 (ccl_driver) <CCL_IterateMultipleMap>: If the content is a symbol,
4475 call the corresponding CCL program by
4476 CCL_CALL_FOR_MAP_INSTRUCTION.
4477 (ccl_driver) <CCL_MapSingle>: Likewise.
4478 (ccl_driver) <CCL_MapMultiple>: Rewritten to fix many bugs, deal
4479 with the case where looking up process reaches to the end of
4480 map-set, and call CCL programs as the above change.
4481
7ee3bd7b
GM
44822000-09-11 Gerd Moellmann <gerd@gnu.org>
4483
8ec8a5ec
GM
4484 * xfns.c (png_load, jpeg_load): Declare some variables volatile
4485 that might be clobbered by longjmp.
4486 (check_x_display_info, x_decode_color, create_frame_xic)
4487 (Fx_display_backing_store, Fx_display_visual_class)
4488 (x_build_heuristic_mask, pbm_scan_number): Avoid compiler
4489 warnings.
4490
f74b0705
GM
4491 * lread.c (init_lread): Set Vloads_in_progress to nil.
4492 (Fload): Show list of recursively loaded files, when signaling an
4493 error.
4494
7ee3bd7b
GM
4495 * lread.c (Vloads_in_progress): New variable.
4496 (record_load_unwind): New function.
4497 (Fload): Check for recursive loads.
4498 (syms_of_lread): Initialize Vloads_in_progress.
4499 (read_integer, read1): Avoid some compiler warnings.
4500
4501 * fns.c (concat, Fsubstring, internal_equal, Fnconc): Avoid some
4502 compiler warnings.
4503
974e1e5b
MB
45042000-09-11 Miles Bader <miles@gnu.org>
4505
4506 * editfns.c (Fbuffer_string): Doc fix.
4507
9824c4e3
GM
45082000-09-10 Gerd Moellmann <gerd@gnu.org>
4509
4510 * ralloc.c (mmap_enlarge): Don't return 0 if successful.
4511
6a72fdd1
KR
45122000-09-09 Ken Raeburn <raeburn@gnu.org>
4513
4514 * s/netbsd.h: Use NOT_C_CODE, not NO_C_SOURCE, when deciding
4515 whether to include other header files.
4516
28e6fb66
GM
45172000-09-09 Gerd Moellmann <gerd@gnu.org>
4518
4519 * xfaces.c (CYCLE_CHECK): Don't use the Lisp_Object returned
9824c4e3 4520 by Fmemq as a boolean.
28e6fb66 4521
7f8b6551
SM
45222000-09-08 Stefan Monnier <monnier@cs.yale.edu>
4523
4524 * xfaces.c (Finternal_set_lisp_face_attribute): Minor thinko.
4525
a8710abf
GM
45262000-09-08 Gerd Moellmann <gerd@gnu.org>
4527
d1a02881
GM
4528 * ralloc.c (mmap_fd): Remove initializer which can make it
4529 read-only in a dumped Emacs.
4530 (mmap_fd_1): New variable.
4531 (mmap_set_vars): Remove local `fd'. Save mmap_fd in mmap_fd_1,
4532 restore it from there.
4533 (r_alloc, r_re_alloc, r_alloc_free): Call r_alloc_init
4534 unconditionally so that mmap_fd can be initialized there.
4535 (r_alloc_init_fd): Open-coded in r_alloc_init; function removed.
4536 (r_alloc_init) [REL_ALLOC_MMAP && !MAP_ANON]: Open /dev/zero.
4537 (r_alloc_init) [REL_ALLOC_MMAP && MAP_ANON]: Set mmap_fd to -1.
4538
c454aac1
GM
4539 * xfaces.c (Finternal_merge_in_global_face): Return a Lisp object.
4540
4541 * xdisp.c (dump_glyph_row): Fix printf format string.
4542 (display_line, move_it_in_display_line_to): Avoid compiler
4543 warnings.
4544
fc653ef2
GM
4545 * s/freebsd.h (GC_MARK_STACK, REL_ALLOC_MMAP): Define.
4546
3015eec0
GM
4547 * keymap.c (Fset_keymap_parent): Check for cycles in keymap
4548 inheritance.
4549
bfe0ee88
GM
4550 * xdisp.c (try_window_id): When trying to locate cursor in
4551 unchanged rows at the top, handle the case that we can't find it.
4552
a8710abf
GM
4553 * xterm.c (x_draw_glyphs): Handle case START and END are out
4554 of bounds more carefully.
4555
6b7d4ae4
DL
45562000-09-08 Dave Love <fx@gnu.org>
4557
423193c5
DL
4558 * s/sol2.h (REL_ALLOC_MMAP): Define.
4559 * s/irix5-0.h (REL_ALLOC_MMAP): Likewise.
4560
4561 * ralloc.c: Don't include string.h (redundant).
4562 (MAP_ANON) [REL_ALLOC_MMAP]: Ensure it's defined.
4563 [!MAP_ANON]: Include fcntl.h.
4564 (mmap_fd) [REL_ALLOC_MMAP]: New variable.
4565 (r_alloc, r_re_alloc, r_alloc_free)
4566 (mmap_enlarge, mmap_set_vars): Use it.
4567 (r_alloc_init_fd): New function.
4568 (__morecore) [SYSTEM_MALLOC]: Don't declare.
4569 (r_alloc_init): Call r_alloc_init_fd. Conditionalize stuff on
4570 malloc type.
4571
4572 * Makefile.in (allocaobj) [!SYSTEM_MALLOC && REL_ALLOC_MMAP]:
4573 Remove vm-limit.o.
4574
6b7d4ae4
DL
4575 * unexelf.c (SHT_MIPS_DEBUG, HDRR) [__mips__]: Really confine last
4576 change to __NetBSD__.
4577
44d31981
KH
45782000-09-08 Kenichi Handa <handa@etl.go.jp>
4579
4580 * search.c (compile_pattern): Check the multibyteness of cached
4581 string and PATTERN.
4582
aad40737
MB
45832000-09-08 Miles Bader <miles@gnu.org>
4584
4585 * xfaces.c (default_face_vector): Function removed.
4586 (Finternal_merge_in_global_face): Restore old global/local
4587 attribute override order. Use inline loop instead of calling
4588 default_face_vector.
4589
91a211b5
GM
45902000-09-07 Gerd Moellmann <gerd@gnu.org>
4591
4592 * ralloc.c (obtain, relinquish, relinquish, r_alloc_size_in_use)
4593 (get_bloc, relocate_blocs, update_heap_bloc_correspondence)
4594 (resize_bloc, r_alloc_sbrk, r_alloc_init): Add casts to `char *'
4595 where necessary, in case POINTER_TYPE is `void'.
4596
03419440
EZ
45972000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
4598
4599 * frame.c (make_terminal_frame): Initialize frame foreground and
4600 background colors to unspecified, for the initial instance of an
4601 MSDOS frame.
4602
f46f845b
GM
46032000-09-07 Gerd Moellmann <gerd@gnu.org>
4604
24f76fbf
GM
4605 * ralloc.c (mmap_find): Fix overlap computation.
4606 (mmap_enlarge): Compute nbytes before trying to find an
4607 overlapping region.
4608
f46f845b
GM
4609 * xfaces.c (smaller_face): Compare font heights with `<' and `>'
4610 instead of `!='.
4611
4612 * lread.c (syms_of_lread): Change value of regexp
4613 Vbytecomp_version_regexp to not match some XEmacs-compiled files.
4614
4615 * xmenu.c (xdialog_show): When looking up the selection in
4616 menu_items, take `quote' boundaries into account; this corresponds
4617 to a nil ITEM in x-popup-dialog.
4618
3c014385
KH
46192000-09-07 Kenichi Handa <handa@etl.go.jp>
4620
fd6f711b
KH
4621 * charset.h (MIN_CHARSET_OFFICIAL_DIMENSION1): Define it as 0x80,
4622 not 0x81.
4623 (MIN_CHAR_OFFICIAL_DIMENSION1): Define it as ((0x81 - 0x70) << 7).
4624
3c014385 4625 * coding.c (encode_coding_sjis_big5): Use translation table for
ed254191
KH
4626 encoding, not decoding. Fix the handling of latin-jisx0201.
4627 Check for the charset katakana-jisx0201 too.
3c014385 4628 (ONE_MORE_CHAR): Call translate_char with CHARSET arg -1.
f46f845b 4629 (detect_coding_sjis): Check the byte sequence more rigidly.
3c014385 4630
0da3ecef
GM
46312000-09-07 Gerd Moellmann <gerd@gnu.org>
4632
ab0ee409
GM
4633 * xfaces.c (Vparam_value_alist): New variable.
4634 (syms_of_xfaces): Initialize it.
4635 (Finternal_set_lisp_face_attribute): Avoid more consing.
4636
4637 * frame.c (Fframe_parameter): Handle `name' and `background-mode'
4638 specially.
4639 (Fframe_parameter) [HAVE_X_WINDOWS]: Handle `display' specially.
4640 (Qbackground_mode): New variable.
4641 (syms_of_frame_1): Initialize Qbackground_mode.
4642
4643 * lisp.h (Qdisplay): Declare extern.
1091dd67 4644
0da3ecef
GM
4645 * xfaces.c (Finternal_set_lisp_face_attribute): If FRAME is 0,
4646 change face on all frames, and change the default for new frames.
4647
b14654b9
DL
46482000-09-07 Dave Love <fx@gnu.org>
4649
4650 * Makefile.in [!SYSTEM_MALLOC && REL_ALLOC_MMAP]: Set mallocobj.
4651
d24fd56f
KH
46522000-09-07 Kenichi Handa <handa@etl.go.jp>
4653
794f3670
KH
4654 * charset.h (MAKE_CHAR): Be sure to set MSB of C1 to 0.
4655
0fddd0dc
KH
4656 * charset.c: Include composite.h
4657 (lisp_string_width): New function.
4658 (Fstring_width): Call lisp_string_width instead of strwidth.
4659
4660 * Makefile.in (charset.o): Depends on composite.h.
4661
d24fd56f
KH
4662 * process.c (read_process_output): Before inserting the decoded
4663 text in the buffer, adjust the multibyteness.
4664
fa0b693c
GM
46652000-09-06 Gerd Moellmann <gerd@gnu.org>
4666
73b77ee5
GM
4667 * buffer.c (set_buffer_internal_1) [REL_ALLOC_MMAP]: If
4668 buffer's text buffer is null, map new memory.
4669
0a58f946
GM
4670 * ralloc.c (POINTER, SIZE) [emacs]: Define in terms of
4671 POINTER_TYPE and size_t.
4672 (struct mmap_region) [REL_ALLOC_MMAP]: New structure.
4673 (mmap_regions, mmap_regions_1) [REL_ALLOC_MMAP]: New variables.
4674 (ROUND, MMAP_REGION_STRUCT_SIZE, MMAP_REGION, MMAP_USER_AREA)
4675 [REL_ALLOC_MMAP]: New macros.
4676 (mmap_find, mmap_free, mmap_enlarge, mmap_set_vars)
4677 (mmap_mapped_bytes, r_alloc, r_re_alloc, r_alloc_free)
4678 [REL_ALLOC_MMAP]: New functions.
4679
4680 * emacs.c (Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars
4681 before and after unexec.
4682
4683 * buffer.c (init_buffer) [REL_ALLOC_MMAP]: Map new buffer
4684 text buffers if necessary.
4685
4686 * buffer.h (R_ALLOC_DECLARE): Removed because unused.
4687 (r_alloc, r_re_alloc, r_alloc_free): Use POINTER_TYPE and size_t
4688 in prototypes.
4689
fa0b693c
GM
4690 * config.in (HAVE_MMAP): Add #undef.
4691
877055f6
GM
46922000-09-05 Gerd Moellmann <gerd@gnu.org>
4693
08ba3862
GM
4694 * frame.c (Qdisplay_type): New variable.
4695 (syms_of_frame_1): Initialize it.
4696 (Fframe_parameter): New function that avoids consing.
4697 (syms_of_frame): Defsubr it.
4698
66ffe51c
GM
4699 * buffer.c (Fother_buffer): Consider buffers as invisible when
4700 they are displayed in a window on an invisible frame.
4701
877055f6
GM
4702 * window.c (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
4703 get-largest-window always return nil.
4704
bb970e67
GM
47052000-09-04 Gerd Moellmann <gerd@gnu.org>
4706
4707 * lread.c (syms_of_lread): Make Vbytecomp_version_regexp a Lisp
4708 variable; recognize Emacs 19 elc files.
4709
7a3d0e0e
MB
47102000-09-04 Miles Bader <miles@gnu.org>
4711
4712 * xmenu.c (xmenu_show): Call x_set_menu_resources_from_menu_face
4713 before initially popping up the menu, so the menu doesn't flash
4714 when the face settings are significantly different from the
4715 defaults.
4716
14473664
SM
47172000-09-04 Stefan Monnier <monnier@cs.yale.edu>
4718
4719 * regex.c (WIDE_CHAR_SUPPORT): New macro.
4720 (btowc, iswctype, wctype) [_LIBC]: Redefine to __<fun>.
4721 (BIT_ALPHA, BIT_ALNUM, BIT_ASCII, BIT_NONASCII, BIT_GRAPH, BIT_PRINT)
4722 (BIT_UNIBYTE): Remove.
4723 (re_match_2_internal): Delete corresponding code and streamline the
4724 BIT_MULTIBYTE case to not bother checking ISUNIBYTE.
4725 (CHAR_CLASS_MAX_LENGTH) [!WIDE_CHAR_SUPPORT]: Set to 9 rather than 6.
4726 (re_wctype_t): New type.
4727 (re_wctype, re_iswctype, re_wctype_to_bit): New functions.
4728 (regex_compile): Use them and fix handling of overly long char classes.
4729
c1174479
AI
47302000-09-03 Andrew Innes <andrewi@gnu.org>
4731
f8803e97
AI
4732 * makefile.w32-in: Change to DOS line endings.
4733
c1174479
AI
4734 * s/ms-w32.h (ORDINARY_LINK): New define.
4735
4736 * w32.c (_ANONYMOUS_UNION) [__GNUC__]: New define
4737 (_ANONYMOUS_STRUCT) [__GNUC__]: New define.
4738
4739 * makefile.w32-in (clean): Don't delete config.h and epaths.h.
4740 (distclean): Delete them here instead.
4741
44ef7cf6
AI
4742 * w32proc.c (compare_env): Convert to uppercase for comparison,
4743 not lowercase, to match how the native Windows shell works.
4744
49b3bd82
JR
47452000-09-03 Jason Rumney <jasonr@gnu.org>
4746
4747 * ChangeLog: Remove -unix from coding. Let Emacs autodetect, as
4748 CVS changes the line-ends when checking in/out on DOS/Windows.
4749
4750 * makefile.nt (emacs): Do not change directory to run temacs, as
4751 the load-path is set relative to current directory.
4752
a3d35a39
MB
47532000-09-03 Miles Bader <miles@gnu.org>
4754
4755 * xterm.c (x_alloc_lighter_color_for_widget): New function.
4756
d276b0cf
GM
47572000-09-02 Gerd Moellmann <gerd@gnu.org>
4758
715e84c9
GM
4759 * xdisp.c (redisplay_mode_lines): New function.
4760 (display_mode_lines): Return number of mode lines displayed.
4761 (echo_area_display): Use redisplay_mode_lines to draw garbaged
4762 mode lines. Don't temporarily bind redisplay-dont-pause to t.
4763
8892f40b
GM
4764 * emacs.c, callint.c, doc.c, editfns.c: Remove includes of
4765 string.h and strings.h.
4766 (index) [HAVE_INDEX]: Add prototype.
4767
d276b0cf
GM
4768 * unexelf.c (SHT_PROGBITS) [__NetBSD__ && !PT_LOAD]: Don't define.
4769 (SHT_MIPS_DEBUG, HDRR) [__NetBSD__ && __mips__]: Define.
4770
4771 * s/netbsd.h [!NO_C_SOURCE]: Include <signal.h>.
4772 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
4773
38404229
GM
47742000-09-01 Gerd Moellmann <gerd@gnu.org>
4775
4776 * lread.c (read1): Accept `?' as symbol constituent, for
4777 compatiblity with XEmacs.
4778
c0f9ea08
SM
47792000-08-31 Stefan Monnier <monnier@cs.yale.edu>
4780
4781 * regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
4782 (struct re_pattern_buffer): Remove newline_anchor.
4783 * regex.c: Keep namespace clean for GNU libc by renaming <fun>
4784 to __<fun> and using `weak_alias (__<fun>, <fun>)'.
4785 (re_max_failures, fail_stack): Use size_t rather than unsigned.
4786 (regex_compile): For ^ and $, choose between buffer and line (beg|end)
4787 depending on the new RE_NO_NEWLINE_ANCHOR syntax flag.
4788 (print_compiled_pattern, re_search_2, mutually_exclusive_p)
4789 (re_match_2_internal, re_compile_pattern, re_comp, regcomp):
4790 Get rid of references to newline_anchor.
4791 (regcomp): Allocate and precompute a fastmap.
4792
8c0f83fe
GM
47932000-08-31 Gerd Moellmann <gerd@gnu.org>
4794
4795 * lread.c (openp): GCPRO local variable `filename'.
4796
4bb91c68
SM
47972000-08-30 Stefan Monnier <monnier@cs.yale.edu>
4798
4799 * regex.h (struct re_pattern_buffer): Use size_t for used/allocated.
4800
4801 * regex.c: Merge some changes from GNU libc. Add prototypes.
4802 (bcopy, bcmp, REGEX_REALLOCATE, re_match_2_internal):
4803 Use memcmp and memcpy instead of bcopy and bcmp.
4804 (init_syntax_once): Use ISALNUM.
4805 (PUSH_FAILURE_POINT, re_match_2_internal): Remove failure_id.
4806 (REG_UNSET_VALUE): Remove. Use NULL instead.
4807 (REG_UNSET, re_match_2_internal): Use NULL.
4808 (SET_HIGH_BOUND, MOVE_BUFFER_POINTER, ELSE_EXTEND_BUFFER_HIGH_BOUND):
4809 New macros.
4810 (EXTEND_BUFFER): Use them (to work with BOUNDED_POINTERS).
4811 (GET_UNSIGNED_NUMBER): Don't use ISDIGIT.
4812 (regex_compile): In handle_interval, return an error rather than try to
4813 unfetch the interval if we can't find the closing brace.
4814 Obey the RE_NO_GNU_OPS syntax bit.
4815 (TOLOWER): New macro.
4816 (regcomp): Use it.
4817 (regexec): Allocate regs.start and regs.end as one block.
4818
5226a931
GM
48192000-08-30 Gerd Moellmann <gerd@gnu.org>
4820
868dd24b
GM
4821 * xdisp.c (echo_area_display): Check display_completed instead
4822 of calling detect_input_pending.
4823
4824 * dispnew.c (update_frame): Only set display_completed here; move
4825 the update_begin and update_end calls here from update_frame_1.
4826 (update_frame_1): Don't set display_completed here, don't call
4827 update_begin/update_end.
4828
5226a931
GM
4829 * xfaces.c (set_font_frame_param): Use Fmodify_frame_parameters
4830 instead of store_frame_param.
4831
2a8bd25f
GM
48322000-08-29 Gerd Moellmann <gerd@gnu.org>
4833
4834 * dispnew.c (build_frame_matrix_from_leaf_window): If a row of a
4835 desired window matrix hasn't been displayed, use the current row
4836 instead. Make sure that only those frame rows are updated for
4837 which there exists a corresponding enabled desired row.
4838
ba3478d9
MB
48392000-08-29 Miles Bader <miles@gnu.org>
4840
4841 * xfaces.c (default_face_vector): New function.
4842 (Finternal_merge_in_global_face): Use it instead of merge_face_vectors.
4843
87d0f685
GM
48442000-08-29 Gerd Moellmann <gerd@gnu.org>
4845
4846 * lread.c (openp): Prevent temporary string passed to
4847 Ffile_readable_p from being garbage collected.
4848
6fa86045
DL
48492000-08-28 Dave Love <fx@gnu.org>
4850
4851 * keymap.c (store_in_keymap): Add `static' to declaration.
4852
bb17930d
GM
48532000-08-28 Gerd Moellmann <gerd@gnu.org>
4854
4855 * emacs.c, callint.c, doc.c, editfns.c
4856 (toplevel) [HAVE_STRING_H]: Include string.h.
4857 (toplevel) [HAVE_STRINGS_H]: Include strings.h.
4858 (index): Remove prototypes which might conflict with non-standard
4859 definitions of index/strchr.
4860
4861 * s/usg5-3.h (index): Define only if not HAVE_INDEX.
4862 (rindex): Define only if !HAVE_RINDEX.
4863
4864 * s/sco5.h (bcopy, bzero, bcmp): Don't define.
4865
4866 * config.in (HAVE_INDEX, HAVE_RINDEX, HAVE_STRINGS_H): Add undefs.
4867
87188200
MB
48682000-08-28 Miles Bader <miles@gnu.org>
4869
4870 * xfaces.c (merge_face_vectors): Clear TO's :font attribute if
4871 made inconsistent by a font-related attribute in FROM.
4872 (merge_face_inheritance): Add function comment.
4873
41a68aef
KH
48742000-08-28 Kenichi Handa <handa@etl.go.jp>
4875
4876 * keyboard.c (read_char_minibuf_menu_prompt): Call read_char with
4877 the 4th arg (PREV_EVENT) Qt to suppress input method.
4878
f7c436c1
SM
48792000-08-27 Stefan Monnier <monnier@cs.yale.edu>
4880
0b32bf0e
SM
4881 * regex.c: Indent cpp directives and remove parens after `defined'.
4882 (PTR_TO_OFFSET, POS_AS_IN_BUFFER): Move to a better place.
4883 (ISDIGIT, ISCNTRL, ISXDIGIT) [!emacs]: Remove duplicate definition.
4884 (regex_compile): Use RE_FRUGAL instead of RE_ALL_GREEDY.
4885 (re_compile_pattern): Use size_t for length.
4886 (init_syntax_once): Move to a better place.
4887 * regex.h: Merge changes from GNU libc. Indent cpp directives.
4888 (RE_FRUGAL): Replaces RE_ALL_GREEDY (inverted meaning).
4889
f7c436c1
SM
4890 * syntax.c (back_comment): Detect cases where a comment-starter is
4891 actually inside another comment as in: /* a // b */ c // d \n.
4892 Make it clear that `comstart_pos' is unused for nested comments.
4893
4894 * keymap.c (store_in_keymap, fix_submap_inheritance): New prototypes.
4895 (KEYMAPP): New macro.
4896 (Fkeymap_parent, Fset_keymap_parent): Use it.
4897 (fix_submap_inheritance): Mark it static.
4898 (define_as_prefix, describe_buffer_bindings, describe_command)
4899 (describe_translation, describe_map): Complete prototypes.
4900
4901 * lisp.h (store_in_keymap, fix_submap_inheritance): Remove.
4902
4903 * keyboard.c (menu_bar_item): Detect duplicate entries for all items
4904 to better match the key-lookup behavior.
4905
6288c62f
GM
49062000-08-27 Gerd Moellmann <gerd@gnu.org>
4907
4908 * xfaces.c (lface_fully_specified_p): Handle :inherit.
4909 (Finternal_set_lisp_face_attribute): Fix typo in error message.
4910
e931344e
EZ
49112000-08-27 Eli Zaretskii <eliz@is.elta.co.il>
4912
4913 * Makefile.in (dispnew.o, indent.o, fontset.o, minibuf.o)
4914 (process.o, scroll.o, sysdep.o): Depend on keyboard.h.
4915 (xterm.o): Depend on coding.h
4916
d10dfeef
KH
49172000-08-26 Kenichi Handa <handa@etl.go.jp>
4918
4919 * cmds.c (internal_self_insert): Delete '#ifdef HAVE_FACES' and
4920 the corresponding '#endif'.
4921
2d73e8d3
MB
49222000-08-26 Miles Bader <miles@gnu.org>
4923
4924 * dispextern.h (enum lface_attribute_index): Add LFACE_INHERIT_INDEX.
4925 * xfaces.c (QCinherit): New variable.
4926 (syms_of_xfaces): Initialize it.
4927 (LFACE_INHERIT): New macro.
4928 (Finternal_get_lisp_face_attribute)
4929 (merge_face_vector_with_property)
4930 (Finternal_set_lisp_face_attribute): Deal with :inherit attribute.
4931 (check_lface_attrs): Allow new types of face height. Check
4932 inherit attribute.
4933 (CYCLE_CHECK): New macro.
4934 (merge_face_inheritance): New function.
4935 (merge_face_vectors): Merge inherited faces too. Add F and
4936 CYCLE_CHECK arguments.
4937 (merge_face_vector_with_property, Finternal_merge_in_global_face)
4938 (lookup_named_face, lookup_derived_face, realize_named_face)
4939 (face_at_string_position, face_at_buffer_position): Supply
4940 new F and CYCLE_CHECK arguments to merge_face_vectors.
4941 (merge_face_heights): New function.
4942 (merge_face_vectors, merge_face_vector_with_property)
4943 (Finternal_set_lisp_face_attribute): Call merge_face_heights to
4944 handle relative face heights.
4945 (lface_same_font_attributes_p): Compare heights using EQ.
4946
6ce974d4
KH
49472000-08-26 Kenichi Handa <handa@etl.go.jp>
4948
4949 * charset.c (char_to_string): Check the character validity.
4950 (char_valid_p): If C is not less than MAX_CHAR, be sure to return
4951 0.
4952
dc1e502d
SM
49532000-08-25 Stefan Monnier <monnier@cs.yale.edu>
4954
4955 * regex.c (PUSH_FAILURE_COUNT): New macro.
4956 (POP_FAILURE_REG_OR_COUNT): Renamed from POP_FAILURE_REG.
4957 Handle popping of a register's or a counter's data.
4958 (POP_FAILURE_POINT): Use the new name.
4959 (re_match_2_internal): Push counter data on the stack for succeed_n,
4960 jump_n and set_number_at and remove misleading dead code in succeed_n.
4961
bd9d0f3f
GM
49622000-08-25 Gerd Moellmann <gerd@gnu.org>
4963
4964 * xdisp.c (redisplay_internal): If considering all windows on all
4965 frames, update the display for each frame as soon as possible,
4966 instead of first building all desired matrices for all frames, and
4967 then updating them all.
4968 (try_cursor_movement): Handle case that last_cursor.vpos is -1.
4969
aa5b8e15
GM
49702000-08-24 Gerd Moellmann <gerd@gnu.org>
4971
17494071
GM
4972 * bytecode.c (mark_byte_stack): Add a comment.
4973
aa5b8e15
GM
4974 * frame.h (FRAME_FLAGS_AREA_COLS, FRAME_FLAGS_AREA_WIDTH)
4975 (FRAME_LEFT_FLAGS_AREA_WIDTH): Return 0 unless frame is
4976 a graphical frame.
4977
c543db81
KH
49782000-08-24 Kenichi Handa <handa@etl.go.jp>
4979
d246d5f5
KH
4980 * minibuf.c (do_completion): Always use compare-string, not
4981 string-equal because the latter doesn't pay attention to
4982 multibyteness of strings.
4983
c543db81
KH
4984 * process.c (create_process): Don't setup raw-text coding here.
4985 (Fopen_network_stream): Don't set coding->src_multibyte and
4986 coding->dst_multibyte here.
4987 (read_process_output): For process filter, return unibyte string
4988 if default-enable-multibyte-characters is nil.
4989 (send_process): If OBJECT is multibyte text, be sure to encoded it
4990 by the specified coding system for the process. Otherwise, setup
4991 raw-text coding.
4992 (init_process): Don't initialize default-process-coding-system
4993 here.
4994
9b47cfe0
EZ
49952000-08-23 Eli Zaretskii <eliz@is.elta.co.il>
4996
4997 * buffer.c (syms_of_buffer) <scroll-up-aggressively>: Doc fix.
4998 <scroll-down-aggressively>: Likewise.
4999
f5a36960
KH
50002000-08-23 Kenichi Handa <handa@etl.go.jp>
5001
5002 * coding.c (encode_eol): Fix bug for the case of dst_bytes being
5003 zero. Set coding->produced_char correctly.
5004
69a7ffa7
AI
50052000-08-22 Andrew Innes <andrewi@gnu.org>
5006
5007 * makefile.w32-in: New file.
5008
5009 * unexw32.c (unexec): Ignore old_name, and use the actual location
5010 of the current executable instead. Base new_name on this.
5011
5012 * w32proc.c (create_child): Remove reference to security
5013 descriptor, which isn't needed and doesn't compile with mingw32.
5014
5015 * w32term.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
5016 up dllimport attributes.
5017 (x_update_window_end): Update prototype.
5018
5019 * unexec.c (write_segment) [USE_CRT_DLL]: Remove unnecessary
5020 extern, which screws up dllimport attributes.
5021
5022 * sysdep.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
5023 up dllimport attributes.
5024
5025 * strftime.c [USE_CRT_DLL]: Remove unnecessary extern, which
5026 screws up dllimport attributes.
5027
5028 * process.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
5029 up dllimport attributes.
5030 (create_process) [USE_CRT_DLL]: Remove unnecessary extern, which
5031 screws up dllimport attributes.
5032
5033 * lread.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
5034 up dllimport attributes.
5035
5036 * keyboard.c [USE_CRT_DLL]: Remove unnecessary extern, which
5037 screws up dllimport attributes.
5038
5039 * floatfns.c [USE_CRT_DLL]: Remove unnecessary extern, which
5040 screws up dllimport attributes.
5041
5042 * fileio.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
5043 up dllimport attributes.
5044
5045 * emacs.c (malloc_initialize_hook) [USE_CRT_DLL]: Remove
5046 unnecessary extern, which screws up dllimport attributes.
5047 (main): Ditto.
5048
5049 * editfns.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
5050 up dllimport attributes.
5051
5052 * dispnew.c (window_change_signal) [USE_CRT_DLL]: Remove
5053 unnecessary extern, which screws up dllimport attributes.
5054
5055 * callproc.c [USE_CRT_DLL]: Remove unnecessary extern, which
5056 screws up dllimport attributes.
5057
5058 * buffer.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
5059 up dllimport attributes.
5060
5061 * w32proc.c (IsValidLocale): Extern missing from mingw32 headers.
5062
5063 * w32bdf.c (search_file_line):
5064 (set_bdf_font_info):
5065 (seek_char):
5066 (w32_get_bdf_glyph):
5067 (w32_BDF_to_x_font): Fix compile warnings.
5068
5069 * w32menu.c: Include keyboard.h before frame.h. Fix compile
5070 warnings.
5071
5072 * w32select.c: Include keyboard.h before frame.h.
5073
5074 * w32fns.c (max): Define macro.
5075 (JOHAB_CHARSET): Define if not known.
5076 (MOD_ALT, MOD_CONTROL, MOD_SHIFT, MOD_WIN): Define if not known.
5077 (Fx_show_tip): Synch with X version.
5078
5079 * w32xfns.c: Include keyboard.h before frame.h.
5080
5081 * w32fns.c: Include keyboard.h before frame.h.
5082
5083 * w32term.c: Include keyboard.h before frame.h.
5084
5085 * fontset.c: Include keyboard.h before frame.h.
5086
5087 * w32inevt.c: Include keyboard.h before frame.h.
5088 (MOUSE_MOVED): Define if not known.
5089
5090 * minibuf.c: Include keyboard.h before frame.h.
5091
5092 * keyboard.c: Include keyboard.h before frame.h.
5093
5094 * indent.c: Include keyboard.h before frame.h.
5095
5096 * dispnew.c: Include keyboard.h before frame.h.
5097
5098 * buffer.c: Include keyboard.h before frame.h.
5099
5100 * alloc.c: Include keyboard.h before frame.h.
5101
5102 * print.c: Include keyboard.h before frame.h.
5103
5104 * process.c: Include keyboard.h before frame.h.
5105
5106 * scroll.c: Include keyboard.h before frame.h.
5107
5108 * sysdep.c: Include keyboard.h before frame.h.
5109
5110 * term.c: Include keyboard.h before frame.h.
5111
5112 * window.c: Include keyboard.h before frame.h.
5113
5114 * xdisp.c: Include keyboard.h before frame.h.
5115 Separate GLYPH_DEBUG and DEBUG_TRACE_MOVE.
5116
5117 * frame.c: Include keyboard.h before frame.h.
5118
5119 * w32heap.h: Undefine min, max.
5120
5121 * w32gui.h: Undefine min, max.
5122
5123 * unexw32.c: Change PUCHAR to PCHAR.
5124 (PTR_TO_OFFSET): Cast ptr to unsigned char *.
5125 (relocate_offset):
5126 (get_section_info):
5127 (copy_executable_and_dump_data): Remove unnecessary static defs.
5128 (copy_executable_and_dump_data): Fix compile warnings.
5129
5130 * sysdep.c (NULL) [WINDOWSNT]: Define NULL if not defined.
5131
5132 * w32console.c (min): Define macro.
5133 (clear_frame, write_glyphs): Fix compile warning.
5134
5135 * w32proc.c (compare_env):
5136 (find_child_console): Fix compile warning.
5137
5138 * w32.c (sys_strerror): Use sys_nerr instead of _sys_nerr. Use
5139 sys_errlist instead of _sys_errlist.
5140 (get_emacs_configuration_options): New function.
5141
5142 * s/ms-w32.h (sys_nerr): Provide default definition.
5143 (strdup, strupr, strnicmp, stricmp, tzset, tzname): Map to same
5144 name with _ prepended.
5145 (NSIG): Define if not known.
5146 (get_emacs_configuration): Provide extern declaration.
5147 (get_emacs_configuration_options): Provide extern declaration.
5148 (EMACS_CONFIG_OPTIONS): Call get_emacs_configuration_options.
5149
5150 * w32.c (gettimeofday): Use struct timeb, not struct _timeb.
5151 (map_w32_filename):
5152 (read_unc_volume): Fix compile warning.
5153
5154 * s/ms-w32.h (_WINSOCK_H): Define to prevent normal winsock
5155 definitions from being used.
5156
5157 * lisp.h [WINDOWSNT]: Don't declare externs for getenv, ctime and getwd.
5158
5159 * w32.c (unc_volume_file_attributes):
5160 (open_unc_volume): Make arg const.
5161
5162 * sysdep.c [WINDOWSNT]: Remove extern decl of errno.
5163 (read_input_waiting): Remove excess parameter.
5164
5165 * w32.c (init_environment): Call _access.
5166 (check_windows_init_file): Call _close.
5167 (init_user_info): Call _putenv.
5168 (init_environment): Call _putenv and _strdup.
5169 (init_ntproc): Reset volume info cache on startup.
5170
5171 * s/ms-w32.h (malloc, free, realloc, calloc): Rename if
5172 USE_CRT_DLL is defined, so Emacs can use GNU malloc even though it
5173 cannot override the CRT malloc.
5174
5175 * makefile.nt (LOCAL_FLAGS): Define USE_CRT_DLL if requested.
5176 (LINK_FLAGS): Append to original value of LINK_FLAGS.
5177
5178 * w32heap.c [!USE_CRT_DLL]: Don't define _heap_init and _heap_term
5179 unless we are linking with a static CRT.
5180 (RVA_TO_PTR): Cast result to unsigned char*.
5181
5182 * w32.c (GetCachedVolumeInformation): Use xmalloc, xfree and xstrdup.
5183 (add_volume_info): Use xstrdup.
5184
25060080
SM
51852000-08-22 Stefan Monnier <monnier@cs.yale.edu>
5186
5187 * minibuf.c (Vcompletion_auto_help): Renamed from `auto_help'.
5188 (do_completion, Fminibuffer_complete_word): Use it.
5189 (syms_of_minibuf): Turn completion-auto-help into a proper Lisp
5190 var so it can take non-boolean values.
5191
6917e6bb
GM
51922000-08-21 Gerd Moellmann <gerd@gnu.org>
5193
acb7cc89
GM
5194 * editfns.c (find_field): Formatting changes.
5195 (toplevel): Some old-style function forward declarations
5196 changed to prototypes, some new protypes added, some functions
5197 made static.
5198
5199 * lisp.h (set_time_zone_rule): Add prototype.
5200 (use_dialog_box): External declaration.
5201
0bbfdc25
GM
5202 * keyboard.c (gen_help_event): Add parameter SIZE.
5203 (kbd_buffer_events_waiting): Slightly rewritten.
5204 (clear_event): New function.
5205 (kbd_buffer_get_event): Use it, and clear the input_events of
5206 HELP_EVENTs.
5207 (init_keyboard): Remove duplicate creation of kbd_buffer_gcpro and
5208 don't fill the newly created array with nils.
5209 (toplevel): Convert some old-style function forward declarations
5210 to prototypes.
5211
5212 * keyboard.h (gen_help_event): Change prototype.
5213
5214 * xterm.c (XTread_socket): Change calls to gen_help_event.
5215
5216 * w32term.c (w32_read_socket): Change calls to gen_help_event.
5217
6917e6bb
GM
5218 * eval.c (Fmacroexpand): Doc fix.
5219
e5cd3d11
JR
52202000-08-20 Jason Rumney <jasonr@gnu.org>
5221
5222 * w32term.h (x_display_info_for_display): Remove as this function
5223 does not exist on W32.
5224
5225 * w32term.c (help_echo_window): New variable.
5226 (syms_of_w32term): staticpro it.
5227 (note_mode_line_highlight): Set it.
5228 (XTextExtents16): Removed as there is no equivalent on W32.
5229 (x_compute_glyph_string_overhangs): Incomplete body removed, as
5230 the X way of doing this will not work for W32.
5231 (w32_intersect_rectangles): Removed. Use IntersectRect API call.
5232 (x_draw_image_foreground): Avoid drawing outside of the clip area
5233 when image doesn't have a mask.
5234 (note_mouse_highlight): Process overlays in the right order of
5235 priority. Set help_echo_window.
5236 (x_draw_bar_cursor): If cursor is on an image, draw a box cursor
5237 because that's more visible for large images.
5238
5239 * w32menu.c (keymap_panes): Pass the keymap's prompt as the pane
5240 name to single_keymap_panes.
5241 (w32_menu_show): Set wv->title when dealing with titles.
5242 (w32_menu_display_help): Call show_help_echo with OBJECT and POS.
5243
6e69ab8c
MB
52442000-08-21 Miles Bader <miles@gnu.org>
5245
5246 * minibuf.c (do_completion): Try again if we rewrite the input
5247 string, but no completion was done, so that any completion message
5248 will be correct.
5249
511bd4eb
GM
52502000-08-20 Gerd Moellmann <gerd@gnu.org>
5251
5252 * xfaces.c (lface_equal_p): Compare strings differently.
5253 (Qtty_color_alist, Vtty_defined_color_alist): New variables.
5254 (realize_tty_face): Use them.
5255 (syms_of_xfaces): Initialize new variables.
5256 (map_tty_color): New function, extracted from realize_tty_face.
5257 (map_tty_color) [MSDOS || WINDOWSNT]: If using the frame's default
5258 foreground or background color, store the new color name in the
5259 realized face; previous code trying to do this had no effect.
5260 (realize_tty_face): Use map_tty_color.
5261 (Fclear_face_cache): Set face_change_count and ensure thorough
5262 redisplay.
5263
1433385f
GM
52642000-08-19 Gerd Moellmann <gerd@gnu.org>
5265
511bd4eb
GM
5266 * undo.c (record_first_change, record_marker_adjustment): Don't
5267 use XBUFFER on last_undo_buffer which might not be a buffer.
1433385f 5268
419ac0a2
KH
52692000-08-18 Kenichi Handa <handa@etl.go.jp>
5270
5271 * coding.c (decode_coding_string): Set members consumed,
5272 consumed_char, produced, produced_char of *coding correctly. If
5273 decode_coding doesn't consume any byte, don't try anymore.
5274 (encode_coding_string): Likewise.
5275
7eb9e30d
GM
52762000-08-18 Gerd Moellmann <gerd@gnu.org>
5277
511bd4eb
GM
5278 * lisp.h (CHECK) [ENABLE_CHECKING]: Make both sides of the
5279 conditional have void type, for Standard C compilers.
7eb9e30d
GM
5280
5281 * xdisp.c (redisplay_internal): Compare windows for equality with
5282 EQ, instead of applying XWINDOW to something that might not
5283 be a window.
5284
dd34a735
KH
52852000-08-18 Kenichi Handa <handa@etl.go.jp>
5286
5287 * fontset.c (Finternal_char_font): Search only the selected frame
5288 for a window of the current buffer.
5289
385ff9e3
GM
52902000-08-18 Gerd Moellmann <gerd@gnu.org>
5291
511bd4eb 5292 * minibuf.c (do_completion): Use EQ instead of `!=' to compare
01cce3e7
GM
5293 Lisp_Objects.
5294
385ff9e3
GM
5295 * keyboard.c (kbd_buffer_get_event): Handle the case that the
5296 second half of a HELP_EVENT is found at the start of kbd_buffer.
5297
d6abb4c7
MB
52982000-08-18 Miles Bader <miles@gnu.org>
5299
4618074a
MB
5300 * lisp.h (Lisp_String): Replace DECLARE_INTERVALS with real decl.
5301
d6abb4c7
MB
5302 * editfns.c (save_restriction_save): Rewrite to use markers.
5303 (save_restriction_restore): Rewrite to understand new form of data
5304 saved by save_restriction_save.
5305 (Fsave_restriction): Remove cautionary note in doc-string.
5306
a7b28523
GM
53072000-08-17 Gerd Moellmann <gerd@gnu.org>
5308
5309 * fileio.c (build_annotations): Add a comment explaining the
5310 return value of format-annotate-function. Replace a spurious call
5311 to Flength with a CONSP test. Call format-annotate-function with
5312 a fifth arg specifying how many times the function is been called
5313 in a row, to let it choose temporary buffers appropriately.
5314
03c9ed77
DL
53152000-08-17 Dave Love <fx@gnu.org>
5316
5317 * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't
5318 declare make_temp_name twice.
5319
5320 * lread.c: Prototype readevalloop, load_unwind,
5321 load_descriptor_unwind.
5322 (unreadpure): Give it an arg.
5323
5324 * unexalpha.c: Prototype fatal_unexec, mark_x,
5325 update_dynamic_symbols. Declare unexec as void.
5326
5327 * cm.c [HAVE_TERMCAP_H]: Include <termcap.h>.
5328 [!HAVE_TERMCAP_H]: Prototype tputs, tgoto.
5329
5330 * alloc.c (lisp_malloc): Declare with POINTER_TYPE.
5331 [SYSTEM_MALLOC]: Make decls in malloc.h conditional on
5332 DOUG_LEA_MALLOC.
5333
5334 * alloca.c: Use #error.
5335 [POINTER_TYPE]: Use it.
5336
5337 * eval.c (Fdefvar): Doc fix.
5338
5339 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Avoid
5340 INITIALIZE_INTERVAL.
5341
5342 * buffer.h: Avoid DECLARE_INTERVALS.
5343
5344 * config.in: Add size_t.
5345
aae41d97
EZ
53462000-08-17 Eli Zaretskii <eliz@is.elta.co.il>
5347
5348 * w16select.c (set_clipboard_data): If there's not enough memory
5349 to put text into clipboard, return 1, as Fw16_set_clipboard_data
5350 expects. In case of other failures, return 3.
5351 (system_error_msg): New error message.
5352 (Fw16_set_clipboard_data): If set_clipboard_data returns 3, print
5353 system_error_msg.
5354
65aa5e85
GM
53552000-08-16 Gerd Moellmann <gerd@gnu.org>
5356
5357 * term.c (write_glyphs): Also turn off inverse video after turning
5358 off other appearances in case TS_exit_attribute_mode is not equal
5359 to TS_end_standout_mode.
5360 (insert_glyphs): Turn inverse video on/off for each run of glyphs
5361 with the same face.
5362 (turn_off_face): Reset standout_mode only if
5363 TS_exit_attribute_mode has been output and TS_exit_attribute_mode
5364 is equal to TS_end_standout_mode.
5365
ece23901
KH
53662000-08-16 Kenichi Handa <handa@etl.go.jp>
5367
9d7bcb2e
KH
5368 * coding.c (encode_coding): Fix the bug of not flushing ISO escape
5369 sequence at the end of the source block.
5370
ece23901
KH
5371 * ccl.c (Fccl_program_p): Docstring modified.
5372 (Fccl_execute): Likewise.
5373 (Fccl_execute_on_string): Likewise.
5374
5e30eaa2
EZ
53752000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
5376
5377 * msdos.c (IT_write_glyphs): Convert cbp to unsigned char *.
5378
290602fd
KH
53792000-08-16 Kenichi Handa <handa@etl.go.jp>
5380
5381 The following changes are mainly to fix bugs of
5382 encode/decode-coding-string failing if encoding/decoding return
5383 CODING_FINISH_INSUFFICIENT_DST. In addition, delete the global
5384 variable conversion_buffer.
5385
5386 * ccl.c (CCL_WRITE_CHAR): If CH is eight-bit-control char,
5387 decrement dst_end to avoid buffer overflow in the later call of
5388 string_as_multibyte
5389
5390 * coding.h (conversion_buffer_size, conversion_buffer)
5391 (get_conversion_buffer): Extern deleted.
5392
5393 * coding.c (MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
5394 (conversion_buffer, conversion_buffer_size): Variables deleted.
5395 (get_conversion_buffer): Function deleted.
5396 (struct conversion_buffer): New structure.
5397 (MAX_ALLOCA): New macro.
5398 (allocate_conversion_buffer): New macro.
5399 (extend_conversion_buffer, free_conversion_buffer): New functions.
5400 (ccl_coding_driver): Set coding->result.
5401 (decode_coding): Set coding->result to CODING_FINISH_NORMAL if
5402 this is the last block of source.
5403 (encode_coding): Likewise. Handle the source block as the last
5404 one only when the whole source text is consumed.
5405 (decode_coding_string): Handle the case that the output buffer is
5406 too small to decode the whole source text. Use
5407 allocate_conversion_buffer, extend_conversion_buffer and
5408 free_conversion_buffer, not get_conversion_buffer.
5409 (encode_coding_string): Likewise.
5410 (init_coding): Function deleted.
5411 (init_coding_once): Delete code to initialize
5412 conversion_buffer_size.
5413
5414 * emacs.c (main): Don't call init_coding.
5415
5416 * msdos.c (IT_write_glyphs): Use a locally declared
5417 conversion_buffer.
5418
5419 * term.c (write_glyphs): Use a locally declared conversion_buffer.
5420 (insert_glyphs): Likewise.
5421
5422 * w32console.c (write_glyphs): Use a locally declared
5423 conversion_buffer.
5424
b9f80d41
EZ
54252000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
5426
5427 * msdos.c (IT_update_begin): Don't crash if mouse_face_mouse_frame
5428 member of display_info is NULL.
5429
32dc52f7
GM
54302000-08-15 Gerd Moellmann <gerd@gnu.org>
5431
58ed0d3b
GM
5432 * alloc.c (compact_small_strings): Use safe_bcopy, add an
5433 assertion.
5434
32dc52f7 5435 * term.c (turn_off_face): Reset standout_mode when resetting
58ed0d3b 5436 appearances with capability `me'.
32dc52f7
GM
5437 (write_glyphs): Switch on inverse video before each face change.
5438
4eb22d33
DL
54392000-08-14 Dave Love <fx@gnu.org>
5440
5441 * alloc.c [HAVE_UNISTD_H]: Include unistd.h; don't declare sbrk.
5442 [!HAVE_UNISTD_H]: Use POINTER_TYPE to declare sbrk.
5443 (lisp_free): Declare and make static.
5444
5445 * window.c: Fix embedded comment.
5446 (syms_of_window): Fix doc string.
5447
90cbf47e
GM
54482000-08-14 Gerd Moellmann <gerd@gnu.org>
5449
5450 * keymap.c (push_key_description): If C without modifiers is < 32,
5451 make sure to print `C-' before `M-', like in the manual.
5452
440fc135
GM
54532000-08-11 Gerd Moellmann <gerd@gnu.org>
5454
5455 * fns.c (hashfn_eq, hashfn_eql): Don't handle strings specially
5456 since they aren't relocated anymore.
5457 (sxhash_string): Make sure returned hash code fits in a Lisp
5458 integer.
5459
5460 * xdisp.c (try_cursor_movement): Fix handling of cursor in
5461 partially visible line which is smaller than the window's
5462 height.
5463
6e264fad
KH
54642000-08-11 Kenichi Handa <handa@etl.go.jp>
5465
5466 * ccl.c (CCL_READ_CHAR): If source is multibyte, pay attention to
5467 the multibyte form of eight-bit-control characters.
5468 (Fccl_execute_on_string): Initialize ccl->multibyte.
5469
5470 * ccl.h (struct ccl_program): New member multibyte.
5471
5472 * coding.c (ccl_coding_driver): Initialize ccl->multibyte.
5473
c371f69a
KH
54742000-08-11 Kenichi Handa <handa@etl.go.jp>
5475
5476 * regex.c (regex_compile) <normal_char>: Pay attention to
5477 multibyteness.
5478 (analyse_first) <exactn>: Setup fastmap correctly for
5479 eight-bit-control characters.
5480
54812000-08-11 Kenichi Handa <handa@etl.go.jp>
5482
5483 * termhooks.h (enum event_kind): New member
5484 multibyte_char_keystroke.
5485
5486 * keyboard.c (make_lispy_event): Handle the new event type
5487 multibyte_char_keystroke.
5488
5489 * xterm.c: Include coding.h.
5490 (XTread_socket): Work around a bug of XmbLookupString. If the
5491 input is from XIM, decode it according to the current locale. In
5492 that case, generate multibyte_char_keystroke events.
5493
b8ddbe71
KH
54942000-08-11 Kenichi Handa <handa@etl.go.jp>
5495
5496 * xdisp.c (TRACE_MOVE) [GLYPH_DEBUG]: Delete the last semicolon.
5497 (TRACE_MOVE) [not GLYPH_DEBUG]: Define dummy.
5498
47589c8c
GM
54992000-08-10 Gerd Moellmann <gerd@gnu.org>
5500
5501 * xdisp.c (trace_move) [GLYPH_DEBUG]: New variable.
5502 (TRACE_MOVE) [GLYPH_DEBUG]: New macro.
5503 (move_it_in_display_line_to): Record iterator's ascent and descent
5504 before producing glyphs, and restore them when we know the glyph
5505 doesn't fit on the line.
5506 (move_it_to): Restructured so that it's easier to debug. If
5507 moving to a vpos, and not moving to an x or character position,
5508 stop as soon as the specified vpos is reached; don't move further
5509 into that line because that might change the computed line height.
5510 (try_cursor_movement): New function, extracted from the cursor
5511 movement branch of redisplay_window. If ending on a partially
5512 visible line, don't try to scroll if the cursor line is taller
5513 than the window.
5514 (redisplay_window): Use try_cursor_movement.
5515
5516 * window.c (Fwindow_end): Rewritten to not use Fvertical_motion,
5517 because that function doesn't cope with variable-height lines.
5518
5519 * xterm.c (x_draw_bar_cursor): If cursor is on an image, draw a
5520 box cursor because that's better visible for large images.
5521
c51bacd6
MB
55222000-08-10 Miles Bader <miles@gnu.org>
5523
5524 * w32term.c (note_mouse_highlight): Update calls to overlays_at.
5525
bea56df7
GM
55262000-08-10 Gerd Moellmann <gerd@gnu.org>
5527
5528 * xdisp.c (Vmessages_buffer_name): New variable.
5529 (message_dolog): Use it.
5530 (syms_of_xdisp): Initialize it.
5531
99cd7364
EZ
55322000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
5533
5534 * msdos.c (IT_note_mouse_highlight): Update the calls to
5535 overlays_at.
5536 (toplevel) <kbd_buffer_store_event>: Remove prototype, it's
5537 redundant now that keyboard.h is included.
5538
7d093d56
EZ
55392000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
5540
5541 * keyboard.c (kbd_buffer_events_waiting): New function.
5542
5543 * keyboard.h (kbd_buffer_events_waiting): Add prototype.
5544
5545 * msdos.c: Include keyboard.h.
5546 (XMenuActivate): Empty no_event events from the event buffer. If
5547 no events are left after that, call clear_input_pending.
5548 (mouse_clear_clicks): New function, code moved from mouse_init.
5549 (mouse_init, XMenuActivate): Call mouse_clear_clicks to force the
5550 mouse driver to ``forget'' any past clicks.
5551
5552 * Makefile.in (msdos.o): Depend on keyboard.h.
5553
41e757a6
GM
55542000-08-09 Gerd Moellmann <gerd@gnu.org>
5555
8e7bd231
GM
5556 * lisp.h (input_pending): External declaration.
5557
5558 * dispextern.h (Qredisplay_dont_pause): Declare extern.
5559
5560 * xdisp.c (echo_area_display): Display thoroughly if input is
5561 pending. Bind redisplay-dont-pause to t during the redisplay.
5562 in case input is pending.
5563
5564 * dispnew.c (Qredisplay_dont_pause): New variable.
5565 (syms_of_display): Initialize and staticpro it.
5566 (update_frame_1): Don't interrupt the display for pending input if
5567 redisplay_dont_pause is set.
5568
43028b7e
GM
5569 * dispnew.c (mode_line_string): Declare parameter MODE_LINE_P.
5570
41e757a6
GM
5571 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
5572
2f2174fa
KH
55732000-08-09 Miles Bader <miles@lsi.nec.co.jp>
5574
5575 * callproc.c (Fcall_process): Terminate the unwind-protect around
5576 the post-read-conversion of coding system.
5577
0a6fd67e
MB
5578 * buffer.c (overlays_at): Add CHANGE_REQ parameter.
5579 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change): Use it.
5580 * buffer.h (overlays_at): Update prototype.
5581 * xdisp.c (next_overlay_change): Update call to overlays_at.
5582 * xfaces.c (face_at_buffer_position): Likewise.
5583 * textprop.c (Fget_char_property): Likewise.
5584 * xterm.c (note_mouse_highlight): Likewise.
5585
0c80756e
MB
5586 * minibuf.c (do_completion): Don't consider a simple change of
5587 case as `completion'.
5588
975f250a
KR
55892000-08-08 Ken Raeburn <raeburn@gnu.org>
5590
b347b3fd
KR
5591 * keyboard.c (syms_of_keyboard): Initialize
5592 last_point_position_buffer.
5593 * undo.c (record_delete): Make sure last_point_position_buffer is
5594 a buffer before comparing pointers.
5595
5596 * coding.h (decode_coding_string): Declare.
5597
5598 * intervals.h (Fprevious_single_char_property_change): Declare.
5599
5600 * textprop.c (Fprevious_single_char_property_change): Don't do
5601 arithmetic directly on lisp objects.
5602
25ad1371 5603 * editfns.c (find_field): Use EQ, not ==, to compare Lisp
b347b3fd
KR
5604 objects.
5605
5606 * keyboard.h (menu_item_eval_property): Declare.
5607
5608 * xdisp.c (message_dolog): Save and protect string "*Messages*" to
5609 reuse as buffer name, instead of recreating (and discarding) every
5610 time a message is logged.
5611 (with_echo_area_buffer): Make callback arg A2 a lisp object.
25ad1371
GM
5612 (current_message_1, truncate_message_1, set_message_1)
5613 (display_echo_area_1, resize_mini_window_1): Signatures changed.
5614 (current_message, truncate_echo_area, display_echo_area)
5615 (resize_echo_area_axactly): Changed calls.
b347b3fd 5616
975f250a 5617 * coding.c (find_safe_codings): CHAR_TABLE_SET index must be a
25ad1371 5618 Lisp object.
975f250a 5619 (Ffind_coding_systems_region_internal): First argument to Fappend
25ad1371 5620 must be an integer, not a Lisp object.
975f250a 5621
46dc9912
KH
56222000-08-08 Kenichi Handa <handa@etl.go.jp>
5623
5624 * charset.c (Fchar_width): Doc fix.
5625
9f6d1a6c
GM
56262000-08-08 Gerd Moellmann <gerd@gnu.org>
5627
5628 * charset.c (Fstring_width): Doc fix.
5629
ff3d9573
GM
56302000-08-07 Gerd Moellmann <gerd@gnu.org>
5631
41e757a6 5632 * xdisp.c (start_display): When starting display on a continuation
49ad1d99
GM
5633 line, clear ascent and descent members of the iterator structure;
5634 the height of the continued line does not affect the height of the
5635 continuation line.
5636 (make_cursor_line_fully_visible): Do nothing if cursor is on a
5637 line taller than the window.
5638 (redisplay_window) <forced window start>: Handle case that the
5639 middle of the window is not found in any row.
5640 (dump_glyph_row): Show more information.
5641 (compute_line_metrics): Use MATRIX_FIRST_TEXT_ROW to determine the
5642 first text line in a glyph matrix.
5643
5644 * xterm.c (x_draw_image_foreground): Avoid drawing outside
5645 of the clip area when image doesn't have a mask.
5646
70fc58b3
GM
5647 * fns.c (sweep_weak_table): Fix survival conditions for
5648 key-or-value and key-and-value weakness.
5649
5650 * .gdbinit (xhashtable): New command.
5651
ac0e96ee
GM
5652 * fns.c (sweep_weak_hash_tables): Fix the code taking unmarked
5653 tables out of the list of all weak hash tables.
5654
ff3d9573
GM
5655 * xdisp.c (ensure_echo_area_buffers): If a buffer was killed, and
5656 a new buffer is created, make sure echo_area_buffer[] references
5657 the new buffer.
5658
e0d8827b
EZ
56592000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
5660
5661 * msdos.c (Fmsdos_set_mouse_buttons): Add missing backslashes in
5662 the doc string.
5663
c6f35378
KH
56642000-08-07 Kenichi Handa <handa@etl.go.jp>
5665
5666 * syntax.c (skip_chars): Fix previous change. Make the handling
5667 of unibyte string consistent with that of regex search.
5668
1fd4c450
GM
56692000-08-05 Gerd Moellmann <gerd@gnu.org>
5670
e49aa397
GM
5671 * xmenu.c (popup_get_selection): Use xfree instead of free.
5672
5673 * fileio.c (Finsert_file_contents): Use xfree instead of free.
5674
5675 * editfns.c (Ftranspose_regions): Use xfree instead of free.
5676
5677 * callproc.c (child_setup): Use xfree instead of free.
5678
5679 * sysdep.c (opendir, GetTempDirName, run_mac_command): Use xmalloc
5680 instead of malloc.
5681 (run_mac_command, closedir): Use `xfree' instead of `free'.
5682
5683 * keymap.c (current_minor_maps): Use xmalloc instead of malloc.
5684
5685 * eval.c (error): Use xfree instead of free.
5686
1fd4c450
GM
5687 * xfaces.c, xfns.c, w32fns.c: Replace `illegal' with `invalid'.
5688
5689 * fns.c: Replace `illegal' with `invalid'.
e49aa397 5690 (Fmake_hash_table, make_hash_table): Allow table size of 0.
1fd4c450 5691
82d497fc
KH
56922000-08-05 Kenichi Handa <handa@etl.go.jp>
5693
5694 * syntax.c (skip_chars): Fix handling of multibyte<->unibyte
5695 conversion.
5696
59f953a2
NF
56972000-08-04 Noah Friedman <friedman@splode.com>
5698
5699 * fns.c (Fmake_hash_table): Add missing `\n\' to end of line in
5700 docstring.
5701
688351f2
GM
57022000-08-04 Gerd Moellmann <gerd@gnu.org>
5703
5704 * syntax.c (skip_chars): Fix typo in error message.
5705
2dad51cc
AS
57062000-08-04 Andreas Schwab <schwab@suse.de>
5707
5708 * m/ia64.h: Moved from s/ia64.h.
5709
99bb2c60
KH
57102000-08-04 Kenichi Handa <handa@etl.go.jp>
5711
082a1df2
KH
5712 * process.c (read_process_output): Big simplification. Handle
5713 composition and post-read-conversion of coding system correctly.
5714 (send_process): Handle composition correctly.
5715
5716 * callproc.c (Fcall_process): Handle post-read-conversion of
5717 coding system if any.
5718
99bb2c60
KH
5719 * coding.c (decode_coding_iso2022): More strict check for handling
5720 single shifting.
082a1df2
KH
5721 (coding_restore_composition): Pay attention to the case that
5722 cmp_data is not set properly (because of invalid code in the
5723 source text).
5724 (run_pre_post_conversion_on_str): Include text properties in the
5725 resulting string.
5726 (decode_coding_string): Set members of coding correctly.
99bb2c60 5727
f4988be7
GM
57282000-08-03 Gerd Moellmann <gerd@gnu.org>
5729
5730 * s/ia64.h: New file.
5731
5732 * widget.c (set_frame_size, update_wm_hints, EmacsFrameSetValues):
5733 Use NULL instead of 0 at the end of variable argument list of
5734 XtVaGetValues and XtVaSetValues, because 0 fails on systems where
5735 sizeof (int) < sizeof (void *).
5736
5737 * xmenu.c (update_frame_menubar): Use NULL instead of 0 at the end
5738 of variable argument lists of XtVaGetValues and XtVaSetValues.
5739
5740 * xfns.c (Fx_file_dialog): Use NULL instead of 0 at the end of
5741 variable argument lists of XtVaGetValues and XtVaSetValues.
5742
ead53494
GM
57432000-08-02 Gerd Moellmann <gerd@gnu.org>
5744
5745 * alloc.c (lisp_malloc, lisp_free): Use size_t and POINTER_TYPE.
5746 (xrealloc, xmalloc): Use size_t. Some callers adjusted.
5747
5748 * lisp.h (Fsingle_key_description, xmalloc, xrealloc): Change
5749 prototype.
5750
5751 * keyboard.c (read_char_minibuf_menu_prompt): Add new parameter
5752 in call to Fsingle_key_description.
5753
5754 * keymap.c (Fsingle_key_description): Add parameter NO_ANGLES.
5755 Callers changed.
5756
57572000-08-02 Colin Walters <walters@cis.ohio-state.edu>
5758
5759 * window.c (display_buffer_reuse_frames): New variable.
5760 (Fdisplay_buffer): If display_buffer_reuse_frames is set, reuse
5761 frames displaying BUFFER.
5762 (syms_of_window): Define Lisp variable
5763 display-buffer-reuse-frames.
5764
10b0f752
MB
57652000-08-01 Miles Bader <miles@gnu.org>
5766
5767 * editfns.c (Fconstrain_to_field): Fix the conditions for deciding
5768 when to constrain NEW_POS (they were pretty screwed up before).
5769
16425c4a
EZ
57702000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
5771
5772 * msdos.c (run_msdos_command): Save and restore the master
5773 environment, for the case that child_setup signals an error.
5774 When mirroring slashes in DOS shell commands, don't fail when
5775 argv[2] has embedded blanks.
da288c14
EZ
5776 (Fmsdos_set_mouse_buttons, mouse_setup_buttons): New functions.
5777 (syms_of_msdos): Defsubr Fmsdos_set_mouse_buttons.
5778 (dos_ttraw): Call mouse_setup_buttons.
16425c4a
EZ
5779
5780 * callproc.c (child_setup) [MSDOS]: malloc pwd_var instead of
5781 using alloca; free it after run_msdos_command returns.
5782
27f73852
DL
57832000-07-27 Dave Love <fx@gnu.org>
5784
5785 * s/irix6-5.h (IRIX_FORCE_32_BITS, LD_SWITCH_SYSTEM): Don't
5786 define.
5787 [_MIPS_SZLONG == 64]: Set up for 64-bit mode -- not currently
5788 working.
5789
5790 * m/iris4d.h (XUINT, XSET, XUNMARK) [_LP64]: Don't define.
5791
c0261b5e
EZ
57922000-07-27 Eli Zaretskii <eliz@is.elta.co.il>
5793
5794 * editfns.c (lisp_time_argument): Fix last change.
5795
b548072f
GM
57962000-07-27 Gerd Moellmann <gerd@gnu.org>
5797
3ab82477
GM
5798 * fns.c (Fdelete): Make it work on vectors and strings in addition
5799 to lists.
5800
b548072f
GM
5801 * fns.c (Qkey_or_value, Qkey_and_value): New variables.
5802 (syms_of_fns): Initialize new variables.
5803 (sweep_weak_table): Handle weakness `key-or-value' and
5804 `key-and-value'.
5805 (Fmake_hash_table): Recognize `key-and-value' and `key-or-value'
5806 weakness, with t meaning the same as `key-and-value'.
5807
91ae8751
KH
58082000-07-27 Kenichi Handa <handa@etl.go.jp>
5809
5810 * coding.h (struct coding_system): Member safe_charset deleted.
5811
5812 * coding.c (Qsafe_charsets): This variable deleted.
5813 (Qsafe_chars, Vchar_coding_system_table, Qchar_coding_system): New
5814 variables.
5815 (coding_safe_chars): New function.
5816 (CODING_SAFE_CHAR_P): New macro.
5817 (CHARSET_OK): New arg C. Call CODING_SAFE_CHAR_P instead of
5818 checking safe_charsets member of the coding system. Caller
5819 changed.
5820 (detect_coding_iso2022): New local variable safe_chars.
5821 (DECODE_DESIGNATION): Call CODING_SAFE_CHAR_P instead of checking
5822 safe_charsets member of the coding system.
5823 (decode_coding_iso2022): New local variable safe_chars.
5824 (ENCODE_ISO_CHARACTER_DIMENSION1): Don't check unsafe chars here.
5825 (ENCODE_ISO_CHARACTER_DIMENSION2): Likewise.
5826 (ENCODE_ISO_CHARACTER): Arguments changed. Caller changed.
5827 (ENCODE_UNSAFE_CHARACTER): New macro.
5828 (encode_coding_iso2022): New local variable safe_chars. Check
5829 unsafe chars.
5830 (setup_coding_system): Delete the code to initialize
5831 coding->safe_charses
5832 (intersection, find_safe_codings): New functions.
5833 (Ffind_coding_systems_region_internal): New function.
5834 (syms_of_coding): Defsubr it. Initialize Qsafe_chars,
5835 Qsafe_cding_system. Make Vchar_coding_system_table a Lisp
5836 variable and initialize it.
5837
5838 * fns.c (char_table_ref_and_index): New function.
5839
5840 * lisp.h (char_table_ref_and_index): Add prototype.
5841
34a7a267
SS
58422000-07-26 Sam Steingold <sds@gnu.org>
5843
5844 * editfns.c (lisp_time_argument): Added third argument `usec'.
3ab82477 5845 (Ffloat_time): New built-in Lisp function.
34a7a267 5846
a95cb10a
GM
58472000-07-26 Gerd Moellmann <gerd@gnu.org>
5848
3353ef5a
GM
5849 * dispextern.h (GLYPH_FROM_CHAR_GLYPH): Use CHARACTERBITS bits
5850 for the character code.
5851
5852 * config.in (HAVE_SOUND): Define only for FreeBSD, NetBSD and
5853 GNU/Linux.
5854
a95cb10a
GM
5855 * xmenu.c (menu_highlight_callback): Call show_help_echo directly
5856 if called for a popup menu.
5857 (xmenu_show): Store help string in widget values.
5858
b4a12321
DL
58592000-07-26 Dave Love <fx@gnu.org>
5860
5861 * syswait.h: Move some definitions.
5862 (HAVE_SYS_WAIT_H): Undef for HPUX7, Convex.
5863 [!HAVE_SYS_WAIT_H]: Define things unconditionally. More
5864 perspicuous definitions.
5865 (WTERMSIG): Fix bit pattern used.
5866
13f5ad37
KH
58672000-07-26 Kenichi Handa <handa@etl.go.jp>
5868
5869 * print.c (print_object): If vector printing is truncated, print
5870 "..." to indicate it as well as the case of list printing.
5871
070fe99c
GM
58722000-07-25 Gerd Moellmann <gerd@gnu.org>
5873
969065c3
GM
5874 * xdisp.c (next_element_from_display_vector): Improve comments.
5875
5876 * lisp.h (GLYPH_MASK_CHAR, GLYPH_MASK_FACE): Use 19 bits
5877 for the character code, and the rest for the face id as in 20.x.
5878 (FAST_GLYPH_FACE, FAST_MAKE_GLYPH): Changed accordingly.
5879
5880 * window.c (window_display_table): Cleaned up.
5881
070fe99c
GM
5882 * syntax.c (Fforward_word): Add last arg nil in call of
5883 Fconstrain_to_field.
5884
bad77ef7
EZ
58852000-07-25 Eli Zaretskii <eliz@is.elta.co.il>
5886
969065c3 5887 * fileio.c (Frename_file) [DOS_NT]: If the file names are
bad77ef7
EZ
5888 identical but for the letter-case, don't call
5889 barf_or_query_if_file_exists.
5890
c28da489
MB
58912000-07-25 Miles Bader <miles@gnu.org>
5892
5893 * editfns.c (find_field): Honor special `boundary' fields.
5894 (Qboundary): New variables.
5895 (syms_of_editfns): Initialize Qboundary.
5896 (Fconstrain_to_field): Add the INHIBIT-CAPTURE-PROPERTY argument.
5897 Use scan_buffer instead of find_before_next_newline, because it
5898 allows us to detect the boundary case where there's a newline at
5899 the search limit.
5900 * lisp.h (Fconstrain_to_field): Update external declaration.
5901
e3c31fd5
GM
59022000-07-24 Gerd Moellmann <gerd@gnu.org>
5903
5904 * print.c (temp_output_buffer_setup): Don't call1 Vrun_hooks
5905 if that is nil.
c28da489 5906
c66c29a2
DL
59072000-07-24 Dave Love <fx@gnu.org>
5908
5909 * s/sunos4-0.h, s/sol2.h:
5910 (LIBS_TERMCAP): Move from m/sparc.h.
5911
5912 * m/sparc.h (TERMINFO): Moved to system files (probably only
5913 relevant for sunos4 judging by its vintage).
5914 (BITS_PER_LONG, BITS_PER_EMACS_INT, _LP64): Define conditional on
5915 __arch64__.
5916
fbe0a958
EZ
59172000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
5918
5919 * xmenu.c (keymap_panes): Pass the keymap's prompt as the pane
5920 name to single_keymap_panes.
5921
7d88e5c9
AS
59222000-07-24 Andreas Schwab <schwab@suse.de>
5923
5924 * fns.c (Fmakehash): Pass Qeql to Fmake_hash_table if TEST is nil.
5925
e024b101
GM
59262000-07-24 Gerd Moellmann <gerd@gnu.org>
5927
5928 * xdisp.c (with_echo_area_buffer): Take additional EMACS_INT
5929 parameters instead of using int parameters. Expect FN to accept
5930 EMACS_INT parameters.
5931 (display_echo_area, resize_echo_area_axactly, current_message)
5932 (truncate_echo_area, set_message_1): Call with_echo_area_buffer
5933 with new argument list.
5934 (resize_mini_window_1): New callback function.
5935 (current_message_1, truncate_message_1, set_message_1): Change
5936 parameter lists to the new format expected by
5937 with_echo_area_buffer.
5938
25c1a9ce
KH
59392000-07-24 Kenichi Handa <handa@etl.go.jp>
5940
5941 * fontset.c (fontset_ref): Remove INLINE declaration.
5942 (fontset_ref_via_base): Likewise.
5943 (Fset_fontset_font): Convert FAMILY and REGISTRY specifications
5944 to downcase.
5945
7f987ac0
EZ
59462000-07-23 Eli Zaretskii <eliz@is.elta.co.il>
5947
5948 * msdos.c (IT_note_mouse_highlight): Process overlays in the
5949 correct order of priority. If help echo was found in an overlay,
5950 use that overlay as the object in which the help echo was found.
5951
e2db3069
MB
59522000-07-22 Miles Bader <miles@gnu.org>
5953
5954 * textprop.c (Fprevious_single_char_property_change): The initial
5955 property value should be from the position preceding POSITION, not
5956 following it.
5957
5e3203e4
EZ
59582000-07-22 Eli Zaretskii <eliz@is.elta.co.il>
5959
5960 * coding.c (syms_of_coding): Doc fix for
5961 inhibit-iso-escape-detection.
5962
62145073
GM
59632000-07-21 Gerd Moellmann <gerd@gnu.org>
5964
c20aeb83
GM
5965 * xterm.c (note_mouse_highlight): Process overlays in the right
5966 order of priority.
34a7a267 5967
743934db
GM
5968 * keyboard.c (show_help_echo, gen_help_event): Extend comments.
5969
5970 * xterm.c (note_mouse_highlight): If help-echo was found in an
5971 overlay, use that overlay as the object in which the help was
5972 found.
5973
d1dc7e43 5974 * window.c (foreach_window_1): Fix typo reversing an if-condition.
34a7a267 5975
62145073
GM
5976 * window.c (foreach_window): Instead of a fake variable argument
5977 list, take one USER_DATA argument.
5978 (foreach_window_1): Likewise, and call callback functions with two
5979 args, the window and USER_DATA.
5980 (struct check_window_data): New struct.
5981 (check_window_containing): Use it.
5982 (window_from_coordinates): Set up a struct check_window_data for
5983 foreach_window.
5984 (add_window_to_list, freeze_window_start): Change parameters
5985 according to new calling convention.
5986
5987 * window.h (foreach_window): Change prototype.
5988
5989 * buffer.c (Fprevious_overlay_change): Avoid memory leak.
5990
59912000-07-21 Eli Zaretskii <eliz@is.elta.co.il>
5992
5993 * xmenu.c (menu_help_callback): Call show_help_echo with
5994 additional arguments OBJECT and POS.
5995
11270583
KH
59962000-07-21 Kenichi Handa <handa@etl.go.jp>
5997
07b14857
KH
5998 * data.c (Faset): Allow storing any multibyte character in a
5999 string. Convert unibyte string to multibyte if necessary.
6000
11270583
KH
6001 * xfns.c (x_encode_text): New function.
6002 (x_set_name): Use x_encode_text.
6003 (x_set_title): Likewise.
6004
6005 * xselect.c (lisp_data_to_selection_data): Use x_encode_text.
6006
6007 * xterm.h (x_encode_text): Add prototype.
6008
bc75b4fd
DL
60092000-07-20 Dave Love <fx@gnu.org>
6010
6011 * ccl.c (Fccl_execute_on_string): Don't check xmalloc return. Use
6012 xfree, not free.
6013
48c14970
EZ
60142000-07-20 Eli Zaretskii <eliz@is.elta.co.il>
6015
6016 * msdos.c (help_echo_window): New variable.
6017 (syms_of_msdos): Initialize and staticpro it.
6018 (IT_note_mode_line_highlight): Set help_echo_window.
6019 (IT_note_mouse_highlight): Ditto.
6020 (dos_rawgetc): Store help_echo_window in the second event produced
6021 for HELP_EVENTs.
6022
6023 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight):
6024 Record the object that generated the help echo and the position of
6025 that object in help_echo_object and help_echo_pos. Record that
6026 some glyphs in a row are displayed in mouse-face.
6027 (IT_update_begin): Don't clear mouse highlight unless one of the
6028 enabled glyph rows is marked as being displayed in mouse-face.
6029 (dos_rawgetc): Generate 2 events for HELP_EVENT. Pass the object
6030 and position recorded in help_echo_object and help_echo_pos to the
6031 event queue.
6032 (IT_menu_display): Accept a new argument PN: the pane number of
6033 the current menu pane. Record the pane number and the item
6034 number of the item which has associated help string.
6035 (XMenuActivate): Update the prototype for help_callback in
6036 function declaration. Call IT_menu_display with the current menu
6037 pane number as an additional argument. Call help_callback with
6038 two additional arguments: the pane number and the item number of
6039 the menu item associated with the help text.
6040 (help_echo_object, help_echo_pos): New variables.
6041 (syms_of_msdos): Initialize them and staticpro help_echo_object.
6042
6043 * msdos.h (XMenuActivate): Update prototype.
6044
4279296d
GM
60452000-07-19 Gerd Moellmann <gerd@gnu.org>
6046
47db06aa
GM
6047 * xdisp.c (with_echo_area_buffer): Call FN with more arguments.
6048 Add some more prototypes.
6049
6050 * xterm.c, xterm.h: Add some more prototypes.
6051
6052 * lisp.h (Fnext_single_char_property_change): Add prototype.
6053
6054 * dispnew.c (direct_output_for_insert): Remove confusing
6055 outer local variable mouse_face_overwritten_p.
6056 (glyph_row_slice_p): Put in #ifdef GLYPH_DEBUG.
6057
4279296d
GM
6058 * alloc.c (allocate_string_data): Don't copy old string contents.
6059
670acd62
KH
60602000-07-19 Kenichi Handa <handa@etl.go.jp>
6061
6062 * coding.c (code_convert_region): Delete text properties before
6063 shrinking the conversion region.
6064
7cea38bc
GM
60652000-07-18 Gerd Moellmann <gerd@gnu.org>
6066
dc1cac59
GM
6067 * dispnew.c (update_text_area): Write the whole row if it
6068 has mouse-face in it.
6069
85a8aca9
GM
6070 * xfaces.c (face-alternative-font-family-alist): Remove
6071 DEFVAR_LISP; staticpro instead.
6072
34a7a267 6073 * xmenu.c (menu_help_callback): Call show_help_echo with
7cea38bc
GM
6074 new arguments.
6075
6076 * keyboard.c (show_help_echo): Add parameter WINDOW.
6077 (read_char): Call show_help_echo with window extracted from Lisp
6078 help event.
6079 (gen_help_event): Add parameter WINDOW.
6080
6081 * keyboard.h (show_help_echo, gen_help_event): Change prototypes.
6082
6083 * xterm.c (help_echo_window): New variable.
6084 (note_mouse_highlight, note_tool_bar_highlight): Set
6085 help_echo_window.
6086 (XTread_socket): Pass help_echo_window to gen_help_event.
6087 (syms_of_xterm): Initialize and staticpro help_echo_window.
6088
f8276b77
DL
60892000-07-18 Dave Love <fx@gnu.org>
6090
6091 * Makefile.in: Fix dependencies of blockinput.h on atimer.h,
6092 systime.h.
6093
088831a6
GM
60942000-07-18 Gerd Moellmann <gerd@gnu.org>
6095
3d6cd763
GM
6096 * alloc.c (allocate_string_data): If string had already data
6097 assigned, copy old contents to new string data.
6098
6099 * coding.c (syms_of_coding): Fix typo in spelling of variable
6100 `inhibit-iso-escape-detection'.
6101
088831a6
GM
6102 * alloca.c (free) [emacs && EMACS_FREE]: Define as EMACS_FREE.
6103
6104 * Makefile.in: Add dependencies on dispextern.h.
6105 (alloca.o): Don't define malloc and define EMACS_FREE instead of
6106 `free'; both can conflict with system header files.
6107
bc8a8d55
KH
61082000-07-18 Kenichi Handa <handa@etl.go.jp>
6109
6110 * charset.h (MAKE_CHAR): Return reasonable code even if CHARSET is
6111 undefined.
6112
069f5950
DL
61132000-07-18 Dave Love <fx@gnu.org>
6114
6115 * window.c (Fwindow_list): Declare arg `window'.
6116
aa96c820
KH
61172000-07-18 Kenichi Handa <handa@etl.go.jp>
6118
6119 * coding.c (setup_coding_system): Don't override the explicitly
6120 specified designations.
6121
06be8d32
MB
61222000-07-15 Miles Bader <miles@gnu.org>
6123
6124 * editfns.c (char_property_eq, char_property_stickiness): Renamed
6125 from `text_property_eq' and `text_property_stickiness', respectively.
6126 (find_field, Fconstrain_to_field, char_property_eq)
6127 (char_property_stickiness): Changed to call char-property functions
6128 instead of text-property-only ones.
6129
6130 * textprop.c (Fnext_single_char_property_change): Made a subr (was
6131 `next_single_char_property_change'). Do more error checking, and
6132 cleanup limit behavior.
6133 (Fprevious_single_char_property_change): New function.
6134 (syms_of_textprop): Initialize new subrs.
6135
6136 * xdisp.c (display_prop_end, invisible_text_between_p):
6137 Call Fnext_single_char_property_change instead of
6138 next_single_char_property_change.
6139
3fddcdc3
JR
61402000-07-15 Jason Rumney <jasonr@gnu.org>
6141
6142 * w32menu.c (w32_menu_show): Call free_menubar_widget_value_tree
6143 after menu is finished with.
6144 (add_menu_item): Only consider wv->title as a menu title.
6145 (w32_menu_display_help): Add OBJECT and POS to show_help_echo.
6146
6147 * w32fns.c (w32_wnd_proc) [WM_DRAW_ITEM]: Do not try to draw a
6148 null title.
6149 (FONT_REGEXP): Remove unused macro, and its sub-components.
6150 (syms_of_w32fns): Replace underscore in w32-enable-synthesized-fonts.
6151
6152 * w32term.c (help_echo_object, help_echo_pos): New variables.
6153 (note_mode_line_highlight): Store additional information about the
6154 help-echo in help_echo_object and help_echo_pos. Check both
6155 `local-map' and `keymap' properties for changing the cursor
6156 (note_mouse_highlight): Store additional information about the
6157 help-echo in help_echo_object and help_echo_pos.
6158 (note_tool_bar_highlight): Set help_echo_object to nil and
6159 help_echo_pos to -1.
6160 (w32_read_socket): Use gen_help_event instead of filling
6161 input_events manually.
6162 (syms_of_w32term): Staticpro help_echo_object.
6163 (x_update_window_end): Add parameter MOUSE_FACE_OVERWRITTEN_P. If
6164 set, arrange for a mouse-highlight redisplay in
6165 XTframe_up_to_date.
6166 (x_clear_mouse_face): New function.
6167 (w32_redisplay_interface): Add pointer to x_clear_mouse_face.
6168 (x_update_window_begin): No need to turn off the mouse
6169 highlight here.
6170 (show_mouse_face): Set the mouse_face_p flag of glyph rows
6171 depending on whether they contain glyphs highlighted in
6172 mouse-face.
6173 (x_fill_stretch_glyph_string): Consume runs of stretch
6174 glyphs instead of a single one.
6175 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
6176 with new argument list.
6177 (x_set_glyph_string_gc): Make sure the face's GC is valid.
6178 (x_append_glyph, x_append_composite_glyph)
6179 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
6180 changes in struct glyph starting 1999-12-27. See comments for
6181 xterm.c on 2000-07-05.
6182
178c5d9c
SS
61832000-07-14 Sam Steingold <sds@gnu.org>
6184
6185 * xfaces.c (realize_x_face): Fix the last patch:
6186 check `default_face' before dereferencing.
6187
6fe533f6
DL
61882000-07-14 Dave Love <fx@gnu.org>
6189
069f5950 6190 * syntax.c (back_comment): Add null default in switch (for pcc).
6fe533f6 6191
dd7b81cf
KH
61922000-07-14 Kenichi Handa <handa@etl.go.jp>
6193
0693904a 6194 * xfaces.c (realize_x_face): Make fontset using the base of the
178c5d9c 6195 default_face's fontset, not using the default fontset.
0693904a 6196
dd7b81cf
KH
6197 * coding.c (inhibit_iso_escape_detection): New variable.
6198 (syms_of_coding): Make it a Lisp variable.
6199 (detect_coding_iso2022): If inhibit_iso_escape_detection is
6200 nonzero, ignore ISO2022's escape sequence.
6201
d5aa31d8
GM
62022000-07-14 Gerd Moellmann <gerd@gnu.org>
6203
e5acf0ca
GM
6204 * alloca.c (malloc) [emacs]: Define as xmalloc.
6205
bd23a692
GM
6206 * xfns.c (Fx_show_tip): If frame parameters contain a position,
6207 use that instead of the mouse position. Add parameters DX and DY.
6208
6209 * dispextern.h (Fx_show_tip): Adjust number of parameters
6210 in prototype.
6211
9662da0b
GM
6212 * keyboard.c (show_help_echo): Add parameters OBJECT and POS.
6213 if HELP is a function, call it with OBJECT and POS as parameters
6214 to get the help to display.
6215 (gen_help_event, kbd_buffer_store_help_event): New functions.
6216 (kbd_buffer_get_event): Construct the Lisp help-event differently.
6217 (read_char): Call show_help_echo with new parameters.
6218
178c5d9c 6219 * keyboard.h (gen_help_event, kbd_buffer_store_help_event):
9662da0b
GM
6220 Add prototypes.
6221
6222 * xterm.c (help_echo_object, help_echo_pos): New variables.
6223 (note_mode_line_highlight): Store additional information about the
6224 help-echo in help_echo_object and help_echo_pos. Check both
6225 `local-map' and `keymap' properties for changing the cursor
6226 (note_mouse_highlight): Store additional information about the
6227 help-echo in help_echo_object and help_echo_pos.
6228 (note_tool_bar_highlight): Set help_echo_object to nil and
6229 help_echo_pos to -1.
6230 (XTread_socket): Use gen_help_event instead of filling
6231 input_events manually.
6232 (syms_of_xterm): Staticpro help_echo_object.
6233
6234 * xmenu.c (menu_highlight_callback): Use
6235 kbd_buffer_store_help_event instead of setting up and input_event
6236 structure manually.
6237
6238 * xdisp.c (eval_form): GCPRO argument sexpr.
6239 (call_function): New function.
6240 (handle_single_display_prop): Use call_function and FUNCTIONP
6241 instead of checking whether if font_height is a symbol and
6242 using eval_form.
6243
6244 * eval.c (internal_condition_case_2): New function.
6245
6246 * lisp.h (FUNCTIONP): New macro.
6247 (internal_condition_case_2, call_function): Add prototypes.
6248
d5aa31d8
GM
6249 * xterm.c (construct_mouse_click, x_scroll_bar_to_input_event)
6250 (x_scroll_bar_handle_click, SET_SAVED_MENU_EVENT, XTread_socket):
6251 Always set `arg' member of input_events.
6252 (construct_menu_click): Unused function removed.
6253
6254 * msdos.c (dos_rawgetc): Always set `arg' member of input_events.
6255
6256 * w32term.c (construct_mouse_click, construct_mouse_wheel)
6257 (construct_drag_n_drop, x_scroll_bar_handle_click)
6258 (w32_read_socket): Always set `arg' member of input_events.
6259
6260 * keyboard.c (show_help_echo): Use eval_form. Add comment.
6261
6262 * lisp.h (eval_form): Add prototype.
6263
6264 * xdisp.c (eval_form): Make it externally visible.
6265
0f1a9b23
GM
62662000-07-13 Gerd Moellmann <gerd@gnu.org>
6267
6268 * xterm.c (x_handle_tool_bar_click): Store the frame in the
6269 frame_or_window slot of TOOL_BAR_EVENT input events instead of
6270 consing. For prefix events, store the frame in the `arg' slot of
6271 the event, otherwise store the key there.
6272 (XTread_socket): Instead of consing, use the frame_or_window slot
6273 of HELP_EVENTs for the frame, and the `arg' slot for the help
6274 string.
6275
6276 * xmenu.c (menu_highlight_callback): Store help string in the
6277 `arg' member of the input event; don't cons.
6278 (menubar_selection_callback): Use the `arg' slot of input events
6279 to queue additional information, instead of consing.
6280
6281 * msdos.c (dos_rawgetc): Adapt to change of HELP_EVENTs.
6282
6283 * w32term.c (w32_handle_tool_bar_click): Adapt to changes in
6284 TOOL_BAR_EVENTs.
6285 (w32_read_socket): Adapt to changes in HELP_EVENTs.
6286
6287 * w32menu.c (menubar_selection_callback): Use the `arg' slot of
6288 input events to queue additional information, instead of consing.
6289
6290 * keyboard.c (kbd_buffer_gcpro): Renamed from
6291 kbd_buffer_frame_or_window. Now used for all Lisp objects
6292 referenced from the input queue.
6293 (kbd_buffer_store_event): Always use structure assignment for
6294 copying input events. Record all Lisp objects referenced from
6295 events in kbd_buffer_gcpro.
6296 (kbd_buffer_get_event): Construct Lisp `help-echo' events
6297 differently from input events. Test for prefix menu_bar_events
6298 and TOOL_BAR_EVENTs differently. Reset all slots used by an input
6299 event in kbd_buffer_gcpro to nil.
6300 (make_lispy_event) <TOOL_BAR_EVENT>: Treat an input event whose
6301 frame_or_window is equal to its arg member as prefix events.
6302 (stuff_buffered_input): Reset all slots in kbd_buffer_gcpro
6303 used by an input event to nil.
6304 (init_keyboard): Use two times the size of the input queue
6305 for kbd_buffer_gcpro.
6306 (syms_of_keyboard): Likewise.
6307
6308 * emacs.c (handle_USR2_signal, handle_USR1_signal): Use
6309 USER_SIGNAL_EVENT.
6310
6311 * termhooks.h (struct input_event): Add member `arg'.
6312 (MENU_BAR_EVENT): Renamed from menu_bar_event.
6313 (USER_SIGNAL_EVENT): Renamed from user_signal.
6314
6315 * xfaces.c (ASET): Remove definition.
6316
6317 * lisp.h (AREF, ASET, ASIZE): New macros.
6318
6319 * fontset.c (AREF, ASIZE): Remove definitions.
6320
6321 * fns.c (AREF): Remove definition.
178c5d9c 6322
0f1a9b23
GM
6323 * composite.c (AREF): Remove definition.
6324
712eaef2
GM
63252000-07-12 Gerd Moellmann <gerd@gnu.org>
6326
d8ee7803
GM
6327 * dispnew.c (redraw_overlapped_rows): Add missing local.
6328 (scrolling_window): Remove debug code.
6329
712eaef2
GM
6330 * xdisp.c (try_window_reusing_current_matrix, try_window_id):
6331 Before scrolling, turn off a mouse-highlight in the window
6332 being scrolled.
6333
6334 * xterm.c (x_update_window_end): Add parameter
6335 MOUSE_FACE_OVERWRITTEN_P. If set, arrange for a mouse-highlight
6336 redisplay in XTframe_up_to_date.
6337 (x_clear_mouse_face): New function.
6338 (x_redisplay_interface): Add pointer to x_clear_mouse_face.
6339
6340 * dispnew.c (make_current): Preserve the mouse_face_p flag of the
6341 current glyph row.
6342 (update_window_line): Add parameter MOUSE_FACE_OVERWRITTEN_P. Set
6343 it when any row is written to that contains glyphs highlighted in
6344 mouse-face.
6345 (update_window): Call the window update end hook with new
6346 parameter MOUSE_FACE_OVERWRITTEN_P.
6347 (direct_output_for_insert): Give up if row contains mouse-face.
6348
6349 * dispextern.h (struct redisplay_interface): Add parameter
6350 MOUSE_FACE_OVERWRITTEN_P to update_window_end_hook function.
6351 (clear_mouse_face): New function pointer member.
6352
02010917
SM
63532000-07-11 Stefan Monnier <monnier@cs.yale.edu>
6354
6355 * syntax.c (back_comment): Use one switch rather than a few `if's.
6356 Obey open_paren_in_column_0_is_defun_start.
6357 When reverting to the `slow' method, try to nicely handle the case
6358 of nested comments by checking that the comment-starter we found
6359 does indeed match the comment-ender.
6360 (scan_sexps_forward, scan_sexps_forward):
6361 Ignore excessive opening parenthesis rather than throwing an error.
6362
d76c03ea
GM
63632000-07-11 Gerd Moellmann <gerd@gnu.org>
6364
6365 * doc.c (Fsubstitute_command_keys): Handle case that a GC
6366 in Fwhere_is_internal or get_keymap_1 relocates string contents.
6367
6368 * dispnew.c (direct_output_forward_char): Give up if currently
6369 displaying a message instead of the minibuffer contents.
6370
6371 * xterm.c (x_update_window_begin): No need to turn off the mouse
6372 highlight here.
6373 (show_mouse_face): Set the mouse_face_p flag of glyph rows
6374 depending on whether they contain glyphs highlighted in
6375 mouse-face.
6376
6377 * dispnew.c (row_equal_p): Add parameter MOUSE_FACE_P. If set,
6378 compare the mouse_face_p flags of both rows.
6379
6380 * dispextern.h (struct glyph_row): Add flag mouse_face_p.
6381
d55ead18
EZ
63822000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
6383
6384 * keyboard.c (show_help_echo): Accept additional parameter
6385 ok_to_overwrite_keystroke_echo.
6386 (read_char): Call show_help_echo with a zero
6387 ok_to_overwrite_keystroke_echo argument.
6388 * keyboard.h (show_help_echo): Update prototype of
6389 show_help_echo.
6390 * xmenu.c (menu_help_callback): Call show_help_echo with non-zero
6391 ok_to_overwrite_keystroke_echo argument.
6392 * w32menu.c (w32_menu_display_help): Call show_help_echo with
6393 non-zero ok_to_overwrite_keystroke_echo argument.
6394
df75b1a3
GM
63952000-07-10 Gerd Moellmann <gerd@gnu.org>
6396
4b92c49a
GM
6397 * xdisp.c (try_window_id): If changes are all below what is
6398 displayed in the window, and point is in the window, we still
6399 might have to find point on the display.
6400
6401 * xterm.c (x_fill_stretch_glyph_string): Consume runs of stretch
6402 glyphs instead of a single one.
6403 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
6404 with new argument list.
6405 (x_set_glyph_string_gc): Make sure the face's GC is valid.
6406
df75b1a3
GM
6407 * keymap.c (get_keymap_1): Add comment that this function can GC.
6408 (where_is_internal_2, where_is_internal_1): Add GCPROs, add
6409 comment that functions can GC.
6410 (Fset_keymap_parent): GCPRO arg KEYMAP.
6411
4314cf3e
EZ
64122000-07-10 Eli Zaretskii <eliz@is.elta.co.il>
6413
6414 * msdos.c (XMenuActivate): After exiting the menu, restore the
6415 echo area message and erase it.
6416
ab49ce15
KH
64172000-07-10 Kenichi Handa <handa@etl.go.jp>
6418
6419 * fontset.c (Ffontset_info): Make the return value more compatible
6420 with that of Emacs 20.
6421
090a072f
GM
64222000-07-07 Gerd Moellmann <gerd@gnu.org>
6423
6424 * eval.c (Fsignal): Handle case that backtrace_list is null.
6425
f92de4a6
KH
64262000-07-07 Kenichi Handa <handa@etl.go.jp>
6427
6428 * ccl.c (Fccl_execute): Typo fixed.
6429
dd8888a1
GM
64302000-07-06 Gerd Moellmann <gerd@gnu.org>
6431
e5c81191 6432 * window.c (window_loop): Add missing gcpro1 local variable.
178c5d9c 6433
dd8888a1
GM
6434 * window.c (Fwindow_list): Reverse list at the end.
6435 (candidate_window_p): Add parameter OWINDOW. ALL_FRAMES nil
6436 means allow windows on OWINDOW's frame, only.
6437 (window_loop): Simplified; use Fwindow_list.
6438
6439 * Makefile.in (TAGS-LISP): Don't pass `$(lispsource)' to make.
6440
485266d0
GM
64412000-07-05 Gerd Moellmann <gerd@gnu.org>
6442
6443 * xterm.c (XTread_socket): Increment handling_signal at the start,
6444 decrement it at the end.
6445
6446 * eval.c (handling_signal): New variable.
6447 (Fsignal): Abort if handling_signal is non-zero.
6448
6449 * lisp.h (handling_signal): External declaration.
178c5d9c 6450
485266d0
GM
6451 * s/freebsd.h (WAITTYPE, WRETCODE): Put in #if 0.
6452
80fcd514
KR
64532000-07-05 Ken Raeburn <raeburn@gnu.org>
6454
6455 Sound support for NetBSD through "Linux emulation" support:
6456 * config.in (HAVE_SOUNDCARD_H): Undef.
6457 (HAVE_SOUND): Define if HAVE_SOUNDCARD_H.
6458 * Makefile.in (LIBSOUND): New variable.
6459 (LIBES): Include it.
6460 * sound.c [HAVE_SOUNDCARD_H]: Include <sys/ioctl.h> and
6461 <soundcard.h>.
6462 (DEFAULT_SOUND_DEVICE): Define to "/dev/dsp" if not defined
6463 elsewhere.
6464 (vox_open): Use DEFAULT_SOUND_DEVICE.
6465 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Define to /dev/audio.
6466
d5c5cddd
GM
64672000-07-05 Gerd Moellmann <gerd@gnu.org>
6468
6469 * print.c (print_error_message): If Vsignaling_function is set,
6470 show it in *Messages*.
6471
6472 * lisp.h (Vsignaling_function): External declaration.
6473
6474 * eval.c (Vsignaling_function): New variable.
6475 (Fsignal): Compute it.
6476 (syms_of_eval): Staticpro it.
6477
65171e3a
DL
64782000-07-05 Dave Love <fx@gnu.org>
6479
6480 * syswait.h: Use the autoconf recommended approach. Old code
6481 #if'd out in case we need to revert.
6482
178c5d9c 6483 * config.in (HAVE_SYS_WAIT_H): Added.
65171e3a 6484
e2c46326
AI
64852000-07-05 Andrew Innes <andrewi@gnu.org>
6486
6487 * vm-limit.c (check_memory_limits) [REL_ALLOC]: Use real_morecore
6488 when non-NULL instead of __morecore, to take account of buffer
6489 memory. This also solves a problem with spurious memory warnings
6490 on Windows.
6491
6492 * ralloc.c: Make real_morecore non-static.
6493
6494 * eval.c (internal_condition_case): Comment out abort if
6495 interrupt_input_blocked is not zero.
6496
6497 * makefile.nt: Add support for `bootstrap' and related targets.
6498 Include minimal debug info in emacs.exe in release build.
6499 Remove all dependencies on lisp.h, and fixup some others.
6500
6501 * w32.c (init_environment): Install code from 20.7 for providing
6502 default values for environment variables, based on the
6503 executable's own location.
6504 (map_w32_filename): Handle filenames that are longer than
6505 MAX_PATH.
6506 (sys_socket): Install socket inheritance bug fix from 20.7.
6507
6508 * alloca.c [emacs]: Include lisp.h (needed by atimer.h included
6509 here via blockinput.h).
6510
a027a91b
SM
65112000-07-05 Stefan Monnier <monnier@cs.yale.edu>
6512
e4b31601
SM
6513 * w32menu.c (w32_menu_display_help):
6514 * xmenu.c (menu_help_callback): Use show_help_echo.
a027a91b
SM
6515
6516 * keyboard.h (show_help_echo): Declare.
6517
6518 * keyboard.c (show_help_echo): New function, extracted from read_char.
6519 Feval its `msg' argument if it's a cons cell.
6520 (read_char): Use it.
4cf8d9d5 6521 (follow_key): Pass `autoload' to get_keyelt.
a027a91b 6522
178c5d9c 6523 * xterm.c (note_mode_line_highlight, note_mouse_highlight)
a027a91b 6524 (note_tool_bar_highlight, XTread_socket):
178c5d9c 6525 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight)
a027a91b
SM
6526 (dos_rawgetc):
6527 * w32term.c (note_mode_line_highlight, note_mouse_highlight)
6528 (note_tool_bar_highlight, w32_read_socket):
6529 Do not gratuitously ignore non-string `help-echo' properties.
6530
88d75730
GM
65312000-07-05 Gerd Moellmann <gerd@gnu.org>
6532
969f7e79
GM
6533 * eval.c (Feval): Put check for interrupt_input_block in #if 0.
6534
71201b00
GM
6535 * window.c (delete_all_subwindows): Reset Vwindow_list.
6536
88d75730
GM
6537 * xterm.c (x_append_glyph, x_append_composite_glyph)
6538 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
6539 changes in struct glyph starting 1999-12-27. Some bit-fields of
6540 struct glyph were not set, which made glyphs unequal when compared
6541 with GLYPH_EQUAL_P. Redisplay outputs such glyphs, and flickering
6542 effects were the result. This also depended on the contents of
6543 memory returned by xmalloc. If flickering happens again, activate
6544 the code in clear_glyph_row that's in #if 0. If the flickering is
6545 gone with that, chances are that it is caused by something
6546 similar.
6547
6548 * dispnew.c (clear_glyph_row): Add debug code in #if 0.
178c5d9c 6549
88d75730
GM
6550 * dispextern.h: Add some comments.
6551
6552 * window.c (add_window_to_list): Add parameter LIST.
6553 (window_list): Order list so that, for each frame, windows are
6554 in canonical order, and so that frames appear in the list in
6555 the order given by Vframe_list.
6556 (next_window): Reverse the handling of NEXT_P.
6557
53654733
GM
65582000-07-04 Gerd Moellmann <gerd@gnu.org>
6559
87efd256
GM
6560 * window.c (Vwindow_list): New variable.
6561 (make_window, delete_window): Set Vwindow_list to nil.
6562 (check_window_containing): New function.
6563 (window_from_coordinates): Rewritten.
6564 (add_window_to_list, window_list, candidate_window_p)
6565 (decode_next_window_args, next_window): New functions.
6566 (Fnext_window, Fprevious_window): Rewritten in terms of
6567 next_window.
6568 (Fwindow_list): New function.
6569 (Fother_window): Cleaned up.
6570 (foreach_window): Add a longer "variable argument list". Let
6571 callback function return 0 to indicate that cycling over windows
6572 should stop.
6573 (foreach_window_1): Likewise.
6574 (freeze_window_start): Return int.
6575 (init_window): New function.
6576 (syms_of_window): Staticpro Vwindow_list and defsubr Swindow_list.
6577
6578 * emacs.c (handle_USR1_signal, handle_USR2_signal) Clear
6579 input_event with bzero.
6580 (main): Call init_window.
6581
53654733
GM
6582 * keymap.c (get_keyelt): Temporarily inhibit GC while evaluating
6583 a menu filter.
6584
4a8c194f
KH
65852000-07-04 Kenichi Handa <handa@etl.go.jp>
6586
6587 * composite.h (make_composition_value_copy): Extern it.
6588
6589 * composite.c (make_composition_value_copy): New function.
6590
6591 * editfns.c (Fformat): While copying text properties, make each
6592 composition property value a copy.
6593
6594 * fns.c (concat): While copying text properties, make each
6595 composition property value a copy.
6596
831a6cb0
GM
65972000-07-03 Gerd Moellmann <gerd@gnu.org>
6598
2f516940
GM
6599 * m/macppc.h (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
6600
178c5d9c 6601 * fns.c (sweep_weak_table): Mark only objects that are not
aee625fa
GM
6602 marked already.
6603
831a6cb0
GM
6604 * frame.c (next_frame, prev_frame): If MINIBUF is a window,
6605 include those frames as candidates which have their focus
6606 redirected to the minibuffer frame.
6607
d9c4f922
SM
66082000-07-03 Stefan Monnier <monnier@cs.yale.edu>
6609
6610 * fns.c (Fputhash): Return `value' rather than nil.
6611
3780bc22
GM
66122000-06-30 Gerd Moellmann <gerd@gnu.org>
6613
97d176db
GM
6614 * frame.c (next_frame): Don't check focus redirection in case
6615 MINIBUF is a window. Doing so excludes frames using MINIBUF
3780bc22
GM
6616 unless their focus is redirected, which contradicts the
6617 specification of next-frame, and leads to infinite loops in
6618 certain situations when cycling through windows with next-window.
6619
dca9961d
KH
66202000-06-30 Kenichi Handa <handa@etl.go.jp>
6621
6622 * coding.c (code_convert_region): Even if the length of text is
6623 zero, try to convert it if coding->type is coding_type_ccl.
6624 (decode_coding_string, encode_coding_string): Likewise.
6625
d5483ab1
GM
66262000-06-28 Gerd Moellmann <gerd@gnu.org>
6627
af5c25e1 6628 * xdisp.c (try_window_reusing_current_matrix): Don't try to reuse
97d176db 6629 the display if windows_or_buffers_changed.
af5c25e1
GM
6630
6631 * dispnew.c (struct row_entry): New structure.
6632 (row_entry_pool, row_entry_pool_size, row_entry_idx, row_table)
6633 (row_table_size, old_lines, new_lines, old_lines_size)
6634 (new_lines_size, run_pool, runs_size, runs): New variables.
6635 (add_row_entry): New function.
6636 (scrolling_window): Use data structures allocated with xmalloc and
97d176db 6637 held in global variables, instead of allocating them with alloca and
af5c25e1
GM
6638 holding them in local variables. Use a larger hash table whose
6639 size depends on glyph matrix sizes. Don't use bzero to clear the
6640 hash table; instead, clear used slots only.
6641
6642 * fns.c (next_almost_prime): Make it externally visible.
6643
6644 * lisp.h (next_almost_prime): Add prototype.
6645
d5483ab1
GM
6646 * s/isc4-0.h (sigunblock): Define.
6647
6648 * s/sco5.h (sigunblock): Define.
6649
93e40f40
DL
66502000-06-27 Dave Love <fx@gnu.org>
6651
6652 * s/osf1.h (C_SWITCH_SYSTEM, LIBS_SYSTEM): Revert last change
6653 (moved to osf5-0.h).
6654 [!NOT_C_CODE]: Protect string.h stuff.
6655
6656 * s/osf5-0.h (C_SWITCH_SYSTEM, WAIT_USE_INT, SYS_SIGLIST_DECLARED)
6657 (sys_siglist, NSIG): Definitions moved here from osf1.h.
6658
3c4b7685
GM
66592000-06-27 Gerd Moellmann <gerd@gnu.org>
6660
97d176db 6661 * xdisp.c (resize_mini_window): Subtract the extra line spacing
3c4b7685
GM
6662 below the last line from the needed window height.
6663
32cad0aa
SM
66642000-06-26 Stefan Monnier <monnier@cs.yale.edu>
6665
6666 * fns.c (Fplist_member): Renamed from Fwidget_plist_member.
6667 (Fwidget_get): Use it.
6668 (syms_of_fns): Defsubr it.
6669
2c69ced2
GM
66702000-06-26 Gerd Moellmann <gerd@gnu.org>
6671
178c5d9c 6672 * xterm.c (xim_initialize) [!USE_XIM]: Don't set up the
1d36487c
GM
6673 display info for XIM.
6674 (xim_open_dpy): Likewise.
6675 (xim_close_dpy): Don't free the display info's XIM.
6676
6677 * xfns.c (x_window) [!USE_XIM]: Don't call create_frame_ic.
6678
6679 * config.in (USE_XIM): New define.
6680
3fc720e4
GM
6681 * keymap.c (get_keyelt): For menu-items containing a `:filter
6682 FILTER', apply FILTER to the menu-item's definition to get the
6683 real definition to use.
6684
6685 * lisp.h (QCfilter): External declaration.
6686
2c69ced2
GM
6687 * xfns.c (Fimage_size): New function.
6688 (syms_of_xfns): Defsubr it.
6689
f978b2a2
AS
66902000-06-26 Andreas Schwab <schwab@suse.de>
6691
6692 * coding.c (decode_coding_string): Re-fetch STRING_BYTES after
6693 Fstring_as_unibyte.
6694
94cc7892
DL
66952000-06-25 Dave Love <fx@gnu.org>
6696
6697 * term.c [!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag,
6698 tgetnum.
6699
6700 * Makefile.in (blockinput.h): Depend on atimer.h.
6701 (atimer.h): Depend on systime.h.
6702
6703 * blockinput.h: Protect against multiple inclusion. Include
6704 atimer.h.
6705
6706 * atimer.h: Protect against multiple inclusion. Include
6707 systime.h.
6708
6709 * lisp.h (swap_in_global_binding): Declare.
6710
b8c24556
KR
67112000-06-24 Ken Raeburn <raeburn@gnu.org>
6712
6713 * process.c (Fopen_network_stream): Turn off atimers for duration
6714 of call to connect. (Patch from Gerd.)
6715
8cf8560b
DL
67162000-06-23 Dave Love <fx@gnu.org>
6717
511c7541
DL
6718 * ralloc.c: Maybe include unistd.h
6719
8cf8560b
DL
6720 * emacs.c (setgrp): Undefine before defining.
6721 (malloc_warning, set_time_zone_rule, index): Prototype.
6722
6723 * systime.h (EMACS_GET_TIME) [!GETTIMEOFDAY_ONE_ARGUMENT]: Use
6724 HAVE_STRUCT_TIMEZONE.
6725
6726 * s/osf1.h: Move string.h hack here from alpha.h and make it
6727 conditional.
6728 (C_SWITCH_SYSTEM): Use _OSF_SOURCE, not -BSD, which clashes with
6729 _XOPEN_SOURCE.
6730 (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist, NSIG): Define.
6731 (SOCKLEN_TYPE): Don't define.
6732
6733 * m/alpha.h: Remove string.h hack.
6734
6735 * s/osf5-0.h: New file.
6736
6737 * filelock.c: Use feature tests for fcntl.h, string.h. Don't
6738 include time.h, done by systime.h.
6739 [__FreeBSD__]: Remove redundant includes.
6740
3fc720e4 6741 * callproc.c (setpgrp): Undefine before defining.
8cf8560b
DL
6742 (delete_temp_file): Return Qnil to avoid warning.
6743
6744 * config.in (HAVE_TERM_H, HAVE_STRUCT_TIMEZONE): Add.
6745
6746 * xfaces.c: Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not
6747 HAVE_X_WINDOWS.
6748
6749 * fontset.h (free_face_fontset): Renamed from fs_free_face_fontset.
6750
6751 * composite.h (compose_text): Declare.
6752
6753 * xterm.c: Don't include sys/types.h unconditionally. Don't
6754 protect its inclusion with !USG (following xmenu.c).
6755
ea055732
GM
67562000-06-23 Gerd Moellmann <gerd@gnu.org>
6757
6758 * xfns.c (x_create_tip_frame): Initialize frame's colors like
6759 in x_create_frame.
6760
74b01b80
EZ
67612000-06-23 Eli Zaretskii <eliz@is.elta.co.il>
6762
6763 * coding.c (decode_eol_post_ccl): Special handling for undecided
6764 and inconsistent EOL types.
6765
64f3a166
GM
67662000-06-22 Gerd Moellmann <gerd@gnu.org>
6767
16cf31f7
GM
6768 * xrdb.c (x_load_resources): Add default resource for scroll bar's
6769 trough color and main window's background color.
6770
178c5d9c 6771 * xfns.c (Fx_file_dialog) [HAVE_MOTIF_2_1]: Handle events
16cf31f7
GM
6772 differently.
6773
6774 * xterm.h (Xt_app_con): External declaration.
6775
6776 * widget.c (EmacsFrameRealize): Fix typo.
178c5d9c 6777
486a103d
GM
6778 * widget.c (EmacsFrameRealize): Remove SubstructureRedirectMask.
6779
64f3a166
GM
6780 * xdisp.c (handle_stop): Initialize it->add_overlay_start to zero.
6781 (handle_invisible_prop): Record the start of invisible text in
6782 it->add_overlay_start.
6783 (struct overlay_entry): Add member `overlay'.
6784 (handle_overlay_change): Simplify.
6785 (next_overlay_string): After having processed overlay strings at the
6786 end of the buffer, record that fact in
6787 it->overlay_strings_at_end_processed_p.
6788 (compare_overlay_entries): If before- and after-strings come
6789 from the same overlay, let before-strings come first.
6790 (RECORD_OVERLAY_STRING): Record the overlay that strings come from.
6791 (load_overlay_strings): Take it->add_overlay_start into account
6792 when adding overlay strings.
6793
6794 * dispextern.h (struct it): Add member add_overlay_start.
6795
bb746ea6
DL
67962000-06-22 Dave Love <fx@gnu.org>
6797
6798 * s/isc3-0.h (C_SWITCH_SYSTEM): Define _XOPEN_SOURCE=500.
6799
6800 * s/gnu-linux.h (C_SWITCH_SYSTEM): Don't define _XOPEN_SOURCE here.
6801
a8f573f3
KH
68022000-06-22 Kenichi Handa <handa@etl.go.jp>
6803
6804 * ccl.c (ccl_driver) <CCL_End>: Decrement stack_idx only when it
6805 is greater than 0.
6806
9f2bbc92
DL
68072000-06-21 Dave Love <fx@gnu.org>
6808
178c5d9c 6809 * Makefile.in (GETLOADAVG_OBJ): Removed -- LIBOBJS does it.
9f2bbc92 6810
3ee5041c
SM
68112000-06-21 Stefan Monnier <monnier@cs.yale.edu>
6812
6813 * syntax.c (back_comment): Simplify string-parity counting (with
6814 the added benefit of handling multiple string-styles as long as
6815 they are not intertwined).
6816 Jump to the slow code as soon as a comment starter is found in
6817 a "string_lossage" position. Fixes the case: " /* " /* " */.
6818
4c343001
DL
68192000-06-21 Dave Love <fx@gnu.org>
6820
6821 * Makefile.in: Use GETLOADAVG_LIBS.
6822
6823 * config.in: Add HAVE_FCNTL_H, _FILE_OFFSET_BITS,
6824 _LARGEFILE_SOURCE, _LARGE_FILES, _XOPEN_SOURCE.
6825
e6365855
SM
68262000-06-20 Stefan Monnier <monnier@cs.yale.edu>
6827
6828 * syntax.c (describe_syntax): Recognize the `n'estable bit.
6829 (Fforward_comment, scan_lists):
6830 Check the comstyle of single-char comment-starters.
6831 (scan_sexps_forward): Don't try to recognize `half comment-enders' if
6832 we're just at the beginning of the comment (f.ex with (*) ... (*)).
d355bd8a
SM
6833 Check the comstyle of single-char comment-starters.
6834 Clarify control-flow around the Scomment case.
e6365855 6835
5700d2cc
DL
68362000-06-20 Dave Love <fx@gnu.org>
6837
d355bd8a
SM
6838 * fns.c (make_hash_table, maybe_resize_hash_table):
6839 Cast arg of next_almost_prime.
5700d2cc 6840
178c5d9c 6841 * tparam.c [emacs]: Include lisp.h.
5700d2cc
DL
6842
6843 * termcap.c [emacs]: Test HAVE_FCNTL_H, not USG5. Include lisp.h
6844 and unistd.h.
6845
4a27bdfb
GM
68462000-06-20 Gerd Moellmann <gerd@gnu.org>
6847
a61d762c
GM
6848 * keyboard.c (adjust_point_for_property): Check if display
6849 property should be treated as intangible by looking at its
6850 value.
6851
178c5d9c 6852 * xdisp.c (single_display_prop_intangible_p)
a61d762c
GM
6853 (display_prop_intangible_p): New functions.
6854
6855 * dispextern.h (display_prop_intangible_p): Add prototype.
6856
6857 * xdisp.c (dump_glyph_row): Show type of glyph->object.
178c5d9c 6858
4a27bdfb
GM
6859 * s/isc4-0.h (sigblock): Redefined to pass a pointer as second
6860 argument to sigprocmask.
6861
6862 * s/sco5.h (sigblock): Redefined to pass a pointer as second
6863 argument to sigprocmask.
6864
6865 * syssignal.h (sigblock, sigunblock) [USG5_4]: Set
6866 sigprocmask_set, and pass a pointer to it to sigprocmask.
6867
6868 * sysdep.c (sigprocmask_set): New variable.
6869
6870 * fileio.c (make_temp_name): Don't use `%s' in string passed to
6871 report_file_error.
6872
427ec082
SS
68732000-06-20 Sam Steingold <sds@gnu.org>
6874
6875 * xrdb.c: Don't declare xmalloc, xrealloc.
6876
8972fe79 68772000-06-20 Stefan Monnier <monnier@cs.yale.edu>
8972fe79
SM
6878
6879 * regex.c (re_match, re_match_2): Protect calls to alloca (0).
6880 (re_comp): Cast gettext return value to avoid complaints when
6881 !HAVE_LIBINTL.
6882
074b6efe
DL
68832000-06-20 Dave Love <fx@gnu.org>
6884
f85c008a
DL
6885 * m/stride.h, m/mips.h: Don't define HAVE_GETWD,
6886 HAVE_GETTIMEOFDAY.
6887
5700d2cc 6888 * m/ibmrt-aix.h: Don't declare HAVE_GETTIMEOFDAY, HAVE_VFORK.
f85c008a 6889
d355bd8a 6890 * m/ibmrs6000.h, m/ibmps2-aix.h, m/dpx2.h: Don't declare HAVE_GETWD.
f85c008a
DL
6891
6892 * m/alpha.h: Don't declare xmalloc, xrealloc.
6893
0af4f205
DL
6894 * s/ux4800.h: Don't declare GETTIMEOFDAY_ONE_ARGUMENT.
6895
6896 * s/usg5-4-2.h: Don't declare HAVE_GETWD, VFORK_RETURN_TYPE.
6897
6898 * s/umips.h: Don't declare HAVE_GETWD, HAVE_GETTIMEOFDAY.
6899
6900 * s/cxux.h, s/gnu-linux.h, s/iris3-6.h, s/irix3-3.h: Don't declare
6901 HAVE_GETWD.
6902
074b6efe
DL
6903 * keyboard.h (poll_for_input_1): Declare.
6904
6905 * getloadavg.c: Don't define NLIST_STRUCT (handled by configure).
6906
6907 * alloc.c (xmalloc, xrealloc, xfree): Define using POINTER_TYPE.
6908
6909 * doprnt.c: Don't declare xmalloc, xrealloc.
6910
6911 * lisp.h (x_set_tool_bar_lines, free_frame_xic, compose_text)
6912 (getenv, ctime, getwd): Removed.
6913 (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE.
6914
6915 * xterm.h: Remove duplicate prototypes. Declare free_frame_xic,
6916 x_set_tool_bar_lines.
6917
6918 * config.in: Add HAVE_GETWD. Move some definitions above
6919 machine/system includes.
6920
68a5e97b
KH
69212000-06-20 Kenichi Handa <handa@etl.go.jp>
6922
95417e1e
KH
6923 * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1.
6924
68a5e97b
KH
6925 * xfaces.c (font_list): Handle the case that REGISTRY doesn't
6926 contain information about ENCODING.
6927
6928 * fontset.c (FONTSET_ASCII): Use the first element of char table
6929 for an ASCII font, not defalt slot.
6930 (fontset_ref_via_base): If FONTSET doesn't contain information for
6931 C, try the default fontset.
6932 (make_fontset): Don't copy the default fontset.
6933 (fontset_font_pattern): Likewise.
6934 (accumulate_font_info): If ELT is nil, use the corresponding
6935 element in the default fontset.
6936
3b4fa1b2
DL
69372000-06-19 Dave Love <fx@gnu.org>
6938
943e731c
DL
6939 * syntax.c (Fparse_partial_sexp): Doc fix.
6940
6941 * regex.h: Test PROTOTYPES as well as __STDC__.
6942
3b4fa1b2
DL
6943 * unexalpha.c: Include errno.h, string.h, unistd.h. Don't declare
6944 errno, strerror. Put text after #endif in comment.
6945
6946 * xdisp.c (dump_glyph_matrix): Add `static' to declaration (for
6947 pcc).
6948
6949 * xterm.c (x_frame_of_widget): Likewise.
6950
cdf0357b
GM
69512000-06-19 Gerd Moellmann <gerd@gnu.org>
6952
6953 * abbrev.c (syms_of_abbrev): Set buffer_default's abbrev table
6954 to Vfundamental_mode_abbrev_table.
6955
6956 * alloc.c (mark_object) [GC_CHECK_MARKED_OBJECTS]: Check that no
6957 bogus objects are marked. This slows down GC by ~80 percent, but
6958 it might be worth trying when debugging GC-related problems.
6959 This feature requires conservative stack marking to be enabled.
6960
6961 * xterm.c (XTread_socket) <KeyPress>: In case XmbLookupString
6962 returns XLookupChars, reset `modifiers' to zero.
6963
998e9f8c
DL
69642000-06-19 Dave Love <fx@gnu.org>
6965
6966 * mktime.c: Unprotoized.
6967
18e21ce8 69682000-06-19 Richard Stallman <rms@gnu.org>
d1504184
GM
6969
6970 * data.c (set_internal): If variable is frame-local,
6971 store the new value immediately into the frame parameter alist.
6972
140c4ac6
KR
69732000-06-19 Ken Raeburn <raeburn@gnu.org>
6974
14358466
KR
6975 * xfns.c (jpeg_load): Fetch error-handling data first, then fill
6976 in the custom handler pointer.
6977
140c4ac6
KR
6978 * keyboard.c (follow_key, read_key_sequence): Use XUINT on key
6979 value, or checks for CHAR_META can fail when Lisp_Object is a
6980 union type.
6981 * keymap.c (get_keyelt): Likewise.
6982
10d7bf84
KH
69832000-06-19 Kenichi Handa <handa@etl.go.jp>
6984
6985 * ccl.h (struct ccl_program): New member eol_type.
6986 (struct ccl_spec): New member cr_carryover.
6987
6988 * ccl.c (CCL_WRITE_CHAR): Convert NL according to ccl->eol_type.
6989 (setup_ccl_program): Initialize ccl->eol_type to CODING_EOL_LF.
6990
6991 * coding.c (setup_coding_system) <4>: Reset member `cr_carryover'.
6992 (ccl_coding_driver): On encoding, initialize ccl->eol_type.
6993 (decode_eol_post_ccl): New function.
6994 (decode_coding): Don't detect EOL format here for CCL based coding
6995 systems.
6996 (decode_coding) <coding_type_ccl>: Handle carryovered CR. Call
6997 decode_eol_post_ccl after running the CCL program.
6998 (code_convert_region): Don't detect EOL format here for CCL based
6999 coding systems.
7000 (decode_coding_string): Likewise.
7001
52e386c2
KR
70022000-06-18 Ken Raeburn <raeburn@gnu.org>
7003
7004 * charset.c (update_charset_table): Use XINT on "iso_final_char"
7005 when treating it as an integer.
7006
7007 * coding.h (encode_coding_string): Declare.
7008
7009 * keyboard.c (read_key_sequence): Use XINT on "pos" when treating
7010 it as an integer.
7011
7012 * keymap.c (Fwhere_is_internal): Rename argument "keymap" to
7013 "xkeymap" to avoid shadowing the "enum map_type" value that needs
7014 to be passed to get_local_map.
7015
7016 * sound.c (Fplay_sound): Don't call make_number on
7017 Frun_hook_with_args count argument.
7018
7019 * xterm.c (x_send_scroll_bar_event): Fudge lisp object/integer
7020 for lisp objects in X event structure data field, when lisp
7021 objects are represented with unions.
7022 (x_scroll_bar_to_input_event): Ditto.
7023
b357b9d4
KR
70242000-06-16 Ken Raeburn <raeburn@gnu.org>
7025
7026 * xdisp.c (decode_mode_spec): In "no_value" case, do NUL
37d034d3
KR
7027 termination of string. Fix sense of test whether
7028 Vline_number_display_limit is an integer.
b357b9d4 7029
a871441d
GM
70302000-06-16 Gerd Moellmann <gerd@gnu.org>
7031
a9021acd
GM
7032 * xfaces.c (syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
7033 only if HAVE_X_WINDOWS.
7034
6344985d
GM
7035 * keymap.c (describe_buffer_bindings): Add `\f\n' in front
7036 of titles.
7037
427ec082 7038 * dispnew.c (update_frame_1): Handle case that cursor vpos is
a871441d
GM
7039 out of bounds.
7040
228b083e
EZ
70412000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
7042
7043 * unexec.c (toplevel): Fix last change, so as not to deprive MSDOS
7044 of its headers.
7045
c25b53a2
KH
70462000-06-15 Kenichi Handa <handa@etl.go.jp>
7047
7048 * coding.c (decode_coding_emacs_mule): Always set src_base at the
7049 start of the while loop.
7050
a6981b11
GM
70512000-06-15 Gerd Moellmann <gerd@gnu.org>
7052
e9924e52
GM
7053 * atimer.c (alarm_signal_handler): Add forward declaration.
7054
a6981b11
GM
7055 * data.c (set_internal): Remove debug code.
7056
25fa6deb
GM
70572000-06-14 Gerd Moellmann <gerd@gnu.org>
7058
dce6b995
GM
7059 * Makefile.in (bootstrap-temacs): Add `-I../src'.
7060
9f817ea4
GM
7061 * unexec.c (toplevel) [COFF]: Include coff.h.
7062
7063 * s/lynxos.h: New file.
7064
7065 * keymap.c (Fsingle_key_description): Enclose function key and
7066 event symbol names in angle brackets.
7067
8a4e3c0c
GM
7068 * xdisp.c (setup_echo_area_for_printing): Call
7069 message_log_maybe_newline if message_buf_print is not set.
7070
7071 * print.c (printchar, strout): Don't check message_buf_print
427ec082 7072 before calling setup_echo_area_for_printing because that
8a4e3c0c
GM
7073 function does something useful even when message_buf_print is
7074 already set.
7075
25fa6deb
GM
7076 * xdisp.c (message_truncate_lines, Qmessage_truncate_lines): New
7077 variables.
7078 (ensure_echo_area_buffers): Initialize echo buffer's
7079 truncate lines setting to nil.
7080 (with_echo_area_buffer): Don't set the echo buffer's truncate
7081 lines setting here.
8a4e3c0c 7082 (set_message_1): Set it here instead, based on the value
25fa6deb
GM
7083 of message_truncate_lines.
7084 (resize_mini_window): Handle case that lines are truncated.
7085 (syms_of_xdisp): Initialize Qmessage_truncate_lines. DEFVAR_BOOL
7086 message-truncate-lines.
7087
7088 * keyboard.c (read_char): Bind message-truncate-lines to t
7089 while displaying a help-echo.
7090
7091 * lisp.h (Qmessage_truncate_lines): External declaration.
7092
163dcff3
GM
70932000-06-13 Gerd Moellmann <gerd@gnu.org>
7094
1681ead6
GM
7095 * xdisp.c (Vline_number_display_limit): Renamed from
7096 line_number_display_limit.
7097 (syms_of_xdisp): Use DEFVAR_LISP for line-number-display-limit.
7098 Extend documentation string. Initialize
7099 Vline_number_display_limit to nil meaning no limit.
7100 (decode_mode_spec): Use Vline_number_display_limit with its new
7101 meaning.
7102
163dcff3
GM
7103 * xterm.c (x_check_font) [GLYPH_DEBUG]: Add prototype.
7104
18e21ce8 71052000-06-13 Richard Stallman <rms@gnu.org>
163dcff3
GM
7106
7107 * frame.c (Fmodify_frame_parameters): Doc fix.
427ec082 7108
163dcff3
GM
7109 * xfns.c (x_set_frame_parameters): Comment fix.
7110
7111 * frame.c (store_frame_param): Call swap_in_global_binding if the
7112 variable's current binding was chosen based on this frame.
7113
7114 * data.c (swap_in_global_binding): New function.
7115
a704139d
EZ
71162000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
7117
7118 * msdos.c (IT_write_glyphs): Don't use CODING_REQUIRE_ENCODING
7119 macro, instead AND with CODING_REQUIRE_ENCODING_MASK.
7120
9b6610db
EZ
71212000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
7122
7123 * msdos.h (EMACS_MSDOS_H): Renamed from MSDOS_H_.
7124
c68833d2
JR
71252000-06-12 Jason Rumney <jasonr@gnu.org>
7126
7127 * w32bdf.h (EMACS_W32BDF_H): Renamed from __W32BDF_H__
7128
7129 * w32.h (EMACS_W32_H): Renamed from _NT_H_
7130
7131 * w32gui.h (EMACS_W32GUI_H): Renamed from __W32GUI_H__
7132
7133 * w32inevt.h (EMACS_W32INEVT_H): Renamed from __NTINEVT_H__
7134
ed1056b3
GM
71352000-06-12 Gerd Moellmann <gerd@gnu.org>
7136
7137 * xfaces.c (Fdump_colors) [DEBUG_X_COLORS]: New function.
7138 (syms_of_xfaces): Defsubr Sdump_colors.
7139 (x_free_colors): Don't treat b&w specially on default visual.
7140 (x_free_dpy_colors): New function.
7141 (free_face_colors): Don't check visual class; it's done
7142 in x_free_colors.
7143
7144 * xterm.c (x_frame_of_widget): New function.
7145 (x_alloc_nearest_color_for_widget): Use it.
7146 (x_copy_dpy_color): New function.
7147 (x_destroy_window): Free various colors.
7148
5050a2ef
KH
71492000-06-12 Kenichi Handa <handa@etl.go.jp>
7150
7151 * ccl.h (EMACS_CCL_H): Renamed from _CCL_H.
7152
7153 * charset.h (EMACS_CHARSET_H): Renamed from _CHARSET_H.
7154
7155 * coding.h (EMASC_CODING_H): Renamed from _CODING_H.
7156
7157 * composite.h (EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
7158
7159 * fontset.h (EMACS_FONTSET_H): Renamed from _FONTSET_H.
7160
fb1b041d
DL
71612000-06-11 Dave Love <fx@gnu.org>
7162
7163 * systime.h (EMACS_SYSTIME_H): Renamed from _SYSTIME_H.
7164
ff96b5f4
EZ
71652000-06-11 Eli Zaretskii <eliz@is.elta.co.il>
7166
7167 * msdos.h: Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead.
7168
db8eeecd
GM
71692000-06-11 Gerd Moellmann <gerd@gnu.org>
7170
ed1056b3 7171 * xmenu.c (xmenu_show): Cast second parameter of lw_popup_menu
db8eeecd
GM
7172 to `XEvent *'.
7173
49b71c5f
KH
71742000-06-10 Kenichi Handa <handa@etl.go.jp>
7175
c479bd55
KH
7176 * regex.c (MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
7177 (regex_compile): Fix the code for handling the case of single byte
7178 char and multibyte char being mixed in a range within [...].
7179
ff6a65c2
KH
7180 * fileio.c (Finsert_file_contents): Be sure to setup src_multibyte
7181 and dst_multibyte members of coding.
7182
49b71c5f
KH
7183 * charset.c (update_charset_table): Update the table
7184 bytes_by_char_head.
7185 (init_charset_once): Initialize elements of bytes_by_char_head to
7186 1 except for leading codes for private charases.
7187
7188 * charset.h (CHARSET_8_BIT_GRAPHIC): Define as 0x80.
7189 (UNIBYTE_STR_AS_MULTIBYTE_P): Fix for an invalid multibyte
7190 sequence.
7191
9e80b57d
KR
71922000-06-09 Ken Raeburn <raeburn@gnu.org>
7193
7194 * xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
7195 access the data it doesn't point to.
7196
f83fe4b4
GM
71972000-06-08 Gerd Moellmann <gerd@gnu.org>
7198
7199 * xterm.c (XTread_socket) <FocusIn>: Queue a FOCUS_IN_EVENT which
db8eeecd 7200 will be translated to a switch-frame event when reading the
f83fe4b4
GM
7201 event queue. This is necessary because Emacs otherwise won't
7202 perform a switch-frame to a new frame until some other event, for
7203 example a keystroke event, forces it to do so. This has various
7204 effects, one visible being that the cursor of a frame created with
7205 C-x 5 2 or switched to with a window manager key binding like
7206 A-TAB stays hollow because selected_window isn't on the newly
7207 focused frame until the switch-frame is performed.
7208
7209 * keyboard.c (kbd_buffer_get_event): Handle FOCUS_IN_EVENT by
7210 generating a switch-frame event if necessary.
7211
7212 * termhooks.h (enum event_kind): Add FOCUS_IN_EVENT.
7213
7214 * xdisp.c (handle_fontified_prop): Don't GCPRO local var `pos';
7215 it's an integer.
7216
0890801b
KH
72172000-06-08 Kenichi Handa <handa@etl.go.jp>
7218
7219 * fontset.c (Fset_fontset_font): The arg CHARACTER may be a
7220 charset.
7221
173cbca8
GM
72222000-06-07 Gerd Moellmann <gerd@gnu.org>
7223
3091c2a6
GM
7224 * window.c (displayed_window_lines): Take empty lines at
7225 the bottom of a window into account.
427ec082 7226
f38952fe
GM
7227 * window.c (displayed_window_lines): New function.
7228 (Fmove_to_window_line): Use displayed_window_lines to determine
7229 the number of lines to move, instead of using the window's height.
7230
7231 * lread.c (readevalloop): If READCHARFUN sets point to ZV, arrange
7232 to stop reading, even if the form read sets point to a different
7233 value when evaluated.
7234
427ec082 7235 * xdisp.c (display_line): Fix code deciding in which line to
173cbca8
GM
7236 put the cursor.
7237
6ba6c818
KH
72382000-06-07 Kenichi Handa <handa@etl.go.jp>
7239
7240 * fileio.c (e_write): Free composition data if stored in
7241 coding->cmp_data.
7242
5f1aea9a
GM
72432000-06-06 Gerd Moellmann <gerd@gnu.org>
7244
666852af
GM
7245 * xdisp.c (display_line): Set row's and iterator's
7246 starts_in_middle_of_char_p and ends_in_middle_of_char_p flags.
7247 Set cursor even if row ends in the middle of a character.
7248 (dump_glyph_row): Print values of new flags.
7249 (redisplay_window) <cursor movement in unchanged window>: When
7250 point has been moved forward, and PT is at the end of the cursor
7251 row, don't place the cursor in the next row if the cursor row ends
7252 in the middle of a character or at ZV.
7253
7254 * dispextern.h (struct it): Add starts_in_middle_of_char_p.
7255 (struct glyph_row): Add starts_in_middle_of_char_p and
7256 ends_in_middle_of_char_p.
7257 (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P): Test row's
7258 ends_in_middle_of_char_p flag.
7259 (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Likewise.
7260
d13f3e2e
GM
7261 * term.c (append_glyph): Revert change of 2000-06-06.
7262
7263 * xdisp.c (display_line): Revert change of 2000-06-06. Treat
7264 padding glyph not fitting on line as whole character not
7265 fitting on line.
7266
5f1aea9a
GM
7267 * xterm.c (x_produce_glyphs): Don't xassert `it->descent > 0';
7268 this isn't true for images with `:ascent 100'.
7269
10cda9b0
KH
72702000-06-06 Kenichi Handa <handa@etl.go.jp>
7271
ed00559d
KH
7272 * buffer.c (Fset_buffer_multibyte): Don't make the current buffer
7273 as modified if it is originally unmodified.
7274
10cda9b0
KH
7275 * term.c (encode_terminal_code): Change the way to check if
7276 terminal coding does any conversion.
7277 (append_glyph): Set glyph->pixel_width correctly.
7278
7279 * xdisp.c (display_line): While checking line continuation, pay
7280 attention to a padding glyph.
7281
1969fae2
GM
72822000-06-05 Gerd Moellmann <gerd@gnu.org>
7283
7284 * xdisp.c (redisplay_window): Always use set_buffer_internal_1.
7285
162ccef4
DL
72862000-06-05 Dave Love <fx@gnu.org>
7287
f19f32dd
DL
7288 * xdisp.c: Include fontset.h.
7289
7290 * xfns.c (x_real_positions): Declare tmp_nchildren as unsigned.
7291
7292 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
7293
7294 * dispnew.c: Conditionally include term.h.
7295
7296 * coding.h: Declare code_convert_string_norecord.
7297
7298 * frame.h (struct frame): Use volatile unconditionally.
7299
7300 * buffer.h: Remove Vbefore_change_function, Vafter_change_function.
7301
7302 * xmenu.c (menu_item_selection): Declare volatile unconditionally.
7303
7304 * systime.h: Protect against multiple inclusion.
7305 (timezone) [USG5_4]: Define as time_t.
7306
7307 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
7308 (Foptimize_char_table, make_temp_name): Declare.
7309
7310 * Makefile.in (xdisp.o): Depend on fontset.h.
7311
7312 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
7313
7314 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
7315 (Foptimize_char_table, make_temp_name): Declare.
7316
427ec082 7317 * s/irix4-0.h:
162ccef4
DL
7318 * s/irix5-0.h:
7319 * s/netbsd.h: Don't define autoconfiscated MATHERR.
7320
2082fe81
DL
73212000-06-02 Dave Love <fx@gnu.org>
7322
7323 * lread.c (_XOPEN_SOURCE, __EXTENSIONS__): Don't define.
7324
dcf671d2
GM
73252000-06-02 Gerd Moellmann <gerd@gnu.org>
7326
7327 * xfaces.c (realize_x_face): When copying BASE_FACE bitwise to the
1969fae2 7328 result face, set flags in that face indicating that colors may not
dcf671d2
GM
7329 be freed.
7330
7331 * xterm.c (x_set_mouse_face_gc): If first glyph isn't a character
7332 glyph, use the ASCII NUL character to determine the face.
7333
d42122a3
DL
73342000-06-02 Dave Love <fx@gnu.org>
7335
7336 * sysdep.c: Conditionally include stdlib.h, unistd.h.
7337 (VFORK_RETURN_TYPE): Remove.
427ec082 7338
d42122a3
DL
7339 * config.in: Add NO_MATHERR.
7340
dd432f16
DL
73412000-06-01 Dave Love <fx@gnu.org>
7342
90aa4ea8
DL
7343 * cmds.c (internal_self_insert): Don't check
7344 Vbefore_change_function, Vafter_change_function.
7345
7346 * insdel.c (signal_before_change, signal_after_change): Likewise.
7347
7348 * buffer.c (Vbefore_change_function, Vafter_change_function):
7349 Variables and their initializations deleted.
7350
2330c9d4
DL
7351 * callint.c (Fcall_interactively): Doc fix.
7352
dd432f16
DL
7353 * terminfo.c (ospeed) [HAVE_SPEED_T]: Don't declare extern.
7354
bf9e8804
DL
73552000-05-31 Dave Love <fx@gnu.org>
7356
7357 * textprop.c: Revert last change -- duplicated.
7358
3694b4ab
GM
73592000-05-31 Gerd Moellmann <gerd@gnu.org>
7360
7361 * dispnew.c (find_glyph_row_slice, swap_glyphs_in_rows): Put
7362 in #if 0.
7363
7364 * lisp.h (eassert) [!ENABLE_CHECKING]: Define as `(void) 0'.
7365
f14156cd
JR
73662000-05-31 Jason Rumney <jasonr@gnu.org>
7367
8119aab8
JR
7368 * search.c (Fre_search_forward, Fre_search_backward)
7369 (Fposix_search_backward, Fposix_search_forward): Fix newlines in docs.
7370
f14156cd
JR
7371 * w32select.c (Fw32_set_clipboard_data): Change QNil to Qnil.
7372
4aab9be3
JR
73732000-05-30 Jason Rumney <jasonr@gnu.org>
7374
7375 * coding.h (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
7376 [WINDOWSNT]: Add extern for Vw32_system_coding_system.
7377
7378 * dispextern.h (struct glyph) [WINDOWSNT]: Add w32_font_type
7379 member.
7380
7381 * fileio.c (Fread_file_name) [HAVE_NTGUI]: Use file dialog.
7382 (Fread_file_name) [HAVE_NTGUI, USE_MOTIF]: Do not attempt to
7383 expand a nil default_filename.
7384
7385 * keyboard.c (make_lispy_event) [WINDOWS_NT]: Pass a window
7386 pointer to glyph_to_pixel_coords, not a frame.
7387
7388 * makefile.nt (w32fns.obj, w32menu.obj): Add charset.h and
7389 coding.h to dependencies.
7390
7391 * w32bdf.c (w32_load_bdf_font): Initialize font->double_byte_p.
7392
7393 * w32console.c (glyph_to_pixel_coords): Change first parameter to
7394 window pointer to be consistent with w32term.c and xterm.c.
7395
7396 * w32fns.c: Format and doc changes to bring closer to xfns.c.
7397 (VIETNAMESE_CHARSET): Define if not defined in system headers.
7398 (Qline_spacing, Qcenter): New variables.
7399 (Qw32_charset_*, w32_codepage_for_font): Moved from w32term.c.
7400 (x_set_line_spacing): New function.
7401 (x_set_frame_parameters): Use FRAME_NEW_WIDTH, FRAME_NEW_HEIGHT
7402 macros.
7403 (x_specified_cursor_type): New function.
7404 (x_set_cursor_type): Use it.
7405 (x_set_name, x_set_title): Use ENCODE_SYSTEM to encode titlebar
7406 and icon strings.
7407 (validate_x_resource_name, x_get_resource_string): Measure lengths
7408 of external strings in bytes.
7409 (w32_wnd_proc) [WM_MEASURE_ITEM]: Avoid calling
7410 GetTextExtentPoint32 with NULL title.
7411 (Fx_create_frame): Initialize Qline_spacing.
7412 (w32_load_system_font): Initialize font->double_byte_p.
7413 (x_to_w32_charset): Use Vw32_charset_info_alist.
7414 (Image, busy cursor, tooltip functions): Merged changes from
7415 xfns.c. Not yet functional on Windows.
7416
7417 * w32gui.h (W32FontStruct): Add double_byte_p member.
7418
7419 * w32inevt.c (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
7420 (emacs_button_translation): Use it.
7421 (do_mouse_event): Allow up to 32 mouse buttons by allowing any bit
7422 in `mask' to be set.
7423
7424 * w32menu.c (single_submenu, w32_menu_show): Call ENCODE_SYSTEM on
7425 menu strings.
7426
7427 * w32term.c: Format and doc changes to bring closer to xterm.c.
7428 (w32_char_font_type): New enum.
7429 (Qw32_charset_*, w32_codepage_for_font): Moved to w32fns.c.
7430 (w32_per_char_metric): Use w32_char_font_type instead of unicode_p.
7431 (w32_encode_char): New function.
7432 (x_encode_char): Removed.
7433 (x_get_glyph_and_face_encoding): Use w32_encode_char in place of
7434 x_encode_char and w32_font_is_double_byte.
7435 (x_produce_image_glyph): Use image_ascent.
7436 (x_produce_glyphs): Use new version of w32_per_char_metric and
7437 handle NULL return value. Allow extra line spacing.
7438 (W32_TEXTOUT): Distinguish between Unicode and DBCS text.
7439 (w32_get_glyph_overhangs): Remove unicode_p param. Use
7440 w32_font_type member of glyph instead.
7441 (x_draw_glyph_string): Draw underline and strike-out for BDF fonts.
7442 (fast_find_position): Make sure not to consider rows not visible
7443 in the window.
7444 (w32_read_socket) [WM_MENUSELECT]: Cannot call
7445 w32_menu_display_help with input blocked, as it can abort.
7446 (x_display_and_set_cursor): Choose cursor depending
7447 on buffer-local value of cursor_type.
7448 (x_draw_bar_cursor): Add parameter WIDTH.
7449
7450 * w32term.h (CP_DEFAULT): Define.
7451 (Fx_display_color_p, Fx_display_grayscale_p, image_ascent): Declare.
7452
10fc3187
GM
74532000-05-30 Gerd Moellmann <gerd@gnu.org>
7454
7455 * search.c (Fre_search_forward, Fre_search_backward)
7456 (Fposix_search_backward, Fposix_search_forward): Doc fix.
7457
d0555360
KH
74582000-05-30 Kenichi Handa <handa@etl.go.jp>
7459
7460 * coding.c (detect_coding_iso2022): Fix code for checking
7461 CODING_CATEGORY_MASK_ISO_8_2.
7462
f1ad044f
SM
74632000-05-29 Stefan Monnier <monnier@cs.yale.edu>
7464
7465 * regex.c (PREFETCH_NOLIMIT): New function.
7466 (re_match_2_internal): Use it and adjust the end_match_2 logic.
7467
84ec3b4b
GM
74682000-05-29 Gerd Moellmann <gerd@gnu.org>
7469
66254a13
GM
7470 * syntax.c (find_defun_start): Move test for
7471 open_paren_in_column_0_is_defun_start outside of the loop.
7472
49e70dec
GM
7473 * xdisp.c (redisplay_window): Really switch buffers when
7474 displaying mode lines, and temporarily set selected_frame to the
7475 frame of the window that's redisplayed.
7476
84ec3b4b
GM
7477 * xfaces.c (free_realized_faces): Block/unblock input.
7478 (free_realized_multibyte_face): Ditto.
7479
869a3a14
DL
74802000-05-29 Dave Love <fx@gnu.org>
7481
7482 * textprop.c (Qkeymap): New variable.
7483 (syms_of_textprop): Intern it.
7484
7485 * keymap.c: Include intervals.h.
7486 (Fkey_binding, Fwhere_is_internal): Deal with `keymap' property.
7487
7488 * Makefile.in (keymap.o): Depend on intervals.h.
7489
7490 * keyboard.c (menu_bar_items, tool_bar_items)
7491 (Fexecute_extended_command): Deal with `keymap' property.
7492 (read_key_sequence): Track map from `keymap' property as well as
7493 `local_map'.
7494
7495 * intervals.c (get_local_map): Extra arg to allow looking for
7496 `keymap' too.
7497
7498 * intervals.h (map_property): New enum.
7499 (get_local_map): Extra arg using it.
7500 (Qkeymap): Declare.
7501
84ec3b4b 7502 * lisp.h (get_local_map): Don't declare here.
869a3a14 7503
89d0c844
KH
75042000-05-29 Kenichi Handa <handa@etl.go.jp>
7505
7506 * Makefile.in (callproc.o): Depend on composite.h.
7507
7508 * callproc.c: Include composite.h.
7509 (Fcall_process): Handle composition correctly.
7510
7511 * coding.h (coding_allocate_composition_data): Extern it.
7512 (coding_restore_composition): Likewise.
7513
7514 * coding.c (DECODE_COMPOSITION_START): If coding->cmp_data is not
7515 yet allocated, finish decoding with result
7516 CODING_FINISH_INSUFFICIENT_CMP.
7517 (coding_allocate_composition_data): Make it non-static.
7518 (coding_restore_composition): Likewise.
7519
797a084a
EZ
75202000-05-29 Eli Zaretskii <eliz@is.elta.co.il>
7521
7522 * charset.c (syms_of_charset): Revert last change.
7523
cf872af5
EZ
75242000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
7525
7526 * term.c (produce_glyphs): Treat characters from the eight-bit-*
d7d0dac0
SM
7527 charsets as unibyte, with 1-column screen width. Sent by Kenichi
7528 Handa.
cf872af5 7529
5b1ae051
EZ
75302000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
7531
7532 * charset.c (syms_of_charset): Set width of character sets
7533 eight-bit-control and eight-bit-graphic to 1 column.
7534
34ec9ebe
GM
75352000-05-26 Gerd Moellmann <gerd@gnu.org>
7536
7537 * config.in (HAVE_SPEED_T): New define.
7538
7539 * sysdep.c, terminfo.c (ospeed) [HAVE_SPEED_T]: Declare as
7540 `extern speed_t'.
7541
dd854dc2
DL
75422000-05-26 Dave Love <fx@gnu.org>
7543
7544 * coding.c (shrink_decoding_region): Initialize eol_conversion.
7545
7546 * data.c (Qsubrp, Qmany, Qunevalled): New variables.
7547 (Fsubr_arity): New function.
7548 (syms_of_data): Install them.
7549
ba9f8f95
KH
75502000-05-26 Kenichi Handa <handa@etl.go.jp>
7551
0f3e0672
KH
7552 * charset.c (init_charset_once): Set the table bytes_by_char_head
7553 correctly.
7554
cebefb44
KH
7555 * fontset.c (syms_of_fontset): Adjust the font name for ascii of
7556 the default fontset to what Emacs uses by default.
0f3e0672
KH
7557 (check_registry_encoding): This function deleted.
7558 (Fset_fontset_font): Remove the adhoc condition for the default
7559 fontset. Allow cons in FONTNAME.
cebefb44 7560
0f3e0672
KH
7561 * fns.c (map_char_table): Ignore char-table entries for
7562 charsets eight-bit-control and eight-bit-graphic.
ba9f8f95 7563
7a18af49
KR
75642000-05-25 Ken Raeburn <raeburn@gnu.org>
7565
7566 * emacs.c (main): Initialize keyboard syms before initializing
7567 window code, so face names are available.
7568
d2af47df
SM
75692000-05-25 Stefan Monnier <monnier@cs.yale.edu>
7570
7571 * regex.c (at_begline_loc_p): Also recognize the \\(?:^ case
7572 of an anchor at the beginning of a shy-group.
7573
fc6a6a4e
GM
75742000-05-25 Gerd Moellmann <gerd@gnu.org>
7575
7576 * xdisp.c (handle_invisible_prop): Don't try to skip over
7577 invisible text if end of text is already reached.
7578
005f0d35
DL
75792000-05-25 Dave Love <fx@gnu.org>
7580
02513cdd
DL
7581 * xdisp.c (Fdump_glyph_matrix): Declare the arg.
7582
005f0d35
DL
7583 * coding.c (encode_eol): Add null statement after label.
7584
89f6ca4e
EZ
75852000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
7586
7587 * w16select.c (Fw16_set_clipboard_data): Fix the change from
7588 2000-05-20.
7589
a4e1759e
KH
75902000-05-25 Kenichi Handa <handa@etl.go.jp>
7591
7592 * ccl.c (ccl_driver): Fix previous change.
7593
eacfd7fe
KH
75942000-05-25 Kenichi Handa <handa@etl.go.jp>
7595
46ab33a9
KH
7596 * coding.c (run_pre_post_conversion_on_str): Set point to the
7597 beginning of buffer before calling coding->post_read_conversion.
7598 (decode_coding_string): Give correct args to
7599 run_pre_post_conversion_on_str.
7600 (encode_coding_string): Likewise.
7601
eacfd7fe
KH
7602 * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>
7603 <CCL_WriteMultibyteChar2>: Handle charsets eight-bit-control and
7604 eight-bit-graphic correctly.
7605
f8569325
DL
76062000-05-24 Kenichi HANDA <handa@etl.go.jp>
7607
7608 * fileio.c (Finsert_file_contents): Even if a file is not found,
7609 execute codes for setting up coding system. Call
7610 after-insert-file-functions unconditionally.
7611
04545643
GM
76122000-05-24 Gerd Moellmann <gerd@gnu.org>
7613
7614 * callproc.c, emacs.c, sysdep.c (setpgrp): Don't define if USG and
7615 BSD_PGRPS are not defined.
7616
747d90ea
KH
76172000-05-24 Kenichi Handa <handa@etl.go.jp>
7618
7619 * charset.c (update_charset_table): Accept nil in LONG_NAME and
7620 DESCRIPTION.
7621 (syms_of_charset): Avoid building same strings.
7622
716e3b88
GM
76232000-05-23 Gerd Moellmann <gerd@gnu.org>
7624
7625 * lread.c (Fload): Add a comment about the meaning of
7626 Vuser_init_file being t.
7627
7628 * puresize.h (BASE_PURESIZE): Increase to 675000.
7629
7630 * s/gnu-linux.h (setpgrp): Don't define it here because this
7631 prevents compilation on GNU/Linux systems with glib 2.2.
7632
7633 * callproc.c, emacs.c, sysdep.c (setpgrp) [HAVE_SETPGID]: Define
7634 as setpgid.
427ec082 7635
9aeb39fa
EZ
76362000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
7637
7638 * Makefile.in (SOME_MACHINE_LISP): Add disp-table.elc,
7639 dos-vars.elc, ccl.elc, and codepage.elc, all loaded by the MS-DOS
7640 version.
7641 (MSDOS_SUPPORT): Add dos-vars.elc, ccl.elc, and codepage.elc.
7642
29ced61b
KH
76432000-05-23 Kenichi Handa <handa@etl.go.jp>
7644
0574a2ed
KH
7645 * syntax.c (skip_chars): Use FETCH_STRING_CHAR_ADVANCE
7646 unconditionally.
7647
3d80f24d
KH
7648 * msdos.c (IT_write_glyphs): Set coding->src_multibyte to 1.
7649
7650 * term.c (encode_terminal_code): Set coding->src_multibyte
7651 properly.
7652
29ced61b
KH
7653 * coding.c (encode_eol): Fix a bug of DOS style EOL encoding.
7654
d7e00792
KH
76552000-05-22 Kenichi Handa <handa@etl.go.jp>
7656
c9d80d38
KH
7657 * keyboard.c (read_char): Allow character codes 128..255 to be
7658 handled by input-method-function.
7659
d7e00792
KH
7660 * insdel.c (adjust_markers_for_replace): Fix previous change.
7661 (adjust_after_replace): If PREV_TEXT is nil, call
7662 adjust_markers_for_insert, not adjust_markers_for_replace.
7663
087121cc 76642000-05-20 NIIBE Yutaka <gniibe@mri.co.jp>
427ec082 7665
087121cc
GM
7666 * s/gnu-linux.h (UNIX98_PTYS) [HAVE_GRANDPT]: Define.
7667 (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_OPEN, PTY_TTY_NAME_SPRINTF)
7668 [HAVE_GRANDPT]: Define.
7669 (C_SWITCH_SYSTEM): Add -D_XOPEN_SOURCE.
7670
7671 * sysdep.c (setup_pty): Treat case that UNIX98_PTYS is defined
7672 like SYSV_PTYS.
7673
7674 * config.in (HAVE_GRANDPT, HAVE_GETPT): New defines.
7675
7676 * process.c (toplevel) [UNIX98_PTYS]: Include stdlib.h.
7677
c9671f81
KH
76782000-05-20 Kenichi Handa <handa@etl.go.jp>
7679
7680 The following changes are to handle 8-bit characters in a
7681 multibyte buffer/string without facing with byte combining
7682 problem. Two new charsets eight-bit-control (for 0x80..0x9F) and
7683 eight-bit-graphic (for 0xA0..0xFF) are introduced.
7684
7685 * Makefile.in (fns.o): Depend on charset.h.
7686
7687 * alloc.c (Fmake_byte_code): If BYTECODE-STRING is multibyte,
7688 convert it to unibyte.
7689 (make_string): Use parse_str_as_multibyte, not chars_in_text.
7690
7691 * buffer.c (advance_to_char_boundary): Don't use DEC_POS to find a
7692 apparent char boundary.
7693 (Fset_buffer_multibyte): Convert 8-bit characters in the range
7694 0x80..0x9F to/from multibyte form.
7695
7696 * bytecode.c (Fbyte_code): If arg BYTESTR is multibyte, convert it
7697 to unibyte.
7698
7699 * callproc.c (Fcall_process): Always encode an argument string if
7700 it is multibyte. Setup src_multibyte and dst_multibyte members of
7701 process_coding properly.
ce75fd23 7702
c9671f81
KH
7703 * category.c (Fmodify_category_entry): Use SPLIT_CHAR, not
7704 SPLIT_NON_ASCII_CHAR.
7705
7706 * ccl.c (CCL_WRITE_CHAR): Be sure to write single byte characters
7707 as is.
7708 (CCL_MAKE_CHAR): Use MAKE_CHAR, not MAKE_NON_ASCII_CHAR.
7709
7710 * charset.c (Qeight_bit_control, Qeight_bit_graphic): New
7711 variables.
7712 (SPLIT_CHARACTER_SEQ): This macro deleted.
7713 (SPLIT_MULTIBYTE_SEQ): Assume that multibyte sequence at STR is
7714 valid.
7715 (CHAR_COMPONENTS_VALID_P): Handle new charsets; eight-bit-control
7716 and eight-bit-graphic.
7717 (char_to_string): Likewise. Signal an error for too large
7718 character code.
7719 (char_printable_p): Return 0 for 8-bit characters.
7720 (update_charset_table): Update iso_charset_table only when a final
7721 character is non-negative.
7722 (find_charset_in_text): Renamed from find_charset_in_str.
7723 Arguments and return value changed. Callers changed.
7724 (Fdefine_charset): Args ISO-FINAL-CHAR and ISO-GRAPHIC-PLANE can
7725 be -1 if CHARSET is used only internally.
7726 (Fmake_char_internal): Handle new charsets; eight-bit-control and
7727 eight-bit-graphic.
7728 (Fcharset_after): Simplified.
7729 (char_valid_p): Use SPLIT_CHAR, not SPLIT_NON_ASCII_CHAR.
7730 (char_bytes): Return 2 for chars of the range 0xA0..0xFF.
7731 (multibyte_chars_in_text): Simplified by assuming there's no
7732 invalid multibyte sequence.
7733 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte,
7734 str_as_unibyte): New functions.
7735 (Fstring): Simpified by assuming that byte combining never
7736 happens.
7737 (init_charset_once): Initialization for
7738 LEADING_CODE_8_BIT_CONTROL.
7739 (syms_of_charset): Intern and staticpro Qeight_bit_control and
7740 Qeight_bit_graphic. Include them in Vcharset_list. Make charsets
7741 eight-bit-control and eight-bit-graphic.
7742
7743 * charset.h (LEADING_CODE_8_BIT_CONTROL, CHARSET_8_BIT_CONTROL,
7744 CHARSET_8_BIT_GRAPHIC): New macros.
7745 (SINGLE_BYTE_CHAR_P): Make it faster by using casting.
7746 (CHARSET_ISO_GRAPHIC_PLANE): Use XINT instead of XFASTINT.
7747 (CHARSET_REVERSE_CHARSET): Likewise.
7748 (CHARSET_VALID_P): Handle new charsets; eight-bit-control and
7749 eight-bit-graphic.
7750 (BYTES_BY_CHAR_HEAD, WIDTH_BY_CHAR_HEAD): Optimize for ASCII.
7751 (CHAR_CHARSET, MAKE_CHAR, SPLIT_CHAR, CHAR_BYTES): Likewise.
7752 (PARSE_MULTIBYTE_SEQ) [BYTE_COMBINING_DEBUG]: Abort if we
7753 encounter an invalid multibyte sequence.
7754 (PARSE_MULTIBYTE_SEQ) [not BYTE_COMBINING_DEBUG]: Assume multibyte
7755 sequence is always valid.
7756 (MAKE_NON_ASCII_CHAR, SPLIT_NON_ASCII_CHAR): These macros Deleted.
7757 (UNIBYTE_STR_AS_MULTIBYTE_P, MULTIBYTE_STR_AS_UNIBYTE_P): New
7758 macros.
7759 (CHAR_STRING): For 8-bit characters, call char_to_string.
7760 (INC_POS) [not BYTE_COMBINING_DEBUG]: Faster version. Assume
7761 multibyte sequence is always valid.
7762 (BUF_INC_POS) [not BYTE_COMBINING_DEBUG]: Likewise.
7763 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte,
7764 str_as_unibyte): Extern them.
7765 (BCOPY_SHORT): Fix a bug.
7766 (CHAR_LEN): This macro deleted. Callers changed to use
7767 CHAR_BYTES.
7768 (FETCH_STRING_CHAR_ADVANCE): Check multibyteness of STRING.
7769 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): New macro.
7770 (FETCH_CHAR_ADVANCE): Check multibyteness of the current buffer.
7771
bd4bde7f 7772 * coding.c (ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->result to
c9671f81
KH
7773 CODING_FINISH_INSUFFICIENT_SRC if there's not enough source.
7774 (ONE_MORE_CHAR, EMIT_CHAR, EMIT_ONE_BYTE, EMIT_TWO_BYTE,
7775 EMIT_BYTES): New macros.
7776 (THREE_MORE_BYTES, DECODE_CHARACTER_ASCII,
7777 DECODE_CHARACTER_DIMENSION1, DECODE_CHARACTER_DIMENSION2): These
7778 macros deleted.
7779 (CHECK_CODE_RANGE_A0_FF): This macro deleted.
7780 (detect_coding_emacs_mule): Use UNIBYTE_STR_AS_MULTIBYTE_P to
7781 check the validity of multibyte sequence.
7782 (decode_coding_emacs_mule): New function.
7783 (encode_coding_emacs_mule): New macro.
7784 (detect_coding_iso2022): Use ONE_MORE_BYTE to fetch a byte from
7785 the source.
7786 (DECODE_ISO_CHARACTER): Just return a character code.
7787 (DECODE_COMPOSITION_START): Set coding->result instead of result.
7788 (decode_coding_iso2022, decode_coding_sjis_big5, decode_eol): Use
7789 EMIT_CHAR to produced decoded characters. Exit the loop only by
7790 macros ONE_MORE_BYTE or EMIT_CHAR. Don't handle the case of last
7791 block here.
7792 (ENCODE_ISO_CHARACTER): Don't translate character here. Produce
7793 only position codes for an invalid character.
7794 (encode_designation_at_bol): Return new destination pointer. 5th
7795 arg DSTP is changed to DST.
7796 (encode_coding_iso2022, decode_coding_sjis_big5): Get a character
7797 from the source by ONE_MORE_CHAR. Don't handle the case of last
7798 block here.
7799 (DECODE_SJIS_BIG5_CHARACTER, ENCODE_SJIS_BIG5_CHARACTER): These
7800 macros deleted.
7801 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8,
7802 detect_coding_utf_16, detect_coding_ccl): Use ONE_MORE_BYTE and
7803 TWO_MORE_BYTES to fetch a byte from the source.
7804 (encode_eol): Pay attention to coding->src_multibyte.
7805 (detect_coding, detect_eol): Preserve members src_multibyte and
7806 dst_multibyte.
7807 (DECODING_BUFFER_MAG): Return 2 even for coding_type_raw_text.
7808 (encoding_buffer_size): Set magnification to 3 for all coding
7809 systems that require encoding.
7810 (ccl_coding_driver): For decoding, be sure that the result is
7811 valid multibyte sequence.
7812 (decode_coding): Initialize coding->errors and coding->result.
7813 For emacs-mule, call decode_coding_emacs_mule. For no-conversion
7814 and raw-text, always call decode_eol. Handle the case of last
7815 block here. If not coding->dst_multibyte, convert the resulting
7816 sequence to unibyte.
7817 (encode_coding): Initialize coding->errors and coding->result.
7818 For emacs-mule, call encode_coding_emacs_mule. For no-conversion
7819 and raw-text, always call encode_eol. Handle the case of last
7820 block here.
7821 (shrink_decoding_region, shrink_encoding_region): Detect cases
7822 that we can't skip data more rigidly.
7823 (code_convert_region): Setup src_multibyte and dst_multibyte
7824 members of coding. For decoding, if the buffer is multibyte,
7825 convert the source sequence to unibyte in advance. For encoding,
7826 if the buffer is multibyte, convert the resulting sequence to
7827 multibyte afterward.
7828 (run_pre_post_conversion_on_str): New function.
7829 (code_convert_string): Deleted and divided into the following two.
7830 (decode_coding_string, encode_coding_string): New functions.
7831 (code_convert_string1, code_convert_string_norecord): Call one of
7832 above.
7833 (Fdecode_sjis_char, Fdecode_big5_char): Use MAKE_CHAR instead of
7834 MAKE_NON_ASCII_CHAR.
7835 (Fset_terminal_coding_system_internal,
7836 Fset_safe_terminal_coding_system_internal): Setup src_multibyte
7837 and dst_multibyte members.
7838 (init_coding_once): Initialize iso_code_class with new enum
7839 ISO_control_0 and ISO_control_1.
7840
7841 * coding.h (enum iso_code_class_type): Member ISO_control_code is
7842 devided into ISO_control_0 and ISO_control_1.
7843 (struct coding_system): New members src_multibyte, dst_multibyte,
7844 errors, and result. Delete member fake_multibyte.
7845 (CODING_REQUIRE_DECODING): Return 1 if coding->dst_multibyte is
7846 nonzero.
7847 (CODING_REQUIRE_ENCODING): Return 1 if coding->src_multibyte is
7848 nonzero.
7849
7850 * data.c (Faref): Use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
7851 (Faset): Likewise.
7852
7853 * editfns.c (Fformat): Be sure to convert 8-bit characters to
7854 multibyte form.
7855 (Ftranspose_region) [BYTE_COMBINING_DEBUG]: Abort if byte
7856 combining occurs.
7857 (Ftranspose_region): Delete codes for handling byte combining.
7858
7859 * fileio.c (Finsert_file_contents): Setup src_multibyte and
7860 dst_multibyte members of coding. On handling REPLACE on unibyte
7861 buffer, convert the result of decode_coding to unibyte. On
7862 inserting into a mutibyte buffer, always call code_convert_region.
bd4bde7f 7863 (e_write): Setup coding->src_multibyte according to the
c9671f81
KH
7864 multibyteness of the source (buffer or string).
7865
7866 * fns.c (concat): Handle 8-bit characters correctly.
7867 (Fstring_as_unibyte): Be sure to make all 8-bit characters in
7868 unibyte in the result.
7869 (Fstring_as_multibyte): Be sure to make all 8-bit characters in
7870 valid multibyte form in the result.
7871 (map_char_table): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
7872 (Fbase64_encode_region, Fbase64_encode_string): If base64_encode_1
7873 return -1, signal an error.
7874 (base64_encode_1): New arg MULTIBYTE. Get each character by
7875 CHAR_STRING_AND_LENGTH if MULTIBYTE is nonzero. If a multibyte
7876 character is found, return -1.
7877 (Fbase64_decode_region): Delete codes for handling byte-combining.
7878 Treat each decoded byte as a unibyte character.
7879 (Fbase64_decode_string): Return unibyte string.
7880 (Fcompare_strings, concat, string_byte_to_char): Use
7881 FETCH_STRING_CHAR_ADVANCE_NO_CHECK instead off
7882 FETCH_STRING_CHAR_ADVANCE.
7883 (Fstring_lessp): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
7884 (mapcar1): If SEQ is string, always use FETCH_STRING_CHAR_ADVANCE.
7885
7886 * fontset.c (fontset_ref): Use SPLIT_CHAR instead of
7887 SPLIT_NON_ASCII_CHAR.
7888 (fontset_ref_via_base, fontset_set): Likewise
7889
7890 * insdel.c (adjust_markers_for_record_delete): Deleted.
7891 (adjust_markers_for_insert): Argument changed. Caller changed.
7892 (adjust_markers_for_replace): Likewise.
7893 (ADJUST_CHAR_POS, combine_bytes, byte_combining_error,
7894 CHECK_BYTE_COMBINING_FOR_INSERT): Deleted.
7895 (copy_text): Delete unused local varialbe c_save. For converting
7896 to multibyte, be sure to make all 8-bit characters in valid
7897 multibyte form.
7898 (count_size_as_multibyte): Handle 8-bit characters correctly.
7899 (insert_1_both, insert_from_string_1, insert_from_buffer_1,
7900 adjust_after_replace, replace_range, del_range_2)
7901 [BYTE_COMBINING_DEBUG]: Abort if byte combining occurs.
7902 (insert_1_both, insert_from_string_1, insert_from_buffer_1,
7903 adjust_after_replace, replace_range, del_range_2) Delete codes for
7904 handling byte combining.
7905 (adjust_before_replace): Deleted.
427ec082 7906
c9671f81
KH
7907 * keymap.c (Fsingle_key_description): Use SPLIT_CHAR instead of
7908 SPLIT_NON_ASCII_CHAR.
7909 (describe_vector): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
7910 (Faccessible_keymaps): Use FETCH_STRING_CHAR_ADVANCE
7911 unconditionally.
7912 (Fkey_description): Likewise.
7913
7914 * lread.c (read1): On reading multibyte string, be sure to make
7915 all 8-bit chararacters in valid multibyte form.
7916 (readchar): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
7917
7918 * print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE
7919 unconditionally.
7920
7921 * process.c (Fstart_process): GCPRO current_dir before calling
7922 Ffind_operation_coding_system. Encode arguments here.
7923 (create_process): Don't encode arguments here. Setup
7924 src_multibyte and dst_multibyte members of struct coding.
7925 (read_process_output): Setup src_multibyte and dst_multibyte
7926 members of struct coding. If the output is to multibyte buffer,
7927 always decode the output of the process. Adjust the
7928 representation of 8-bit characters to the multibyteness of the
7929 output.
7930 (send_process): Setup coding->src_multibyte according to the
7931 multibyteness of the source.
7932
7933 * search.c (wordify): Use FETCH_STRING_CHAR_ADVANCE
7934 unconditionally.
7935 (Freplace_match): Use FETCH_STRING_CHAR_ADVANCE and
7936 FETCH_STRING_CHAR_ADVANCE_NO_CHECK appropriately.
7937
7938 * term.c (produce_special_glyphs): Use CHAR_BYTES instead of
7939 CHAR_LEN.
7940
7941 * w16select.c (Fw16_set_clipboard_data): Setup members
7942 src_multibyte and dst_multibyte of coding. Adjusted for the
7943 change for find_charset_in_str.
7944 (Fw16_get_clipboard_data): Likewise.
7945
7946 * w32fns.c (w32_to_x_font): Setup members src_multibyte and
7947 dst_multibyte of coding.
7948 (x_to_w32_font): Likewise.
7949
7950 * w32select.c (Fw32_set_clipboard_data): Setup members
7951 src_multibyte and dst_multibyte of coding. Adjusted for the
7952 change for find_charset_in_str.
7953 (Fw32_get_clipboard_data): Likewise.
7954
7955 * xdisp.c (get_next_display_element): Handle 8-bit characters
7956 correctly.
7957 (next_element_from_display_vector): Use CHAR_BYTES instead of
7958 CHAR_LEN.
7959 (disp_char_vector): Use SPLIT_CHAR instead of
7960 SPLIT_NON_ASCII_CHAR.
7961
7962 * xselect.c (selection_data_to_lisp_data): Setup members
7963 src_multibyte and dst_multibyte of coding. Adjusted for the
7964 change for find_charset_in_str.
7965 (lisp_data_to_selection_data): Likewise.
7966
5f64c9e0
GM
79672000-05-19 Gerd Moellmann <gerd@gnu.org>
7968
2b63d473
GM
7969 * buffer.c (Fbury_buffer): Avoid trouble from burying a killed
7970 buffer.
7971
5f64c9e0
GM
7972 * dispextern.h (Vimage_types): Add extern declaration.
7973
7974 * xdisp.c (Vimage_types): Moved here from xfns.c.
7975 (syms_of_xdisp): Move `image-types' variable here from xfns.c.
7976
7977 * xfns.c (Vimages_types): Moved to xdisp.c.
7978 (syms_of_xfns): Move `image-types' to xdisp.c.
7979
7980 * w32fns.c (Vimage_types): Removed.
7981 (syms_of_w32fns): Remove `image-types'.
7982
813086ea
KH
79832000-05-18 Kenichi Handa <handa@etl.go.jp>
7984
7985 * fns.c (map_char_table): Pay attention to character number of
7986 charset. Check the validity of charset at the first level. For
7987 leaf nodes that has nil value, call C_FUNCTION or FUNCTION with
7988 the default value.
7989
7990 * fontset.c: Include "buffer.h".
7991 (fs_load_font): If the face has fontset, record the face ID in
7992 that fontset.
7993 (Finternal_char_font): New function.
7994 (accumulate_font_info): New function.
7995 (Ffontset_info): Rewritten for the new fontset implementation.
7996 (syms_of_fontset): Register Vdefault_fontset in the first element
7997 of Vfontset_table. Include Vdefault_fontset in
7998 Vfontset_alias_alist. Declare `internal-char-font' as a Lisp
7999 function.
8000
bdaebbf0
DL
80012000-05-16 Dave Love <fx@gnu.org>
8002
8003 * m/iris5d.h: Deleted -- unused.
8004
cb613bb8
GM
80052000-05-16 Gerd Moellmann <gerd@gnu.org>
8006
b15f3b77
GM
8007 * xdisp.c, w32.c, print.c, msdos.c, emacs.c: Use the term
8008 `invalid' instead of `illegal'.
8009
8010 * indent.c (Fmove_to_column): When ending within a tab, insert
8011 spaces first so that markers at the end of the tab get adjusted.
8012
835c1b36
GM
8013 * frame.c (frames_bury_buffer): Don't add a buffer to the frame's
8014 buffer list that wasn't selected in that frame.
8015
cb613bb8
GM
8016 * filelock.c (get_boot_time): To obtain an 8 char file name, which
8017 is needed on mescaline, use a 2 char prefix, and call
8018 make_temp_name with second arg non-zero.
8019
8020 * fileio.c (make_temp_name): New function, extracted from
8021 Fmake_temp_name.
8022 (Fmake_temp_name): Use it.
8023
f685bea9
EZ
80242000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
8025
8026 * window.c (coordinates_in_window): Subtract 1 when computing
8027 right_x.
8028
a1b8d58b
GM
80292000-05-15 Gerd Moellmann <gerd@gnu.org>
8030
8031 * Makefile.in (lisp): Add env.elc.
8032
8033 * callproc.c (Fgetenv_internal): Renamed from Fgetenv.
8034
a265079f
GM
80352000-05-12 Gerd Moellmann <gerd@gnu.org>
8036
8037 * search.c (Freplace_match): Handle case of `\N' in the
8038 replacement when there's no group N.
8039
da4496b6
GM
80402000-05-11 Gerd Moellmann <gerd@gnu.org>
8041
0ace421a
GM
8042 * xdisp.c (add_to_log): Don't pass the terminating NUL byte
8043 of the message to message_dolog.
8044
1172eb8d
GM
8045 * keyboard.c (read_char): Don't clear current message for help
8046 events; let the code handling help events handle this. Change
8047 code detecting help events that should be ignored.
8048
da4496b6
GM
8049 * xdisp.c (handle_single_display_prop): Don't try to set PT if
8050 we're interating over a string.
8051
0623e40f
DL
80522000-05-09 Dave Love <fx@gnu.org>
8053
8054 * fileio.c (Fwrite_region): If APPEND arg is an integer, seek to
8055 that offset before writing. Move gcpro region past call of
8056 Ffile_regular_p.
8057
bae2503b
DL
80582000-05-04 Dave Love <fx@gnu.org>
8059
8060 * buffer.c (syms_of_buffer) [auto-fill-function]: Doc fix.
8061
ec82fb2f
GM
80622000-05-04 Gerd Moellmann <gerd@gnu.org>
8063
8064 * insdel.c (insert_from_buffer_1): Adjust FROM position by number
8065 of inserted characters when BUF equals the current buffer, and PT
8066 is in front of or equal to FROM.
8067
cbf18892
GM
80682000-05-03 Gerd Moellmann <gerd@gnu.org>
8069
4ff40dd0
GM
8070 * xdisp.c (handle_single_display_prop): If display property value
8071 is invalid, or something not supported on the frame, restore
8072 iterator's position to what it was initially. Make sure to return
8073 0 for invalid and unsupported property values.
8074
cbf18892
GM
8075 * xterm.c (x_produce_glyphs) <composite chars>: Handle case
8076 that x_per_char_metric returns null.
8077
1b0672c3
GM
80782000-05-02 Gerd Moellmann <gerd@gnu.org>
8079
576da55d
GM
8080 * xterm.h (struct face): Add forward declaration.
8081 (struct image): Ditto.
8082 (image_ascent): Add prototype.
8083
8084 * xterm.c (x_produce_image_glyph, x_draw_image_foreground)
8085 (x_draw_image_relief, x_draw_image_foreground_1): Call function
8086 image_ascent instead of using IMAGE_ASCENT.
8087
8088 * dispextern.h (DEFAULT_IMAGE_HEIGHT): New macro.
8089 (IMAGE_ASCENT): Removed.
8090
8091 * xfns.c (Qcenter): New variable.
8092 (enum image_value_type): Add IMAGE_ASCENT_VALUE.
8093 (parse_image_spec): Handle IMAGE_ASCENT_VALUE.
8094 (image_ascent): New function.
8095 (lookup_image): Recognize `:ascent center'.
8096 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
8097 (tiff_format, gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
8098 (xbm_load): Don't set image's ascent here.
8099 (xbm_image_p, xpm_image_p, pbm_image_p, png_image_p)
8100 (jpeg_image_p, tiff_image_p, gif_image_p, gs_image_p): Don't
8101 check ascent values here.
8102 (Fimagep, Flookup_image [GLYPH_DEBUG]: Removed.
8103 (syms_of_xfns) [GLYPH_DEBUG]: Don't defsubr removed functions.
8104 (syms_of_xfns): Initialize Qcenter.
8105
1b0672c3
GM
8106 * eval.c (Fsignal): If lisp_eval_depth or spepdl_size are near
8107 to the limits, increase the limits.
8108
0d7811ed
KH
81092000-05-01 Kenichi Handa <handa@etl.go.jp>
8110
8111 * fontset.c (fs_load_font): By default, use 0x00..0x7f for ASCII.
8112 Check Vfont_encoding_alist against the full name of the opened
8113 font.
8114
a943a5ca
GM
81152000-04-28 Gerd Moellmann <gerd@gnu.org>
8116
8117 * xdisp.c (make_cursor_line_fully_visible): Handle case of rows
8118 taller than the window.
8119
5dba1e29
KH
81202000-04-28 Kenichi Handa <handa@etl.go.jp>
8121
8122 * xfaces.c (realize_x_face): Fix the argument of the second
8123 xassert. BASE_FACE may not be a face for ASCII.
8124
353964e3
GM
81252000-04-27 Gerd Moellmann <gerd@gnu.org>
8126
c76e04a8
GM
8127 * print.c (print_object): Treat print-length < 0 as nil.
8128
8129 * Makefile.in (termcapobj): Don't use TERMCAP_OBJ.
8130
8131 * s/freebsd.h (TERMCAP_OBJ): Removed.
8132 (LIBS_TERMCAP): Don't define for __FreeBSD_version >= 400000.
8133
8134 * lread.c (read1): Don't treat period followed by certain
8135 characters as symbol start.
8136
8137 * xfns.c (slurp_file): New function.
8138 (xbm_image_p): Handle case of in-memory XBM files.
8139 (xbm_scan): Rewritten to work on memory buffers instead of files.
8140 (xbm_read_bitmap_data): Renamed from xbm_read_bitmap_file_data.
8141 Work on memory buffers instead of files. If DATA is null test
8142 if buffer looks like an in-memory XBM file.
8143 (xbm_load_image): Renamed from xbm_load_image_file. Work on
8144 memory buffers instead of files.
8145 (xbm_file_p): New function.
8146 (xbm_load): Accept :data DATA where DATA is an in-memory XBM file.
8147
353964e3
GM
8148 * lread.c (end_of_file_error): New function.
8149 (read1): Call it instead of signaling `end-of-file' directly.
8150
427ec082 8151 * print.c (print_error_message): Print data of `end-of-file'
353964e3
GM
8152 with Fprinc instead of Fprin1.
8153
24d744ac
KR
81542000-04-26 Ken Raeburn <raeburn@gnu.org>
8155
8156 * window.c (freeze_window_start): Check that minibuffer scroll
8157 window isn't nil before extracting the window structure pointer
8158 from it.
8159
8160 * undo.c (record_delete): If we hit the end of the undo list, stop
8161 picking elements apart.
8162
7464346d
GM
81632000-04-26 Gerd Moellmann <gerd@gnu.org>
8164
8165 * xdisp.c (display_line): If lines are continued, restore
8166 iterator's ascent/descent information to the values before the
8167 first glyph not fitting on the line.
8168
612839b6
GM
81692000-04-25 Gerd Moellmann <gerd@gnu.org>
8170
8171 * xdisp.c (try_window_id) <all changes above window start>: Adjust
8172 positions in glyph matrix. Don't compute new window end
8173 positions.
8174
8175 * dispnew.c (increment_matrix_positions): Renamed from
8176 increment_glyph_matrix_buffer_positions.
8177 (increment_row_positions): Renamed from
8178 increment_glyph_row_buffer_positions.
8179
8180 * dispextern.h: Change names of renamed functions from dispnew.c
8181 in prototypes.
8182
cc181e95
GM
81832000-04-24 Gerd Moellmann <gerd@gnu.org>
8184
abfcc168
GM
8185 * fileio.c (Fdo_auto_save): Create directories for auto-save
8186 list file if necessary.
8187
cc181e95
GM
8188 * xdisp.c (init_iterator): Set iterator's extra_line_spacing
8189 from buffer or frame.
8190 (automatic_hscrolling_p): New variable.
8191 (hscroll_windows): Scroll windows horizontally only if automatic
8192 hscrolling is allowed.
8193 (syms_of_xdisp): New variable `automatic-hscrolling'.
8194
8195 * frame.h (struct frame): Add member extra_line_spacing.
8196
8197 * xfns.c (x_set_line_spacing): New function.
8198 (Fx_create_frame): Set line spacing from resources.
8199 (Qline_spacing): New variable.
8200 (syms_of_xfns): Initialize Qline_spacing.
427ec082 8201
cc181e95
GM
8202 * emacs.c (USAGE2): Add `--line-spacing' and `-lsp'.
8203
8204 * buffer.c (init_buffer_once): Handle extra_line_spacing.
8205 (syms_of_buffer): Add `default-line-spacing' and `line-spacing'.
abfcc168 8206 (reset_buffer): Don't initialize extra2 and extra3. Initialize
cc181e95
GM
8207 extra_line_spacing from default value.
8208 (init_buffer_once): Initialize default value of extra_line_spacing.
8209
8210 * buffer.h (struct buffer): Add extra_line_spacing, remove extra2
8211 and extra3.
8212
8213 * xterm.c (x_produce_glyphs): Remove reference to struct it's
8214 prompt_width. Add extra line spacing.
8215
8216 * term.c (produce_glyphs): Remove reference to struct it's
8217 prompt_width.
8218
8219 * dispextern.h (struct it): Remove member prompt_width, add
8220 extra_line_spacing.
8221
58827478
GM
82222000-04-22 Gerd Moellmann <gerd@gnu.org>
8223
8224 * dispnew.c (update_frame_line): When writing a whole line, make
8225 sure cursor is in the right row afterwards, otherwise a use of
8226 capability `ch' in cmgoto might leave the cursor in the row below.
8227
25a87f42
GM
82282000-04-21 Gerd Moellmann <gerd@gnu.org>
8229
8230 * lisp.h (struct Lisp_Buffer_Cons): Remove.
8231
8232 * keyboard.c (timer_check): Fix typo in comment.
8233
54edf5c2
KH
82342000-04-21 Kenichi Handa <handa@etl.go.jp>
8235
8236 * fontset.c (Fset_fontset_font): Fix docstring. Local variable
8237 name change: ch -> character.
8238
3a64eef5
GM
82392000-04-20 Gerd Moellmann <gerd@gnu.org>
8240
8241 * keyboard.c (echo_message_buffer): New variable.
8242 (echo_now): Set echo_message_buffer to the echo area buffer used
8243 to display the echo.
8244 (cancel_echoing): Reset echo_message_buffer to nil.
8245 (read_char): Code rewritten that handles canceling an echo or
8246 echoing a dash, respectively.
8247
8248 * fileio.c (Ffile_writable_p) [WINDOWSNT]: Return nil if parent
8249 directory doesn't exist.
8250
6142fdcb
DL
82512000-04-19 Dave Love <fx@gnu.org>
8252
8253 * fns.c (syms_of_fns): Defsubr mapc.
a9cacab7
DL
8254 (concat): Don't allow numeric args.
8255 (Fconcat): Doc change.
6142fdcb 8256
ac6b5352
SM
82572000-04-19 Stefan Monnier <monnier@cs.yale.edu>
8258
8259 * regex.c (re_match_2_internal): Don't shorten the strings anymore,
8260 instead define end_match(1|2) more carefully.
8261 Use GET_CHAR_BEFORE_2 for `begline'.
8262
cb9215e4
GM
82632000-04-19 Gerd Moellmann <gerd@gnu.org>
8264
5e3dac3f
GM
8265 * frame.h (SELECTED_FRAME): Change definition to compile cleanly
8266 on 64-bit systems where NULL is defined as `0'.
8267
8268 * xdisp.c (with_echo_area_buffer): Add more `int' parameters for
8269 the `variable argument list' to make it work on Alpha.
8270
cb9215e4
GM
8271 * m/alpha.h (_LP64) [!_LP64]: Define.
8272 (ORDINARY_LINK): Define for NetBSD.
8273
8274 * m/macppc.h (ORDINARY_LINK): Define for NetBSD.
427ec082 8275
f532dca0
DL
82762000-04-19 Dave Love <fx@gnu.org>
8277
c750667e
DL
8278 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Revert 2000-04-14
8279 change.
8280
8281 * Makefile.in (LIBS): Don't use.
8282 (GETLOADAVG_OBJ): Define again.
8283 (otherobj): Add GETLOADAVG_OBJ.
8284
f532dca0
DL
8285 * buffer.c (Fmake_indirect_buffer): Escape newline in doc.
8286
1c7e22fd
GM
82872000-04-18 Gerd Moellmann <gerd@gnu.org>
8288
f6d3257b
GM
8289 * lread.c (read_filtered_event): Cancel and start busy cursor.
8290
427ec082 8291 * xterm.c (x_produce_glyphs) <ASCII chars>: Take into account
1c7e22fd
GM
8292 that the per-character metrics may be null.
8293
e10f64e7
GM
82942000-04-17 Gerd Moellmann <gerd@gnu.org>
8295
0daee095
GM
8296 * buffer.c (clone_per_buffer_values): New function.
8297 (Fmake_indirect_buffer): Add optional argument CLONE. Call
8298 clone_per_buffer_values if CLONE is not nil.
8299
e10f64e7
GM
8300 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
8301
38687d43
DL
83022000-04-16 Dave Love <fx@gnu.org>
8303
8304 * Makefile.in: Remove obsolete localcpp stuff.
8305 (GETLOADAVG_OBJ): Don't define.
8306 (obj): Move LIBOBJS...
8307 (otherobj): ... to here.
8308 (MSDOS_OBJ): Convert to make variable -- preprocessing zapped
8309 whitespace-only lines after the continuation (Irix).
8310
c21c7262
GM
83112000-04-14 Gerd Moellmann <gerd@gnu.org>
8312
8313 * xfns.c (xpm_load) [DEBUG_X_COLORS]: Register colors.
8314
8315 * s/freebsd.h (LD_SWITCH_SYSTEM): Add `-L /usr/local/lib'.
8316
314767c0
DL
83172000-04-14 Dave Love <fx@gnu.org>
8318
8319 * s/aix3-1.h, s/bsd4-2.h, s/bsd4-3.h, s/cxux.h, s/dgux.h, s/gnu.h:
8320 * s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/rtu.h:
8321 * s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h, s/usg5-2.h:
8322 * s/usg5-3.h, s/xenix.h, s/umax.h: Don't define autoconfiscated
8323 NLIST_STRUCT.
8324
8325 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Don't define
8326 autoconfiscated HAVE_GETLOADAVG.
8327
8328 * s/nextstep.h, s/sco4.h, s/sco5.h: Don't define autoconfiscated
8329 BROKEN_MKTIME.
8330
a2522dca
GM
83312000-04-14 Gerd Moellmann <gerd@gnu.org>
8332
8333 * filelock.c (MAKE_LOCK_NAME): Allocate 2 more bytes.
8334 (fill_in_lock_file_name): Avoid existing files that aren't
8335 links.
8336
33744b5d
DL
83372000-04-14 Dave Love <fx@gnu.org>
8338
c21c7262 8339 * Makefile.in (LIBS, LIBOBJS): New variable.
33744b5d
DL
8340 (INTERVAL_SRC): Convert to make variable.
8341 (INTERVAL_OBJ, MKTIME_OBJ, FLOAT_SUPPORT, FACE_SUPPORT)
8342 (HAVE_X_WINDOWS, OBJECTS_SYSTEM): Remove.
8343 (obj): Substitute INTERVAL_OBJ, add MKTIME_OBJ, GETLOADAVG_OBJ and
8344 add LIBOBJS.
8345 (SOME_MACHINE_OBJECTS): Remove interval stuff.
8346 (lisp): Substitute FACE_SUPPORT, FLOAT_SUP.
8347 (shortlisp): Add facemenu, float-sup, frame.
8348 (SOME_MACHINE_LISP): Remove them from here.
8349 (LIBES): Change unused LDLIBS to autoconf LIBS.
8350
8351 * config.in: Add BROKEN_MKTIME, NLIST_STRUCT, NLIST_NAME_UNION.
8352
9d3d5916
KH
83532000-04-14 Kenichi Handa <handa@etl.go.jp>
8354
8355 * composite.c (update_compositions): If FROM and TO are not in a
8356 valid range, do nothing.
8357
198e3c7a
GM
83582000-04-13 Gerd Moellmann <gerd@gnu.org>
8359
8360 * tparam.c (tparam1): Abort when encountering an unknown
8361 `%'-specifier.
8362
8363 * s/freebsd.h (TERMCAP_OBJ) [__FreeBSD__ >= 4]: Define as
8364 terminfo.o.
8365
8366 * Makefile.in (termcapobj) [LIBS_TERMCAP && TERMCAP_OBJ]: Define
8367 as TERMCAP_OBJ.
8368
055a28c9
EZ
83692000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
8370
8371 * fileio.c (a_write): Remove redundant semi-colons.
8372 (e_write): Return -1 if failed to write all the data.
8373 This fixes the changes made at 1999-12-15.
8374
f5c75033
DL
83752000-04-12 Dave Love <fx@gnu.org>
8376
8377 * fns.c (mapcar1): Test for null vals to support mapc.
8378 (Fmapc): New function.
8379
0c3cfc51
EZ
83802000-04-12 Eli Zaretskii <eliz@is.elta.co.il>
8381
8382 * msdos.c (NUM_MOUSE_BUTTONS): Define.
8383 (IT_frame_up_to_date): Support the buffer local value of
8384 cursor-type, if defined.
8385
33465a31
DL
83862000-04-10 Dave Love <fx@gnu.org>
8387
8388 * editfns.c (preceding-char, following-char): Doc fix.
8389
6ed56568
KR
83902000-04-10 Ken Raeburn <raeburn@gnu.org>
8391
8392 * Makefile.in (temacs): Revert 2000-03-12 change.
8393
7cf80d4e
JR
83942000-04-10 Jason Rumney <jasonr@gnu.org>
8395
8396 * xfaces.c (realize_face): Change FRAME_X_P to FRAME_WINDOW_P.
8397
34f3f342
GM
83982000-04-10 Gerd Moellmann <gerd@gnu.org>
8399
1a1b1895
GM
8400 * xdisp.c (setup_echo_area_for_printing): Choose an echo
8401 area buffer, if it's not set up yet.
8402
34f3f342
GM
8403 * indent.c (compute_motion): Set immediate_quit.
8404
be0dbdab
GM
84052000-04-09 Gerd Moellmann <gerd@gnu.org>
8406
c45be9ac
GM
8407 * xfaces.c (tty_suppress_bold_inverse_default_colors_p): New
8408 variable.
8409 (realize_tty_face): Suppress boldness if colors are the inverse of
8410 the default colors, and tty_suppress_bold_inverse_default_colors_p
8411 is set.
8412 (Ftty_suppress_bold_inverse_default_colors): New function.
8413 (syms_of_xfaces): Defsubr it.
8414
be0dbdab
GM
8415 * buffer.c (Frestore_buffer_modified_p): New function.
8416 (syms_of_buffer): Defsubr it.
8417
e8413c3b
KR
84182000-04-08 Ken Raeburn <raeburn@gnu.org>
8419
87f67317
KR
8420 * charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a
8421 charset id (int) argument, not a charset (Lisp_Object).
8422
e8413c3b
KR
8423 * coding.h (code_convert_string): Declare.
8424 * coding.c (code_convert_string_norecord): Pass an int, not a lisp
8425 object, as the fourth argument to code_convert_string.
8426
8427 * fontset.c (make_fontset_for_ascii_face): Use XINT on return
8428 value.
8429 (Fset_fontset_font): Use EQ to compare lisp objects.
8430
7c752c80
KR
84312000-04-05 Ken Raeburn <raeburn@gnu.org>
8432
c0333abc
KR
8433 * intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for
8434 a pointer that looks like a lisp object.
8435 (SET_INTERVAL_OBJECT): Don't explicitly compare the object with
8436 zero, instead see whether it's an integer object, since they can't
8437 have intervals.
8438 (GET_INTERVAL_OBJECT): Simply assign to the destination.
8439
7c752c80
KR
8440 * dispnew.c (allocate_matrices_for_frame_redisplay,
8441 direct_output_forward_char): Use X(U)INT and make_number as needed
8442 to convert between (unsigned) int values and lisp integers.
8443 * keyboard.c (read_key_sequence): Likewise.
8444 * lread.c (substitute_object_recurse): Likewise.
8445 * fns.c (concat, hash_lookup, hash_remove): Likewise.
8446 * minibuf.c (do_completion, Fminibuffer_complete_word,
8447 Fminibuffer_completion_help): Likewise.
8448 * term.c (produce_special_glyphs): Likewise.
8449
8450 * fileio.c (Fwrite_region): Use EQ when comparing lisp objects.
8451 * print.c (print_preprocess, print_object): Likewise.
8452
8453 * search.c (compile_pattern): Use NILP when checking for nil.
8454
74e49b38
KR
8455 * lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 &&
8456 __OPTIMIZE__]: Provide a GNU C macro version that handles
8457 lisp-object unions.
8458 (XSET) [!NO_UNION_TYPE]: Set the value field first, then the type
8459 field, to better cope with ENABLE_CHECKING and calls that modify a
8460 Lisp_Object using its old value.
8461
685e5ed2
GM
84622000-04-04 Gerd Moellmann <gerd@gnu.org>
8463
c407c570
GM
8464 * window.c (compare_window_configurations): Signal an error
8465 if parameters C1 or C2 aren't window configurations.
8466
685e5ed2
GM
8467 * bytecode.c (Fbyte_code): Add a bunch of BEFORE_POTENTIAL_GC/
8468 AFTER_POTENTIAL_GC calls around calls to functions that can
8469 signal an error and thus invoke the debugger.
8470
587a49ab
GM
84712000-04-03 Gerd Moellmann <gerd@gnu.org>
8472
62f20204
GM
8473 * fns.c (Fbase64_decode_region, Fbase64_decode_string): Signal
8474 an error if decoding fails.
8475
587a49ab
GM
8476 * keyboard.c (lispy_mouse_names): Variable removed.
8477 (Vlispy_mouse_stem): New variable.
8478 (syms_of_keyboard): Initialize Vlispy_mouse_stem.
8479 (make_lispy_event) <mouse_click, scroll_bar_click>: Don't abort
8480 for any mouse button number. Increase size of mouse_syms and
8481 button_down_location as needed. Call modify_event_symbol with
8482 different arguments.
8483 (make_lispy_event) <scroll_bar_click> [USE_TOOLKIT_SCROLL_BARS]:
8484 Call modify_event_symbol with different arguments.
8485 (make_lispy_event) <w32_scroll_bar_click> [WINDOWSNT]: Don't abort
8486 for any button number. Call modify_event_symbol with different
8487 arguments.
8488 (modify_event_symbol): Rename NAME_ALIST to NAME_ALIST_OR_STEM.
8489 Accept a string for NAME_ALIST_OR_STEM.
8490
8491 * lisp.h (larger_vector): Add prototype.
8492
8493 * fns.c (larger_vector): Make externally visible.
8494
8495 * termhooks.h (NUM_MOUSE_BUTTONS): Removed.
8496
2d1675e4
SM
84972000-04-02 Stefan Monnier <monnier@cs.yale.edu>
8498
8499 * regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
8500 (RE_MULTIBYTE_P, RE_STRING_CHAR_AND_LENGTH): New macros.
8501 (GET_CHAR_BEFORE_2): Moved from charset.h plus fixed minor bug when
8502 we are between str1 and str2.
8503 (MAX_MULTIBYTE_LENGTH, CHAR_STRING) [!emacs]: Provide trivial default.
8504 (PATFETCH): Use `TRANSLATE'.
8505 (PATFETCH_RAW): Fetch multibyte char if applicable.
8506 (PATUNFETCH): Remove.
8507 (regex_compile): Rely on PATFETCH to do most of the multibyte magic.
8508 When writing a char, write it directly into the pattern buffer rather
8509 than going needlessly through a temp char-array.
8510 (re_match_2_internal): Similarly, rely on RE_STRING_CHAR to do the
8511 multibyte magic and remove the useless `#ifdef emacs'.
8512 (bcmp_translate): Don't compare as multibyte chars when in a unibyte
8513 buffer.
8514
8515 * regex.h (struct re_pattern_buffer): Make field `multibyte'
8516 conditional on `emacs'.
8517
8518 * charset.h (GET_CHAR_BEFORE_2): Moved to regex.c.
8519
cc2d8c6b
KR
85202000-04-01 Ken Raeburn <raeburn@gnu.org>
8521
8522 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand
8523 non-union-type versions of XMARK and friends here, because XMARK
8524 and friends won't work on an integer field if NO_UNION_TYPE is not
8525 defined.
8526 (make_number): Define as a function if it's not defined as a
8527 macro.
8528
09654086
KR
8529 * composite.c (run_composite_function): Use NILP when checking for
8530 nil.
8531 (syms_of_composite): Delete local var NARGS, pass an int as first
8532 argument to Fmake_hash_table.
8533
2387b382
KR
8534 * editfns.c (text_property_stickiness): Use NILP to test
8535 Lisp_Object boolean value.
8536 (Fmessage_or_box): Don't use NILP to test int variable.
c01fbf95
KR
8537 (Fformat): Use a temporary variable to avoid ENABLE_CHECKING
8538 problems reading from and changing the same lisp value in an
8539 XSETSTRING call.
8540
27660e89
GM
85412000-04-01 Gerd Moellmann <gerd@gnu.org>
8542
8543 * term.c (TN_no_color_video): New variable.
8544 (term_init): Intitialize TN_no_color_video.
8545 (enum no_color_bit): New enumeration.
8546 (MAY_USE_WITH_COLORS_P): New macro.
8547 (turn_on_face): Use it to determine if attributes may be used
8548 combined with colors.
8549
3578db3c
KR
85502000-04-01 Ken Raeburn <raeburn@gnu.org>
8551
8552 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
8553 with int lvalues via casts; instead, just yield lisp object
8554 lvalues.
8555 (enlarge_window): Variable sizep now points to Lisp_Object. Use
8556 proper accessor macros.
8557 (shrink_window_lowest_first): w->top is Lisp_Object; use XINT.
8558 (grow_mini_window): Fix typo getting int value of root->height.
8559
6fc556fd
KR
8560 * xdisp.c (compute_string_pos): Fix order of arguments to
8561 string_pos_nchars_ahead.
8562 (handle_fontified_prop, add_to_log): Pass int, not Lisp_Object, as
8563 count arg to variable-arg routines like Frun_hook_with_args and
8564 Fformat.
587a49ab
GM
8565 (back_to_previous_visible_line_start)
8566 (build_desired_tool_bar_string): Pass Lisp_Object, not int, to
6fc556fd
KR
8567 fixed-arg routines like Fget_char_property and Fmake_string.
8568 (reconsider_clip_changes): Use XINT when comparing integer lisp
8569 objects, or passing them as int arguments.
587a49ab
GM
8570 (mark_window_display_accurate, insert_left_trunc_glyphs)
8571 (append_space, extend_face_to_end_of_line): Use make_number when
6fc556fd
KR
8572 storing or passing integer values as lisp objects.
8573 (set_cursor_from_row, highlight_trailing_whitespace): Use
8574 INTEGERP, not implicit test against zero, for glyph object.
8575 (try_window_id): Don't use make_number when we want an int value.
8576
8577 * xfaces.c (xlfd_symbolic_value): Make last argument a
8578 Lisp_Object, to be consistent with callers.
8579 (Fbitmap_spec_p): Use XINT to get numeric value of height.
8580 (lface_hash): Apply XFASTINT to lisp values before folding in.
8581
8582 * xfns.c (Fx_show_tip): Use make_number to get lisp objects to
8583 fill in window width and height. Pass an int, not a lisp object,
8584 as first arg to Finsert.
8585
6e7b2457
GM
85862000-04-01 Gerd Moellmann <gerd@gnu.org>
8587
610d841e
GM
8588 * xfaces.c (realize_basic_faces): Block input while realizing
8589 the faces.
8590
6e7b2457
GM
8591 * keyboard.c (lispy_mouse_names): Add additional mouse names.
8592
8593 * termhooks.h (NUM_MOUSE_BUTTONS): Increase to 15.
8594
aa110c0c
GM
85952000-03-31 Gerd Moellmann <gerd@gnu.org>
8596
8597 * xterm.c (x_produce_glyphs): When displaying unibyte text
610d841e 8598 or ASCII, handle case that per-char metric is null.
aa110c0c 8599
8801a864
KR
86002000-03-30 Ken Raeburn <raeburn@gnu.org>
8601
c6129d7e
KR
8602 * lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
8603
8801a864
KR
8604 * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW,
8605 XSUBR, XBUFFER): Verify correct object type before returning
8606 pointer, using eassert.
8607 * frame.h (XFRAME): Likewise.
8608
8609 * buffer.c (Frename_buffer, Fset_buffer_multibyte,
8610 swap_out_buffer_local_variables, Fmove_overlay): Don't apply
8611 XSYMBOL, XBUFFER, etc, to values that may be nil or of the wrong
8612 type.
8613 * data.c (set_internal): Likewise.
8614 * dispextern.h (WINDOW_WANTS_MODELINE_P,
8615 WINDOW_WANTS_HEADER_LINE_P): Likewise.
8616 * fileio.c (auto_save_1): Likewise.
8617 * insdel.c (check_markers): Likewise.
8618 * marker.c (buf_charpos_to_bytepos, unchain_marker): Likewise.
8619 * undo.c (record_insert): Likewise.
8620 * vmsproc.c (child_sig): Likewise.
8621 * window.c (unshow_buffer, window_loop): Likewise.
8622 * xterm.c (x_erase_phys_cursor): Likewise.
8623
8e7af858
GM
86242000-03-30 Gerd Moellmann <gerd@gnu.org>
8625
8626 * xfns.c (free_image_cache): Free the cache structure itself
8627 last, after all its members have been freed.
8628
8629 * lisp.h (xstrdup): Add prototype.
8630
8631 * alloc.c (xstrdup): Moved here from xfaces.c.
8632 (allocating_for_lisp): Variable removed.
8633 (lisp_malloc): Block input around the calls to malloc and
8634 mem_insert.
8635
8636 * xfaces.c (realize_tty_face): Use find_symbol_value instead
8637 of Fsymbol_value.
8638 (xstrdup): Moved to alloc.c.
8639
e0b8c689
KR
86402000-03-29 Ken Raeburn <raeburn@gnu.org>
8641
b96f9fb7
KR
8642 * scroll.c (CHECK_BOUNDS): Renamed from CHECK.
8643
8644 * emacs.c (main): Fix sense of no-loadup test.
8645
e0b8c689
KR
8646 * config.in (ENABLE_CHECKING): Undef.
8647
8648 * lisp.h (struct interval): Replace "parent" field with a union of
8649 interval pointer and Lisp_Object; add new bitfield to use as
8650 discriminant. Change other flag fields to bitfields.
8651 (CHECK): New macro for consistency checking. If ENABLE_CHECKING
8652 is defined and the supplied test fails, print a message and
8653 abort.
8654 (eassert): New macro. Use CHECK to provide an assert-like
8655 facility.
8656
8657 * intervals.h (NULL_INTERVAL_P): Now applies only to real interval
8658 pointers; abort if the value looks like a lisp object.
8659 (NULL_INTERVAL_P, NULL_PARENT, HAS_PARENT, HAS_OBJECT, SET_PARENT,
8660 SET_OBJECT, INTERVAL_PARENT, GET_INTERVAL_OBJECT, COPY_PARENT):
8661 Modify for new interval parent definition.
8662
8663 * alloc.c (mark_interval_tree, MARK_INTERVAL_TREE,
8664 UNMARK_BALANCE_INTERVALS): Update references that need an
8665 addressable lisp object in the interval structure.
8666 (die): New function.
8667 (suppress_checking): New variable.
8668
8669 * intervals.c (interval_start_pos): Just return 0 if there's no
8670 parent object.
8671
f83c5440
GM
86722000-03-29 Gerd Moellmann <gerd@gnu.org>
8673
8674 * lread.c (read1): Accept `.' (period) as symbol start like in CL
8675 and earlier Emacs versions.
8676
8677 * keyboard.c (Ftop_level): Cancel busy-cursor.
8678
8679 * eval.c (call_debugger): Cancel busy-cursor.
8680
fdce64ff
KH
86812000-03-29 Kenichi Handa <handa@etl.go.jp>
8682
8683 * search.c (Freplace_match): Adjust multibyteness of the current
8684 buffer and NEWTEXT. Free allocated memory before signaling an
8685 error.
8686
f6a3f532
SM
86872000-03-28 Stefan Monnier <monnier@cs.yale.edu>
8688
8689 * regex.c (analyse_first): New function obtained by ripping out most
8690 of re_compile_fastmap and generalizing it a little bit so that it
8691 can also just return whether a given (sub)pattern can match the empty
8692 string or not.
8693 (regex_compile): Use `analyse_first' to decide whether the loop-check
8694 needs to be done or not for *, +, *? and +? (the loop check is costly
8695 for non-greedy repetition).
8696 (re_compile_fastmap): Delegate the actual work to `analyse_first'.
8697
e9b309ac
DL
86982000-03-28 Dave Love <fx@gnu.org>
8699
bb15bd9a
DL
8700 * s/gnu-linux.h (GC_SETJMP_WORKS): Define for i386, sparc, m68k,
8701 alpha.
8702
e9b309ac
DL
8703 * alloc.c: Include stdio.h. Test STDC_HEADERS, not __STDC__.
8704
ed0767d8
SM
87052000-03-27 Stefan Monnier <monnier@cs.yale.edu>
8706
8707 * regex.c (REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as
8708 an expression.
8709 (enum re_opcode_t): Update description of succeed_n.
8710 (PATFETCH): Always define.
8711 (regex_compile): Use lookahead rather than PATUNFETCH (for repetition
8712 operators, char classes, shy-groups and intervals).
8713 Optimize special cases of intervals so as to only use succeed_n and
8714 jump_n when really needed.
8715 (re_compile_fastmap): Simplify handling of jump_n and succeed_n now
8716 that we don't have to handle the special cases any more.
8717 Simplify on_failure_jump handling as well.
8718
e11e7e46
JR
87192000-03-28 Jason Rumney <jasonr@gnu.org>
8720
8721 * lread.c (Fload): Move safe_p definition to above #ifdef DOS_NT.
8722
88faab89
GM
87232000-03-27 Gerd Moellmann <gerd@gnu.org>
8724
182ff242
GM
8725 * s/freebsd.h (GC_SETJMP_WORKS): Define.
8726
8727 * s/msdos.h (GC_SETJMP_WORKS): Define.
427ec082 8728
182ff242
GM
8729 * alloc.c (mark_maybe_object): New function.
8730 (mark_memory): Use it.
8731 (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK): New macros.
8732 (setjmp_tested_p, longjmp_done): New variables.
8733 (test_setjmp): New function.
8734 (mark_stack) [!GC_SETJMP_WORKS]: Call test_setjmp.
8735 (init_alloc): Initialize setjmp_tested_p and longjmp_done.
8736
c1005d06
GM
8737 * xdisp.c (face_before_or_after_it_pos): Pass multibyteness
8738 to DEC_TEXT_POS and INC_TEXT_POS.
8739
8740 * dispnew.c (direct_output_for_insert): Use DEC_TEXT_POS
8741 with parameter MULTIBYTE_P.
8742
427ec082 8743 * dispextern.h (INC_TEXT_POS, DEC_TEXT_POS): Add parameter
c1005d06
GM
8744 MULTIBYTE_P.
8745
7439e5b9 8746 * editfns.c (Fsubst_char_in_region): Don't use INC_POS in unibyte
182ff242
GM
8747 buffers because it looks for multibyte character byte sequences
8748 which don't exist in unibyte text.
7439e5b9 8749
d9c545da
GM
8750 * xterm.h (x_specified_cursor_type, x_copy_color): Add prototypes.
8751
11fd416e 8752 * xfaces.c (register_color, unregister_color, unregister_colors)
d9c545da
GM
8753 [DEBUG_X_COLORS]: New functions.
8754 (x_free_colors) [DEBUG_X_COLORS]: Unregister colors.
8755
8756 * xfns.c (x_set_cursor_color): Get color reference counts right.
8757
8758 * xterm.c (x_copy_color): New function.
8759 (x_alloc_nearest_color) [DEBUG_X_COLORS]: Call register_color.
8760
8761 * buffer.h (MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
8762 (PER_BUFFER_VAR_OFFSET): Renamed from BUFFER_LOCAL_VAR_OFFSET.
8763 (PER_BUFFER_VAR_IDX): Renamed from BUFFER_LOCAL_VAR_IDX.
8764 (PER_BUFFER_VALUE_P): Renamed from BUFFER_HAS_LOCAL_VALUE_P.
8765 (SET_PER_BUFFER_VALUE_P): Renamed from SET_BUFFER_HAS_LOCAL_VALUE_P.
8766 (PER_BUFFER_IDX): Renamed from BUFFER_LOCAL_IDX.
8767 (PER_BUFFER_DEFAULT): Renamed from BUFFER_LOCAL_DEFAULT_VALUE.
8768 (PER_BUFFER_VALUE): Renamed from BUFFER_LOCAL_VALUE.
8769 (PER_BUFFER_SYMBOL): Renamed from BUFFER_LOCAL_SYMBOL.
8770 (PER_BUFFER_TYPE): Renamed from BUFFER_LOCAL_TYPE.
8771
11fd416e
GM
8772 * category.c, data.c, syntax.c, print.c, lread.c: Use new macro
8773 names for handling per-buffer variables.
d9c545da
GM
8774
8775 * buffer.c (buffer_permanent_local_flags): Use MAX_PER_BUFFER_VARS
8776 instead of MAX_BUFFER_LOCAL_VARS.
8777 (last_per_buffer_idx): Renamed from max_buffer_local_idx.
8778
8779 * xfaces.c (lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
8780
88faab89
GM
8781 * xfns.c (x_specified_cursor_type): New function.
8782 (x_set_cursor_type): Use it.
8783
8784 * buffer.h (struct buffer): Add cursor_type.
8785
d80f42b7
SM
87862000-03-26 Stefan Monnier <monnier@cs.yale.edu>
8787
8788 * regex.c (enum re_opcode_t): New opcode on_failure_jump_nastyloop.
427ec082 8789 (print_partial_compiled_pattern, re_compile_fastmap): Handle new
88faab89 8790 opcode.
d80f42b7
SM
8791 (regex_compile): Use on_failure_jump_nastyloop for non-greedy loops.
8792 (re_match_2_internal): Add code for on_failure_jump_nastyloop when
8793 executing it as well as when popping it off the stack to find infinite
8794 loops in non-greedy repetition operators.
8795
89e80928
GM
87962000-03-26 Gerd Moellmann <gerd@gnu.org>
8797
3d4ff2dd
GM
8798 * doc.c (Qfunction_documentation): New variable.
8799 (syms_of_doc): Initialize Qfunction_documentation.
8800 (Fdocumentation): If FUNCTION is a symbol with non-nil
8801 `function-documentation' property, return a documentation derived
8802 from that.
8803
bd96bd79
GM
8804 * buffer.c (syms_of_buffer): Add default-cursor-type.
8805 (init_buffer_once): Don't let cursor_type have a local value
8806 in every buffer.
8807
19d1bc27
GM
8808 * xterm.c (x_display_and_set_cursor): Choose cursor depending
8809 on buffer-local value of cursor_type.
8810 (x_draw_bar_cursor): Add parameter WIDTH.
8811
8812 * buffer.c (reset_buffer): Initialize buffer's cursor_type.
8813 (init_buffer_once): Set default cursor_type value to t.
8814 Mark cursor_type as local everywhere.
8815 (syms_of_buffer): New per-buffer variable cursor-type.
8816
89e80928
GM
8817 * buffer.h (struct buffer): Remove member local_var_flags,
8818 add local_flags.
8819 (MAX_BUFFER_LOCAL_VARS): New macro.
8820 (BUFFER_LOCAL_VAR_OFFSET, BUFFER_LOCAL_VAR_IDX)
8821 (BUFFER_HAS_LOCAL_VALUE_P, SET_BUFFER_HAS_LOCAL_VALUE_P)
8822 (BUFFER_LOCAL_IDX, BUFFER_LOCAL_DEFAULT_VALUE, BUFFER_LOCAL_VALUE)
8823 (BUFFER_LOCAL_SYMBOL, BUFFER_LOCAL_TYPE): New macros.
8824
8825 * print.c (print_object): Use new macros for per-buffer
8826 variables.
8827
8828 * category.c (Fset_category_table): Use new macros for per-buffer
8829 variables.
8830
8831 * buffer.c (buffer_permanent_local_flags): Make a char array.
8832 (max_buffer_local_idx): New variable.
8833 (reset_buffer_local_variables, Fbuffer_local_variables): Rewritten
8834 for new handling of per-buffer variables.
8835 (buffer_slot_type_mismatch): Use new macros for per-buffer vars.
8836 (init_buffer_once): Initialize per-buffer vars differently.
8837 Set max_buffer_local_idx.
8838
8839 * syntax.c (Fset_syntax_table): Use new macros for per-buffer
8840 variables.
8841
8842 * lread.c (defvar_per_buffer): Use new macros for per-buffer
8843 variables.
8844
8845 * data.c (do_symval_forwarding, store_symval_forwarding)
8846 (find_symbol_value, set_internal, default_value, Fset_default)
8847 (Fkill_local_variable, Flocal_variable_p): Use new macros for
8848 per-buffer variables.
8849
8850 * Makefile.in (bootstrap-emacs): Use `mv -f' instead of `mv'.
8851
9a0dd3dc
GM
88522000-03-24 Gerd Moellmann <gerd@gnu.org>
8853
b68c375f
GM
8854 * xterm.c (x_term_init): Unblock input around call1 of
8855 Qvendor_specific_keysyms.
8856
9a0dd3dc
GM
8857 * syntax.c (open_paren_in_column_0_is_defun_start): New variable.
8858 (find_defun_start): Consider an open parenthesis in column 0
8859 a defun start only if open_paren_in_column_0_is_defun_start is set.
8860 (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start.
8861
7973e637
SM
88622000-03-24 Stefan Monnier <monnier@cs.yale.edu>
8863
8864 * eval.c (Fautoload): Add entry in load-history (if after dump).
8865 * lread.c (load-history): Update docstring.
8866
39210e90
GM
88672000-03-24 Gerd Moellmann <gerd@gnu.org>
8868
8869 * indent.c (Fvertical_motion): Always use the current buffer.
8870 Temporarily change the window's buffer, if necessary.
8871
72db3ab5
GM
88722000-03-23 Gerd Moellmann <gerd@gnu.org>
8873
8874 * xterm.c (fast_find_position): Make sure not to consider rows
8875 not visible in the window.
8876
990b2375
SM
88772000-03-22 Stefan Monnier <monnier@cs.yale.edu>
8878
8879 * regex.c (enum syntaxcode): Provide default for non-Emacs.
8880 (re_compile_fastmap, re_match_2_internal): Undo Dave's previous fix.
8881
ff4df011
JR
88822000-03-22 Jason Rumney <jasonr@gnu.org>
8883
8884 * w32menu.c (single_submenu): Set help string to NULL if none.
8885 (w32_menu_show): Set help string correctly.
8886 (add-menu-item): Set help string in MIIM_DATA for menu item.
8887 Load SetMenuItemInfoA explicitly.
8888 (w32_menu_display_help): New function.
427ec082 8889
ff4df011
JR
8890 * w32fns.c (w32_wnd_proc): Handle WM_MENUSELECT message.
8891 (QCdata): Moved to xdisp.c.
8892
8893 * w32term.c (w32_read_socket): Handle WM_MENUSELECT message.
8894 (Vw32_charset_to_codepage_alist): Removed.
8895 (Vw32_charset_info_alist): New variable.
8896 (Qw32_charset_[ansi, default, symbol, shiftjis, hangul, gb2312,
8897 chinesebig5, oem, easteurope, turkish, baltic, russian, arabic,
8898 greek, hebrew, thai, johab, mac, unicode]): New symbols.
8899 (x_produce_glyphs): Remove out of date #ifdef 0'd section. Replace
8900 with TODO comment.
8901 (w32_codepage_for_font): Use Vw32_charset_info_alist.
8902 (syms_of_w32term): Remove Vw32_charset_to_codepage_alist.
8903 Define Vw32_charset_info_alist and w32_charset symbols.
8904
89052000-03-22 Jason Rumney <jasonr@gnu.org>
8906
8907 * makefile.nt (w32bdf.obj): Update dependencies.
8908
8909 * w32bdf.c: Include frame.h and dispextern.h before fontset.h.
8910
8911 * w32fns.c: Include fontset.h after dispextern.h.
8912 (Fx_create_frame): Do not create fontset.
8913 (w32_load_system_font): Doc fix.
8914 (Fx_close_connection): Free full_name if it is not shared.
8915
8916 * w32term.c: Include fontset.h after dispextern.h.
8917 (x_get_glyph_face_and_encoding): New parameter two_byte_p. Callers
8918 updated.
8919 (w32_per_char_metric): If PCM is invalid, delete and return NULL.
8920 (x_get_char_and_face_encoding): Use FACE_FOR_CHAR to get face_id.
8921 (w32_font_is_double_byte): New function, needs body.
8922 (x_append_glyph): Set glyph->glyph_not_available_p.
8923 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
8924 it->charset. If it->multibyte_p is zero and it->c is a multibyte
8925 character, convert it to a unibyte character.
8926 (struct glyph_string): Delete member `charset'.
8927 (W32_TEXTOUT): Temporarily remove charset_dim until another way of
8928 calculating it is found.
8929 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
8930 the case that per char metric is not available correctly.
8931 (x_fill_glyph_string): Handle the case that the specific glyph is
8932 not available correctly.
8933 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
8934 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
8935 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
8936 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
8937 fontset. Don't call FS_LOAD_FONT.
8938
439d5cb4
KR
89392000-03-22 Ken Raeburn <raeburn@gnu.org>
8940
8941 * intervals.h (NULL_INTERVAL): Cast to INTERVAL type.
8942 (INT_LISPLIKE): New macro.
8943 (NULL_INTERVAL_P): Use it.
8944 (INTERVAL_HAS_PARENT, INTERVAL_HAS_OBJECT, SET_INTERVAL_PARENT,
8945 SET_INTERVAL_OBJECT, INTERVAL_PARENT, COPY_INTERVAL_PARENT,
8946 GET_INTERVAL_OBJECT, INTERVAL_PARENT_OR_NULL): New macros.
8947
8948 * alloc.c (make_interval, gc_sweep): Use new macros; eliminate all
8949 explicit references to "parent" field of struct interval and
8950 associated unclean type conversions.
8951 * intervals.c (create_root_interval, root_interval, rotate_right,
8952 rotate_left, balance_possible_root_interval, split_interval_right,
8953 split_interval_left, interval_start_pos, find_interval,
8954 next_interval, previous_interval, update_interval,
8955 adjust_intervals_for_insertion, delete_node, delete_interval,
8956 adjust_intervals_for_deletion, merge_interval_right,
8957 merge_interval_left, reproduce_tree, graft_intervals_into_buffer,
8958 copy_intervals_to_string): Likewise.
8959 * intervals.h (AM_LEFT_CHILD, AM_RIGHT_CHILD, RESET_INTERVAL):
8960 Likewise.
8961 * syntax.c (update_syntax_table): Likewise.
8962
8963 * intervals.c (reproduce_tree_obj): New function, like
8964 reproduce_tree but takes a Lisp_Object for the parent. Declare
8965 with prototype.
8966 (graft_intervals_into_buffer): Use it when appropriate.
8967 (reproduce_tree): Declare with prototype.
8968 (balance_possible_root_interval): Check that the parent is a lisp
8969 object before trying to examine its type.
8970
ee1c5b21
GM
89712000-03-22 Gerd Moellmann <gerd@gnu.org>
8972
8973 * xfaces.c (lface_same_font_attributes_p): Compare font attributes
8974 as strings only if both are known to be strings.
8975
8976 * s/openbsd.h (LIBS_TERMCAP): Undef.
8977
1fb352e0
SM
89782000-03-21 Stefan Monnier <monnier@cs.yale.edu>
8979
8980 * regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
8981 definitions for non-Emacs compilation.
8982 (enum re_opcode_t): Remove (not)wordchar and move (not)syntaxspec
8983 outside of `#ifdef emacs'.
8984 (print_partial_compiled_pattern): Update.
8985 (regex_compile): Use (not)syntaxspec(Sword) instead of (not)wordchar.
8986 (re_compile_fastmap): Merge handling of charset and charset_not (for
8987 emacs and non-emacs compilation as well).
8988 Similarly for (not)categoryspec and (not)syntaxspec.
8989 Don't use the fastmap when reaching `anychar' since the added
8990 complexity is not justified.
8991 (re_match_2_internal): Merge (not)wordchar (emacs and non-emacs)
8992 and (not)syntaxspec. Merge (not)categoryspec.
8993
fdaa1f77
KH
89942000-03-22 Kenichi Handa <handa@etl.go.jp>
8995
ff1a0d8e
KH
8996 * dispextern.h [!HAVE_WINDOW_SYSTEM] (FACE_SUITABLE_FOR_CHAR_P,
8997 FACE_FOR_CHAR): Define them differently for the configuration of
8998 --without-x.
fdaa1f77 8999
d152fb46
DL
90002000-03-21 Dave Love <fx@gnu.org>
9001
9002 * fontset.c (Fset_fontset_font, Ffontset_font): Fix newlines in
9003 doc string.
9004
d2cafc8c
GM
90052000-03-21 Gerd Moellmann <gerd@gnu.org>
9006
9007 * xfaces.c (check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
9008 (lface_fully_specified_p): Don't check contents of
9009 LFACE_FONT_INDEX because that attribute is optional.
9010 (realize_x_face): Remove now unwarranted xassert.
9011
9111d4b5
KH
90122000-03-21 Kenichi HANDA <handa@etl.go.jp>
9013
9014 The following changes are to make font selection based on
9015 characters, not charset. In addition, they recover fontset
9016 facilities while utilizing the new font selection mechanism.
9017
6c4bfdc0
KH
9018 * Makefile.in (fontset.o): Depend on dispextern.h.
9019
9020 * alloc.c (mark_face_cache): Don't mark face->registry.
9021
9111d4b5
KH
9022 * dispextern.h (struct glyph): New member glyph_not_available_p.
9023 Use 22 bits for face_id.
9024 (enum lface_attribute_index): Add LFACE_FONT_INDEX.
9025 (struct face): Delete member registry, new member ascii_face.
9026 (FACE_SUITABLE_FOR_CHAR_P): Renamed from
9027 FACE_SUITABLE_FOR_CHARSET_P. Caller changed.
9028 (FACE_FOR_CHAR): Renamed from FACE_FOR_CHARSET. Caller changed.
9029 (struct it): Delete member charset, new member
9030 glyph_not_available_p.
9031
9032 * fontset.h (FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
9033 (struct fontset_info, struct fontset_data): Structs removed.
9034 (allloc_fontset_data, free_fontset_data, fs_regiser_fontset,
9035 Vglobale_fontset_alist, font_idx_temp): Externs removed.
9036 (fs_load_font, fs_query_fontset): Adjusted for new argument.
9037 (fs_free_face_fontset, fontset_font_pattern,
9038 face_suitable_for_char_p, face_for_char,
9039 make_fontset_for_ascii_face): Extern them.
9040 (FS_LOAD_FONT): Adjusted for the change of fontset implementation.
9041 (FS_LOAD_FACE_FONT): New macro.
9042
9043 * fontset.c: All codes rewritten or adjusted for the change of
9044 fontset implementation. Now fontset is represented by char table.
9045 (Vglobal_fontset_alist, font_idx_temp, my_strcasetbl): Variables
9046 removed.
9047 (my_strcasecmp): Function removed.
9048 (Vfontset_table, next_fontset_id, Vdefault_fontset): New
9049 variables.
9050 (AREF, ASIZE): New macros.
9051 (FONTSET_FROM_ID, FONTSET_ID, FONTSET_NAME, FONTSET_FRAME,
9052 FONTSET_ASCII, FONTSET_BASE, BASE_FONTSET_P, FONTSET_REF,
9053 FONTSET_REF_VIA_BASE, FONTSET_SET): New macros.
9054 (fontset_ref, fontset_ref_via_base, fontset_set, make_fontset,
9055 fontset_id_valid_p, font_family_registry, fontset_name,
9056 fontset_ascii, free_face_fontset, face_suitable_for_char_p,
9057 face_for_char, make_fontset_for_ascii_face, fontset_font_pattern):
9058 New functions.
9059 (fs_load_font): New arg FACE. Caller changed.
9060 (fs_query_fontset): Argument changed. Caller changed.
9061 (Fquery_fontset): call fs_query_fontset.
9062 (fs_register_fontset, alloc_fontset_data, free_fontset_data):
9063 Functions removed.
9064 (clear_fontset_elements, check_registry_encoding,
9065 check_fontset_name): New functions.
9066 (syms_of_fontset): Set char-table-extra-slots property of fontset
9067 to 3. Staticpro and initialize Vfontset_table and
9068 Vdefault_fontset. Defsubr fontset_font and fontset_list.
9069
9070 * frame.h (struct frame): Member `fontset_data' removed.
9071 (FRAME_FONTSET_DATA): Macro removed.
9072
9073 * frame.c (make_frame): Don't allocate f->fontset_data.
9074 (Fdelete_frame): Don't free f->fontset_data.
9075
6c4bfdc0
KH
9076 * msdos.c (XMenuActivate): Args to lookup_derived_face changed.
9077
9111d4b5
KH
9078 * xdisp.c (charset_at_position): Function removed.
9079 (init_iterator): Don't set member charset of struct `it'.
9080 (handle_face_prop, reseat_to_string, set_iterator_to_next,
9081 next_element_from_display_vector, insert_left_trunc_glyphs):
9082 Likewise.
9083 (face_before_or_after_it_pos): Call FACE_FOR_CHAR, not
9084 FACE_FOR_CHARSET.
9085 (get_next_display_element, append_space,
9086 extend_face_to_end_of_line): Likewise.
9087
9088 * xfaces.c (Qx_charset_registry, Vface_default_registry):
9089 Variables removed.
9090 (clear_font_table, frame_update_line_height, load_face_font):
9091 Adjusted for the change of fontset implementation.
9092 (load_face_fontset_font): Function removed.
9093 (pixel_point_size): New function.
9094 (font_list): Argument type changed. Caller changed.
9095 (LFACE_FONT): New macro.
9096 (check_lface_attrs): Check attr[LFACE_FONT_INDEX].
9097 (set_lface_from_font_name): Type of arg FONTNAME is changed to
9098 Lisp_Object. Determine the font name by actually loading a font
9099 by the specified pattern. Set LFACE_FONT (lface) to the specified
9100 pattern. Even if a font is not found, don't try alternatives.
9101 (Finternal_set_lisp_face_attribute): Handle `font' slot in lface.
9102 (set_font_frame_param): If `font' is specified in lface, use it.
9103 (Finternal_get_lisp_face_attribute): Handle `font' slot in lface.
9104 (lface_same_font_attributes_p): Likewise.
9105 (make_realized_face): Arguent changed. Caller changed. Set
9106 face->ascii_face to face itself.
9107 (free_realized_face): Free face->fontset if face is for ASCII.
9108 (face_suitable_for_iso8859_1_p, face_suitable_for_charset_p,
9109 deduce_unibyte_registry, x_charset_registry): Functions removed.
9110 (free_realized_multibyte_face): New function.
9111 (lookup_face, lookup_named_face, lookup_derived_face): Argument
9112 changed. Caller changed.
9113 (try_font_list): Argument type changed.
9114 (face_fontset): Check `font' slot of ATTRS, not `family' slot.
9115 (choose_face_font): Argument changed. Handle fontset properly.
9116 (choose_face_fontset_font): Function removed.
9117 (realize_default_face, realize_named_face): Don't remove the
9118 former face here.
9119 (realize_face): Argument changed. Caller changed. Remove face
9120 with the arg former_face_id in advance. Load font for the new
9121 face.
9122 (realize_x_face): Argument changed. Caller changed. For a
9123 multibyte character, share fontset with base_face. For a single
9124 byte character, make a new realized fontset. Don't load a font
9125 here.
9126 (realize_tty_face): Argument changed. Caller changed.
9127 (compute_char_face): Call FACE_FOR_CHAR, not FACE_FOR_CHARSET.
9128 (face_at_buffer_position): Don't check multibyte_p for returning
9129 DEFAULT_FACE_ID.
9130 (face_at_string_position): Call FACE_SUITABLE_FOR_CHAR_P, not
9131 FACE_SUITABLE_FOR_CHARSET_P.
9132 (syms_of_xfaces): Remove code for Qx_charset_registry and
9133 Vface_default_registry.
9134
6c4bfdc0
KH
9135 * xterm.c: Include fontset.h after dispextern.h. Undo the changes
9136 related to PER_CHAR_METRIC done by Gerd on 2000-03-03.
9111d4b5
KH
9137 (x_per_char_metric): Don't try FONT->default_char. Even if
9138 pcm->width is zero, glyph bits may exist.
9139 (x_encode_char): Always initialize char2b->byte1.
9140 (x_get_char_face_and_encoding): Call FACE_FOR_CHAR to get face_id.
9141 (x_get_glyph_face_and_encoding): New arg two_byte_p. Caller
9142 changed.
9143 (x_append_glyph): Set glyph->glyph_not_available_p.
9144 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
9145 it->charset. Handle the case that per char metric is not
9146 available. If it->multibyte_p is zero and it->c is a multibyte
9147 character, convert it to a unibyte character.
9148 (struct glyph_string): Delete member `charset'.
9149 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
9150 the case that per char metric is not available correctly.
9151 (x_fill_glyph_string): Handle the case that the specific glyph is
9152 not available correctly.
9153 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
9154 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
9155 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
9156 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
9157 fontset. Don't call FS_LOAD_FONT.
9158
9159 * xfns.c (Fx_create_frame): Don't cal fs_register_fontset.
9160 (x_create_tip_frame): Likewise.
9161 (Fx_close_connection): Free full_name of font_info.
9162
9163 * fns.c (optimize_sub_char_table): New function.
9164 (Foptimize_char_table): New function.
9165 (syms_of_fns): Defsubr Soptimize_char_table.
9166
b33dd3b0
GM
91672000-03-20 Gerd Moellmann <gerd@gnu.org>
9168
9169 * buffer.c (Fset_buffer_modified_p): Set update_mode_lines
9170 only if buffer is displayed in some window.
9171
9172 * xdisp.c (handle_single_display_prop): Initialize local `value'.
9173 (try_window_reusing_current_matrix): Don't call scroll run
9174 function if run's current and desired position are the same;
9175 this prevents cursor flickering.
9176
4e8a9132
SM
91772000-03-19 Stefan Monnier <monnier@cs.yale.edu>
9178
9179 * regex.h (RE_TRANSLATE. RE_TRANSLATE_P): Moved to regex.c.
9180
9181 * regex.c (RE_STRING_CHAR): New macro.
9182 (GET_CHAR_AFER_2): Remove.
9183 (RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h.
9184 (enum re_opcode_t): Remove on_failure_jump_exclusive.
9185 (print_partial_compiled_pattern, re_compile_fastmap)
9186 (re_match_2_internal): Remove on_failure_jump_exclusive.
9187 (regex_compile): Turn optimizable P+ loops into PP*, so that the
9188 optimization only need to work for * (ie. can use of_keep_string_jump).
9189 Remove the special case for .*\n since it is now covered by the general
9190 optimization.
9191 (re_search_2): Don't bother with `room'.
9192 (skip_one_char): New function.
9193 (skip_noops): Simplify since `memory' is not needed any more.
9194 (mutually_exclusive_p): Restructure slightly to use `switch' and
9195 add handling for "all" remaining cases.
9196 (re_match_2_internal): Change on_failure_jump_smart to use
9197 on_failure_keep_string_jump (and redirect the end-of-loop jump)
9198 rather than on_failure_jump_exclusive.
9199
2136fdd4
GM
92002000-03-19 Gerd Moellmann <gerd@gnu.org>
9201
9202 * xfns.c (select_visual): Don't set dpyinfo->n_planes to the
9203 number of bits per RGB because it's everywhere used as the depth
9204 of the visual.
9205
9206 * term.c (calculate_costs): Remove code dealing with X frames.
9207
18e21ce8 92082000-03-19 Richard M. Stallman <rms@gnu.org>
e53ae11c
RS
9209
9210 * lread.c (syms_of_lread): Doc fix for load-convert-to-unibyte.
9211
d7b511c4
GM
92122000-03-18 Gerd Moellmann <gerd@gnu.org>
9213
9214 * lread.c (read_integer): Unread the last char not consumed.
9215
16b5d424
GM
92162000-03-17 Gerd Moellmann <gerd@gnu.org>
9217
9218 * xterm.c (x_update_window_cursor): Don't update in frames
d7b511c4 9219 which are in the process of being deleted.
16b5d424 9220
1fa28578
GM
92212000-03-16 Gerd Moellmann <gerd@gnu.org>
9222
83488cce
GM
9223 * Makefile.in (mostlyclean): Add `*.core'.
9224 (clean): Add `bootstrap-emacs'.
9225
1fa28578
GM
9226 * lread.c (read_integer): New function.
9227 (read1): Support read syntax #o, #x, #b, #r.
9228
99633e97
SM
92292000-03-15 Stefan Monnier <monnier@cs.yale.edu>
9230
1fa28578
GM
9231 * regex.c (re_match_2): Fix string shortening (to fit `stop') to
9232 make sure POINTER_TO_OFFSET gives the same value before and after
9233 PREFETCH. Use `dfail' to guarantee "atomic" matching.
99633e97
SM
9234 (PTR_TO_OFFSET): Use POINTER_TO_OFFSET.
9235 (debug): Now only active if > 0 rather than if != 0.
9236 (DEBUG_*): Update for the new meaning of `debug'.
1fa28578
GM
9237 (print_partial_compiled_pattern): Add missing `succeed' case. Use
9238 CHARSET_* macros in the charset(_not) branch. Fix off-by-two bugs
9239 in `succeed_n', `jump_n' and `set_number_at'.
99633e97
SM
9240 (store_op1, store_op2, insert_op1, insert_op2)
9241 (at_begline_loc_p, at_endline_loc_p): Add prototype.
1fa28578
GM
9242 (group_in_compile_stack): Move to after its arg's types are
9243 declared and add a prototype.
99633e97 9244 (PATFETCH): Define in terms of PATFETCH_RAW.
1fa28578
GM
9245 (GET_UNSIGNED_NUMBER): Add the usual `do { ... } while(0)'
9246 wrapper.
99633e97 9247 (QUIT): Redefine as a nop except for NTemacs.
1fa28578
GM
9248 (regex_compile): Handle intervals {,M} as if it was {0,M}. Fix
9249 indentation of the greedy-op and shy-group code.
99633e97
SM
9250 (at_(beg|end)line_loc_p): Fix argument's types.
9251 (re_compile_fastmap): Ifdef out failure_stack_ptr to shut up gcc.
9252 (re_search_2): Use POS_AS_IN_BUFFER. Simplify `room' computation.
9253 (MATCHING_IN_FIRST_STRING): Remove.
1fa28578
GM
9254 (re_match_2): Use POS_AS_IN_BUFFER. Ifdef out failure_stack_ptr
9255 to shut up gcc. Use FIRST_STRING_P and POINTER_TO_OFFSET. Use
9256 QUIT unconditionally.
99633e97 9257
699238d9
GM
92582000-03-15 Gerd Moellmann <gerd@gnu.org>
9259
9260 * minibuf.c (Fminibuffer_complete): Set point to ZV if finding
9261 a sole completion.
9262
9263 * process.c (send_process): Add a hint that the function
9264 can call Lisp code to its comment.
9265
9266 * lread.c (load_dangerous_libraries): New variable.
9267 (Vbytecomp_version_regexp): New variable.
9268 (safe_to_load_p): New function.
9269 (Fload): Handle files not compiled with Emacs specially.
9270 (syms_of_lread): New Lisp variable load-dangerous-libraries.
9271
34e23e5a
GM
92722000-03-14 Gerd Moellmann <gerd@gnu.org>
9273
9c763cca
GM
9274 * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon.
9275
9276 * xterm.c (xim_close_dpy, xim_initialize): Use X11R6-style XIM
9277 support functions only if HAVE_X11R6_XIM is defined.
9278 (xim_instantiate_callback): Define only if HAVE_X11R6_XIM.
9279
9280 * s/sol2.h (INHIBIT_X11R6_XIM): Define.
9281
9282 * xfns.c (X_I18N_INHIBITED): Don't define.
9283 (create_frame_xic): Remove conditional compilation on
9284 X_I18N_INHIBITED.
9285 (x_kill_gs_process, x_window): Use FRAME_X_VISUAL.
9286
9287 * config.in (HAVE_X_I18N): Moved here from xterm.h.
9288 (HAVE_X11R6_XIM): Define.
9289
9290 * xterm.h (HAVE_X_I18N) [HAVE_X11R6]: Moved to config.in.
9291
34e23e5a
GM
9292 * xterm.c (x_term_init): Add support for X resource `synchronous'.
9293 If set, call XSynchronize.
9294
66f0296e
SM
92952000-03-13 Stefan Monnier <monnier@cs.yale.edu>
9296
34e23e5a
GM
9297 * regex.c: Declare a new type `re_char' used throughout the code
9298 for the string char type. It's `const unsigned char' to match the
9299 rest of Emacs. Consistently make sure all pointers to strings use
9300 it and make sure all pointers into the pattern use `unsigned
9301 char'.
66f0296e 9302 (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of
34e23e5a
GM
9303 GET_CHAR_AFTER_2. Also merge wordbound and notwordbound to reduce
9304 code duplication.
66f0296e
SM
9305
9306 * charset.h (GET_CHAR_AFTER_2): Remove.
9307 (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else.
9308
854a025c
KR
93092000-03-12 Ken Raeburn <raeburn@gnu.org>
9310
9311 * Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary
9312 variable before the invocation of YMF_PASS_LDFLAGS, in case both
9313 of them try to use backquotes.
9314
b9d2c7e2
DL
93152000-03-12 Dave Love <fx@gnu.org>
9316
9317 * unexelf.c: Restore changes of 1999-10-19.
9318 (unexec): Don't adjust bss for sbss type SHT_PROGBITS; otherwise
9319 fix its type and alignment; copy it from current process.
9320
5e5dff44
GM
93212000-03-12 Gerd Moellmann <gerd@gnu.org>
9322
9b2f3c38
GM
9323 * atimer.c (cancel_atimer): Break out of the loop as soon as timer
9324 has been found. Fix bug not computing timer's predecessor.
9325
427ec082 9326 * fileio.c (Fread_file_name): Handle case that DIR contains a
9172b88d
GM
9327 file name.
9328
e1cff360
GM
9329 * window.c (Fsave_window_excursion): Doc fix.
9330
5e5dff44
GM
9331 * xfns.c (x_defined_color): Rewritten to use
9332 x_allocate_nearest_color.
9333
e411ce4b
EZ
93342000-03-12 Eli Zaretskii <eliz@is.elta.co.il>
9335
9336 * msdos.c (vga_installed): New function, code moved from
9337 dos_set_window_size.
9338 (Qbar, Qcursor_type, outside_cursor): New variables.
9339 (syms_of_msdos): Intern and staticpro them.
9340 (dos_ttraw) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Save the cursor
9341 shape used outside Emacs when called for the first time.
9342 (dos_ttcooked) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Restore the
9343 cursor shape used outside Emacs.
9344 (msdos_set_cursor_shape, IT_set_cursor_type): New functions.
9345 (IT_frame_up_to_date): Call IT_set_cursor_type, in case the cursor
9346 type has changed.
9347 (IT_set_frame_parameters): Call IT_set_cursor_type if the frame
9348 parameters specify the cursor. Make qreverse a global
9349 variable (renamed to Qreverse).
9350
80460654
GM
93512000-03-09 Gerd Moellmann <gerd@gnu.org>
9352
9353 * fns.c (Fy_or_n_p): Cancel busy-cursor.
9354
95cd4c40
SM
93552000-03-08 Stefan Monnier <monnier@cs.yale.edu>
9356
9357 This is a big redesign of failure-stack and register handling, prompted
9358 by bugs revealed when trying to add shy-groups. Overall, what happened
9359 is that loops are now structured a little differently, groups can be
9360 shy and the code is a little simpler.
9361
9362 * regex.h: Update the copyright.
9363 (RE_SHY_GROUPS): New value.
9364 (RE_UNMATCHED_RIGHT_PAREN_ORD): Renumber.
9365 (RE_SYNTAX_EMACS): Add RE_SHY_GROUPS.
9366
80460654
GM
9367 * regex.c (enum re_opcode_t): Remove jump_past_alt,
9368 maybe_pop_jump, push_dummy_failure and dumy_failure_jump. Add
9369 on_failure_jump_(exclusive, loop and smart). Also fix the comment
9370 for (start|stop)_memory since they now only take one argument (the
9371 second has becomes unnecessary).
9372 (print_partial_compiled_pattern): Adjust for changes in
9373 re_opcode_t.
9374 (print_compiled_pattern): Use %ld to printf long ints and flush to
9375 make debugging a little easier.
95cd4c40
SM
9376 (union fail_stack_elt): Make the integer unsigned.
9377 (struct fail_stack_type): Add a `frame' element.
9378 (INIT_FAIL_STACK): Init `frame' as well.
9379 (POP_PATTERN_OP): New macro for re_compile_fastmap.
9380 (DEBUG_PUSH, DEBUG_POP): Remove.
9381 (NUM_REG_ITEMS): Remove.
9382 (NUM_NONREG_ITEMS): Adjust.
80460654
GM
9383 (FAILURE_PAT, FAILURE_STR, NEXT_FAILURE_HANDLE)
9384 (TOP_FAILURE_HANDLE): New macros for the cycle detection.
95cd4c40 9385 (ENSURE_FAIL_STACK): New macro for PUSH_FAILURE_(REG|POINT).
80460654
GM
9386 (PUSH_FAILURE_REG, POP_FAILURE_REG, CHECK_INFINITE_LOOP): New
9387 macros.
9388 (PUSH_FAILURE_POINT): Don't push registers any more. The pattern
9389 address pushed is not the destination of the jump but the source
9390 of it instead.
95cd4c40
SM
9391 (NUM_FAILURE_ITEMS): Remove.
9392 (POP_FAILURE_POINT): Adapt to the new stack structure (i.e. pop
80460654
GM
9393 registers before the actual failure point). Don't hardcode any
9394 meaning for str==NULL anymore.
95cd4c40 9395 (union register_info_type, REG_MATCH_NULL_STRING_P, IS_ACTIVE)
80460654
GM
9396 (MATCHED_SOMETHING, EVER_MATCHED_SOMETHING, SET_REGS_MATCHED):
9397 Remove.
95cd4c40
SM
9398 (REG_UNSET_VALUE): Use NULL (why not?).
9399 (compile_range): Remove declaration since it doesn't exist.
9400 (struct compile_stack_elt_t): Remove inner_group_offset.
9401 (old_reg(start|end), reg_info, reg_dummy, reg_info_dummy): Remove.
9402 (regex_grow_registers): Remove dead code.
9403 (FIXUP_ALT_JUMP): New macro.
80460654
GM
9404 (regex_compile): Add shy-groups Change loops to use
9405 on_failure_jump_smart&jump instead of
9406 on_failure_jump&maybe_pop_jump. Change + loops to eliminate the
9407 initial (dummy_failure_)jump. Remove c1_base (looks like unused
9408 variable to me). Use `jump' instead of `jump_past_alt' and don't
9409 bother with push_dummy_failure in alternatives since it is now
9410 unnecessary. Use FIXUP_ALT_JUMP. Eliminate a useless `#ifdef
9411 emacs' for (re)allocating the stack.
9412 (re_compile_fastmap): Remove dead variables i and num_regs. Exit
9413 from loop when bufp->can_be_null rather than jumping to `done'.
9414 Avoid jumping backwards so as to ensure termination. Use
9415 PATTERN_STACK_EMPTY and POP_PATTERN_OP. Improved handling of
9416 backreferences. Remove dead code in handling of `anychar'.
95cd4c40 9417 (skip_noops, mutually_exclusive_p): New functions taken from the
80460654
GM
9418 handling of `maybe_pop_jump' in re_match_2_internal. Slightly
9419 improve mutually_exclusive_p to handle ".+\n".
9420 (lowest_active_reg, highest_active_reg,
9421 NO_(LOWEST|HIGHEST)_ACTIVE_REG) Remove.
9422 (re_match_2_internal): Use %p instead of 0x%x when printf'ing
9423 ptrs. Don't SET_REGS_MATCHED anymore. Remove many dead
9424 variables. Push register (in `start_memory') on the stack rather
9425 than storing it in old_reg(start|end). Remove the cycle detection
9426 from `stop_memory', replaced by the use of on_failure_jump_loop
9427 for greedy loops. Add code for the new on_failure_jump_<foo>.
9428 Remove ad-hoc code in `on_failure_jump' to push more registers in
9429 the case of a loop. Take out code from `maybe_pop_jump' into
9430 separate functions and adapt it to the semantics of
9431 `on_failure_jump_smart'. Remove jump_past_alt, dummy_failure_jump
9432 and push_dummy_failure. Remove dummy_failure handling and
9433 handling of `failures to jump to on_failure_jump' (this last one
9434 was already dead code, it seems).
9435 (group_match_null_string_p, alt_match_null_string_p)
9436 (common_op_match_null_string_p): Remove.
95cd4c40 9437
7397acc4
DL
94382000-03-08 Dave Love <fx@gnu.org>
9439
9440 * config.in: Don't depend on __STDC__ for volatile.
9441 Add POINTER_TYPE, PTR, PROTOTYPES.
9442
9443 * hftctl.c, strftime.c: Use PROTOTYPES.
9444 * eval.c (find_handler_clause): Likewise.
9445
9446 * mem-limits.h: Use POINTER_TYPE.
9447
9448 * lisp.h (P_): Define based on PROTOTYPES, not __STDC__.
9449 (memory_warnings): Declare using POINTER_TYPE.
9450
5e91ff9e
GM
94512000-03-08 Gerd Moellmann <gerd@gnu.org>
9452
feab4fba
GM
9453 * xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor.
9454
25edb08f
GM
9455 * xdisp.c (display_echo_area): Temporarily inhibit garbage
9456 collection.
9457
5e91ff9e
GM
9458 * xfns.c: Remove obsolete code in #if 0.
9459 (Fx_focus_frame): New function.
9460
a735b7e1
KH
94612000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
9462
9463 * coding.c (coding_category_name): Add coding-category-utf-8,
9464 coding-category-utf-16-be, coding-category-utf-16-le.
9465 (UTF_8_1_OCTET_P, UTF_8_EXTRA_OCTET_P, UTF_8_2_OCTET_LEADING_P,
9466 UTF_8_3_OCTET_LEADING_P, UTF_8_4_OCTET_LEADING_P,
9467 UTF_8_5_OCTET_LEADING_P, UTF_8_6_OCTET_LEADING_P): New macros.
9468 (detect_coding_utf_8): New function.
9469 (UTF_16_INVALID_P, UTF_16_HIGH_SURROGATE_P
9470 UTF_16_LOW_SURROGATE_P): New macros.
9471 (detect_coding_utf_16): New function
9472 (detect_coding_mask): When priorities are specified, skip any
9473 categories that have `nil' coding-system. Fix bug of returning
9474 wrong mask when PRIORITIES is specified and detect_coding_XXX()
9475 returns a mask not set in PRIORITIES.
9476 (detect_eol_type_in_2_octet_form): New function.
9477 (detect_eol): selects detect_eol_type_XXX to call according to
9478 cooding->category_idx.
9479 (detect_coding_system): Remove `nil' coding-system in the result.
9480 (Fupdate_coding_systems_internal): Update all coding-categories.
9481
9482 * coding.h (CODING_CATEGORY_IDX_UTF_8,
9483 CODING_CATEGORY_IDX_UTF_16_BE, CODING_CATEGORY_IDX_UTF_16_LE): New
9484 macros.
9485 (CODING_CATEGORY_IDX_RAW_TEXT, CODING_CATEGORY_IDX_BINARY,
9486 CODING_CATEGORY_IDX_MAX): Adjusted for the above macros.
9487 CODING_CATEGORY_IDX_UTF_16_LE.
9488 (CODING_CATEGORY_MASK_UTF_8, CODING_CATEGORY_MASK_UTF_16_BE,
9489 CODING_CATEGORY_MASK_UTF_16_LE): New macros.
9490 (CODING_CATEGORY_MASK_ANY): Include the above macros.
9491 (CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro.
9492
9994cc69
GM
94932000-03-07 Gerd Moellmann <gerd@gnu.org>
9494
e9b4e5ff
GM
9495 * doc.c (Fdocumentation_property): If value is not a string,
9496 and doesn't refer to etc/DOC, evaluate it to obtain a string.
9497
f7daf1e1
GM
9498 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Don't try to
9499 close the display with XtCloseDisplay. This caused a bus error
9500 on OpenWindows.
9501
9994cc69
GM
9502 * minibuf.c (Fminibuffer_complete): Move point to ZV when input is
9503 complete but not unique.
9504
4336c705
GM
95052000-03-06 Gerd Moellmann <gerd@gnu.org>
9506
18bb0684
GM
9507 * process.c (send_process): Remove local variable `procname' that
9508 might become invalid when a GC happens. Instead, access the
9509 process name slot directly.
9510
4336c705
GM
9511 * xfns.c (x_set_menu_bar_lines_1): Adjust window's orig_top and
9512 orig_height if set.
9513
9514 * frame.c (set_menu_bar_lines_1): Adjust window's orig_top and
9515 orig_height if set.
9516
515d0d0e
EZ
95172000-03-06 Eli Zaretskii <eliz@is.elta.co.il>
9518
9519 * msdos.c (IT_note_mouse_highlight): Return immediately if frame's
9520 glyph matrices have been freed.
9521
100b3cbb
GM
95222000-03-05 Gerd Moellmann <gerd@gnu.org>
9523
50df5e5a 9524 * Makefile.in (tags): Include ../lwlib/TAGS in TAGS.
6178bc23 9525 (bootstrap-temacs): Set LC_ALL to C like for temacs.
50df5e5a
GM
9526
9527 * xfns.c (QCdata): Moved to xdisp.c.
9528
9529 * xdisp.c (QCdata): Moved here from xfns.c.
9530 (syms_of_xdisp): Initialize QCdata.
9531
9532 * frame.h (FRAME_INTERNAL_BORDER_WIDTH) [!HAVE_X_WINDOWS]: Define.
9533
9534 * window.c (coordinates_in_window): Use
9535 FRAME_INTERNAL_BORDER_WIDTH_SAFE instead of
9536 FRAME_INTERNAL_BORDER_WIDTH.
9537
100b3cbb 9538 * xdisp.c (try_window_id): Recompute unchanged information if
4336c705 9539 it is obviously invalid.
100b3cbb
GM
9540
9541 * xterm.c (x_term_init): Create a colormap if not using the
9542 default visual.
9543
9544 * xterm.h (select_visual): Change prototype.
9545
9546 * xfns.c (select_visual): Rewritten. Recognize user-specified
9547 visual classes.
9548 (visual_classes): New variable.
9549
64d739c4
GM
95502000-03-04 Gerd Moellmann <gerd@gnu.org>
9551
9552 * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color)
9553 (lookup_pixel_color, x_laplace, x_build_heuristic_mask)
9554 (png_load): Access colormap of frame using FRAME_X_COLORMAP.
9555 (x_decode_color): Don't handle allocation of white and black
9556 specially.
9557 (x_window) [USE_X_TOOLKIT]: Set XtNvisual, XtNdepth, and
9558 XtNcolormap resources.
9559 (x_window) [!USE_X_TOOLKIT]: Pass colormap to XCreateWindow.
9560 (Fx_create_frame): Initialize color members of x_output structure.
9561 (xpm_load): Pass colormap to XPM lib.
9562
9563 * xfaces.c (x_free_colors): Access colormap of frame using
9564 FRAME_X_COLORMAP. Be paranoid about freeing black and white
9565 when default colormap is used.
9566
9567 * xterm.c (x_term_init): Set Colormap member of x_display_info
9568 structure. Copy colormap if resource `privateColormap' is
9569 specified (PseudoColor only).
9570 (x_setup_relief_color): Access colormap of frame using
9571 FRAME_X_COLORMAP.
9572
9573 * xterm.h (struct x_display_info): Add Colormap member `cmap'.
9574 (FRAME_X_COLORMAP, FRAME_X_VISUAL): New macros.
9575
c3cee013
JR
95762000-03-04 Jason Rumney <jasonr@gnu.org>
9577
9578 * xfaces.c Change many FRAME_X... macros to FRAME_WINDOW... or
9579 other non-platform-specific equivalents.
64d739c4 9580 [WINDOWSNT]: Include w32term.h, fontset.h and define X
c3cee013
JR
9581 specific functions and macros as their w32 equivalents where
9582 non-platform-specifics are not available.
9583 [HAVE_X_WINDOWS]: Change most of these to HAVE_WINDOW_SYSTEM.
9584 (x_create_gc, x_free_gc) [WINDOWSNT]: Add W32 versions.
9585 (clear_font_table) [WINDOWSNT]: Call w32_unload_font.
9586 (frame_update_line_height): Use macros to access f->output_data.
9587 (defined_color): Remove FIXME comments; fixed.
9588 (x_face_list_fonts, prepare_face_for_display): Put X specifics
9589 into #ifdef blocks. Add WINDOWSNT blocks.
9590 (Fx_list_fonts): Use macros for accessing font data.
9591 (set_lface_from_font_name): Different default fonts for X and
9592 WINDOWSNT.
9593 (font_scalable_p) [WINDOWSNT]: Treat wildcard XLFD_AVGWIDTH as
9594 scalable for backward compatibility.
64d739c4 9595 (realize_tty_face) [MSDOS]: Do the same for WINDOWSNT.
c3cee013
JR
9596 (syms_of_xfaces) [WINDOWSNT]: Allow scalable fonts by default.
9597
64d739c4 9598 * emacs.c (main) [HAVE_NTGUI]: Call syms_of_xfaces instead of
c3cee013
JR
9599 syms_of_w32faces.
9600
9601 * makefile.nt (w32faces.obj): Remove.
9602 (xfaces.obj): Add.
9603
807cc41c
JR
96042000-03-03 Jason Rumney <jasonr@gnu.org>
9605
9606 * keyboard.c (make_lispy_event): Call buffer_posn_from_coords with
9607 correct parameters.
9608
0007072a
KR
96092000-03-03 Ken Raeburn <raeburn@gnu.org>
9610
9611 * unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
9612 standard ELF definitions here if the system header does not.
9613
71a6ba55
GM
96142000-03-03 Gerd Moellmann <gerd@gnu.org>
9615
9616 * xterm.c (PER_CHAR_METRIC): Removed.
9617 (x_per_char_metric_1, x_default_char): New functions.
9618 (x_per_char_metric): If font's default char is invalid, return
9619 metrics of a suitably chosen usable default char.
9620 (x_draw_glyph_string_foreground): If font has an invalid default
64d739c4
GM
9621 char, replace occurrences of unprintable chars with a suitably
9622 chosen usable default char.
71a6ba55 9623
900fa1f1
GM
96242000-03-02 Gerd Moellmann <gerd@gnu.org>
9625
42f55fe0
GM
9626 * xterm.c (note_mouse_highlight): Return quickly if frame's
9627 glyph matrices have been freed.
9628
9629 * dispnew.c (free_glyphs): Block input while freeing matrices.
9630
900fa1f1
GM
9631 * xfns.c (x_clear_image, x_kill_gs_process): Use x_free_colors.
9632
9633 * xterm.c (x_alloc_lighter_color, x_setup_relief_color): Use
9634 x_free_colors.
9635
9636 * dispextern.h (x_free_colors): Add prototype.
9637
9638 * xfaces.c (x_free_colors): New function.
9639 (unload_color, free_face_colors): Use it.
9640
2f950292
EZ
96412000-03-02 Eli Zaretskii <eliz@is.elta.co.il>
9642
9643 * msdos.h (FRAME_INTERNAL_BORDER_WIDTH): Define to zero.
9644
9645 * window.c [MSDOS]: Include msdos.h.
9646
54d04320
DL
96472000-03-02 Dave Love <fx@gnu.org>
9648
9649 * m/powerpcle.h, m/sparc.h: Don't set C_OPTIMIZE_SWITCH.
9650
9651 * m/mips-siemens.h, m/news-r6.h, m/news-risc.h, m/tekxd88.h: Don't
9652 set C_OPTIMIZE_SWITCH for gcc.
9653
0ba93ac4
KH
96542000-03-02 Kenichi Handa <handa@etl.go.jp>
9655
9656 * coding.c (coding_save_composition): Be sure to allocate
9657 composition data area in coding even if there's no composition in
9658 the current run.
9659
a2bc11d4
JR
96602000-03-01 Jason Rumney <jasonr@gnu.org>
9661
9662 * w32term.c: Equivalent changes to those made to xterm.c on
9663 2000-02-25 and 2000-02-24.
9664
9665 * w32fns.c: Equivalent changes to those made to xfns.c on
9666 2000-02-25 and 2000-02-21.
9667
9668 * sysdep.c: [WINDOWSNT]: Use sys_read and sys_write to ensure
9669 correct line-end convention is followed.
9670
9671 * w32menu.c [HAVE_BOXES]: Remove #undef.
9672 (single_keymap_panes): Remove code for simulating checkmarks.
9673 (single_menu_item): Remove notbuttons_ptr argument. Callers changed.
9674 Remove code for drawing simulated checkmarks.
9675 (w32_menu_show): make unibyte help string correctly.
9676 (add_menu_item): draw standard Windows checkmarks. Draw radio
9677 buttons as radio buttons if possible.
9678
72d19d75
GM
96792000-03-01 Gerd Moellmann <gerd@gnu.org>
9680
2df636f4
GM
9681 * sysdep.c (start_of_text): Don't define this function for NetBSD
9682 with ELF.
9683
427ec082 9684 * m/pmax.h (START_FILES, CANNOT_DUMP) [__NetBSD__ || __OpenBSD__]:
2df636f4
GM
9685 Don't define.
9686 (UNEXEC) [__NetBSD__ || __OpenBSD__]: Define to unexelf.o.
9687 (LINKER): Don't undef if __NetBSD__ is defined.
9688
9689 * m/mips.h (LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
9690
9691 * fileio.c [__NetBSD__]: Define `unix'.
9692
72d19d75
GM
9693 * xfns.c (start_busy_cursor): Allow floats for busy-cursor-delay.
9694
ed4d0512
GM
96952000-02-29 Gerd Moellmann <gerd@gnu.org>
9696
50b1039f
GM
9697 * atimer.c (start_atimer): Don't abort when timers are stopped.
9698 (append_atimer_lists): New function.
9699 (cancel_atimer, stop_other_atimers, run_all_atimers): Handle
9700 arbitrary lists of stopped and running atimers.
9701
ed4d0512
GM
9702 * atimer.c (cancel_atimer): Handle canceling an atimer when
9703 some timers are stopped.
9704
9705 * xfns.c (cancel_busy_cursor): Set busy_cursor_atimer to null
9706 after canceling it.
9707
9708 * fns.c (maybe_resize_hash_table): Handle case of new size
9709 coming out as being the same as old size.
9710
387023ee
JR
97112000-02-27 Jason Rumney <jasonr@gnu.org>
9712
9713 * makefile.nt: Add atimer.h to dependencies.
9714 * w32.c (init_environment): Set Vw32_num_mouse_buttons here.
9715 * w32console.c: Only disable window system features for dispextern.h
9716 (initialize_w32_display): Build a display info for the console.
9717 * w32faces.c (tty_defined_color): Apply xfaces.c change from 02-17.
9718 * w32fns.c (w32_wnd_proc) [WM_LBUTTON_DOWN, WM_RBUTTON_DOWN,
9719 WM_LBUTTON_UP, WM_RBUTTON_UP]: Do not treat 4 or more button mice
9720 as 2 button mice.
9721 * w32gui.h (struct W32FontStruct): Revert last change after change
9722 to xdisp.c.
9723 * w32menu.c (single_submenu): Set up help string.
9724 [!HAVE_MULTILINGUAL_MENU]: Don't overwrite item_name with descrip.
9725 (w32_dialog_show): Set up help string.
9726 * w32term.c (w32_display_info_for_display): Remove unused function.
9727 (w32_draw_bitmap): Use pre-built bitmaps.
9728 (w32_initialize_display_info): New function to initialize parts of
9729 display info that are common to both GUI and console frames.
9730 (w32_term_init): Use w32_initialize_display_info. Do not set
9731 Vw32_num_mouse_buttons here, as it is not called for console
9732 frames. Build bitmaps for indicating truncated lines etc.
9733 (x_delete_display): Destroy pre-built bitmaps.
9734 * xdisp.c (handle_single_display_prop): Use FONT_HEIGHT macro.
9735 (echo_area_display): Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM.
9736
4516715a
DL
97372000-02-27 Dave Love <fx@gnu.org>
9738
9739 * lisp.h: Add a bunch of prototypes.
9740
171ca836
KH
97412000-02-26 Kenichi Handa <handa@etl.go.jp>
9742
9743 * keyboard.c (read_char): Set `usec' correctly.
9744
4013921d
KH
97452000-02-25 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
9746
9747 * ccl.c (ccl_driver) [CCL_MapMultiple]: When the mapped value is
9748 `lambda', set reg[RRR] to the map index.
9749 (ccl_driver) [CCL_MapSingle]: When the mapped value is found, set
9750 reg[RRR] to 0. Otherwise, set it to -1.
9751
9244a058
GM
97522000-02-25 Gerd Moellmann <gerd@gnu.org>
9753
2df636f4 9754 * emacs.c (main): Remove code snippet commented out with `//'.
9244a058 9755
18e21ce8 97562000-02-25 Richard M. Stallman <rms@gnu.org>
427ec082 9757
f43d79c1
GM
9758 * fileio.c (Ffile_symlink_p): If result starts with a `/'
9759 and contains a `:', prepend `/:'.
9760
9761 * window.c (select_window_1): If selected_window is nil,
9762 don't "swap out" the buffer's point.
9763 (Fset_window_configuration): Set selected_window to nil
9764 before calling Fselect_window.
9765 (unshow_buffer): Don't set point in buffer from window's point
9766 if another more recently selected window also shows the buffer.
9767
bed0c171
GM
97682000-02-25 Gerd Moellmann <gerd@gnu.org>
9769
449c3c52
GM
9770 * keyboard.c (recursive_edit_1): Cancel busy-cursor.
9771
f5b58615
GM
9772 * xfns.c (inhibit_busy_cursor, busy_count): Removed.
9773 (Fx_show_busy_cursor, Fx_hide_busy_cursor): Removed.
9774 (busy_cursor_atimer, busy_cursor_shown_p, Vbusy_cursor_delay): New
9775 variables.
9776 (DEFAULT_BUSY_CURSOR_DELAY): New define.
9777 (start_busy_cursor, cancel_busy_cursor, show_busy_cursor)
9778 (hide_busy_cursor): New functions.
9779 (syms_of_xfns): DEFVAR_LISP Vbusy_cursor_delay.
9780
9781 * minibuf.c (read_minibuf): Cancel busy-cursor.
9782
9783 * keyboard.c (command_loop_1): Call start_busy_cursor before
9784 Fcommand_execute and cancel_busy_cursor after it.
9785 (timer_check): Remove busy-cursor code.
9786 (Fread_key_sequence, Fread_key_sequence_vector): Start/cancel busy
9787 cursor timer.
9788
9789 * process.c (wait_reading_process_input): Remove busy-cursor code.
9790
9791 * eval.c (Fsignal): Call cancel_busy_cursor instead of
9792 Fx_hide_busy_cursor.
9793
9794 * dispextern.h (Fx_show_busy_cursor, Fx_hide_busy_cursor):
9795 Remove prototyoes.
9796 (start_busy_cursor, cancel_busy_cursor): Add prototypes.
9797
9798 * lisp.h (Fx_hide_busy_cursor): Remove prototype.
9799
9800 * xterm.c (XTread_socket): Remove busy-cursor code.
9801
4eb8436f
GM
9802 * dispnew.c (flush_stdout) [GLYPH_DEBUG]: New function.
9803 (build_frame_matrix_from_leaf_window): Put code handling
9804 glyph row's not being a slice of a frame row in #if 0.
9805 (sync_window_with_frame_matrix_rows): New function.
9806 (frame_row_to_window): New function.
9807 (mirror_line_dance): Handle copies between windows.
9808
3cb65b0e
GM
9809 * lread.c (Fload): Use `xfree' instead of `free'.
9810 (init_obarray): Use `xmalloc' instead of `malloc'.
9811
bed0c171
GM
9812 * window.c (Fset_window_buffer): Set WINDOW to the window
9813 after decoding.
2add4349
GM
9814 (coordinates_in_window): Take frame's internal border width
9815 into account.
bed0c171 9816
42088c12
GM
98172000-02-24 Gerd Moellmann <gerd@gnu.org>
9818
9819 * xterm.c (x_display_and_set_cursor): Display cursor of
9820 non-selected windows depending on the setting of
9821 cursor_in_non_selected_windows.
9822
9823 * xdisp.c (cursor_in_non_selected_windows): New variable.
9824 (syms_of_xdisp): DEFVAR_BOOL it.
9825
d1e103b2
GM
98262000-02-23 Gerd Moellmann <gerd@gnu.org>
9827
723e779c
GM
9828 * data.c (Fstring_to_number): If number is greater than what
9829 fits into an integer, return a float.
9830
d1e103b2
GM
9831 * eval.c (specbind): Remove references to
9832 keyword_symbols_constant_flag.
9833
9834 * data.c (keyword_symbols_constant_flag): Removed.
9835 (Fmakunbound, set_internal, syms_of_data): Remove references to
9836 keyword_symbols_constant_flag.
9837
9838 * bytecode.c (Fbyte_code): Remove keyword_symbols_constant_flag.
9839
214f877f
KH
98402000-02-23 Kenichi Handa <handa@etl.go.jp>
9841
9842 * syntax.c (multibyte_syntax_as_symbol): New variable.
9843 (syms_of_syntax): Declare it as a Lisp variable.
9844 (SYNTAX_WITH_MULTIBYTE_CHECK): New macro.
9845 (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are
9846 nonzero, treat all multibyte characters as symbol.
42088c12 9847 (init_syntax_once): Give syntax `word' to all multibyte
214f877f
KH
9848 characters.
9849
130adcb7
EZ
98502000-02-22 Eli Zaretskii <eliz@is.elta.co.il>
9851
3cb65b0e 9852 * frame.c (Fdelete_frame): Don't let echo_area_window remain on
d7d0dac0 9853 a deleted frame.
130adcb7 9854
17cbbf95
GM
98552000-02-21 Gerd Moellmann <gerd@gnu.org>
9856
9857 * frame.c (Fmouse_position): GCPRO retval instead of x and y.
9858
9859 * xfns.c (x_window_to_frame, x_any_window_to_frame)
9860 (x_non_menubar_window_to_frame): Check the busy-cursor window.
9861
beb0bc36
DL
98622000-02-21 Dave Love <fx@gnu.org>
9863
9864 * frame.c (Vmouse_position_function): New variable.
9865 (Fmouse_position): Use it.
9866 (syms_of_frame): Install it.
9867
9868 * charset.c (find_charset_in_str): Fix use of `c' instead of `c1'.
9869
1d92afcd
GM
98702000-02-20 Gerd Moellmann <gerd@gnu.org>
9871
9872 * fileio.c (Finsert_file_contents): Unbind the binding of
9873 standard-output done by temp_output_buffer_setup.
329eed9f
GM
9874
9875 * eval.c (funcall_lambda): Don't bind Qmocklisp_arguments unless
9876 Vmocklisp_arguments is nil. Inline Fcar and Fcdr.
9877 (specbind, unbind_to): Handle most common case of non-constant
9878 symbol with trivial value specially.
9879
9880 * bytecode.c (Fbyte_code) <Bvarset>: Inline most common case.
9881
18e21ce8 98822000-02-20 Richard M. Stallman <rms@gnu.org>
2d06696f
RS
9883
9884 * data.c (Fmake_variable_buffer_local): Doc fix.
9885 Init found_for_buffer to 0.
9886 (Fmake_variable_frame_local): If the variable has already
9887 been buffer-local, set the check_frame field.
9888
1d4311c3
EZ
98892000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
9890
9891 * msdos.c (IT_write_glyphs): Allocate a larger screen_buf as data
9892 produced for CODING_MODE_LAST_BLOCK requires.
9893
2dc95ddd
DL
98942000-02-18 Dave Love <fx@gnu.org>
9895
9896 * keyboard.c (echo_keystrokes): Remove declaration.
9897 (Vecho_keystrokes) New variable.
9898 (read_char, record_menu_key, read_key_sequence): Use it to allow
9899 use of float value.
9900 (syms_of_keyboard): Change Vecho_keystrokes declaration.
9901
9902 * lread.c: Undef feature selection macros before defining.
9903
f0930f35
GM
99042000-02-18 Gerd Moellmann <gerd@gnu.org>
9905
9906 * data.c (let_shadows_buffer_binding_p): Ignore specbindings
9907 for symbols other than the symbol in question.
9908
e3d4de90
DL
99092000-02-17 Dave Love <fx@gnu.org>
9910
9911 * s/sol2.h (C_DEBUG_SWITCH): Define to allow optimization.
9912
0b378936
GM
99132000-02-17 Gerd Moellmann <gerd@gnu.org>
9914
d621caf7
GM
9915 * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef.
9916
0b378936
GM
9917 * alloc.c (enum mem_type): Compile unconditionally.
9918
3b451f74
EZ
99192000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
9920
9921 * xfaces.c (tty_defined_color): Don't return faulire indication
9922 for unspecified-fg and unspecified-bg pseudo-colors.
9923
10689a01
GM
99242000-02-17 Gerd Moellmann <gerd@gnu.org>
9925
1216f5e4
GM
9926 * alloc.c (mark_object): Don't mark symbol names in pure space.
9927 (gc_sweep): Don't unmark symbol names in pure space.
9928
9929 * lisp.h (GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
9930 (GC_MARK_STACK_CHECK_GCPROS, GC_USE_GCPROS_CHECK_ZOMBIES)
9931 [GC_MARK_STACK]: New defines.
427ec082 9932 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, UNGCPRO)
1216f5e4
GM
9933 [GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS]: Define as no-ops.
9934
9935 * emacs.c (main) [GC_MARK_STACK]: Initialize stack_base.
9936
9937 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use
9938 allocate_buffer instead of xmalloc.
9939
9940 * alloc.c (toplevel): Include setjmp.h.
9941 (PURE_POINTER_P): New define.
9942 (enum mem_type) [GC_MARK_STACK]: New enumeration.
9943 (Vdead) [GC_MARK_STACK]: New variable.
9944 (lisp_malloc): Add parameter TYPE, call mem_insert if
9945 GC_MARK_STACK is defined.
9946 (allocate_buffer): New function.
427ec082 9947 (lisp_free) [GC_MARK_STACK]: Call mem_delete.
1216f5e4
GM
9948 (free_float) [GC_MARK_STACK]: Set type to Vdead.
9949 (free_cons) [GC_MARK_STACK]: Set car to Vdead.
9950 (stack_base, mem_root, mem_z) [GC_MARK_STACK]: New variables.
9951 (MEM_NIL) [GC_MARK_STACK]: New define.
9952 (struct mem_node) [GC_MARK_STACK]: New structure.
9953 (mem_init, mem_find, mem_insert, mem_delete, mem_insert_fixup)
9954 (mem_delete_fixup, mem_rotate_left, mem_rotate_right)
9955 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
9956 (live_misc_p, live_vector_p, live_buffer_p, mark_memory)
9957 (mark_stack) [GC_MARK_STACK]: New functions.
9958 (Fgarbage_collect) [GC_MARK_STACK]: Call mark_stack.
9959 (clear_marks): Removed.
9960 (gc_sweep): Set free conses' car, free floats' type, free
9961 symbols' function to Vdead. Use lisp_free to free buffers.
9962 (init_alloc_once): Initialize Vdead.
9963 (survives_gc_p): Return non-zero for pure objects.
9964
9965 * alloc.c: Add comments throughout the file.
9966
2503c8b1
GM
9967 * atimer.c (stop_other_atimers): Don't call cancel_atimer because
9968 that unblocks alarms.
9969
8389e1e2
GM
9970 * alloc.c, bytecode.c, data.c, dispnew.c, ecrt0.c, editfns.c,
9971 emacs.c, floatfns.c, fns.c, lread.c, print.c, config.in, lisp.h,
9972 Makefile.in: Remove `LISP_FLOAT_TYPE' and `standalone'.
9973
10689a01 9974 * frame.c (make_frame): Set frame initiallly to `garbaged'.
427ec082 9975
bfc17d18
KH
99762000-02-17 Kenichi Handa <handa@etl.go.jp>
9977
4a09dee0
KH
9978 * xdisp.c (decode_mode_spec_coding): Delete superfluous code to
9979 avoid infinite error signaling. Allocate sufficient memory for
9980 eol_str in the case that eoltype is Lisp_Int.
bfc17d18 9981
2b927d02
SM
99822000-02-17 Stefan Monnier <monnier@cs.yale.edu>
9983
9984 * syntax.c (Fforward_comment): Undo the previous change, since cc-mode
9985 depends on the previous behavior.
9986
b49cb764
GM
99872000-02-16 Gerd Moellmann <gerd@gnu.org>
9988
9989 * sysdep.c (vfork) [!HAVE_VFORK]: Removed.
9990
99e95407
GM
99912000-02-15 Gerd Moellmann <gerd@gnu.org>
9992
9993 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define.
9994
9995 * process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
b49cb764 9996 Workaround for FreeBSD bug. Clear output queue after EAGAIN in
99e95407
GM
9997 write(2).
9998
6ffd3cf7
RS
99992000-02-15 Richard M. Stallman <rms@gnu.org>
10000
10001 * data.c (set_internal): Don't make variable buffer-local
10002 if within a let-binding for the same buffer.
10003 (let_shadows_buffer_binding_p): New function.
10004
10005 * eval.c (specbind): For buffer-local value,
10006 record the current buffer also.
10007 (unbind_to): Cope with that change.
10008
cad53475
GM
100092000-02-15 Gerd Moellmann <gerd@gnu.org>
10010
10011 * window.c (Fsave_window_excursion): Doc fix.
10012
1aa963c8
SM
100132000-02-15 Stefan Monnier <monnier@cs.yale.edu>
10014
10015 * syntax.c (back_comment): Make sure we only consider comment-starters
10016 of the relevant style and return -1 in case of a failure to find the
10017 beginning of the comment.
10018 (Fforward_comment): If back_comment fails, go back to the position just
10019 after the comment-end.
10020 (scan_lists): Add comment describing a very minor bug.
10021
b9b84fd3
SM
100222000-02-14 Stefan Monnier <monnier@cs.yale.edu>
10023
10024 * minibuf.c (Ftry_completion, Fall_completions): Add a reference to
10025 `completion-regexp-list' in the docstring.
10026
3a28db80
DL
100272000-02-14 Dave Love <fx@gnu.org>
10028
10029 * xfaces.c (tty_defined_color): Declare color_idx unsigned long.
10030
fb4a568d
SM
100312000-02-14 Stefan Monnier <monnier@cs.yale.edu>
10032
10033 * regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
10034 to Emacs' syntax. Also fix the comment about set/not-set meanings
10035 since Emacs syntax is not the value 0 any more.
10036 * search.c (compile_pattern_1): Remove RE_CHAR_CLASSES from the syntax
10037 since it's now part of RE_SYNTAX_EMACS.
10038
1063ebb5
DL
100392000-02-12 Dave Love <fx@gnu.org>
10040
10041 * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on
10042 Alpha.
10043
fb07a302
GM
100442000-02-12 Gerd Moellmann <gerd@gnu.org>
10045
10046 * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively.
10047
aaf2320c
DL
100482000-02-12 Dave Love <fx@gnu.org>
10049
10050 * s/aix3-2.h, s/osf-1.h: Define C_DEBUG_SWITCH for non-gcc.
10051
10052 * s/ux4800.h, s/umips.h, s/umax.h, s/sol2.h, s/sco5.h, s/rtu.h:
fb07a302
GM
10053 * s/ptx4.h, s/umax.h, s/dgux.h, s/bsd4-2.h, s/bsd4-3.h:
10054 * s/hpux.h: Don't define HAVE_VFORK.
aaf2320c
DL
10055
10056 * s/gnu-linux.h: Don't define HAVE_VFORK or HAVE_SYS_SIGLIST.
10057
10058 * s/nextstep.h: Don't define HAVE_ALLOCA.
10059
10060 * config.in: Add vfork bits.
10061
eedf8bde
GM
100622000-02-12 Gerd Moellmann <gerd@gnu.org>
10063
10064 * process.c (Fopen_network_stream) [POLL_FOR_INPUT]: Register
10065 unwind function to undo the effect of stopping atimers.
10066
10067 * keyboard.c (bind_polling_period): Stop all timers except
10068 poll_timer.
10069
10070 * atimer.c (stopped_atimers): New variable.
10071 (stop_other_atimers, run_all_atimers, unwind_stop_other_atimers):
10072 New functions.
10073
10074 * atimer.h (stop_other_atimers, run_all_atimers)
10075 (unwind_stop_other_atimers): Add function prototypes.
427ec082 10076
eedf8bde
GM
10077 * s/hpux10.h (HAVE_XRMSETDATABASE): Define if not already defined.
10078
8476c2f8
KR
100792000-02-11 Ken Raeburn <raeburn@gnu.org>
10080
10081 * Makefile.in (LIBX): Link in tiff library before jpeg, since tiff
10082 library may depend on jpeg.
10083 (atimer.o): Depends on atimer.c.
10084
0e85e4a3
KH
100852000-02-11 Kenichi Handa <handa@etl.go.jp>
10086
10087 * insdel.c (del_range_1): Call update_compositions.
10088 (del_range_both): Call update_compositions just once..
10089
97fa0cc8
DL
100902000-02-10 Dave Love <fx@gnu.org>
10091
10092 * xfns.c (create_frame_xic): Fix initialization of automatic
10093 aggregates for pcc.
10094
25566a3c
KH
100952000-02-09 Kenichi Handa <handa@etl.go.jp>
10096
10097 * ccl.c (CCL_MAKE_CHAR): New macro.
10098 (ccl_driver) <CCL_TranslateCharacter>: Check the validity of
10099 registers by CCL_MAKE_CHAR before calling translate_char.
10100 <CCL_TranslateCharacterConstTbl> Likewise.
10101
69da54ba
DL
101022000-02-08 Dave Love <fx@gnu.org>
10103
10104 * lread.c (__EXTENSIONS__): Define.
10105
f7136ee8
GM
101062000-02-08 Gerd Moellmann <gerd@gnu.org>
10107
10108 * puresize.h (BASE_PURESIZE): Increase to 650000.
10109
7768790b
EZ
101102000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
10111
10112 * msdos.c (XMenuActivate): Turn off the cursor after displaying
10113 the help message.
10114
38fd211b
EZ
101152000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
10116
10117 * s/msdos.h (INTERNAL_TERMINAL): Add capabilities se, so, us, ue,
10118 md, mh, mb, mr, and me to the fake termcap entry.
10119
66e4690f
KR
101202000-02-06 Ken Raeburn <raeburn@gnu.org>
10121
10122 * sound.c (sound_cleanup): Don't call device close routine if the
10123 function pointer is null.
10124
a75dfea0
AI
101252000-02-06 Andrew Innes <andrewi@gnu.org>
10126
10127 * dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
10128 around image definitions and prototypes.
10129 (gamma_correct) [WINDOWSNT]: New prototype.
10130
10131 * w32term.c (x_make_frame_visible): Replace call to
10132 input_poll_signal with poll_for_input.
10133
10134 * window.c [WINDOWSNT]: Include w32term.h.
10135
10136 * xdisp.c [WINDOWSNT]: Include w32term.h.
10137
10138 * makefile.nt: Add dependencies on w32gui.h.
10139 (OBJ1): Include atimer.obj.
10140 ($(BLD)\atimer.obj): New dependency rule.
10141
10142 * w32.c (sigmask): New function (does nothing).
10143 (sigunblock): Ditto.
10144
10145 * frame.c [WINDOWSNT]: Include w32term.h.
10146
10147 * w32gui.h (struct W32FontStruct): Add ascent and descent slots.
10148
10149 * lread.c (syms_of_lread): Fix literal newlines.
10150
10151 * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around
10152 the string constant limit (2048 bytes) in MSVC.
10153 (main): Ditto.
10154
59ddecde
GM
101552000-02-05 INOUE Seiichiro <inoue@ainet.or.jp>
10156
10157 * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit
10158 area.
10159 (x_display_cursor) [HAVE_X_I18N]: Don't set it here.
10160 (XTread_socket) [HAVE_X_I18N]: <KeyPress, KeyRelease>: Don't
10161 dispatch the event.
10162
07590973
DL
101632000-02-04 Dave Love <fx@gnu.org>
10164
10165 * fileio.c: Remove some unused vars.
10166 (_GNU_SOURCE): Define (for euidaccess).
10167
10168 * lread.c (_XOPEN_SOURCE): Declare (for ftello).
10169
10170 * minibuf.c (read_minibuf_noninteractive): Remove undeclared
10171 gcpro1, gcpro2.
10172 (read_minibuf): Deal with allow_props correctly.
10173
649351f9
EZ
101742000-02-03 Eli Zaretskii <eliz@is.elta.co.il>
10175
10176 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Enlarge to 60000.
10177
66e4690f 101782000-02-03 Ken Raeburn <raeburn@gnu.org>
f1b9c7c1
KR
10179
10180 * search.c (compile_pattern): If a cache entry has a nil regexp,
10181 fill in that entry instead of clobbering a previously cached
10182 string regexp.
10183
66e4690f 101842000-02-02 Ken Raeburn <raeburn@gnu.org>
15c9cf81
KR
10185
10186 * puresize.h (BASE_PURESIZE): Increase to 610000.
10187
d240a249
GM
101882000-02-02 Gerd Moellmann <gerd@gnu.org>
10189
10190 * frame.c (Fframe_parameters): Add GCPRO because tty_color_name
10191 can GC.
10192
ca91fb26
KH
101932000-02-02 Kenichi Handa <handa@etl.go.jp>
10194
25660570
KH
10195 * ccl.c (ccl_driver) <CCL_WriteExprRegister>: Set jump_address
10196 instead of incrementing ic directly.
10197 <CCL_WriteExprConst> Likewise.
10198 <ccl_set_expr>: Set ic to jump_address.
10199
ca91fb26
KH
10200 * fileio.c (e_write): Fix the handling of
10201 CODING_FINISH_INSUFFICIENT_SRC.
10202
2ede9689
DL
102032000-02-01 Dave Love <fx@gnu.org>
10204
10205 * editfns.c (Fpropertize): Doc fix.
10206
10207 * process.c (Fstart_process): Doc fix.
10208
10209 * eval.c: Fix various doc strings not to duplicate information
10210 from help-manyarg-func-alist.
10211
10212 * window.c (Fset_window_margins): Don't make interactive. Doc
10213 fix.
10214
10215 * doc.c (Vhelp_manyarg_func_alist): New variable.
10216 (Fdocumentation): Use it.
10217 (syms_of_doc): Define it.
10218
b6680a0e
GM
102192000-01-31 Gerd Moellmann <gerd@gnu.org>
10220
2cb750ba
GM
10221 * xterm.c (xim_open_dpy): Remove unused local variable.
10222
74e9213b
GM
10223 * emacs.c (USAGE): Use term `display options' instead of `X
10224 options'.
10225
10226 * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
10227 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
10228
b6680a0e
GM
10229 * fns.c (sweep_weak_table): New function.
10230 (sweep_weak_hash_tables): Use it. Keep on marking until there
10231 is no more change.
10232
994c5afe
GM
102332000-01-30 Gerd Moellmann <gerd@gnu.org>
10234
10235 * xterm.c (x_delete_display): Update next_noop_dpyinfo to ensure
10236 that XTread_socket does not crash by trying to call XNoOp on a
10237 closed display.
427ec082 10238
f00276e3
JR
102392000-01-30 Jason Rumney <jasonr@gnu.org>
10240
10241 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
10242 Change selected_frame to SELECTED_FRAME ().
10243 (w32_console_mouse_position): Remove #ifndef MULE from around
10244 `insist' parameter.
10245
10246 * makefile.nt: Remove dosfns.obj.
10247
10248 * term.c (term_init) [WINDOWSNT]: Initialize TN_max_colors.
10249
10250 * w32fns.c (w32_defined_color): Check for valid frame before
10251 applying gamma correction. Eliminate dependency on frame elsewhere.
10252 (w32_load_system_font): Switch FIXED_PITCH and VARIABLE_PITCH.
10253 (w32_to_x_font): Use resx and resy not height_in and width_in.
10254 (x_to_w32_font): Doc fix.
10255 (xlfd_strip_height): New function to strip and return font height.
10256 (w32_font_match): Compare height separately from rest of xlfd
10257 spec, using xlfd_strip_height.
10258
10259 * w32term.c (w32_term_init): Swap resx and height_in, resy and
10260 width_in. Use w32_defined_color in place of defined_color.
10261
10262 * w32faces.c: Merge more of DOS and X specifics in preparation for
10263 merge with xfaces.c.
10264 (defined_color): Remove FIXME comment.
10265 (tty_color_name): Provide w32-specific function.
10266 (realize_tty_face): Handle FACE_TTY_DEFAULT*_COLOR specially.
10267
10268 * w32console.c (turn_on_face, turn_off_face): Removed.
10269 (w32_face_attributes): New function.
10270 (Global_variables): Reduce scope where possible.
10271 (clear_frame, ins_del_lines, scroll_line): Use char_attr_normal as
10272 fill attribute.
10273 (hl_mode): Don't modify text attributes.
10274 (write_glyphs): Don't do anything if len <= 0. Use
10275 w32_face_attributes to get attributes for drawing. Write
10276 terminating codes using char_attr_normal.
10277 (reset_terminal_modes, set_terminal_modes): Turn off highlight.
10278 (update_begin, update_end): Likewise.
10279 (vga_stdcolor_name): New function.
10280 (initialize_w32_display): Remove char_attr_reverse and char_attr.
10281 (Fset_screen_color): Remove char_attr_reverse.
10282
b08e8bb2
GM
102832000-01-29 Gerd Moellmann <gerd@gnu.org>
10284
10285 * xfns.c (xic_set_preeditarea): Take window parameter and
10286 window-relative pixel-positions.
10287
10288 * xterm.c (x_display_cursor): Set XIC pre-edit area only if window
10289 is its frame's selected window.
10290 (xim_instantiate_callback): Likewise.
10291
10292 * xfns.c (x_create_im): Removed.
10293 (DEFAULT_STYLE, DEFAULT_FONT): Removed.
10294 (supported_xim_styles): Renamed from supported_styles.
10295 (best_xim_style): Renamed from best_style.
10296 (create_frame_xic): Renamed from xic_create_frame.
10297 (free_frame_xic): Renamed from xic_destroy_frame.
427ec082 10298
b08e8bb2
GM
102992000-01-29 INOUE Seiichiro <inoue@ainet.or.jp>
10300
10301 * xterm.c (XTread_socket) [HAVE_X_I18N]: If event is for none of
10302 our frames, call XFilterEvent with 2nd parameter `None'.
10303 (XTread_socket) <KeyPress> [HAVE_X_I18N]: Handle XmbLookupString
10304 returning XBufferOverflow.
10305 (XTread_socket) <ConfigureNotify> [HAVE_X_I18N]: Set XIC status
10306 area.
10307 (x_display_cursor) [HAVE_X_I18N]: Set XIC pre-edit area.
10308 (x_new_fontset) [HAVE_X_I18N]: Create XIC status area fontset.
10309 (xim_destroy_callback, xim_open_dpy, xim_instantiate_callback)
10310 (xim_initialize, xim_close)
10311 [HAVE_X_I18N && HAVE_X11R6]: New functions.
10312 (x_destroy_window) [HAVE_X_I18N]: Call xic_destroy_frame.
10313 (x_term_init) [HAVE_X_I18N]: Call xim_initialize.
10314 (x_delete_display) [HAVE_X_I18N]: Call xim_close.
10315
10316 * xterm.h (struct x_display_info) [HAVE_X_I18N]: Add members `xim'
10317 and `xim_styles'.
10318 (struct x_output) [HAVE_X_I18N]: Remove member `xim', add
10319 `xic_style' and `xic_xfs'.
10320 (FRAME_MENUBAR_HEIGHT, FRAME_X_XIM, FRAME_X_XIM_STYLES)
10321 (FRAME_XIC_STYLE, FRAME_XIC_FONTSET): New macros.
10322 (FRAME_XIM): Removed.
10323
10324 * xfns.c (supported_styles): New variable.
10325 (DEFAULT_STYLE, DEFAULT_FONT): New macros
10326 (xic_create_xfontset, best_style, xic_create_frame)
10327 (xic_destroy_frame, xic_set_preeditarea, xic_set_statusarea)
10328 (xic_set_xfontset): New functions.
10329
142e109c
DL
103302000-01-28 Dave Love <fx@gnu.org>
10331
10332 * s/irix6-5.h: Revert last change after change to irix5-0.h.
10333
10334 * m/iris4d.h (C_SWITCH_MACHINE): Don't use -G0.
10335
b02786f9
GM
103362000-01-28 Gerd Moellmann <gerd@gnu.org>
10337
d060bc9f
GM
10338 * buffer.c (Fother_buffer): Don't call Fset_buffer_major_mode
10339 for *scratch* if it already existed.
10340
b02786f9
GM
10341 * emacs.c (USAGE): New macro.
10342 (main): Use it to display usage information.
10343
2c52d7e4
EZ
103442000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10345
10346 Support for the menu-help feature:
10347
10348 * msdos.h: Change prototypes of XMenuAddSelection and
10349 XMenuActivate.
10350
10351 * msdos.c (IT_clear_end_of_line): Print the extent of the cleared
10352 part of the line to the termscript file.
10353 (IT_clear_to_end): Clear the entire line, not just its beginning.
10354 (menu_help_message, prev_menu_help_message): New variables.
10355 (IT_menu_make_room): Make room for the help_text member.
10356 (IT_menu_display): New argument disp_help; all callers changed.
10357 If disp_help is non-zero, store the help text of the active menu
10358 item in menu_help_message.
10359 (XMenuAddPane): Initialize the help_text member to NULL.
10360 (XMenuAddSelection): New argument help_text. Store it in the
10361 XMenu structure.
10362 (XMenuActivate): New argument help_callback. If the value of
10363 menu_help_message has changed since the last time, display the
10364 menu help message text while waiting for the mouse to move. Clear
10365 the echo area before exiting.
10366 (XMenuDestroy): Free the help_text member.
10367
ffe0bcd1
GM
103682000-01-27 Gerd Moellmann <gerd@gnu.org>
10369
10370 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT]: Pass help to
10371 XMenuAddSelection. Pass help callback to XMenuActivate.
10372 (menu_help_callback) [!USE_X_TOOLKIT]: New function.
10373
50dbd23f
EZ
103742000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
10375
10376 * atimer.c (start_atimer) [!HAVE_SETITIMER]: Use EMACS_SET_SECS
10377 and EMACS_SET_USECS.
10378
f5941bf8
GM
103792000-01-26 Dave Love <fx@gnu.org>
10380
6c67ddee
DL
10381 * editfns.c (Fchar_after, Fchar_before): Doc fix.
10382
f5941bf8
GM
10383 * bytecode.c (Fbyte_code): Use {BEFORE,AFTER}_POTENTIAL_GC where
10384 an error may be signalled.
10385
9e49c990
GM
103862000-01-26 Gerd Moellmann <gerd@gnu.org>
10387
fc3cb460
GM
10388 * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
10389 LD_SWITCH_SYSTEM inherited from irix5-0.h.
10390
9e49c990
GM
10391 * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
10392
d0c037d8
GM
103932000-01-25 Gerd Moellmann <gerd@gnu.org>
10394
10395 * charset.c (Fstring): If there is a multibyte char among
10396 the args, always return a multibyte string.
10397
e12489f9
GM
103982000-01-25 Gerd Moellmann <gerd@gnu.org>
10399
10400 * sysdep.c (sys_select): Turn atimers off and on instead of
10401 recording and restoring old alarm handler
10402
10403 * process.c (toplevel): Include atimer.h.
10404 (create_process_1): Rewritten.
10405 (create_process): Use atimers instead of alarm.
10406 (wait_reading_process_input) [hpux]: Turn atimers off instead
10407 of turning off SIGALRM.
10408 (wait_reading_process_input): Turn off atimers instead off
10409 calling stop_polling.
10410
10411 * emacs.c (main): Call init_atimer.
10412
10413 * keyboard.c (toplevel): Include systime.h and atimer.h.
10414 (polling_for_input): Removed because unused.
10415 (input_poll_signal) [POLL_FOR_INPUT]: Removed.
10416 (poll_timer): New variable.
10417 (poll_for_input, poll_for_input_1): New functions.
10418 (start_polling, stop_polling): Rewritten.
10419
10420 * keyboard.h (polling_for_input): Removed.
427ec082 10421
e12489f9
GM
10422 * atimer.h, atimer.c: New files.
10423
10424 * Makefile.in (obj): Add atimer.o.
10425 (atimer.o): New target.
10426
10427 * blockinput.h (pending_atimers): Add extern declaration.
10428 (UNBLOCK_INPUT): Rewritten. Handle pending atimers.
10429
10430 * lisp.h (popup_activated_flag): Add extern declaration.
10431
10432 * xmenu.c (popup_activated_flag): Make externally visible.
10433 (popup_activate_callback) [USE_MOTIF]: Increment
10434 popup_activated_flag.
10435 (popup_deactivate_callback) [USE_MOTIF]: Decrement it.
10436
10437 * xterm.c (toplevel): Include atimer.h.
10438 (toolkit_scroll_bar_interaction): New variable.
10439 (Fxt_process_timeouts): Removed.
10440 (x_process_timeouts): New function.
10441 (xt_action_hook): Clear toolkit_scroll_bar_interaction.
10442 (x_send_scroll_bar_event): Set toolkit_scroll_bar_interaction.
10443 (x_make_frame_visible): Call poll_for_input_1 instead of
10444 input_poll_signal. Don't call alarm.
10445 (x_initialize): Install timer calling x_process_timeouts.
427ec082 10446
1e5279b9
DL
104472000-01-24 Dave Love <fx@gnu.org>
10448
6c67ddee 10449 * s/irix5-0.h: Don't set LD_SWITCH_SYSTEM -- we use unexelf now.
1e5279b9
DL
10450 Don't use -cckr -- apparently not now necessary.
10451
edf6aeb8
EZ
104522000-01-24 Eli Zaretskii <eliz@is.elta.co.il>
10453
10454 * msdos.c (IT_menu_display): Truncate long menu lines at the right
10455 screen boundary.
10456
9badad41
JR
104572000-01-23 Jason Rumney <jasonr@gnu.org>
10458
10459 * w32fns.c (w32_defined_color): Apply gamma correction before
10460 trying to map to the palette.
10461 (w32_wnd_proc) [WM_ERASE_BACKGROUND]: Pass device context of frame
10462 to w32_clear_rect.
10463
10464 * w32term.c (w32_fill_rect): Do not try to deal with NULL hdc
10465 here. Callers changed to always pass real device context.
10466 (w32_draw_bitmap): Likewise.
10467 (w32_get_glyph_overhangs): Likewise.
10468 (w32_draw_box_rect): Make use of s->hdc rather than getting a new
10469 one.
10470 (w32_set_vertical_scroll_bar): Pass correct HWND parameters to
10471 pfnSetScrollInfo and SetScrollRange.
10472 (x_get_char_face_and_encoding): Don't turn iso8859-1 characters
10473 back into MULE characters after decoding them.
10474 (x_get_glyph_face_and_encoding): Likewise.
10475 (w32_per_char_metric): Use GetCharExtentPoint32W as fallback when
10476 GetCharABCWidthsW fails, since this is defined on Windows 9x.
10477 (x_produce_glyphs): Calculate per char metrics for a character
10478 that we know exists in default font when font_not_found_p is true.
10479
63bd786b
JR
104802000-01-22 Jason Rumney <jasonr@gnu.org>
10481
10482 * makefile.nt (intervals.obj, composite.obj): New modules.
10483 (composite.h): Added as dependency where appropriate.
10484
10485 * w32gui.h (XGCValue): New struct for emulating X GCs.
10486
10487 * w32term.h (XCharStruct): New struct for emulating X.
10488
10489 * w32console.c (turn_on_face, turn_off_face): New functions.
10490 (change_line_highlight): New prototype for new redisplay.
10491 (write_glyphs): Support multibyte text. Support faces.
10492
10493 * w32faces.c: Complete rewrite for new redisplay based on new
10494 xfaces.c.
10495
10496 * w32fns.c: Use SELECTED_FRAME macro in place of selected_frame
10497 throughout. struct frame * in place of FRAME_PTR.
10498 Skeleton support for images, toolbars, tooltips from xfns.c.
10499 (Fx_create_frame): Use system default for default scroll bar
10500 width.
10501 (w32_get_arg): Renamed from x_get_arg.
10502 (Fx_file_dialog): New function.
10503 (w32_list_fonts): Check cache before asking system.
10504 (Vw32_enable_synthesized_fonts): New variable.
10505 (Vw32_enable_italics): Obsolete, removed.
10506
10507 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
10508 Use SELECTED_FRAME macro.
10509
10510 * w32menu.c: Add skeleton support for help strings on menus.
10511 (add_menu_item): Native checkbox and radio support added, but not
10512 yet enabled due to bugs.
10513 (push_menu_item): Add parameters type, selection and help.
10514 Callers updated.
10515 Formatting changes to reduce unnecessary diffs with xmenu.c.
10516
10517 * w32select.c (Fw32_set_clipboard_data): Update call to
10518 find_charset_in_str.
10519
10520 * w32term.c: Complete rewrite for new redisplay based on new
10521 xterm.c with necessary sections merged back in from old w32term.c.
10522
6ffd3cf7 105232000-01-21 Richard M. Stallman <rms@gnu.org>
b50c9214
RS
10524
10525 * data.c (set_internal): Further fix in same criterion.
10526
6ffd3cf7 105272000-01-20 Richard M. Stallman <rms@gnu.org>
8cc95642
RS
10528
10529 * data.c (set_internal): Fix the criteria for whether
10530 to swap out the old cached binding.
10531
60af03f1
DL
105322000-01-19 Dave Love <fx@gnu.org>
10533
10534 * lread.c: (syms_of_lread) [user-init-file]: Doc change.
10535
f9be074f
KH
105362000-01-18 Kenichi Handa <handa@etl.go.jp>
10537
10538 * regex.c (re_compile_fastmap): While checking a range table for
10539 `charset', skip flag bits for a character class correctly.
10540
52b8dbf9
GM
105412000-01-17 Gerd Moellmann <gerd@gnu.org>
10542
d36100c9
GM
10543 * m/news-risc.h (LD_SWITCH_MACHINE): Define differently for GCC.
10544
52b8dbf9
GM
10545 * xfns.c (x_window): Call lw_create_widget with new parameter
10546 list.
10547
10548 * widget.c (EmacsFrameSetCharSize): Change size of children first
10549 because of problems with main window geometry management under
10550 Lesstif.
10551
10552 * xmenu.c (enum menu_item_idx): New enumeration replacing defines
10553 MENU_ITEMS_ITEM_.*.
10554 (MENU_ITEMS_ITEM_HELP): New enumerator.
10555 (push_menu_item): Add parameter HELP. Record help in menu_items.
10556 (single_menu_item, single_submenu, list_of_items): Call
10557 push_menu_item with new parameter.
10558 (single_submenu): Set help string in widget value.
10559 (menu_highlight_callback): New function.
10560 (set_frame_menubar): Call lw_create_widget with new
10561 parameter list.
10562 (xmenu_show, xdialog_show): Ditto.
10563
3139018f
GM
105642000-01-13 Gerd Moellmann <gerd@gnu.org>
10565
10566 * sound.c (Fplay_sound): Improve doc string.
10567
83c8f461
RS
105682000-01-11 Richard M. Stallman <rms@gnu.org>
10569
10570 * lisp.h (set_internal): Enter the new arg.
10571
10572 * eval.c (specbind): Record buffer-local variables specially,
10573 indicating which buffer's binding was saved.
10574 (unbind_to): Restore buffer-local variables specially
10575 in the proper buffer.
10576
10577 * data.c (set_internal): New arg BUF.
427ec082 10578
83c8f461
RS
10579 * eval.c (specbind, unbind_to): Pass new arg to set_internal.
10580 * data.c (Fset): Pass new arg to set_internal.
10581 * bytecode.c (Fbyte_code): Pass new arg to set_internal.
427ec082 10582
1fab1775
GM
105832000-01-11 Gerd Moellmann <gerd@gnu.org>
10584
10585 * .gdbinit: Adapt to new strings. Add xbacktrace, xreload,
10586 xprintsym.
10587
83c8f461 105882000-01-11 Richard M. Stallman <rms@gnu.org>
6f59462e
RS
10589
10590 * minibuf.c (Ftry_completion): Doc fix.
10591
7a85e4df
GM
105922000-01-11 Gerd Moellmann <gerd@gnu.org>
10593
10594 * keyboard.c (Fclear_this_command_keys): Clear recent_keys
10595 vector, too.
10596
a970dae4
AS
105972000-01-11 Andreas Schwab <schwab@suse.de>
10598
10599 * coding.c (code_convert_region): Initialize total_skip.
10600
c65d14ee
DL
106012000-01-08 Dave Love <fx@gnu.org>
10602
10603 * eval.c (Fuser_variable_p): Check customizability too.
10604
834938d2
GM
106052000-01-07 Gerd Moellmann <gerd@gnu.org>
10606
10607 * minibuf.c (Fcompleting_read): Doc fix.
10608
e0303cd6
GM
106092000-01-05 Gerd Moellmann <gerd@gnu.org>
10610
8a26744b
GM
10611 * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and
10612 -L /usr/local/lib.
10613
e0303cd6
GM
10614 * xfns.c (x_create_im): New function to set IM and IC of a frame.
10615 Check that input style is supported before trying to create an
10616 IC for it.
10617 (x_window): Call x_create_im.
427ec082 10618
2e471eb5
GM
106192000-01-04 Gerd Moellmann <gerd@gnu.org>
10620
560a7bd2
GM
10621 * xfns.c (current_gif_memory_src): New variable.
10622 (gif_load): Record the address of the current memory source
10623 in current_gif_memory_src.
10624 (gif_read_from_memory): Use current_gif_memory_src.
10625
f9ee84a3
GM
10626 * systime.h (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME): Give
10627 macros statement form.
10628
d1299cde
GM
10629 * sound.c (struct sound): Renamed from struct sound_file.
10630 (struct sound): Add members `data' and `header_size'.
10631 (enum sound_attr): Add SOUND_DATA.
10632 (current_sound, current_sound_device): Variables renamed from
10633 sound_file and sound_device.
10634 (parse_sound): Parse :data.
10635 (parse_sound): Handle sound data in strings.
10636 (find_sound_type): Function renamed from find_sound_file_type.
427ec082 10637 (wav_init, au_init): Fail if sound's header_size is smaller than
d1299cde
GM
10638 needed header size.
10639 (wav_play, au_play): Play sounds from string data.
10640
2e471eb5
GM
10641 * puresize.h (BASE_PURE_SIZE): Increase to 600000.
10642
10643 * lisp.h: Add prototype for allocate_string_data.
10644
10645 * alloc.c (Fgarbage_collect): Return number of live and free
10646 strings.
10647
10648 * alloc.c (mark_buffer): Remove code in #if 0.
10649 (gc_sweep): Ditto.
10650 (UNMARK_BALANCE_INTERVALS): Give the macro statement form.
10651 (strings_consed): New variable.
10652 (allocate_string): Set it.
10653 (syms_of_alloc): Add DEFVAR_INT for strings_consed.
10654 (Fmemory_use_counts): Return strings_consed. Use Flist.
10655
10656 * alloc.c: General cleanup in comments etc. Remove conditional
10657 compilation for `standalone'.
10658
10659 * lisp.h (struct Lisp_String): Make DATA member `unsigned char *'.
10660
10661 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P):
10662 (GC_STRING_BYTES, GC_STRING_CHARS): New macros.
10663 (DONT_COPY_FLAG): Removed.
10664 (SBLOCK_SIZE, LARGE_STRING_BYTES): New macros.
10665 (struct sdata, struct sblock): New
10666 (struct string_block): Rewritten.
10667 (STRINGS_IN_STRING_BLOCK): New macro.
10668 (oldest_sblock, current_sblock, total_strings, total_free_strings)
10669 (large_sblocks, string_blocks, string_free_list): New variables.
10670 (NEXT_FREE_LISP_STRING, SDATA_OF_STRING, SDATA_SIZE): New macros.
10671 (init_strings): Rewritten.
10672 (allocate_string, allocate_string_data, compact_small_strings)
10673 (free_large_strings, sweep_strings): New functions.
10674 (STRING_BLOCK_SIZE, STRING_BLOCK_OUTSIZE)
10675 (struct string_block_head, current_string_block)
10676 (first_string_block, large_string_blocks, STRING_FULLSIZE)
10677 (STRING_PAD): Removed.
10678 (make_uninit_multibyte_string, make_pure_string): Rewritten.
10679 (Fgarbage_collect): Don't set mark bit in large strings.
10680 (mark_object): Mark strings differently. Mark symbol names
10681 differently.
10682 (survives_gc_p): Test marked strings differently.
427ec082 10683 (gc_sweep): Sweep strings differently, unmark strings in
2e471eb5
GM
10684 symbol names.
10685 (compact_strings): Removed.
10686
42608ba8
EZ
106872000-01-04 Eli Zaretskii <eliz@is.elta.co.il>
10688
10689 * xfaces.c (syms_of_xfaces): defsubr Scolor_gray_p and
10690 Scolor_supported_p even if HAVE_X_WINDOWS is not defined.
10691
e0a09e1a
KH
106922000-01-04 Kenichi Handa <handa@etl.go.jp>
10693
dd9f0750 10694 * fileio.c (Finsert_file_contents): Signal error if visiting file
427ec082 10695 in a non-empty buffer.
dd9f0750 10696
3c0f3b15 10697 * term.c (encode_terminal_code): Fix the previous change.
e0a09e1a 10698
44cd3ae5
GM
106992000-01-03 Gerd Moellmann <gerd@gnu.org>
10700
10701 * xfaces.c (syms_of_xfaces): Change Sface_color_gray_p to
10702 Scolor_gray_p, Sface_color_supported_p to Scolor_supported_p.
10703
10704 * s/hpux9.h (NO_EDITRES): Define even if HAVE_LIBXMU.
10705
c182a70f
EZ
107062000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
10707
10708 * xdisp.c (handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No
10709 need to test for MSDOS frames.
10710
24480d5b
EZ
107112000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
10712
10713 * dosfns.c (unspecified_colors): Remove.
10714 (msdos_stdcolor_idx): Use global variables unspecified_fg and
10715 unspecified_bg.
10716 (msdos_stdcolor_name): Return strings for unspecified fore- and
10717 back-ground colors.
10718
10719 * xfaces.c (Qunspecified_fg, Qunspecified_bg): Remove.
aaf2320c 10720 (syms_of_xfaces): Remove their staticpro's.
24480d5b
EZ
10721 (tty_color_name): Return Lisp strings for unspecified fore- and
10722 back-ground colors.
10723 (Finternal_set_lisp_face_attribute): Remove the special treatment
10724 for Qunspecified_{f,b}g.
10725 (realize_default_face): Replace Qunspecified_{f,b}g with a Lisp
10726 string.
10727
047f434a
GM
107282000-01-03 Gerd Moellmann <gerd@gnu.org>
10729
10730 * xdisp.c (reseat_at_next_visible_line_start): Position before
10731 newline only if ending up on a newline.
10732 (next_element_from_ellipsis): Return success. Handle case of
10733 displaying no ellipsis. Fix case of ellipsis defined in display
10734 table.
10735 (next_element_from_buffer): Return 0 if next_element_from_ellipsis
10736 returns 0.
10737
d684c676
EZ
107382000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
10739
10740 * xfaces.c (Fcolor_gray_p): Renamed from face-color-gray-p.
10741 (Fcolor_supported_p): Renamed from face-color-supported-p.
10742
5fe1d139
EZ
107432000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
10744
10745 * xfaces.c (tty_defined_color): Pass frame to tty-color-desc. The
10746 list of colors renamed to tty-defined-color-alist.
10747 (tty_color_name): Pass the frame to tty-color-by-index.
10748 (realize_tty_face): tty-color-alist is now a function which
10749 accepts the frame as argument.
10750
10751 * term.c (Ftty_display_color_p): Accept an optional argument
10752 FRAME.
10753
816be8b8
EZ
107542000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
10755
10756 * term.c (insert_glyphs): Pass glyph, not &glyph, to
10757 encode_terminal_code.
10758
b635321e
EZ
107592000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
10760
10761 * dispnew.c (mode_line_string): Support termcap frames as well.
10762
9b784e96
GM
107632000-01-01 Gerd Moellmann <gerd@gnu.org>
10764
27189709
GM
10765 * syntax.c (Fforward_word): Undo previous change.
10766
10767 * editfns.c (Fconstrain_to_field): Don't constrain if
10768 inhibit-field-text-motion is non-nil.
10769 (Fline_beginning_position): Undo previous change.
10770 (Fline_end_position): Ditto.
10771
10772 * syntax.c (Fforward_word): Notice field boundaries only if
10773 inhibit-field-text-motion is nil.
10774
10775 * lisp.h: Add extern declaration for Vinhibit_field_text_motion.
10776
10777 * editfns.c (Vinhibit_field_text_motion): New variable.
10778 (inhibit-field-text-motion): New DEFVAR_LISP.
10779 (Fline_beginning_position, Fline_end_position): Notice field
10780 boundaries only if inhibit-field-text-motion is nil.
10781
45158a91
GM
10782 * xfns.c (x_create_x_image_and_pixmap): Remove parameter FILE.
10783 All calls adjusted.
10784 (x_build_heuristic_mask): Likewise.
10785 (xbm_load_image_from_file): Change error output.
10786 (xbm_load, xpm_load, pbm_load, png_load, jpeg_load, tiff_load)
10787 (gif_load, gs_load, x_kill_gs_process): Ditto.
10788
9b784e96
GM
10789 * xfns.c (gif_load): Avoid sign extension and thus out of bounds
10790 color indices when accessing raster pixels.
63cec32f
GM
10791 (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only
10792 one of :file or :data.
10793 (enum pbm_keyword_index): Add PBM_DATA.
10794 (pbm_format): Add :data.
10795 (pbm_image_p): Allow either :file or :data.
10796 (pbm_read_file): New function.
10797 (pbm_scan_number): Rewritten to read from string.
10798 (pbm_load): Support :data.
9b784e96 10799
2cb085db 10800See ChangeLog.8 for earlier changes.
6922b018
KH
10801
10802;; Local Variables:
49b3bd82 10803;; coding: iso-2022-7bit
6922b018 10804;; End: