(BASE_PURESIZE): Increase to 910000.
[bpt/emacs.git] / src / ChangeLog
1 2002-08-08 Ken Raeburn <raeburn@mit.edu>
2
3 * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int
4 mixup.
5
6 * puresize.h (BASE_PURESIZE): Increase to 910000.
7
8 2002-08-08 Kenichi Handa <handa@etl.go.jp>
9
10 * coding.c (Ffind_operation_coding_system): For write-region, if
11 VISIT is a filename, make it the target.
12
13 2002-08-07 Richard M. Stallman <rms@gnu.org>
14
15 * alloc.c (mark_object): Detect long lists for debugging.
16 (mark_object_loop_halt): New variable.
17
18 * s/hpux10.h (C_SWITCH_SYSTEM): #undef it.
19
20 * data.c (Fmake_variable_frame_local): Doc fix.
21
22 2002-08-01 David Ponce <david@dponce.com>
23
24 * w32menu.c (local_heap, local_alloc, local_free): New macros.
25 (malloc_widget_value, free_widget_value)
26 (w32_free_submenu_strings): Use them.
27
28 (push_submenu_start, push_submenu_end, push_left_right_boundary)
29 (push_menu_pane, push_menu_item, single_keymap_panes)
30 (single_menu_item, Fx_popup_menu, menubar_selection_callback)
31 (single_submenu, set_frame_menubar)
32 (w32_menu_show, w32_dialog_show): Use AREF, ASET, ASIZE.
33
34 (Fx_popup_menu): Don't show pop up menu until preceding one is
35 actually cleaned up. Moved UNGCPRO outside #ifdef HAVE_MENUS block.
36
37 * w32menu.c: Changes adapted from xmenu.c
38 (set_frame_menubar): First parse all submenus,
39 then make widget_value trees from them.
40 Don't allocate any widget_value objects
41 until we are done with the parsing.
42 (parse_single_submenu): New function.
43 (digest_single_submenu): New function.
44 (single_submenu): Function deleted, replaced by those two.
45
46 2002-08-04 Andrew Choi <akochoi@shaw.ca>
47
48 * macterm.c (XTread_socket): Check that FrontNonFloatingWindow
49 returns a valid window pointer before proceeding for keyDown and
50 autoKey events.
51
52 2002-08-03 Andrew Choi <akochoi@shaw.ca>
53
54 * macterm.c (USE_CARBON_EVENTS): New macro.
55 (macCtrlKey, macShiftKey, macMetaKey, macAltKey): New macros.
56 (x_iconify_frame): Call CollapseWindow.
57 (Vmac_reverse_ctrl_meta): New variable.
58 (Vmac_wheel_button_is_mouse_2): New variable.
59 (init_mac_drag_n_drop): New function.
60 (mac_do_receive_drag): New function.
61 (mac_handle_service_event): New function.
62 (init_service_handler): New function.
63 (mac_to_emacs_modifiers): New function.
64 (mac_event_to_emacs_modifiers): New function.
65 (mac_get_mouse_btn): New function.
66 (mac_convert_event_ref): New function.
67 (XTread_socket) [USE_CARBON_EVENTS]: Call ReceiveNextEvent,
68 SendEventToEventTarget, mac_event_to_emacs_modifiers, and
69 mac_get_mouse_btn.
70 (mac_initialize): Call init_mac_drag_n_drop and
71 init_service_handler.
72
73 * keyboard.c: Define Qmouse_wheel, mouse_wheel_syms, and
74 lispy_mouse_wheel_names for MAC_OSX as well as for WINDOWS_NT.
75 (kbd_buffer_get_event): Set used_mouse_menu for MENU_BAR_EVENT and
76 TOOL_BAR_EVENT for MAC_OS as well.
77 (make_lispy_event): Handle MOUSE_WHEEL_EVENT for MAC_OSX as well
78 as for WINDOWS_NT.
79 (syms_of_keyboard): Initialize Qmouse_wheel for MAC_OSX.
80
81 * termhooks.h (event_kind): Define MOUSE_WHEEL_EVENT also for
82 MAC_OSX.
83
84 2002-08-03 Gerd Moellmann <gerd.moellmann@t-online.de>
85
86 * xdisp.c (forward_to_next_line_start): Fix a condition that
87 lead to a newline being skipped.
88
89 2002-08-02 Andrew Choi <akochoi@shaw.ca>
90
91 * mac.c (syms_of_mac): Defsubr Sx_selection_exists_p.
92
93 2002-08-01 Richard M. Stallman <rms@gnu.org>
94
95 * Makefile.in (SOME_MACHINE_OBJECTS): Add fontset.o.
96
97 2002-07-31 Andrew Choi <akochoi@shaw.ca>
98
99 * macfns.c: #undef init_process before #define-ing it.
100
101 * s/darwin.h: Define MAC_OS, SYMS_SYSTEM, and OTHER_FILES only if
102 HAVE_CARBON is defined.
103
104 2002-07-31 Richard M. Stallman <rms@gnu.org>
105
106 * xmenu.c (set_frame_menubar): First parse all submenus,
107 then make widget_value trees from them.
108 Don't allocate any widget_value objects
109 until we are done with the parsing.
110 (parse_single_submenu): New function.
111 (digest_single_submenu): New function.
112 (single_submenu): Function deleted, replaced by those two.
113
114 2002-07-30 Juanma Barranquero <lektu@terra.es>
115
116 * w32proc.c (syms_of_ntproc): Fix docstring of
117 `w32-get-true-file-attributes'.
118
119 2002-07-28 Richard M. Stallman <rms@gnu.org>
120
121 * s/hpux8.h (HPUX8): Define this before including hpux.h.
122 (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide.
123
124 * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8.
125
126 * keyboard.c (make_lispy_event):
127 Use #ifdef to test USE_TOOLKIT_SCROLL_BARS.
128 Explicitly clear up_modifier in event->modifiers.
129
130 2002-07-27 Richard M. Stallman <rms@gnu.org>
131
132 * xterm.h (FRAME_CURSOR_WIDTH): New macro.
133
134 * xterm.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
135 for bar cursor.
136
137 2002-07-26 Kenichi Handa <handa@etl.go.jp>
138
139 * coding.c (detect_coding_iso2022): While checking a byte sequence
140 for CODING_CATEGORY_MASK_ISO_8_2, if we read one extra byte, check
141 it in the normal loop.
142
143 2002-07-24 Gerd Moellmann <gerd.moellmann@t-online.de>
144
145 * xterm.c (expose_overlaps): New function.
146 (expose_window): Use it to fix the display of overlapping rows.
147
148 * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
149
150 2002-07-23 Ken Raeburn <raeburn@gnu.org>
151
152 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
153 since it only depends on XUINT.
154
155 * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
156 EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
157 PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
158 Macros deleted.
159
160 * mem-limits.h (start_of_data): If DATA_START is defined, prefer
161 its value over other approaches.
162 * sysdep.c (start_of_data): Don't define the function if a macro
163 form has been defined.
164
165 2002-07-23 Gerd Moellmann <gerd.moellmann@t-online.de>
166
167 * xdisp.c (redisplay_updating_p): New variable.
168 (init_iterator): Don't free realized faces when
169 redisplay_updating_p is set.
170 (redisplay_internal): Set redisplay_updating_p while updating
171 the display.
172
173 2002-07-23 Richard M. Stallman <rms@gnu.org>
174
175 * editfns.c (Fmessage): Treat "" like nil.
176
177 2002-07-23 Kenichi Handa <handa@etl.go.jp>
178
179 * xdisp.c (face_before_or_after_it_pos): Call
180 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
181
182 2002-07-22 Juanma Barranquero <lektu@terra.es>
183
184 * callproc.c (init_callproc) [DOS_NT]: Initialize
185 Vshared_game_score_directory to nil.
186 (syms_of_callproc) [DOS_NT]: Likewise.
187
188 2002-07-22 Gerd Moellmann <gerd.moellmann@t-online.de>
189
190 * xdisp.c (display_line): Replace an abort with xassert.
191
192 2002-07-21 Richard M. Stallman <rms@gnu.org>
193
194 * xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
195 and END_UNCHANGED when setting buffer_unchanged_p.
196 Use current_matrix_up_to_date_p to decide whether to use
197 try_cursor_movement.
198
199 * config.in (HAVE_SHARED_GAME_DIR): Undef deleted.
200
201 * epaths.in (PATH_GAME): New macro, edited by ../Makefile.in.
202
203 * callproc.c (init_callproc): Set up Vshared_game_score_directory.
204 Set to nil if dir does not exist.
205 (syms_of_callproc): Init unconditionally and simply.
206
207 * buffer.c (Fbuffer_list): Doc fix.
208
209 2002-07-21 Ken Raeburn <raeburn@gnu.org>
210
211 * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
212
213 * buffer.c (mmap_realloc): When shrinking, make sure number of
214 pages to unmap is rounded towards zero.
215
216 * m/mips-siemens.h (XSETUINT, XSETPNTR): Unused macros deleted.
217 (XSETINT): Deleted.
218
219 * m/att3b.h (XINT): Don't define.
220 (VALBITS, VALMASK, XTYPE): Deleted.
221 (DATA_SEG_BITS): Define.
222 * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET,
223 ARRAY_MARK_FLAG): Deleted.
224 (DATA_SEG_BITS): Define.
225 * m/pfa50.h (VALBITS, VALMASK, XTYPE): Deleted.
226 (DATA_SEG_BITS): Define.
227
228 2002-07-20 Richard M. Stallman <rms@gnu.org>
229
230 * print.c (print_error_message): New args CONTEXT and CALLER.
231 Calls changed.
232
233 * lisp.h (print_error_message): Declare new args.
234
235 * keyboard.c (cmd_error_internal): Pass Vsignaling_function
236 and CONTEXT to print_error_message, don't print them here.
237 For a Quit, don't use Vsignaling_function.
238 Call message_log_maybe_newline.
239
240 * Makefile.in (xsmfns.o): Don't depend on lisp.h.
241
242 2002-07-20 Kim F. Storm <storm@cua.dk>
243
244 * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p.
245
246 2002-07-19 Ken Raeburn <raeburn@gnu.org>
247
248 * bytecode.c (struct byte_stack): Pointers into byte string now
249 point to const.
250 * callproc.c (Fcall_process): Make NEW_ARGV array hold pointer to
251 const.
252 * charset.h (BCOPY_SHORT): Source pointer now points to const.
253 * coding.c (encode_eol, detect_coding, detect_eol):
254 (decode_coding, encode_coding, detect_coding_system): Source
255 strings now treated as const.
256 (decode_coding_string, encode_coding_string): Use STRING_COPYIN to
257 modify Lisp string contents.
258 * coding.h (decode_coding, encode_coding, detect_coding,
259 detect_eol): Declarations updated.
260 * composite.c (compose_chars_in_text): Treat Lisp string contents
261 as const.
262 * dispnew.c (safe_bcopy): Source pointer now points to const.
263 * lisp.h (STRING_COPYIN): New macro.
264 (detect_coding_system, safe_bcopy, temp_output_buffer_setup):
265 (internal_with_output_to_temp_buffer): Declarations updated.
266 * print.c (temp_output_buffer_setup):
267 (internal_with_output_to_temp_buffer): Buffer name argument is now
268 pointer to const.
269 * sound.c (struct sound_device): Function pointer field "write"
270 buffer argument now points to const.
271 (vox_write): Buffer argument points to const.
272 * syntax.c (Fstring_to_syntax, skip_chars): Treat Lisp string
273 contents as const.
274 * sysdep.c (emacs_write): Buffer pointer now const.
275 * term.c (encode_terminal_code): Buffer pointer now const.
276 * xfaces.c (may_use_scalable_font_p): Argument now points to
277 const.
278 (x_face_list_fonts, x_update_menu_appearance):
279 (hash_string_case_insensitive): Treat Lisp string contents as
280 const.
281
282 2002-07-19 Juanma Barranquero <lektu@terra.es>
283
284 * fileio.c (Ffile_name_as_directory): Fix argument name in docstring.
285 (file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
286
287 * xdisp.c (syms_of_xdisp): Remove redundant deprecation info.
288
289 * fileio.c (syms_of_fileio): Likewise.
290
291 2002-07-18 Richard M. Stallman <rms@gnu.org>
292
293 * data.c (Fdefalias): Doc fix.
294
295 2002-07-17 Dave Love <fx@gnu.org>
296
297 * intervals.h (text_property_stickiness): Use P_.
298
299 * ccl.c: Remove `emacs' conditionals.
300 (ccl_backtrace_table): Fix size spec.
301 (ccl_driver): Fix type errors.
302
303 2002-07-16 Ken Raeburn <raeburn@gnu.org>
304
305 * alloc.c (xstrdup, make_string, make_unibyte_string)
306 (make_multibyte_string, build_string): String pointer args now
307 point to const.
308 * charset.c (find_charset_in_text, c_string_width):
309 (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
310 * fileio.c (report_file_error):
311 * insdel.c (copy_text, count_size_as_multibyte, insert_1):
312 (count_combining_before, count_combining_after, insert_1_both):
313 (insert, insert_and_inherit, insert_string):
314 (insert_before_markers, insert_before_markers_and_inherit):
315 * lread.c (intern, oblookup, hash_string):
316 * minibuf.c (temp_echo_area_glyphs):
317 * search.c (fast_c_string_match_ignore_case):
318 * sysdep.c (emacs_open, set_file_times):
319 * xfaces.c (xstricmp):
320 * xdisp.c (store_frame_title, string_char_and_length):
321 (message_dolog, message2, message2_nolog, set_message): Likewise.
322 (set_message_1): Cast message string argument to const pointer.
323 * editfns.c (general_insert_function): Insertion function now
324 takes pointer to const for input data.
325 * charset.h (find_charset_in_text, c_string_width):
326 (parse_str_as_multibyte): Declarations updated.
327 * dispextern.h (xstricmp): Declaration updated.
328 * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text):
329 (count_size_as_multibyte, count_combining_before):
330 (count_combining_after, insert_1, insert_1_both, message_dolog):
331 (insert, insert_and_inherit, insert_before_markers)
332 (insert_before_markers_and_inherit, set_message, message2):
333 (message2_dolog, build_string, make_string, make_unibyte_string):
334 (make_multibyte_string, intern, oblookup, report_file_error):
335 (fast_c_string_match_ignore_case, temp_echo_area_glyphs):
336 (emacs_open, xstrdup): Declarations updated.
337 * systime.h (set_file_times): Declaration updated.
338
339 * charset.c (find_charset_in_text, lisp_string_width): Use const
340 for pointer to lisp string data.
341 * charset.h (FETCH_STRING_CHAR_ADVANCE):
342 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK):
343 * coding.c (Ffind_coding_systems_region_interval):
344 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory):
345 (Fmake_directory_internal, Fdelete_directory):
346 (Ffile_name_absolute_p, Fwrite_region, double_dollars):
347 * fontset.c (font_family_registry, fs_query_fontset):
348 (list_fontsets):
349 * frame.c (Fframe_parameter):
350 * keyboard.c (cmd_error_internal):
351 * keymap.c (Fdescribe_buffer_bindings):
352 * lread.c (complete_filename_p, openp):
353 * minibuf.c (Fminibuffer_complete_word):
354 * xdisp.c (string_pos_nchars_ahead, init_from_display_pos):
355 (face_before_or_after_it_pos, next_element_from_string):
356 (get_overlay_arrow_glyph_row, display_mode_element):
357 (decode_mode_spec_coding):
358 * xterm.c (same_x_server): Likewise.
359
360 * buffer.c (reset_buffer_local_variables): Delete "#if 0"
361 settings of non-existent fields.
362
363 * editfns.c (Fstring_to_char): Don't use XSTRING/XSETSTRING to
364 copy a lisp value.
365
366 * lread.c (Fintern_soft): Use string macros instead of
367 Lisp_String fields.
368 * keyboard.c (echo_char, parse_modifiers_uncached):
369 (parse_solitary_modifier, Fexecute_extended_command): Likewise.
370 * textprop.c (validate_interval_range, interval_of): Likewise.
371
372 * fontset.c (Fset_fontset_font): Use SDATA instead of
373 XSTRING()->data.
374
375 * charset.h (FETCH_STRING_CHAR_ADVANCE,
376 FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SBYTES instead of
377 XSTRING()->size_byte.
378
379 * lisp.h (SDATA, SREF): Produce rvalue.
380 (SSET): New macro.
381 * alloc.c (make_event_array): Use SSET for storing into a string.
382 * buffer.c (Fother_buffer): Use SREF when retrieving a byte from
383 a string.
384 * casefiddle.c (casify_object): Use SSET.
385 * charset.h (FETCH_STRING_CHAR_ADVANCE,
386 FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA when getting
387 address of string contents.
388 * data.c (Faref): Use SDATA.
389 (Faset): Use SDATA, SSET.
390 * dired.c (directory_files_internal): Use SSET.
391 * fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
392 (Fread_file_name): Use SREF, SSET.
393 * fns.c (concat): Use SSET.
394 (concat, Fdelete): Use SDATA.
395 * insdel.c (insert_from_string_1): Use SDATA.
396 * keyboard.c (Fevent_convert_list): Use SREF.
397 * lread.c (Fload): Use SDATA, SSET.
398 * macfns.c (validate_x_resource_name): Use SSET.
399 * process.c (status_message): Use SSET.
400 * search.c (wordify): Use SDATA.
401 (Freplace_match): Use SREF.
402 * w32fns.c (validate_x_resource_name): Use SSET.
403 * xfns.c (validate_x_resource_name): Use SSET.
404 * xterm.c (x_catch_errors, x_clear_errors): Use SSET.
405
406 2002-07-16 Richard M. Stallman <rms@gnu.org>
407
408 * s/hpux11.h (USG_SUBTTY_WORKS): Defined.
409
410 * xdisp.c (reconsider_clip_changes):
411 Don't test prevent_redisplay_optimizations_p.
412 (redisplay_internal): Test prevent_redisplay_optimizations_p
413 along with clip_changed in some cases.
414 (try_window_id): Likewise.
415 (redisplay_window): New local var buffer_unchanged_p.
416
417 * keyboard.c (cmd_error) [HAVE_X_WINDOWS]: Maybe call cancel_houglass.
418
419 * process.c (create_process): Test USG_SUBTTY_WORKS.
420 (process_send_signal): Clean up handling of GID.
421 Detect errors in ioctls meant to set GID.
422
423 * window.c (temp_output_buffer_show):
424 Don't set prevent_redisplay_optimizations_p.
425
426 2002-07-15 Juanma Barranquero <lektu@terra.es>
427
428 * eval.c (Fdefvaralias): Add docstring argument.
429
430 2002-07-15 Ken Raeburn <raeburn@gnu.org>
431
432 * lisp.h (STRING_INTERVALS): Produce rvalue.
433 (STRING_SET_INTERVALS): New macro.
434 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.
435 * fns.c (Fstring_as_multibyte): Likewise.
436 * intervals.c (balance_possible_root_interval, delete_interval)
437 (create_root_interval, copy_intervals_to_string): Likewise.
438 * textprop.c (set_text_properties): Likewise. Use NULL_INTERVAL
439 instead of 0.
440
441 2002-07-14 Ken Raeburn <raeburn@gnu.org>
442
443 * lisp.h (STRING_SET_CHARS): New macro.
444 (SCHARS, SBYTES): Produce rvalues.
445 * dired.c (directory_files_internal): Use STRING_SET_CHARS.
446 * fns.c (concat): Likewise.
447 * lread.c (read_vector): Likewise.
448
449 * lisp.h (SMBP): Deleted. All uses changed to STRING_MULTIBYTE.
450 (STRING_SET_UNIBYTE): New macro.
451 (SET_STRING_BYTES): Deleted. Callers (all of which supplied a
452 length of -1) changed to use STRING_SET_UNIBYTE.
453 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
454 casefiddle.c, category.c, ccl.c, charset.c, charset.h, coding.c,
455 composite.c, data.c, dired.c, dispnew.c, disptab.h, doc.c,
456 dosfns.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fn.c,
457 fontset.c, frame.c, indent.c, insdel.c, intervals.c, keyboard.c,
458 keymap.c, lread.c, mac.c, macfns.c, macmenu.c, macterm.c,
459 minibuf.c, msdos.c, print.c, process.c, search.c, sound.c,
460 sunfns.c, syntax.c, syntax.h, sysdep.c, textprop.c, undo.c,
461 w16select.c, w32.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
462 w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c,
463 xselect.c, xsmfns.c, xterm.c: Most uses of XSTRING combined with
464 STRING_BYTES or indirection changed to SCHARS, SBYTES,
465 STRING_INTERVALS, SREF, SDATA; explicit size_byte references left
466 unchanged for now.
467
468 2002-07-13 Kim F. Storm <storm@cua.dk>
469
470 * keyboard.c (command_loop_1): Invert check on Vmemory_full.
471
472 2002-07-12 Richard M. Stallman <rms@gnu.org>
473
474 * fileio.c (Fwrite_region): Doc fix.
475
476 * print.c (print_error_message): Don't handle Vsignaling_function here.
477
478 * keyboard.c (cmd_error_internal): Handle Vsignaling_function here.
479 (command_loop_1): Avoid certain actions after memory-full error.
480
481 * eval.c (Fsignal): Don't call cancel_hourglass.
482 For a memory-full error, don't call Vsignal_hook_function
483 and don't set Vsignaling_function.
484
485 * process.c (process_send_signal): Add abort call.
486
487 2002-07-11 Markus Rost <rost@math.ohio-state.edu>
488
489 * keymap.c (Fkey_binding): Fix typo.
490
491 2002-07-11 Richard M. Stallman <rms@gnu.org>
492
493 * alloc.c (Vmemory_full): New variable.
494 (Vmemory_signal_data): Renamed from memory_signal_data.
495 Uses changed.
496 (syms_of_alloc): Defvar them.
497 (memory_full, buffer_memory_full): Set Vmemory_full.
498
499 * lisp.h (Vmemory_full): Add declaration.
500 (current_column, indented_beyond_p): Change declaration.
501
502 * indent.c (last_known_column): Declare as double, not float.
503 (current_column, current_column_1, string_display_width)
504 (position_indentation): Return `double'.
505 (indented_beyond_p): Arg `column' is `double'. Callers changed.
506
507 * xdisp.c (message_dolog): Do nothing if Vmemory_full is non-nil.
508 (back_to_previous_visible_line_start)
509 (reseat_at_next_visible_line_start, next_element_from_buffer):
510 Use `double', not `float', when calling indented_beyond_p.
511
512 * s/hpux11.h (BROKEN_SA_RESTART): Defined.
513
514 * sysdep.c (sys_signal): Test BROKEN_SA_RESTART.
515
516 2002-07-11 Juanma Barranquero <lektu@terra.es>
517
518 * alloc.c, buffer.c, bytecode.c, callint.c, callproc.c, coding.c,
519 * composite.c, dired.c, dispnew.c, editfns.c, emacs.c, eval.c,
520 * fileio.c, fns.c, insdel.c, keyboard.c, keymap.c, lread.c, macfns.c,
521 * macmenu.c, macros.c, minibuf.c, print.c, process.c, sound.c,
522 * textprop.c, w32fns.c, w32menu.c, window.c, xfaces.c, xfns.c,
523 * xmenu.c, xselect.c, xterm.c: Use SPECPDL_INDEX wherever makes sense.
524
525 2002-07-10 Juanma Barranquero <lektu@terra.es>
526
527 * lisp.h (SPECPDL_INDEX): Rename from BINDING_STACK_SIZE. All callers
528 changed.
529
530 2002-07-09 Stefan Monnier <monnier@cs.yale.edu>
531
532 * data.c (Fdefalias): Add an optional `docstring' argument.
533 (set_internal, Fsetq_default): Use XCAR/XCDR.
534
535 * composite.c (HASH_VALUE, HASH_KEY):
536 * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
537
538 2002-07-09 Kenichi Handa <handa@etl.go.jp>
539
540 * callproc.c (Fcall_process): Fix previous change.
541
542 2002-07-07 Stefan Monnier <monnier@cs.yale.edu>
543
544 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
545 Add support for hash-tables.
546 (Ftry_completion): Return t even if the string appears multiple times.
547
548 * fns.c (Fnconc): Use XCDR.
549 (Fprovide): Use CONSP and XCDR.
550 (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
551 (HASH_TABLE_SIZE): Delete: moved to lisp.h.
552 (Fmake_hash_table): Accept `:size nil'.
553 (Fmakehash): Delete: moved to subr.el.
554 (syms_of_fns): Don't defsubr makehash.
555
556 * lisp.h (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
557 (HASH_TABLE_SIZE): Move from fns.c.
558
559 2002-07-07 Richard M. Stallman <rms@gnu.org>
560
561 * xdisp.c (make_cursor_line_fully_visible): Don't try short scrolls.
562 Instead just return 0 when there is something to be done.
563 (try_scrolling): If make_cursor_line_fully_visible returns 0,
564 retry scrolling as if cursor were off the bottom.
565 (try_cursor_movement): If make_cursor_line_fully_visible returns 0,
566 return CURSOR_MOVEMENT_MUST_SCROLL.
567 (redisplay_window): If make_cursor_line_fully_visible returns 0,
568 go to try_to_scroll.
569
570 * buffer.c (Fbuffer_local_value): Store current value into its binding
571 so we get the up-to-date value for the binding that is loaded.
572
573 * eval.c (Fdefmacro): Doc fix.
574
575 2002-07-05 Dave Love <fx@gnu.org>
576
577 * keyboard.c (read_key_sequence): Set initial_idleness_start_time
578 correctly.
579
580 * ccl.c (Vtranslation_hash_table_vector, GET_HASH_TABLE)
581 (HASH_VALUE, CCL_LookupIntConstTbl, CCL_LookupCharConstTbl): New.
582 (ccl_driver): Add cases for CCL_LookupIntConstTbl,
583 CCL_LookupCharConstTbl.
584 (syms_of_ccl): Defvar translation-hash-table-vector.
585
586 2002-07-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
587
588 * xdisp.c: Remove unused variable `face'.
589
590 2002-07-04 Juanma Barranquero <lektu@terra.es>
591
592 * keyboard.c (post_command_idle_hook): Remove redundant (and inexact)
593 obsolescence information.
594
595 2002-07-03 Andrew Choi <akochoi@shaw.ca>
596
597 * macterm.c (x_list_fonts): Fix comment. Cache fonts matching
598 pattern. Search cache first.
599 (init_font_name_table): Also add entry for jisx0201.1976-0 coding
600 for Japanese font.
601 (XLoadQueryFont): Use it.
602
603 2002-07-02 Richard M. Stallman <rms@gnu.org>
604
605 * keymap.c (Fdefine_key): Doc fix.
606
607 * xterm.c (x_term_init): Turn off polling around XtOpenDisplay.
608
609 2002-07-02 Juanma Barranquero <lektu@terra.es>
610
611 * keymap.c (syms_of_keymap): Fix typo.
612
613 2002-07-01 Andrew Choi <akochoi@shaw.ca>
614
615 * s/darwin.h: Define POSIX_SIGNALS.
616
617 * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef
618 and FSRefMakePath to convert FSSpec returned with Apple Event to
619 Posix pathname.
620 (mac_initialize) [TARGET_API_MAC_CARBON]:
621 Call init_required_apple_events and disable the `Quit' menu item
622 provided automatically by the Carbon Toolbox.
623
624 2002-07-01 Dave Love <fx@gnu.org>
625
626 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
627 for K&R.
628
629 * xterm.c: Fix prototype for K&R.
630
631 * term.c (costs_set): Declare static, non-initialized for pcc.
632
633 2002-07-01 Richard M. Stallman <rms@gnu.org>
634
635 * keyboard.c (timer_last_idleness_start_time): New variable.
636 (timer_start_idle): Set that.
637 (read_key_sequence): Use that to reset timer_idleness_start_time
638 to previous value.
639
640 * window.c (Frecenter): With arg, set optional_new_start.
641
642 * xdisp.c (redisplay_internal): Make optional_new_start really work.
643
644 * minibuf.c (Fminibuffer_complete_and_exit): Move to end of
645 buffer for completion.
646
647 2002-06-29 Ken Raeburn <raeburn@gnu.org>
648
649 * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
650
651 2002-06-28 Jan D. <jan.h.d@swipnet.se>
652
653 * keyboard.c (readable_filtered_events): New function that filters
654 FOCUS_IN_EVENT depending on parameter.
655 (readable_events): Calls readable_filtered_events, not filtering
656 FOCUS_IN_EVENT.
657 (get_filtered_input_pending): New function, filtering parameter passed
658 to readable_filtered_events.
659 (get_input_pending): Calls get_filtered_input_pending, not filtering
660 FOCUS_IN_EVENT.
661 (Finput_pending_p): Calls get_filtered_input_pending, DO filter
662 FOCUS_IN_EVENT.
663
664 * xterm.h (struct x_output): Add focus_state.
665
666 * xterm.c (x_focus_changed): New function.
667 (x_detect_focus_change): New function.
668 (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
669 EnterNotify and LeaveNotify to track X focus changes.
670
671 2002-06-28 Andreas Schwab <schwab@suse.de>
672
673 * lisp.h: Remove duplicate declaration of
674 code_convert_string_norecord.
675
676 2002-06-27 Kim F. Storm <storm@cua.dk>
677
678 * xdisp.c: (mode_line_string_list, mode_line_string_face)
679 (mode_line_string_face_prop): New variables.
680 (store_mode_line_string): New function.
681 (display_mode_element): Use store_mode_line_string to
682 add mode-line string elements to mode_line_string_list
683 when mode_line_string_list is non-nil.
684 (Fformat_mode_line): Now returns propertized string by
685 default. New arg NO-PROPS to ignore properties.
686 (decode_mode_spec): Only add two dashes for %- in propertized
687 mode-line string.
688 (syms_of_xdisp): Init and staticpro mode_line_string_list.
689
690 2002-06-27 Stefan Monnier <monnier@cs.yale.edu>
691
692 * minibuf.c (minibuffer_completion_contents): Add return type.
693
694 2002-06-27 Juanma Barranquero <lektu@terra.es>
695
696 * charset.c (Fchar_bytes): Remove obsolescence info from docstring.
697
698 2002-06-26 Juanma Barranquero <lektu@terra.es>
699
700 * fileio.c (read_file_name_cleanup): Add missing return.
701
702 2002-06-26 Richard M. Stallman <rms@gnu.org>
703
704 * window.c (Frecenter): Don't set force_start flag.
705
706 * minibuf.c (do_completion, Fminibuffer_complete_word)
707 (Fminibuffer_completion_help): Complete just the text before point.
708 (minibuffer_completion_contents): New function.
709
710 * buffer.c (Fbury_buffer): Use frames_discard_buffer.
711
712 * frame.c (frames_bury_buffer): Function deleted.
713
714 2002-06-25 Miles Bader <miles@gnu.org>
715
716 * callint.c (Fcall_interactively): When checking to see if doprnt hit
717 the end of callint_message, allow for a terminating '\0'.
718
719 2002-06-24 Juanma Barranquero <lektu@terra.es>
720
721 * w32select.c: Include composite.h
722
723 * w16select.c: Likewise.
724
725 2002-06-24 Kenichi Handa <handa@etl.go.jp>
726
727 * callproc.c (Fcall_process): If code detection is necessary,
728 call detect_coding directly here.
729
730 * coding.c (detect_eol): Preserve coding->cmp_data.
731
732 * w16select.c (Fw16_get_clipboard_data): Disable composition handling.
733
734 * w32fns.c (w32_to_x_font): Disable composition handling.
735
736 * w32select.c (Fw32_get_clipboard_data): Disable composition handling.
737
738 * xselect.c (selection_data_to_lisp_data): Disable composition
739 handling.
740
741 * xterm.c (XTread_socket): Disable composition handling.
742
743 2002-06-24 Stefan Monnier <monnier@cs.yale.edu>
744
745 * print.c (temp_output_buffer_setup): Kill all local variables.
746
747 2002-06-22 Stefan Monnier <monnier@cs.yale.edu>
748
749 * lread.c (Fread): Remove redundant and imprecise declaration.
750
751 * xfns.c (check_x_display_info): Use check_x_frame.
752
753 * .gdbinit (xprintsym): Use the new `xname' field.
754 (xsymbol): Use it.
755
756 2002-06-22 Jason Rumney <jasonr@gnu.org>
757
758 * w32fns.c (file_dialog_callback): New function.
759 (Fx_file_dialog): Allow selecting directories as well as files.
760
761 2002-06-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
762
763 * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
764 OpenBSD. Add support for mipseb-*-netbsd* machines.
765
766 2002-06-17 Andrew Choi <akochoi@shaw.ca>
767
768 * macterm.c (mac_scroll_area): Set foreground and backcolor to
769 black and white before scrolling. Restore frame background and
770 foreground color after scrolling.
771 (do_window_update): Call XClearWindow before calling expose_frame.
772 (make_mac_frame): Don't set FRAME_BACKGROUND_PIXEL and
773 FRAME_FOREGROUND_PIXEL of frame.
774
775 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
776 test Mac command key as <ALT> key.
777
778 2002-06-17 Stefan Monnier <monnier@cs.yale.edu>
779
780 * window.c (Fset_window_configuration): Lisp_Object/int mixup.
781
782 * keyboard.c (read_key_sequence): Be more careful with first_unbound.
783 Lookup keys in function-key-map immediately so that key-translation-map
784 can be applied earlier.
785 Remove function_key_possible and key_translation_possible, replaced
786 by checking `keytran_start < t'.
787
788 * .gdbinit (xsymbol): Use the new `xname' field.
789
790 2002-06-17 Andrew Choi <akochoi@shaw.ca>
791
792 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
793 test Mac command key as <ALT> key.
794
795 * mac.c (do_applescript): Call initialize_applescript if necessary
796 when first called. Dispose of result_desc only when there is no error.
797 (Fdo_applescript): Use %d format specifier instead of %ld.
798
799 2002-06-16 Andrew Choi <akochoi@shaw.ca>
800
801 * macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
802 of FrontWindow for cases keyDown and autoKey.
803
804 * fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
805 Vdefault_fontset to Monaco with mac-roman coding.
806
807 * mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
808 init_process before and after inclusion of Carbon/Carbon.h, resp.
809
810 * macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
811 cursor_gc.
812 (add_font_name_table_entry): New function.
813 (init_font_name_table): Use add_font_name_table_entry; add italic,
814 bold, and bold-italic entries for truetype fonts.
815
816 * xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
817 for Mac too.
818 (try_font_list) [MAC_OS]: If no font matches given registry, try
819 fonts with any registry matching face_family.
820 (realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font here.
821
822 * s/darwin.h: If autoconf detects the Ncurses library, define
823 LIBS_TERMCAP to -lncurses to use it.
824
825 2002-06-16 Eli Zaretskii <eliz@is.elta.co.il>
826
827 * strftime.c [__hpux]: Include sys/_mbstate_t.h.
828
829 2002-06-15 Richard M. Stallman <rms@gnu.org>
830
831 * window.c (Fset_window_configuration): Explicitly preserve
832 the point value that new_current_buffer had at the start.
833
834 2002-06-14 Juanma Barranquero <lektu@terra.es>
835
836 * composite.c (Fcompose_region_internal, Fcompose_string_internal):
837 Fix typos.
838
839 2002-06-14 Kim F. Storm <storm@cua.dk>
840
841 * insdel.c (insert_1_both, insert_from_string_1)
842 (insert_from_buffer_1): Recalculate END_UNCHANGED in case the
843 insert happened in the end_unchanged region. Otherwise, the
844 redisplay may be confused and duplicate the last line in the
845 buffer [seen after save-buffer when require-final-newline==t].
846
847 2002-06-13 Jason Rumney <jasonr@gnu.org>
848
849 * w32.c (init_environment): Remove EMACSLOCKDIR.
850 (stat): Swap _S_IFDIR and _S_IFREG.
851
852 2002-06-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
853
854 * keyboard.c, macterm.c, macmenu.c, msdos.c, sysdep.c
855 * termhooks.h, xmenu.c, xsmfns.c, xterm.h, xterm.c, w32term.c,
856 * w32menu.c, w32inevt.c: Rename enum event_kind as follows:
857 ascii_keystroke to ASCII_KEYSTROKE_EVENT, multibyte_char_keystroke
858 to MULTIBYTE_CHAR_KEYSTROKE_EVENT, non_ascii_keystroke to
859 NON_ASCII_KEYSTROKE_EVENT, timer_event to TIMER_EVENT, mouse_click
860 to MOUSE_CLICK_EVENT, mouse_wheel to MOUSE_WHEEL_EVENT,
861 language_change_event to LANGUAGE_CHANGE_EVENT, scroll_bar_click
862 to SCROLL_BAR_CLICK_EVENT, w32_scroll_bar_click to
863 W32_SCROLL_BAR_CLICK_EVENT, selection_request_event to
864 SELECTION_REQUEST_EVENT, selection_clear_event to
865 SELECTION_CLEAR_EVENT, buffer_switch_event to BUFFER_SWITCH_EVENT,
866 delete_window_event to DELETE_WINDOW_EVENT, iconify_event to
867 ICONIFY_EVENT, deiconify_event to DEICONIFY_EVENT,
868 menu_bar_activate_event to MENU_BAR_ACTIVATE_EVENT, drag_n_drop to
869 DRAG_N_DROP_EVENT, save_session_event to SAVE_SESSION_EVENT and
870 no_event to NO_EVENT.
871
872 2002-06-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
873
874 * macmenu.c: Remove declaration of Qmouse_click and Qevent_kind.
875
876 2002-06-12 Stefan Monnier <monnier@cs.yale.edu>
877
878 * intervals.c (textget): Don't forget to `return'.
879 (lookup_char_property): Use XCAR/XCDR.
880
881 2002-06-12 Juanma Barranquero <lektu@terra.es>
882
883 * xdisp.c (Fformat_mode_line): Fix typo.
884
885 2002-06-12 Kim F. Storm <storm@cua.dk>
886
887 * xdisp.c (Fformat_mode_line): New function.
888 (frame_title_buf, frame_title_buf_end, frame_title_ptr)
889 (store_frame_title_char, store_frame_title): Use unconditionally.
890 (init_xdisp): Defsubr Fformat_mode_line.
891 Initialize frame_title_buf etc. unconditionally.
892
893 2002-06-11 Stefan Monnier <monnier@cs.yale.edu>
894
895 * keyboard.c (read_key_sequence):
896 Remove prev_(fkey|keytran}_(map|start|end) since we don't want to pass
897 things through those maps after downcasing events.
898 Enforce that keytran_end <= fkey_start, i.e. that key-translation-map
899 applies after function-key-map.
900 Make sure that keytran can be done in the middle in the sequence.
901 Be careful not to throw away events past the one we downcase.
902
903 * lread.c (read_integer): Remove unused var `tem'.
904 (read1): Fix int/Lisp_Object mixup.
905
906 * xfaces.c (tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
907
908 2002-06-11 Richard M. Stallman <rms@gnu.org>
909
910 * keyboard.c (readable_events): Ignore any number of
911 FOCUS_IN_EVENT events and return 0 if nothing else in buffer.
912
913 2002-06-09 Miles Bader <miles@gnu.org>
914
915 * xfaces.c (Ftty_supports_face_attributes_p): New function.
916 (parse_rgb_list, tty_lookup_color): New functions.
917 (tty_defined_color): Use `tty_lookup_color' to do all the work.
918 (color_distance, Fcolor_distance): New functions.
919 (TTY_SAME_COLOR_THRESHOLD): New macro.
920 (Qtty_color_standard_values): New variable.
921 (syms_of_xfaces): Initialize new vars & functions.
922
923 2002-06-08 Colin Walters <walters@verbum.org>
924
925 * textprop.c (Vchar_property_alias_alist): New variable.
926 (syms_of_textprop) <Vchar_property_alias_alist>: DEFVAR_LISP.
927
928 * intervals.c (lookup_char_property): New function for looking up
929 overlay and text properties, created from textget.
930 (textget): Use it.
931
932 * intervals.h (lookup_char_property): Declare.
933 (Vchar_property_alias_alist): Declare.
934
935 * buffer.c (Foverlay_get): Use lookup_char_property.
936
937 2002-06-07 Sam Steingold <sds@gnu.org>
938
939 * xselect.c (lisp_data_to_selection_data): Fix last change:
940 *data_ret is not a Lisp string, while unibyte_string is.
941
942 2002-06-07 Eli Zaretskii <eliz@is.elta.co.il>
943
944 * xselect.c (lisp_data_to_selection_data): Fix last change:
945 set size_ret.
946
947 2002-06-07 Andreas Schwab <schwab@suse.de>
948
949 * m/amdx86-64.h: New file.
950
951 2002-06-05 Eli Zaretskii <eliz@is.elta.co.il>
952
953 * fns.c (Fstring_make_unibyte): Doc fix.
954
955 * xselect.c (lisp_data_to_selection_data): If the requested type
956 is STRING, call string_make_unibyte to encode the selected text
957 as a string.
958
959 * window.c (Fset_window_hscroll): Doc fix.
960
961 2002-06-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
962
963 * fileio.c (choose_write_coding_system):
964 Call select-safe-coding-system properly.
965
966 2002-06-03 Richard M. Stallman <rms@gnu.org>
967
968 * xdisp.c (message_with_string): Error if STRING is not a string.
969
970 * fns.c (md5): Pass FILE arg to Vselect_safe_coding_system_function.
971
972 * fileio.c (choose_write_coding_system): Pass FILE arg to
973 Vselect_safe_coding_system_function.
974
975 2002-06-03 Ken Raeburn <raeburn@gnu.org>
976
977 * buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
978
979 2002-06-02 Thien-Thi Nguyen <ttn@gnu.org>
980
981 * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
982 * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
983 * keymap.c (describe_command): Likewise.
984 * minibuf.c (read_minibuf): Likewise.
985
986 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
987 Cast `current_column' return value to int.
988 (back_to_previous_visible_line_start)
989 (reseat_at_next_visible_line_start, next_element_from_buffer):
990 Cast `indented_beyond_p' 3rd arg to float.
991
992 * indent.c (last_known_column): Now a float.
993 (current_column_1, position_indentation, current_column)
994 (string_display_width): Return float.
995 (Fcurrent_column): Cast `current_column' return value to int.
996 (Fcurrent_indentation): Cast `position_indentation' retval to int.
997 (indented_beyond_p): Third arg now a float.
998 (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
999
1000 * lisp.h (current_column): Now returns float.
1001 (indented_beyond_p): 3rd arg now a float.
1002
1003 2002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
1004
1005 * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
1006 is Qcompound_text_with_extensions.
1007
1008 * xselect.c (lisp_data_to_selection_data): Always set selection
1009 type as string if x_encode_text returns streingp non-NULL.
1010
1011 * s/netbsd.h: Include /usr/pkg in the run time shared library path.
1012
1013 2002-05-30 Richard M. Stallman <rms@gnu.org>
1014
1015 * window.c (Fset_window_configuration): Correct the handling
1016 of point in current buffer, to work with multiple windows.
1017
1018 2002-05-29 Colin Walters <walters@verbum.org>
1019
1020 * lread.c (Fread_from_string): Don't depend on order of evaluation
1021 for C function parameters.
1022
1023 2002-05-28 Richard M. Stallman <rms@gnu.org>
1024
1025 * xterm.c (x_display_and_set_cursor): Change the cursor in the same
1026 way for blinked-off state and for a nonselected window.
1027
1028 * window.c (window_scroll_pixel_based): Don't call Fbolp;
1029 instead, see if the new start pos is at beginning of line.
1030
1031 * fileio.c (Fwrite_region): If START is a string, don't
1032 make any annotations.
1033
1034 * eval.c (syms_of_eval): Doc fix.
1035
1036 2002-05-28 Colin Walters <walters@debian.org>
1037
1038 * emacs.c (USAGE1): Add --no-splash.
1039 (standard_args): Ditto.
1040
1041 2002-05-28 Colin Walters <walters@gnu.org>
1042
1043 * lread.c (readchar_count): New variable.
1044 (readchar): Increment it.
1045 (unreadchar): Decrement it.
1046 (read_multibyte): Decrement it.
1047 (Vread_with_symbol_positions): New variable.
1048 (Vread_symbol_positions_list): New variable.
1049 (read_internal_start): New function, created from Fread and
1050 Fread_from_string. Handle Vread_symbol_positions_list and
1051 Vread_with_symbol_positions.
1052 (readevalloop, Fread, Fread_from_string): Use it.
1053 (read1): Use readchar_count to add symbol positions to
1054 Vread_symbol_positions_list if Vread_with_symbol_positions is non-nil.
1055 (syms_of_lread): DEFVAR_LISP and initialize them.
1056
1057 * lread.c (read0, read1, read_list, read_vector, read_multibyte)
1058 (substitute_object_recurse, substitute_object_in_subtree)
1059 (substitute_in_interval): Prototype.
1060 (read_multibyte): Return c if it's less than zero.
1061
1062 2002-05-28 Kim F. Storm <storm@cua.dk>
1063
1064 * fileio.c (Fread_file_name_internal): Added brute-force
1065 speed up for using predicate file-directory-p.
1066
1067 2002-05-28 Kim F. Storm <storm@cua.dk>
1068
1069 * fileio.c (Vread_file_name_function, Vread_file_name_predicate):
1070 New variables.
1071 (syms_of_fileio): DEFVAR_LISP them.
1072 (read_file_name_cleanup): New unwind function.
1073 (Fread_file_name_internal): Only return completions satifying
1074 Vread_file_name_predicate. Temporarily unwind protect and rebind
1075 default-directory while checking completions against the predicate.
1076 (Fread_file_name): Added PREDICATE argument. Specbind it to
1077 Vread_file_name_predicate during completion.
1078 Call Vread_file_name_function to read the file name if non-nil.
1079
1080 * lisp.h (Fread_file_name): Now has 6 args.
1081
1082 * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
1083 predicate for Fread_file_name when reading directory name.
1084 Supply Qnil for predicate in other calls to Fread_file_name.
1085
1086 2002-05-26 Miles Bader <miles@gnu.org>
1087
1088 * term.c (tty_capable_p): New function.
1089 * dispextern.h (tty_capable_p): New function declaration.
1090 (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM)
1091 (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros.
1092
1093 2002-05-23 Stefan Monnier <monnier@cs.yale.edu>
1094
1095 * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
1096 (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
1097 (Vwrite_region_annotate_functions): Docstring fix.
1098
1099 2002-05-23 Kim F. Storm <storm@cua.dk>
1100
1101 * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
1102 phys_cursor's hpos is overwritten. This is still not completely
1103 correct, as it doesn't really make sense to use hpos at all to
1104 get the cursor glyph (as that is relative to the width of the
1105 characters on the line, which may have changed during the update).
1106
1107 2002-05-22 Jason Rumney <jasonr@gnu.org>
1108
1109 * w32fns.c (enumfont_t): Remove tail, make pattern a normal
1110 Lisp_Object.
1111 (enum_font_cb2, enum_font_maybe_add_to_list, w32_list_fonts):
1112 Use modified enumfont_t struct.
1113
1114 * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
1115
1116 * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
1117 Handle the `hbar' cursor type.
1118 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
1119
1120 * w32fns.c (Qhbar): New variable.
1121 (x_specified_cursor_type): Use it.
1122
1123 2002-05-21 Ken Raeburn <raeburn@gnu.org>
1124
1125 * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
1126 now, when the address is needed.
1127
1128 2002-05-21 Colin Walters <walters@gnu.org>
1129
1130 * Makefile.in (shortlisp): Add font-core.el.
1131
1132 2002-05-20 Richard M. Stallman <rms@gnu.org>
1133
1134 * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
1135
1136 * keyboard.c (read_char_minibuf_menu_prompt): Don't list
1137 equivalent key bindings here.
1138
1139 2002-05-20 Ken Raeburn <raeburn@gnu.org>
1140
1141 Change symbol structure to contain a lisp object for the symbol
1142 name:
1143 * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
1144 object field named "xname".
1145 (SYMBOL_NAME): New macro.
1146 * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
1147 name field.
1148 * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
1149 (mark_object, gc_sweep): Use symbol xname field and XSTRING
1150 instead of name field.
1151 * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
1152 SYMBOL_NAME instead of XSYMBOL and name field.
1153 * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
1154 instead of XSYMBOL and name field.
1155 * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
1156 and SYMBOL_NAME instead of XSYMBOL and name field.
1157 * coding.c (Fread_coding_system, code_convert_region1)
1158 (code_convert_string1, code_convert_string_norecord)
1159 (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
1160 XSYMBOL and name field.
1161 * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
1162 (Fmake_variable_buffer_local, Fmake_local_variable)
1163 (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
1164 of XSYMBOL and name field.
1165 * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
1166 XSYMBOL and name field.
1167 * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
1168 instead of XSYMBOL and name field.
1169 * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
1170 XSYMBOL and name field.
1171 * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
1172 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
1173 * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
1174 instead of XSYMBOL and name field.
1175 * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
1176 (parse_modifiers, apply_modifiers, Fevent_convert_list)
1177 (parse_solitary_modifier, Fexecute_extended_command):
1178 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
1179 * keymap.c (silly_event_symbol_error, Fsingle_key_description)
1180 (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
1181 of XSYMBOL and name field.
1182 (describe_command, describe_translation): Use SYMBOL_NAME and
1183 assignment instead of XSYMBOL and name field and XSETSTRING.
1184 * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
1185 instead of XSYMBOL and name field.
1186 (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
1187 name field and XSETSTRING.
1188 * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
1189 of XSYMBOL and name field.
1190 * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
1191 assignment instead of XSYMBOL and name field and XSETSTRING.
1192 * print.c (print_error_message, print_object): Use SYMBOL_NAME and
1193 XSTRING instead of XSYMBOL and name field.
1194 * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
1195 and XSTRING instead of XSYMBOL and name field.
1196 * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
1197 and XSTRING instead of XSYMBOL and name field.
1198 * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
1199 XSTRING instead of XSYMBOL and name field.
1200 * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
1201 of XSYMBOL and name field.
1202 * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
1203 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
1204
1205 2002-05-19 Ken Raeburn <raeburn@gnu.org>
1206
1207 * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
1208 and XCDR real rvalues in most configurations.
1209
1210 * buffer.c (fix_overlays_in_range, fix_overlays_before):
1211 Don't take the address of the cdr part of a cons cell; instead, track
1212 the parent cell and call XSETCDR, or set the variable for the head
1213 of the list if we haven't started down the list yet.
1214
1215 2002-05-19 Richard M. Stallman <rms@gnu.org>
1216
1217 * doc.c (reread_doc_file): Don't ask for confirmation.
1218
1219 2002-05-18 Jason Rumney <jasonr@gnu.org>
1220
1221 * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
1222 (xbm_load_image): Use it.
1223 (xbm_load): Ditto.
1224 (xbm_read_bitmap_data): Reverted to xfns.c version.
1225 From David Ponce <david@dponce.com>.
1226
1227 2002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
1228
1229 * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
1230 2.02 and later.
1231
1232 2002-05-16 Juanma Barranquero <lektu@terra.es>
1233
1234 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
1235
1236 2002-05-15 Stefan Monnier <monnier@cs.yale.edu>
1237
1238 * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
1239 meaningful test.
1240 (read_char_minibuf_menu_prompt): Fix typo.
1241
1242 2002-05-15 Eli Zaretskii <eliz@is.elta.co.il>
1243
1244 * eval.c (Fcommandp): Doc fix.
1245
1246 2002-05-13 Stefan Monnier <monnier@cs.yale.edu>
1247
1248 * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
1249 (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
1250 (Fset_keymap_parent): Gcpro a bit more.
1251 (access_keymap): Gcpro around meta_map call and around the main loop.
1252 (get_keyelt): Gcpro when following indirect references.
1253 (copy_keymap_item): New fun, extracted from Fcopy_keymap.
1254 (copy_keymap_1, Fcopy_keymap): Use it. Don't copy the parent map.
1255 (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
1256 Remove useless ad-hoc remap code.
1257
1258 2002-05-13 Richard M. Stallman <rms@gnu.org>
1259
1260 * search.c (search_buffer): Give up boyer moore search if inverse
1261 translation change charset_base.
1262
1263 2002-05-12 Eli Zaretskii <eliz@is.elta.co.il>
1264
1265 * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
1266 characters is carried over from the previous block of text, adjust
1267 coding->produced to account for the extra character.
1268
1269 2002-05-11 Andreas Schwab <schwab@suse.de>
1270
1271 * coding.c (intersection): Keep the elements of the returned list
1272 in the same order as in the first list.
1273
1274 2002-05-11 Kim F. Storm <storm@cua.dk>
1275
1276 * keymap.c (current_minor_maps): Fixed resizing of cmm_maps;
1277 only update cmm_size if realloc actually succeeds.
1278 Testing with initial size of 2 elements revealed that using
1279 realloc on GNU/Linux would cause a random trap in xmalloc
1280 later on, so I rewrote the code to use malloc/bcopy/free instead
1281 of realloc.
1282
1283 2002-05-10 Jason Rumney <jasonr@gnu.org>
1284
1285 * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
1286
1287 2002-05-10 Eli Zaretskii <eliz@is.elta.co.il>
1288
1289 * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
1290 parens, to ensure correct evaluation order.
1291
1292 2002-05-10 Kim F. Storm <storm@cua.dk>
1293
1294 * keymap.c (Vemulation_mode_map_alists): New variable.
1295 (syms_of_keymap): DEFVAR_LISP it.
1296 (current_minor_maps): Process keymap alists in that list before
1297 minor-mode-overriding-map-alist and minor-mode-map-alist.
1298
1299 2002-05-09 Richard M. Stallman <rms@gnu.org>
1300
1301 * search.c (Freplace_match): Doc fix.
1302
1303 2002-05-09 Kim F. Storm <storm@cua.dk>
1304
1305 * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
1306 Enlarge cursor rectangle drawn around image with non-zero relief.
1307
1308 * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
1309 Enlarge cursor rectangle drawn around image with non-zero relief.
1310
1311 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
1312 Enlarge cursor rectangle drawn around image with non-zero relief.
1313
1314 2002-05-07 Eli Zaretskii <eliz@is.elta.co.il>
1315
1316 * xselect.c (lisp_data_to_selection_data): Don't set selection
1317 type if comes from the Lisp object's car. If the selection
1318 contains a pure ASCII text, always return QSTRING as its type.
1319
1320 2002-05-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1321
1322 * mac.c (mac-cut-function): Doc fix.
1323
1324 2002-05-05 Richard M. Stallman <rms@gnu.org>
1325
1326 * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
1327
1328 2002-05-04 Jason Rumney <jasonr@gnu.org>
1329
1330 * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
1331 for event-click-count.
1332
1333 * process.c (init_process): Only add server subfeature if we can
1334 use non-blocking I/O.
1335
1336 2002-05-04 Andrew Choi <akochoi@shaw.ca>
1337
1338 * macterm.c (XTread_socket): Call WaitNextEvent once instead of
1339 repeatedly.
1340
1341 2002-05-03 Jason Rumney <jasonr@gnu.org>
1342
1343 * process.c (Fmake_network_process): Only support server sockets
1344 when we can make them non-blocking.
1345
1346 * s/ms-w32.h (HAVE_SELECT): Define.
1347
1348 * w32.h (FILE_NDELAY): New flag.
1349
1350 * w32.c (sys_getpeername, fcntl): New functions.
1351 (_sys_read_ahead): Temporarily block on non-blocking sockets.
1352
1353 * w32proc.c: include sys/file.h.
1354
1355 2002-05-03 Colin Walters <walters@verbum.org>
1356
1357 * callproc.c (Vgame_score_directory): Renamed to
1358 Vshared_game_score_directory.
1359
1360 2002-04-30 Richard M. Stallman <rms@gnu.org>
1361
1362 * s/gnu.h [emacs]: Include stdio.h.
1363 (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
1364
1365 * eval.c (do_autoload): Error if called while preparing to dump.
1366
1367 * fns.c (Frequire): Error if need to load while preparing to dump.
1368
1369 2002-04-28 Colin Walters <walters@verbum.org>
1370
1371 * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
1372 Default to "~/.emacs.d/games".
1373
1374 2002-04-29 Stefan Monnier <monnier@cs.yale.edu>
1375
1376 * lread.c (openp): Change arg exec_only to predicate.
1377 (build_load_history): Use XCAR/XCDR.
1378 (Flocate_file_internal): New fun.
1379 (syms_of_lread): Defsubr it.
1380 (Fload): Update call to openp.
1381
1382 * lisp.h (openp): Update prototype.
1383
1384 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
1385 * w32proc.c (sys_spawnve):
1386 * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
1387 * w32.c (check_windows_init_file):
1388 * sound.c (Fplay_sound_internal):
1389 * process.c (Fstart_process):
1390 * macfns.c (x_create_bitmap_from_file, x_find_image_file):
1391 * mac.c (run_mac_command):
1392 * emacs.c (init_cmdargs):
1393 * callproc.c (Fcall_process): Update call to openp.
1394
1395 * textprop.c (remove_properties): Don't use XCAR without CONSP.
1396
1397 * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
1398
1399 2002-04-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1400
1401 * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
1402 (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
1403
1404 2002-04-28 Richard M. Stallman <rms@gnu.org>
1405
1406 * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
1407
1408 * eval.c (Fcommandp): New arg for_call_interactively.
1409 * lisp.h (Fcommandp): Declare new arg.
1410
1411 2002-04-28 Jason Rumney <jasonr@gnu.org>
1412
1413 * w32proc.c (syms_of_w32proc): Get true file attributes by default.
1414
1415 * w32.c (stat, fstat): Use file index information to generate
1416 inodes for directories where available.
1417
1418 2002-04-26 Andrew Choi <akochoi@shaw.ca>
1419
1420 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
1421 [HAVE_CARBON]: Include Mac object files.
1422
1423 * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
1424 fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
1425 termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
1426 MAC_OSX, and MAC_OS instead of macintosh.
1427
1428 * editfns.c [MAC_OS8]: Include stdio.h.
1429
1430 * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
1431
1432 * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
1433 Apple Monaco.
1434
1435 * process.c: Declare QCfamily and QCfilter as extern.
1436 (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
1437 calling select.
1438
1439 * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
1440
1441 * tparam.c [MAC_OSX]: Don't define BC and UP.
1442
1443 * config.in [HAVE_CARBON]: Add.
1444
1445 * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
1446 Move here from mac/src and mac/inc.
1447
1448 * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
1449
1450 2002-04-26 Gerd Moellmann <gerd@gnu.org>
1451
1452 * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
1453 Compute phys_cursor_width from the x position returned
1454 by x_draw_glyhs, which is cheaper.
1455 (x_display_and_set_cursor): Compute the buffer-local value
1456 of `cursor-in-non-selected-windows' only when needed.
1457
1458 2002-04-25 Gerd Moellmann <gerd@gnu.org>
1459
1460 * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
1461 cursor on a stretch glyph has a width that depends on
1462 x_stretch_cursor_p.
1463
1464 2002-04-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1465
1466 * abbrev.c (abbrev-start-location): Doc fix.
1467
1468 * indent.c (Fvertical_motion): Fix last change.
1469
1470 2002-04-25 Gerd Moellmann <gerd@gnu.org>
1471
1472 * indent.c (Fvertical_motion): Move to the start of the line
1473 containing PT before moving up or down.
1474
1475 2002-04-24 Gerd Moellmann <gerd@gnu.org>
1476
1477 * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
1478 case of writing a whole row, more or less analogous to the case of
1479 writing only parts of a row.
1480
1481 * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
1482 0 for NO_CURSOR.
1483
1484 * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
1485
1486 2002-04-23 Colin Walters <walters@verbum.org>
1487
1488 * buffer.c (syms_of_buffer): Doc fix.
1489
1490 2002-04-23 Gerd Moellmann <gerd@gnu.org>
1491
1492 * xterm.c (notice_overwritten_cursor): Handle the special case
1493 of the cursor being in the first blank non-text line at the
1494 end of a window.
1495
1496 * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
1497 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
1498 (x_display_and_set_cursor): Don't set phys_cursor_width here, for
1499 bar cursors only, to make phys_cursor_width contain what its name
1500 suggests.
1501 (notice_overwritten_cursor): Consider the cursor image erased if
1502 the output area intersects the cursor image in y-direction.
1503
1504 2002-04-23 Simon Marshall <simon@gnu.org>
1505
1506 * xfns.c (x_set_mouse_color): Change default for cross_cursor
1507 to XC_hand2.
1508
1509 2002-04-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1510
1511 * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
1512
1513 2002-04-22 Kim F. Storm <storm@cua.dk>
1514
1515 * textprop.c (remove_properties): Fixed trap for malformed plist.
1516
1517 2002-04-22 Richard M. Stallman <rms@gnu.org>
1518
1519 * cmds.c (Fend_of_line): Handle intangible text in mid line.
1520
1521 * window.c (make_window): Initialize height_fixed_p,
1522 last_cursor_off_p, and p->cursor_off_p slots.
1523
1524 2002-04-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1525
1526 * fns.c (use-dialog-box): Doc fix.
1527
1528 2002-04-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1529
1530 * xterm.c (note_mode_line_or_margin_highlight): Remove unused
1531 variables `row', `i' and `area'.
1532 (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
1533 toolkit library.
1534
1535 2002-04-19 Stefan Monnier <monnier@cs.yale.edu>
1536
1537 * xfaces.c (clear_font_table): Don't free the default font of
1538 a frame even if it's on another display.
1539 (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
1540 that could be Qt.
1541
1542 2002-04-19 Juanma Barranquero <lektu@terra.es>
1543
1544 * indent.c (Fmove_to_column): Remove unused local variable
1545 `next_boundary_byte'.
1546 (current_column_1): Likewise.
1547
1548 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
1549
1550 * msdos.c (Qhbar): New variable.
1551 (syms_of_msdos): Intern and staticpro it.
1552 (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
1553 cursor type.
1554
1555 2002-04-19 Dave Lambert <dlambert@acm.org>
1556
1557 Theses change implement an underscore-like (`hbar') cursor.
1558
1559 * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
1560
1561 * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
1562 Handle the `hbar' cursor type.
1563 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
1564
1565 * xfns.c (Qhbar): New variable.
1566 (syms_of_xfns): Intern and staticpro it.
1567 (x_specified_cursor_type): Handle `hbar' cursor.
1568
1569 * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
1570 not defined.
1571
1572 2002-04-18 Richard M. Stallman <rms@gnu.org>
1573
1574 * textprop.c (remove_properties): New arg LIST allows scanning
1575 either a list or a plist.
1576 (interval_has_some_properties_list): New function, like
1577 interval_has_some_properties using list instead of plist.
1578 All callers changed.
1579 (Fremove_list_of_text_properties): New function.
1580 (syms_of_textprop): Defsubr it.
1581
1582 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
1583
1584 * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
1585
1586 2002-04-17 Juanma Barranquero <lektu@terra.es>
1587
1588 * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
1589
1590 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
1591
1592 * window.c (coordinates_in_window): Don't report on margin area
1593 if its width is zero.
1594
1595 2002-04-16 Jason Rumney <jasonr@gnu.org>
1596
1597 * w32fns.c (Fx_file_dialog): Decode file name before using.
1598
1599 * w32term.c (construct_drag_n_drop): Likewise.
1600
1601 2002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
1602
1603 * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
1604 store load-history in pure space.
1605
1606 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
1607
1608 2002-04-16 Stefan Monnier <monnier@cs.yale.edu>
1609
1610 * xterm.c (Qlatin_1, Qutf_8): New vars.
1611 (syms_of_xterm): Initialize them.
1612 (XTread_socket): Eliminate incorrect optimization that tried to avoid
1613 decoding the output of X*LookupString.
1614 Always use latin-1 to decode the output of XLookupString.
1615 Try Xutf8LookupString if XmbLookupString failed.
1616
1617 * region-cache.c (new_region_cache): Use BEG.
1618
1619 2002-04-16 Gerd Moellmann <gerd@gnu.org>
1620
1621 * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
1622 configuration files.
1623 (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
1624 returns 0.
1625
1626 2002-04-15 Andreas Schwab <schwab@suse.de>
1627
1628 * config.in: Regenerated using autoheader.
1629
1630 * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
1631 m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
1632 m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
1633 m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
1634 m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
1635 m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
1636 m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
1637 m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
1638 m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
1639 m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
1640 m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
1641 m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
1642 m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
1643 m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
1644 m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
1645 s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
1646 STACK_DIRECTION, now set by autoconf.
1647
1648 2002-04-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1649
1650 * dispnew.c (marginal_area_string): Sort arguments.
1651
1652 * dispextern.h (marginal_area_string): Add prototype.
1653
1654 2002-04-13 Richard M. Stallman <rms@gnu.org>
1655
1656 * fileio.c (Finsert_file_contents):
1657 Don't call temp_output_buffer_setup--do just part, by hand.
1658
1659 * coding.c (run_pre_post_conversion_on_str):
1660 Don't call temp_output_buffer_setup--do just part, by hand.
1661
1662 * keyboard.c (command_loop_1): Don't call start_hourglass
1663 or cancel_hourglass when executing a macro.
1664
1665 * marker.c (count_markers): New function.
1666
1667 * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
1668 grow without limit. Move recently used elements to the front.
1669
1670 2002-04-13 Eli Zaretskii <eliz@is.elta.co.il>
1671
1672 * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
1673
1674 2002-04-12 Gerd Moellmann <gerd@gnu.org>
1675
1676 * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
1677 rows marginal areas.
1678 (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
1679 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
1680
1681 * dispnew.c (marginal_area_string): Check that glyph row is enabled.
1682
1683 2002-04-12 Dave Love <fx@gnu.org>
1684
1685 * dispnew.c (marginal_area_string): New.
1686
1687 * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
1688 (Qleft_margin, Qright_margin): Declare.
1689 (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
1690
1691 * xterm.c (note_mode_line_or_margin_highlight): Renamed from
1692 note_mode_line_highlight and extended.
1693
1694 * keyboard.c (Qleft_margin, Qright_margin): Declare.
1695 (make_lispy_event): Deal with mouse events in margins.
1696
1697 2002-04-12 Stefan Monnier <monnier@cs.yale.edu>
1698
1699 * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
1700
1701 * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
1702 than deactivating the mark if tmm is set to `lambda'.
1703 (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
1704 Use a single event for HELP_EVENT.
1705 (Fexecute_extended_command): Save last_point_position.
1706
1707 2002-04-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1708
1709 * lisp.h (Fpropertize): Add prototype.
1710
1711 * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
1712
1713 2002-04-10 Colin Walters <walters@verbum.org>
1714
1715 * config.in: Add HAVE_SHARED_GAME_DIR.
1716
1717 * callproc.c: (Vgame_score_directory): New variable.
1718 (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
1719
1720 2002-04-10 Richard M. Stallman <rms@gnu.org>
1721
1722 * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
1723
1724 2002-04-09 Stefan Monnier <monnier@cs.yale.edu>
1725
1726 * minibuf.c (read_minibuf): Use empty_string.
1727 (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
1728 Short-circuit the search as soon as it "failed".
1729 (Fall_completions): Allow lambda forms and lists of strings for alist.
1730 (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
1731 when require_match is nil.
1732 (Ftest_completion): Rename from `test_completion' and export to elisp.
1733 Call the predicate also when alist is a list.
1734 Obey Vcompletion_regexp_list.
1735 (do_completion, Fminibuffer_complete_and_exit): Use it.
1736 (Fassoc_string): Rename from `assoc_for_completion'.
1737 Allow list of strings as well and export to elisp.
1738
1739 2002-04-08 Stefan Monnier <monnier@cs.yale.edu>
1740
1741 * puresize.h (BASE_PURESIZE): Increase to 900KB.
1742
1743 2002-04-08 Juanma Barranquero <lektu@terra.es>
1744
1745 * w32.c (sys_accept): Don't hide variable `s'.
1746
1747 2002-04-05 Gerd Moellmann <gerd@gnu.org>
1748
1749 * callint.c (Fcall_interactively): Use INTEGERP instead of
1750 NUMBERP for checking Vhistory_length.
1751
1752 2002-04-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1753
1754 * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
1755 Doc fix to reflect it.
1756
1757 2002-04-04 Richard M. Stallman <rms@gnu.org>
1758
1759 * xdisp.c (display_mode_element): New arg RISKY.
1760 Disregard text props found or specified within a variable
1761 that isn't marked risky-local-variable.
1762 (Qrisky_local_variable): New variable.
1763 (syms_of_xdisp): Init and staticpro it.
1764
1765 2002-04-04 Stefan Monnier <monnier@cs.yale.edu>
1766
1767 * undo.c (record_point): New fun.
1768 (record_delete, record_insert): Use it.
1769
1770 2002-04-03 Juanma Barranquero <lektu@terra.es>
1771
1772 * doc.c (Fdocumentation): Add missing parentheses.
1773 (Fdocumentation_property): Likewise.
1774
1775 2002-04-03 Stefan Monnier <monnier@cs.yale.edu>
1776
1777 * doc.c (Fdocumentation, Fdocumentation_property): When the doc
1778 data is 0, just return nil.
1779
1780 2002-04-03 Eli Zaretskii <eliz@is.elta.co.il>
1781
1782 * msdos.c (syms_of_msdos): Fix last change with
1783 mouse_autoselect_window.
1784
1785 2002-04-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1786
1787 * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
1788 mouse_autoselect_window.
1789
1790 2002-04-02 Stefan Monnier <monnier@cs.yale.edu>
1791
1792 * keyboard.c (make_lispy_event): Handle unknown keysyms together
1793 with system-specific keysyms. Use it also for unknown function keys.
1794
1795 * doc.c (reread_doc_file): Return whether reload was attempted.
1796 (Fdocumentation, Fdocumentation_property): Don't try to reload
1797 if the doc is 0 and only ask once.
1798
1799 * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
1800
1801 2002-04-02 Eli Zaretskii <eliz@is.elta.co.il>
1802
1803 * keyboard.c (read_char): If the event was Qselect_window,
1804 restore timer_idleness_start_time to its previous value.
1805
1806 * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
1807
1808 2002-04-01 Stefan Monnier <monnier@cs.yale.edu>
1809
1810 * region-cache.c (new_region_cache): Use BEG.
1811
1812 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
1813 Use BEG and BEG_BYTE.
1814
1815 * doc.c (get_doc_string): Return nil if the location is wrong.
1816 (reread_doc_file): New fun.
1817 (Fdocumentation, Fdocumentation_property):
1818 Call it if get_doc_string fails.
1819 (Fsnarf_documentation): Make it work for a dumped Emacs.
1820
1821 * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
1822 Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
1823
1824 * charset.c (Fstring): Allow 0 arguments.
1825
1826 * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
1827
1828 * process.c (DATAGRAM_CONN_P, list_processes_1)
1829 (Fprocess_datagram_address, Fset_process_datagram_address)
1830 (Fset_network_process_options, server_accept_connection):
1831 Fix some int/Lisp_Object confusions (thank you union types).
1832
1833 2002-04-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1834
1835 * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
1836
1837 * w32term.c: Likewise.
1838 (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
1839
1840 * keyboard.c (Qselect_window): New symbol.
1841 (head_table): Use it.
1842 (keys_of_keyboard): Bound select-window event to handle-select-window.
1843 (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
1844
1845 * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
1846 (last_window): New variable.
1847 (XTread_socket): Generate SELECT_WINDOW_EVENTs.
1848 (note_mouse_movement): Remove reimplemented code in #if 0.
1849 (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
1850 Emacs windows.
1851
1852 * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
1853
1854 2002-03-31 Gerd Moellmann <gerd@gnu.org>
1855
1856 * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
1857 Callers changed.
1858
1859 2002-03-30 Richard M. Stallman <rms@gnu.org>
1860
1861 * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
1862 loop whenever it stops making progress.
1863
1864 * widget.c (set_frame_size): Don't call change_frame_size.
1865
1866 2002-03-30 Gerd Moellmann <gerd@gnu.org>
1867
1868 * dispnew.c (direct_output_for_insert):
1869 Call mark_window_display_accurate.
1870
1871 2002-03-29 Jason Rumney <jasonr@gnu.org>
1872
1873 * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
1874
1875 2002-03-29 Eli Zaretskii <eliz@is.elta.co.il>
1876
1877 * Makefile.in (lread.o): Depend on coding.h.
1878
1879 * lread.c (openp, Fload): Encode the file name before passing it
1880 to `stat', `access', and `emacs_open'.
1881 (openp): GCPRO the encoded file name. Don't recompute Lisp
1882 strings unnecessarily.
1883
1884 2002-03-29 Kim F. Storm <storm@cua.dk>
1885
1886 * fns.c (Flax_plist_put): Doc fix.
1887
1888 2002-03-28 Miles Bader <miles@gnu.org>
1889
1890 * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
1891
1892 2002-03-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1893
1894 * process.c (set-network-process-options): Add usage.
1895 (make-network-process): Doc fix.
1896
1897 2002-03-26 Eli Zaretskii <eliz@is.elta.co.il>
1898
1899 * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
1900
1901 2002-03-26 Richard M. Stallman <rms@gnu.org>
1902
1903 * fns.c (Fsubstring_no_properties): New function.
1904 (Flax_plist_get, Flax_plist_put): New functions.
1905 (syms_of_fns): defsubr them.
1906
1907 * xdisp.c (update_menu_bar): Test only update_mode_lines;
1908 don't test or alter w->update_mode_line.
1909
1910 * window.c (Fdisplay_buffer): Doc fix.
1911
1912 2002-03-24 Richard M. Stallman <rms@gnu.org>
1913
1914 * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
1915
1916 2002-03-24 Gerd Moellmann <gerd@gnu.org>
1917
1918 * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
1919 (Fdefmacro): Handle `(declare ...)'.
1920 (syms_of_eval) <Qdeclare>: Initialize and staticpro.
1921 (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
1922
1923 2002-03-24 Jason Rumney <jasonr@gnu.org>
1924
1925 * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
1926 (xbm_file_p): Add prototypes.
1927 (xbm_format, xbm_image_p): Sync with xfns.c.
1928 (reflect_byte): New function.
1929 (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
1930 (xbm_load_image): Create bitmaps with a depth of 1.
1931 (init_xfns): Enable XBM images.
1932
1933 2002-03-23 Jason Rumney <jasonr@gnu.org>
1934
1935 * w32term.c (w32_handle_tool_bar_click): Detect up and down events
1936 correctly. Do not pass up_modifier to keyboard buffer.
1937
1938 * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
1939
1940 2002-03-22 Stefan Monnier <monnier@cs.yale.edu>
1941
1942 * Makefile.in (bootstrapclean): New target.
1943 (bootstrap-temacs, bootstrap-doc): Remove.
1944 (bootstrap-emacs): Use a bog-standard `temacs'.
1945 Don't bother to build a DOC file.
1946
1947 * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
1948
1949 * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
1950 in temacs even if !CANNOT_DUMP.
1951 (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
1952
1953 * alloc.c (check_pure_size): Only output a warning.
1954
1955 2002-03-22 Jason Rumney <jasonr@gnu.org>
1956
1957 * w32fns.c (Fx_create_frame): Enable tool-bar when images are
1958 supported.
1959
1960 * w32term.c (zv_bits): Declare as short, for word alignment.
1961 (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
1962 (syms_of_w32term): Define x-use-underline-position-properties.
1963
1964 * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
1965 (clear_image_cache): Block input, fix logic, clear matrices in
1966 all frames that share this cache.
1967
1968 2002-03-22 Eli Zaretskii <eliz@is.elta.co.il>
1969
1970 * emacs.c (main): Update the Copyright year in the blurb printed
1971 by "emacs --version".
1972
1973 * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
1974
1975 * xterm.c (XTread_socket): If XK_ISO_Lock and
1976 XK_ISO_Last_Group_Lock are defined, handle keysyms between
1977 XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
1978
1979 2002-03-21 Kim F. Storm <storm@cua.dk>
1980
1981 * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
1982 menu-bar bindings in keymap and local-map properties _are_ used.
1983 But try keymap property first in accordance with 2002-01-03 patch.
1984 Added comment describing why this is not always reliable.
1985 (tool_bar_items): Ditto for tool-bar.
1986
1987 2002-03-21 Jason Rumney <jasonr@gnu.org>
1988
1989 * w32fns.c (x_clear_image_1): Disable color table code.
1990
1991 2002-03-21 Kim F. Storm <storm@cua.dk>
1992
1993 * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
1994 removed the wrong version of the DEFUN macro; fixed it.
1995
1996 * fns.c (Ffeaturep): Allow subfeature to be a list (test using
1997 Fmember rather than Fmemq).
1998 (Fprovide): Check that subfeatures is a list.
1999
2000 * process.c (QCfeature, QCdatagram): Removed variables.
2001 (QCtype, Qdatagram): New variables.
2002 (network_process_featurep): Removed function.
2003 (Fmake_network_process): Removed :feature check.
2004 Use :type 'datagram instead of :datagram t to create a datagram
2005 socket. This allows us to add other connection types (e.g. raw
2006 sockets) later in a consistent manner.
2007 (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
2008 supported subfeatures for feature make-network-process.
2009 (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
2010 Intern and staticpro QCtype and Qdatagram.
2011 (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
2012
2013 * xfns.c: (QCtype): Remove duplicate declaration and
2014 initialization (is now declared in process.c).
2015
2016 * w32fns.c: (QCtype): Remove duplicate declaration and
2017 initialization (is now declared in process.c).
2018
2019 2002-03-21 Richard M. Stallman <rms@gnu.org>
2020
2021 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
2022 (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
2023 when jumping to `fail' to avoid undoing reg changes in the
2024 last iteration of the loop.
2025 (GET_UNSIGNED_NUMBER): Skip spaces around the number.
2026
2027 * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
2028 Depend on process.h.
2029
2030 2002-03-20 Jason Rumney <jasonr@gnu.org>
2031
2032 Most of the following changes are still conditional on HAVE_IMAGES
2033 which is not set by default on Windows.
2034
2035 * emacs.c (main) [WINDOWSNT]: Call init_xfns.
2036
2037 * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
2038 (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
2039 (four_corners_best, x_clear_image_1, x_clear_image)
2040 (x_alloc_image_color, postprocess_image)
2041 (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
2042 (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
2043 (init_xfns, syms_of_w32fns): Initialize image functions and constants.
2044
2045 * w32gui.h (struct XImage): Define.
2046
2047 * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
2048 extract mouse co-ordinates.
2049
2050 2002-03-20 Jason Rumney <jasonr@gnu.org>
2051
2052 * w32.c (init_winsock): Dynamically load new server and UDP
2053 socket functions.
2054 (socket_to_fd): New function.
2055 (sys_socket): Use it.
2056 (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
2057 (sys_recvfrom, sys_sendto): New wrapper functions.
2058
2059 * process.c (QCfamily, QCfilter): Remove duplicate declaration
2060 and initialization.
2061
2062 * makefile.w32-in (LIBS): Remove $(WSOCK32).
2063
2064 2002-03-20 Eli Zaretskii <eliz@is.elta.co.il>
2065
2066 * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
2067 use "sun" as a variable, it's a predefined constant on Sun
2068 machines.
2069
2070 2002-03-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2071
2072 * bytecode.c (Fbyte_code): Revert last change.
2073
2074 2002-03-19 Kim F. Storm <storm@cua.dk>
2075
2076 * makefile.w32-in (LIBS): Add $(WSOCK32).
2077 From David Ponce <dponce@voila.fr>.
2078
2079 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2080
2081 * process.c (wait_reading_process_input): Move variables `pname'
2082 and `pnamelen' down where they are used.
2083
2084 * bytecode.c (Fbyte_code): Discard unused computed value to
2085 prevent gcc warning.
2086
2087 * lisp.h (Fplist_member): Add prototype.
2088
2089 2002-03-18 Kim F. Storm <storm@cua.dk>
2090
2091 * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
2092 HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and
2093 HAVE_SYS_UN_H.
2094
2095 * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
2096 Remove explicit GNU_LINUX settings for datagram support.
2097
2098 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2099
2100 * process.c (Fmake_network_process): Remove unused variable `sa'.
2101 Doc fix. Add usage:.
2102 (set_socket_options): Remove unused variables `optnum' and
2103 `opttype'.
2104
2105 2002-03-17 Richard M. Stallman <rms@gnu.org>
2106
2107 * xdisp.c (cursor_type_changed): New variable.
2108 (redisplay_internal): Redisplay all windows if cursor_type_changed.
2109 Clear it when clearing windows_or_buffers_changed.
2110 (try_cursor_movement, redisplay_window, try_window_id)
2111 (try_window_reusing_current_matrix): Test cursor_type_changed
2112 along with windows_or_buffers_changed.
2113
2114 * window.h (cursor_type_changed): New variable.
2115
2116 * xfns.c (x_set_cursor_type): Set cursor_type_changed,
2117 not update_mode_lines, and always set it to 1.
2118
2119 * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
2120 if no frames needed redrawing.
2121
2122 2002-03-17 Kim F. Storm <storm@cua.dk>
2123
2124 The following changes add support for network server processes,
2125 datagram connections, and local (unix) sockets.
2126
2127 * process.h (struct Lisp_Process): New member log.
2128 Doc fix: Member command used to indicate stopped network process.
2129 Doc fix: Member childp contains plist for network process.
2130 Doc fix: Member kill_without_query is inverse of query-on-exit flag.
2131
2132 * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
2133 (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop)
2134 (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature):
2135 New variables.
2136 (NETCONN1_P): New macro.
2137 (DATAGRAM_SOCKETS): New conditional symbol.
2138 (datagram_address): New array.
2139 (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
2140 (status_message): Use concat3.
2141 (Fprocess_status): Add `listen' status to doc string. Return `stop'
2142 for a stopped network process.
2143 (Fset_process_buffer): Update contact plist for network process.
2144 (Fset_process_filter): Ditto. Don't enable input for stopped
2145 network processes. Server must listen, even if filter is t.
2146 (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
2147 New functions.
2148 (Fprocess_kill_without_query): Removed. Now defined in simple.el.
2149 (Fprocess_contact): Added KEY argument. Handle datagrams.
2150 (list_processes_1): Optionally show only processes with the query
2151 on exit flag set. Dynamically adjust column widths. Omit tty
2152 column if not needed. Report stopped network processes.
2153 Identify server and datagram network processes.
2154 (Flist_processes): New optional arg `query-only'.
2155 (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
2156 (conv_lisp_to_sockaddr, set_socket_options)
2157 (network_process_featurep, unwind_request_sigio): New helper functions.
2158 (Fprocess_datagram_address, Fset_process_datagram_address):
2159 (Fset_network_process_options): New lisp functions.
2160 (Fopen_network_stream): Removed. Now defined in simple.el.
2161 (Fmake_network_process): New lisp function. Code is based on previous
2162 Fopen_network_stream, but heavily reworked with new property list based
2163 argument list, support for datagrams, server processes, and local
2164 sockets in addition to old client-only functionality.
2165 (server_accept_connection): New function.
2166 (wait_reading_process_input): Use it to handle incoming connects.
2167 Do not enable input on a new connection if process is stopped.
2168 (read_process_output): Handle datagram sockets. Use 2k buffer for them.
2169 (send_process): Handle datagram sockets.
2170 (Fstop_process, Fcontinue_process): Apply to network processes. A stopped
2171 network process is indicated by setting command field to t .
2172 (Fprocess_send_eof): No-op if datagram connection.
2173 (Fstatus_notify): Don't read input for a stream server socket or a
2174 stopped network process.
2175 (init_process): Initialize datagram_address array.
2176 (syms_of_process): Intern and staticpro new variables, defsubr new
2177 functions.
2178
2179 2002-03-16 Jason Rumney <jasonr@gnu.org>
2180
2181 * w32fns.c (w32_to_all_x_charsets): Return correct type in
2182 startup case.
2183
2184 2002-03-16 Richard M. Stallman <rms@gnu.org>
2185
2186 * xdisp.c (redisplay_internal, redisplay_windows):
2187 Use list_of_error to call internal_condition_case_1.
2188 (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
2189 so as to catch all errors with no possibility of debugger redisplay.
2190 (list_of_error): New variable.
2191 (syms_of_xdisp): Init and staticpro it.
2192
2193 * print.c (print_object): Delete `\ ' from printed rep of frame.
2194
2195 2002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
2196
2197 * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
2198 until its implementation is fixed.
2199
2200 2002-03-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2201
2202 * xfns.c (png_load): Remove unused variable `gamma_str'.
2203
2204 2002-03-14 Richard M. Stallman <rms@gnu.org>
2205
2206 * xfns.c (x_real_positions): Handle failure in XQueryTree.
2207
2208 2002-03-14 Miles Bader <miles@gnu.org>
2209
2210 * intervals.c (adjust_for_invis_intang): New function.
2211 (set_point_both): Use `adjust_for_invis_intang' to do most of the
2212 work for dealing with invisible+intangible regions. Do so before
2213 and after both forward and backward movements, to handle both
2214 front-sticky and rear-sticky cases.
2215 * textprop.c (text_property_stickiness): Function moved here from
2216 `editfns.c'.
2217 * intervals.h (text_property_stickiness): New declaration.
2218 * editfns.c (char_property_eq): Function removed.
2219 (text_property_stickiness): Function moved to `textprop.c'.
2220
2221 2002-03-13 Jason Rumney <jasonr@gnu.org>
2222
2223 * config.in: Add STRFTIME_NO_POSIX2.
2224
2225 * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
2226 and %OX when underlying strftime does not.
2227
2228 2002-03-13 Stefan Monnier <monnier@cs.yale.edu>
2229
2230 * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
2231 Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
2232 line) to avoid annoying flicker.
2233 (xm_scroll_callback): Get rid of the now unnecessary kludge.
2234 (XTread_socket): Mark it static.
2235
2236 * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
2237
2238 2002-03-13 Kim F. Storm <storm@cua.dk>
2239
2240 * puresize.h (BASE_PURESIZE): Increase to 775000.
2241
2242 2002-03-12 Juanma Barranquero <lektu@terra.es>
2243
2244 * editfns.c (syms_of_editfns): Fix typo.
2245
2246 2002-03-12 Gerd Moellmann <gerd@gnu.org>
2247
2248 * xsmfns.c: Include stdio.h because termhooks.h needs it.
2249 Include termopt.h for interrupt_input.
2250
2251 2002-03-11 Andreas Schwab <schwab@suse.de>
2252
2253 * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
2254
2255 2002-03-11 Gerd Moellmann <gerd@gnu.org>
2256
2257 * xterm.c (note_mouse_movement): Put code for
2258 x_autoselect_window_p in #if 0.
2259
2260 * lread.c (Fload): Don't assume that message_with_string uses the
2261 string it is given like a C string.
2262
2263 2002-03-10 Jan D. <Jan.Djarv@mbox200.swipnet.se>
2264
2265 * xterm.h (x_session_check_input, x_session_initialize): Declared.
2266
2267 * xterm.c: (XTread_socket): Add call to x_session_check_input and
2268 x_session_have_connection.
2269 (x_initialize): Add call to x_session_initialize.
2270
2271 * termhooks.h (enum event_kind): Add save_session_event.
2272
2273 * keyboard.c: Add Emacs event save_session_event.
2274
2275 * emacs.c (main): Add call to syms_of_xsmfns.
2276
2277 * lisp.h: Declare syms_of_xsmfns as extern.
2278
2279 * config.in: Add HAVE_X_SM.
2280
2281 * Makefile.in (LIBXT): Add -lSM -lICE
2282 if HAVE_X_SM and not USE_X_TOOLKIT.
2283 (XOBJ): New file xsmfns.c added.
2284
2285 * xsmfns.c: New file for X session management.
2286
2287 2002-03-09 Jason Rumney <jasonr@gnu.org>
2288
2289 * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
2290 read-only when setting modified time.
2291
2292 2002-03-08 Gerd Moellmann <gerd@gnu.org>
2293
2294 * xdisp.c (move_it_vertically_backward): At the end of the
2295 function, when moving forward by lines, treat terminal frames
2296 specially.
2297
2298 * keyboard.c (echo_char): Make sure to add a separator between
2299 keys even if echo_dash hasn't been called.
2300
2301 * xdisp.c: Use new string macros.
2302 (update_echo_area): Pass number of bytes to message3 instead of
2303 number of chars.
2304 (set_message_1): Don't access a string's size_byte directly.
2305 (decode_mode_spec_coding): Use number of bytes of eoltype string
2306 instead number of chars.
2307
2308 * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
2309
2310 2002-03-08 Juanma Barranquero <lektu@terra.es>
2311
2312 * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
2313 24-bit.
2314
2315 2002-03-06 Jason Rumney <jasonr@gnu.org>
2316
2317 * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
2318
2319 2002-03-06 Gerd Moellmann <gerd@gnu.org>
2320
2321 * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
2322 (cancel_echoing, echo_length, echo_truncate): Changed to
2323 work with new kboard definition.
2324 (echo_now): Use message3_nolog instead of message2_nolog.
2325
2326 * alloc.c (mark_kboards): Mark echo_string.
2327
2328 * keyboard.h (ECHOBUFSIZE): Removed.
2329 (struct kboard): Member echoptr removed, member echobuf renamed
2330 to echo_string.
2331
2332 * xdisp.c (message_with_string): Use Fformat instead of doprnt and
2333 message3 instead of message2 to display the message using STRING's
2334 text properties.
2335
2336 2002-03-05 Andreas Schwab <schwab@suse.de>
2337
2338 * xdisp.c (hscroll_margin): Change to EMACS_INT.
2339
2340 2002-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
2341
2342 * frame.c (default-frame-alist): Explain that setting it doesn't
2343 affect existing frames.
2344
2345 2002-03-05 Stefan Monnier <monnier@cs.yale.edu>
2346
2347 * indent.c (skip_invisible): Fix my brain fart.
2348
2349 * dispnew.c (sit_for): Don't wait if executing a kbd macro.
2350
2351 2002-03-04 Stefan Monnier <monnier@cs.yale.edu>
2352
2353 * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
2354 * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
2355 * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
2356 * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
2357 and variables to use EMACS_INT instead of just int.
2358
2359 * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
2360
2361 2002-03-04 Eli Zaretskii <eliz@is.elta.co.il>
2362
2363 * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
2364 environment, pass it down with corrected value.
2365
2366 2002-03-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2367
2368 * lread.c (read_filtered_event): Do not call start_hourglass
2369 before returning.
2370
2371 2002-03-04 Juanma Barranquero <lektu@terra.es>
2372
2373 * w32term.c (x_display_and_set_cursor): Fix typo.
2374
2375 2002-03-03 Richard M. Stallman <rms@gnu.org>
2376
2377 * fileio.c (Fmake_temp_name): Doc fix.
2378
2379 2002-03-03 Gary Wong <gtw@gnu.org>
2380
2381 * termcap.c [!emacs]: Replace ospeed for building standalone
2382 libtermcap, for binary compatibility.
2383
2384 * tparam.c [!emacs]: Move #define of bcopy to after string.h.
2385
2386 2002-03-03 Richard M. Stallman <rms@gnu.org>
2387
2388 * xrdb.c (file_p): Rename arg `path' to `filename'.
2389
2390 * abbrev.c (Fexpand_abbrev): Increment plist as use count
2391 only if it is an integer.
2392
2393 * xfns.c (png_load): Set screen_gamma based on f->gamma.
2394 If png_get_sRGB gives an answer, call png_set_gamma
2395 using the default image gamma value.
2396
2397 * lread.c (read1): When reading from a file, default string to
2398 multibyte only if it has some multibyte characters.
2399
2400 * print.c (print_object): Output multibyte chars 128...255
2401 using \x even if ! print_escape_multibyte.
2402
2403 * xdisp.c (display_mode_element): Move the places where
2404 bytepos, charpos, this, and lisp_string are set.
2405 Use lisp_string to set bytepos.
2406
2407 * xdisp.c (redisplay_internal):
2408 Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
2409
2410 * xdisp.c (display_mode_element): Merge properties specified with
2411 :propertize onto those that come with the string.
2412
2413 2002-03-03 Eli Zaretskii <eliz@is.elta.co.il>
2414
2415 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
2416 automatic-hscrolling. Users changed.
2417 <hscroll-margin>: Renamed from automatic-hscroll-margin.
2418 Users changed.
2419 <hscroll-step>: Renamed from automatic-hscroll-step. Users changed.
2420
2421 2002-03-02 Eli Zaretskii <eliz@is.elta.co.il>
2422
2423 * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
2424
2425 2002-03-02 Kim F. Storm <storm@cua.dk>
2426
2427 * window.c (Fminibuffer_selected_window): New function.
2428 (syms_of_window): Defsubr it.
2429
2430 2002-03-01 Kim F. Storm <storm@cua.dk>
2431
2432 * window.h (struct window): New member phys_cursor_width.
2433
2434 * window.c (make_window, replace_window): Init phys_cursor_width.
2435
2436 * xterm.c (x_display_and_set_cursor): Blink box cursor using
2437 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
2438
2439 * w32term.c (x_display_and_set_cursor): Blink box cursor using
2440 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
2441
2442 * lisp.h (GCPRO6): New macro.
2443
2444 * process.c (Fopen_network_stream): Use GCPRO6.
2445
2446 2002-03-01 Kim F. Storm <storm@cua.dk>
2447
2448 * process.c (Qconnect, Qfailed): New variables.
2449 (syms_of_process): Intern and staticpro them.
2450 (Fprocess_status): Document connect and failed return values.
2451 [NON_BLOCKING_CONNECT]: New conditional.
2452 (connect_wait_mask, num_pending_connects): New variables.
2453 (status_message): Convert Qfailed status.
2454 (Fopen_network_stream): Added support for non-blocking connect.
2455 New optional args: filter, sentinel, non_blocking. Doc updated.
2456 [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]: Merged common code.
2457 (deactivate_process): Handle pending non-blocking connect.
2458 (wait_reading_process_input): Poll for status of non-blocking
2459 connects. Exec sentinel directly when connect succeeds.
2460 (status_notify): Don't read process output if not yet connected.
2461
2462 2002-02-28 Kim F. Storm <storm@cua.dk>
2463
2464 * window.c: (minibuf_selected_window): Renamed from
2465 Vminibuf_selected_window. Users changed.
2466 (syms_of_window): Staticpro it.
2467
2468 2002-02-26 Kim F. Storm <storm@cua.dk>
2469
2470 The following changes add a new Vminibuf_selected_window variable
2471 which is similar to Vminibuf_scroll_window, but which is only set
2472 on entry to the minibuffer (from a non-minibuffer window):
2473
2474 * window.c: (Vminibuf_selected_window): New variable.
2475 (struct save_window_data): New member minibuf_selected_window.
2476 (Fset_window_configuration): Restore Vminibuf_selected_window.
2477 (Fcurrent_window_configuration): Save Vminibuf_selected_window.
2478 Set minibuf_scroll_window member to nil if minibuf_level is 0.
2479 (compare_window_configurations): Compare minibuf_selected_window.
2480
2481 * window.h: (Vminibuf_selected_window): Declare extern.
2482
2483 * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
2484 entry to minibuffer or on entry from a non-minibuffer window.
2485
2486 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
2487 Vminibuf_selected_window instead of Vminibuf_scroll_window.
2488
2489 * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
2490 instead of Vminibuf_scroll_window when deciding in which window
2491 the region should be highlighted. Consequently, the region remains
2492 highlighteded even when a completion buffer is also displayed.
2493
2494 2002-02-26 Eli Zaretskii <eliz@is.elta.co.il>
2495
2496 * fileio.c (Fsubstitute_in_file_name): Fix the change from
2497 2002-02-08.
2498
2499 * xselect.c (Qcompound_text_with_extensions): Renamed from
2500 Qcompound_text_no_extensions.
2501 (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
2502
2503 2002-02-26 Juanma Barranquero <lektu@terra.es>
2504
2505 * w32proc.c (syms_of_ntproc): Doc fix.
2506
2507 2002-02-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2508
2509 * intervals.h: Include "dispextern.h" unconditionally.
2510
2511 2002-02-24 Jason Rumney <jasonr@gnu.org>
2512
2513 * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
2514 and disp-table.elc.
2515 (lisp): Add emacs-lisp/backquote.elc.
2516
2517 2002-02-24 Kim F. Storm <storm@cua.dk>
2518
2519 * keymap.c (Flookup_key): Fixed problem in 2001-12-28 patch:
2520 The validation of the event type was too strict as it didn't
2521 allow string events; buffer names are used in bindings for
2522 menu-bar-select-buffer (see `menu-bar-update-buffers').
2523
2524 2002-02-23 Kim F. Storm <storm@cua.dk>
2525
2526 The following changes rework my patch of 2002-02-06 which
2527 added command remapping by entering the commands directly into
2528 the keymaps. Now, command remapping uses an explicit `remap'
2529 prefix in the keymaps, i.e. [remap COMMAND].
2530
2531 * keymap.c (Qremap, remap_command_vector): New variables.
2532 (is_command_symbol): Removed function.
2533 (Fdefine_key): No longer accept a symbol for KEY.
2534 Added validation of [remap COMMAND] argument for KEY.
2535 The DEF is no longer required to be a symbol when remapping a command.
2536 (Fremap_command): New function to remap command through keymaps.
2537 (Flookup_key): Perform command remapping initiated by
2538 Fremap_command directly for speed.
2539 (Fkey_binding): Use Fremap_command for command remapping.
2540 (where_is_internal): Handle new command remapping representation.
2541 (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
2542 staticpro them. Defsubr Fremap_command.
2543
2544 * keymap.h (Fremap_command): Declare extern.
2545 (is_command_symbol): Remove extern.
2546
2547 * keyboard.c (command_loop_1): Use Fremap_command for command
2548 remapping; now try command remapping for all symbols.
2549
2550 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
2551
2552 * coding.h (run_pre_post_conversion_on_str): Add prototype.
2553
2554 2002-02-23 Jason Rumney <jasonr@gnu.org>
2555
2556 * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
2557 on the string before encoding it.
2558 (Fw32_get_clipboard_data): Run post-read-conversion on the string
2559 after decoding it.
2560
2561 * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
2562
2563 2002-02-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2564
2565 * w32term.c (enter_timestamp): Remove unused static variable to
2566 prevent warning.
2567
2568 * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
2569
2570 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
2571
2572 * w16select.c (Fw16_get_clipboard_data): Fix last change.
2573
2574 * xselect.c (selection_data_to_lisp_data): Fix last change.
2575
2576 2002-02-22 Jason Rumney <jasonr@gnu.org>
2577
2578 * w32term.h (struct w32_output): New member menu_command_in_progress.
2579
2580 * w32menu.c (menubar_selection_callback): Free the menu and
2581 clear the menu_command_in_progress flag.
2582
2583 * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
2584 (menu_free_timer): New variable.
2585 (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
2586 (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
2587 <WM_EXITMENULOOP>: Delay before freeing menu. Do nothing if a
2588 menu command is in progress.
2589 <WM_COMMAND>: Set the menu_command_in_progress flag.
2590 Kill any menu_free_timer that is running.
2591
2592 * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
2593 Call ExtTextOutA rather than ExtTextOut.
2594
2595 2002-02-22 Eli Zaretskii <eliz@gnu.org>
2596
2597 * puresize.h (BASE_PURESIZE): Increase to 755000.
2598
2599 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
2600
2601 * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
2602 on the string before encoding it.
2603 (Fw16_get_clipboard_data): Run post-read-conversion on the string
2604 after decoding it.
2605
2606 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
2607
2608 Support for ICCCM Extended Segments in X selections:
2609
2610 * xselect.c <Qcompound_text_no_extensions>: New variable.
2611 (syms_of_xselect): Intern and staticpro it.
2612 (selection_data_to_lisp_data): Run post-read-conversion on decoded
2613 selection text.
2614 (lisp_data_to_selection_data): If next-selection-coding-system is
2615 compound-text-no-extensions, set the type of selection to be
2616 compound-text.
2617
2618 * xterm.h (x_encode_text): Update prototype.
2619
2620 * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
2621 callers changed. If SELECTIONP is non-zero, run the
2622 pre-write-conversion function before encoding the selection text.
2623
2624 2002-02-21 Kim F. Storm <storm@cua.dk>
2625
2626 * frame.c (syms_of_frame): Change mouse-highlight default to t.
2627
2628 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
2629 Correct composing of language-change event.
2630
2631 2002-02-20 Kim F. Storm <storm@cua.dk>
2632
2633 * keyboard.c (menu_bar_items): Don't include keymap or local-map
2634 bindings at PT when building menu (the menu is not updated often
2635 enough for this to work reliable).
2636 (tool_bar_items): Likewise.
2637 (current_active_maps): Removed unused (and buggy) function.
2638
2639 2002-02-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2640
2641 * xfns.c (gif_load): Use correct width and height for GIF images.
2642
2643 2002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
2644
2645 * floatfns.c (Fatan): Accept an optional second arg and call
2646 atan2 if passed 2 args.
2647
2648 2002-02-18 Jason Rumney <jasonr@gnu.org>
2649
2650 * w32term.c (glyph_rect): Determine the row and glyph more precisely.
2651
2652 2002-02-17 Jason Rumney <jasonr@gnu.org>
2653
2654 * w32term.c (x_autoselect_window_p): New variable.
2655 (syms_of_w32term): DEFVAR_BOOL and initialize it.
2656 (note_mouse_movement): Use it.
2657
2658 * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
2659
2660 * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
2661
2662 * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
2663 New variables.
2664 (syms_of_w32fns): Intern and staticpro them.
2665 (x_frame_parms) <"fullscreen">: New parameter.
2666 (x_fullscreen_move, x_set_fullscreen): New functions.
2667 (x_set_frame_parameters): Support Qfullscreen.
2668 (x_real_positions): Save x/y_pixels_diff frame params.
2669 (x_figure_window_size): Support full-screen frames.
2670 (Fx_create_frame): Default the fullscreen parameter.
2671
2672 * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
2673 (x_fullscreen_adjust): New functions.
2674 (w32_read_socket) <WM_WINDOWPOSCHANGED>: Don't resize to
2675 fullscreen. Call x_check_fullscreen_move, and set the
2676 want_fullscreen member of output_data.w32
2677 <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
2678
2679 * w32term.h: New enum for FULLSCREEN_* constants.
2680 (struct w32_output): New members want_fullscreen, x_pixels_diff,
2681 y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
2682 (x-fullscreen-adjust): New prototype.
2683
2684 2002-02-17 Kim F. Storm <storm@cua.dk>
2685
2686 * frame.c: (Vmouse_highlight): New variable.
2687 (syms_of_frame): DEFVAR_LISP it.
2688
2689 * frame.h: (Vmouse_highlight): Declare extern.
2690
2691 * xterm.h (struct x_display_info): Add mouse_face_hidden.
2692
2693 * xterm.c (disable_mouse_highlight): Removed variable.
2694 (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
2695 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
2696 (XTread_socket): Turn mouse_face_hidden off after mouse movement,
2697 and on after keyboard input.
2698 (x_term_init): Initialize mouse_face_hidden.
2699
2700 * msdos.h (struct display_info): Add mouse_face_hidden.
2701
2702 * msdos.c (disable_mouse_highlight): Removed variable.
2703 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
2704 (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
2705 (internal_terminal_init): Initialize mouse_face_hidden.
2706 (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
2707 and on after keyboard input.
2708
2709 * w32term.h (struct w32_display_info): Add mouse_face_hidden.
2710
2711 * w32term.c (disable_mouse_highlight): Removed variable.
2712 (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
2713 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
2714 (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
2715 and on after keyboard input.
2716 (w32_initialize_display_info): Initialize mouse_face_hidden.
2717
2718 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
2719
2720 * msdos.c (last_mouse_window): New variable.
2721 (dos_rawgetc): Fix last change--if the mouse is in the same window
2722 as recorded in last_mouse_window, don't select this window.
2723
2724 * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
2725
2726 * msdos.c (x_autoselect_window_p): New variable.
2727 (syms_of_msdos): Defvar it.
2728 (dos_rawgetc): If x_autoselect_window_p is set, select the window
2729 in which the last mouse movement occured, unless it is already
2730 selected.
2731
2732 * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
2733 New variables.
2734 (syms_of_xdisp): DEVFAR them.
2735 (hscroll_window_tree): Use automatic_hscroll_margin and
2736 Vautomatic_hscroll_step to compute the amount of window scrolling.
2737
2738 2002-02-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2739
2740 * xterm.c (x-autoselect-window): New variable.
2741 (note_mouse_movement): Use it.
2742
2743 * keyboard.c: Do not include "systime.h" twice.
2744
2745 2002-02-15 Andreas Schwab <schwab@suse.de>
2746
2747 * puresize.h (BASE_PURESIZE): Increase to 9/5.
2748
2749 * alloc.c (NSTATICS): Increase to 1280.
2750
2751 2002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2752
2753 * alloc.c (NSTATICS): Bump to 1026.
2754
2755 * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
2756 (Vx_super_keysym): New variables.
2757 (syms_of_xterm): DEFVAR_LISP them.
2758 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
2759 variables to determine which keys to use for the various modifiers.
2760
2761 2002-02-13 Kim F. Storm <storm@cua.dk>
2762
2763 * window.c: (Vmode_line_in_non_selected_windows): Removed.
2764 (mode_line_in_non_selected_windows): New variable.
2765 (syms_of_window): DEFVAR_BOOL it.
2766
2767 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
2768 Use mode_line_in_non_selected_windows.
2769 (mode_line_in_non_selected_windows): Declare extern.
2770 (Vmode_line_in_non_selected_windows): Removed extern.
2771
2772 2002-02-13 Richard M. Stallman <rms@gnu.org>
2773
2774 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
2775 (Fthis_single_command_keys, Fthis_single_command_raw_keys)
2776 (Fclear_this_command_keys): Doc fixes.
2777
2778 * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
2779 (update_face_from_frame_parameter): Increment face_change_count
2780 and windows_or_buffers_changed to force redisplay using changed faces.
2781
2782 * xdisp.c (QCpropertize): New variable.
2783 (mode_line_proptrans_alist): New variable.
2784 (display_mode_element): New arg PROPS; all calls changed.
2785 Implement this, for strings.
2786 Handle literal output of strings by sharing the
2787 main-line code for strings, using local var `literal'.
2788 Handle :propertize feature.
2789 (syms_of_xdisp): Initialze and staticpro QCpropertize and
2790 mode_line_proptrans_alist.
2791
2792 2002-02-11 Kim F. Storm <storm@cua.dk>
2793
2794 * window.c: (Vmode_line_in_non_selected_windows): New variable.
2795 (syms_of_window): DEFVAR_LISP it.
2796
2797 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
2798 (CURRENT_MODE_LINE_FACE_ID): Use it.
2799 (Vmode_line_in_non_selected_windows): Declare extern.
2800
2801 * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
2802 to get mode line face.
2803
2804 2002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
2805
2806 * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
2807 variables; cus-start.el doesn't need them anymore.
2808
2809 2002-02-09 Kim F. Storm <storm@cua.dk>
2810
2811 * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
2812 reduction. This fixes a display problem where stray newlines were
2813 inserted in the window (corrected by C-l). Clarified code (IMHO).
2814
2815 2002-02-09 Eli Zaretskii <eliz@is.elta.co.il>
2816
2817 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
2818
2819 * xdisp.c (display_mode_lines): Fix last change.
2820
2821 2002-02-09 Jason Rumney <jasonr@gnu.org>
2822
2823 * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
2824 match each other.
2825 (w32_load_system_font): Prevent Cleartype fonts from loading.
2826 (Fx_show_tip): Ensure tip frames are above other topmost windows.
2827
2828 2002-02-09 Kim F. Storm <storm@cua.dk>
2829
2830 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
2831 (CURRENT_MODE_LINE_HEIGHT): Use it.
2832 (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
2833
2834 * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
2835 (pos_visible_p, handle_face_prop): Likewise.
2836 (display_mode_lines): Likewise, but for the real selected window.
2837 (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
2838
2839 * xfaces.c (Qmode_line_inactive): New face variable for mode-line
2840 in non-selected windows.
2841 (realize_basic_faces): Realize it.
2842 (syms_of_term): Intern and staticpro it.
2843
2844 2002-02-08 Kim F. Storm <storm@cua.dk>
2845
2846 * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
2847 Changed mail addresses to emacs-devel@gnu.org.
2848
2849 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
2850
2851 * fileio.c (Fsubstitute_in_file_name): If the file name includes
2852 ~user, and there's no such user, don't discard everything before ~user.
2853
2854 * floatfns.c (Fround): Doc fix.
2855
2856 2002-02-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2857
2858 * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
2859
2860 2002-02-07 Stefan Monnier <monnier@cs.yale.edu>
2861
2862 * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
2863
2864 2002-02-07 Kim F. Storm <storm@cua.dk>
2865
2866 * keymap.c (where_is_internal): Only check whether definition is
2867 remapped if it fulfills is_command_symbol.
2868
2869 2002-02-07 Andreas Schwab <schwab@suse.de>
2870
2871 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
2872
2873 * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
2874
2875 2002-02-06 Kim F. Storm <storm@cua.dk>
2876
2877 * keymap.c (Fdefine_key): Allow symbol as KEY argument for
2878 defining command remapping. Doc updated.
2879 (Flookup_key): Remap command through keymap if KEY is a symbol.
2880 (is_command_symbol): New function.
2881 (Fkey_binding): Use it. New optional argument NO-REMAP.
2882 Doc updated. Callers changed. Perform command remapping via
2883 recursive call unless that arg is non-nil.
2884 (where_is_internal): New argument no_remap. Callers changed.
2885 Call recursively to find original key bindings for a remapped
2886 comand unless that arg is non-nil.
2887 (Fwhere_is_internal): New optional argument NO-REMAP.
2888 Doc updated. Callers changed. Pass arg to where_is_internal.
2889
2890 * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
2891 (is_command_symbol): Added prototype.
2892
2893 * keyboard.c (Vthis_original_command): New variable.
2894 (syms_of_keyboard): DEFVAR_LISP it.
2895 (command_loop_1): Set it, and perform command remapping.
2896
2897 2002-02-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2898
2899 * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
2900
2901 2002-02-06 Jason Rumney <jasonr@gnu.org>
2902
2903 * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
2904
2905 2002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
2906
2907 * charset.c (get_charset_id): Use if-else instead of ?:.
2908
2909 2002-02-06 Richard M. Stallman <rms@gnu.org>
2910
2911 * filelock.c (S_ISLNK): Define if not defined.
2912
2913 2002-02-03 Richard M. Stallman <rms@gnu.org>
2914
2915 * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
2916
2917 * lread.c (read1): Redesign strategy for force_multibyte and
2918 force_singlebyte. Now is_multibyte records whether read_buffer
2919 is multibyte. Encountering any multibyte character makes it so.
2920
2921 2002-02-02 Stefan Monnier <monnier@cs.yale.edu>
2922
2923 * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
2924 with the same sequence, map that sequence to f10 rather than f0.
2925
2926 2002-02-03 Andreas Schwab <schwab@suse.de>
2927
2928 * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
2929 latter never being defined on GNU/Linux.
2930
2931 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
2932
2933 * xfaces.c (realize_default_face): Don't set the weight and slant
2934 of the default face to Qnormal, unless these attributes are
2935 unspecified.
2936
2937 2002-02-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2938
2939 * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
2940 Call cancel_hourglass unconditionally.
2941
2942 * eval.c (Fsignal): Remove duplicated declaration of
2943 the variable `display_hourglass_p'.
2944
2945 2002-01-31 Richard M. Stallman <rms@gnu.org>
2946
2947 * editfns.c (region_limit): Nicer error message.
2948
2949 * coding.c (decode_composition_emacs_mule):
2950 Give up if NCOMPONENT gets too large to index `component'.
2951
2952 * callint.c (check_mark): New arg to specify clearer error message.
2953 Callers changed.
2954
2955 2002-01-27 Richard M. Stallman <rms@gnu.org>
2956
2957 * minibuf.c (Fcompleting_read): Doc fix.
2958
2959 2002-01-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2960
2961 * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
2962 (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
2963 Fix doc-strings.
2964
2965 2002-01-26 Richard M. Stallman <rms@gnu.org>
2966
2967 * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
2968
2969 * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
2970 and scroll_up_aggressively.
2971
2972 2002-01-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2973
2974 * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
2975
2976 2002-01-25 Stefan Monnier <monnier@cs.yale.edu>
2977
2978 * textprop.c (Fnext_property_change, Fnext_single_property_change)
2979 (Fprevious_property_change, Fprevious_single_property_change):
2980 Stay within the narrowed-buffer boundaries.
2981
2982 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
2983
2984 * term.c (Ftty_display_color_cells): New function.
2985 (syms_of_term): Defsubr it.
2986 (Ftty_display_color_cells, Ftty_display_color_p): Change the
2987 argument name to DISPLAY. Doc fix.
2988
2989 * dispextern.h: Add prototype for set_tty_color_mode and
2990 tty_setup_colors.
2991
2992 2002-01-24 Jason Rumney <jasonr@gnu.org>
2993
2994 * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
2995 If region left to draw is not what was expected, mark the frame as
2996 garbaged.
2997
2998 * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
2999 Combine the regions returned by BeginPaint and GetUpdateRect.
3000
3001 2002-01-23 Jason Rumney <jasonr@gnu.org>
3002
3003 * w32term.c (x_update_window_begin): Only hide caret if
3004 w32_use_visible_system_caret is set.
3005 (x_update_window_end): Only show caret if
3006 w32_use_visible_system_caret is set.
3007 (syms_of_w32term): Handle SystemParametersInfo call failing.
3008
3009 * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
3010
3011 2002-01-22 Richard M. Stallman <rms@gnu.org>
3012
3013 * unexelf.c (unexec): Define n so as to cause compilation error
3014 for the code where people have often written n instead of nn.
3015
3016 * .gdbinit (hookpost-run): Defined.
3017
3018 2002-01-22 Jan D. <Jan.Djarv@mbox200.swipnet.se>
3019
3020 * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
3021
3022 2002-01-21 Jan D. <Jan.Djarv@mbox200.swipnet.se>
3023
3024 * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
3025 if fullscreen is being set.
3026
3027 2002-01-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3028
3029 * minibuf.c (Fminibuffer_contents)
3030 (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
3031 (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
3032
3033 2002-01-21 Richard M. Stallman <rms@gnu.org>
3034
3035 * window.c (check_frame_size): Fix minimum height calculation.
3036
3037 2002-01-20 Ken Raeburn <raeburn@gnu.org>
3038
3039 * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
3040 height before comparison.
3041 (WINDOW_WANTS_HEADER_LINE_P): Likewise.
3042
3043 2002-01-20 Jason Rumney <jasonr@gnu.org>
3044
3045 * w32term.c (w32_system_caret_width): Remove.
3046 (w32_use_visible_system_caret): New user flag.
3047 (syms_of_w32term): DEFVAR_BOOL it. Initialize based on whether
3048 Windows reports a screen reader running.
3049 (x_update_window_begin): Hide the system caret.
3050 (x_update_window_end): Show the system caret.
3051 (x_display_and_set_cursor): Don't draw a cursor when
3052 w32_use_visible_system_caret is set. Do not adjust width.
3053
3054 * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
3055 (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
3056 <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
3057 the user requests it. Use system default width when creating.
3058 <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
3059
3060 * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
3061 New window messages.
3062
3063 2002-01-20 Richard M. Stallman <rms@gnu.org>
3064
3065 * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
3066
3067 2002-01-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3068
3069 * doprnt.c (doprnt1): Fix typos in error call.
3070
3071 2002-01-20 Eli Zaretskii <eliz@is.elta.co.il>
3072
3073 * unexelf.c (unexec) [__sgi]: Support the .got sections.
3074
3075 2002-01-20 Jason Rumney <jasonr@gnu.org>
3076
3077 * w32term.c (w32_native_per_char_metric): Don't trust the metrics
3078 that Windows returns. If a double check fails, try to guess how
3079 ExtTextOut is going to act.
3080
3081 * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
3082 in place of stricmp.
3083 (w32_list_synthesized_fonts): Removed.
3084 (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
3085 (struct enumfont_t): New element; list.
3086 (enum_font_cb2): List all style and charset variations of a font.
3087 (Fw32_select_font): New optional argument; include_proportional.
3088 Exclude vertical fonts. Exclude proportional fonts unless
3089 include_proportional is non-nil.
3090 (w32_enable_synthesized_fonts): Change to a boolean.
3091 (Fw32_send_sys_command): Doc fix.
3092
3093 2002-01-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3094
3095 * dispnew.c (update_frame): Move the variable `tem' to the block
3096 where it is used.
3097
3098 2002-01-19 Jason Rumney <jasonr@gnu.org>
3099
3100 * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
3101 call to face-set-after-frame-default.
3102
3103 2002-01-18 Richard M. Stallman <rms@gnu.org>
3104
3105 * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
3106 (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
3107
3108 2002-01-17 Richard M. Stallman <rms@gnu.org>
3109
3110 * window.c (enlarge_window): When exceeding size of parent,
3111 directly delete all the siblings instead of trying to resize it.
3112
3113 2002-01-17 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3114
3115 * term.c (set_tty_color_mode): Remove unused variable `tem'.
3116
3117 2002-01-16 Henrik Enberg <henrik@enberg.org>
3118
3119 * lread.c (init_lread): Move the installed-lisp dirs later in the path.
3120
3121 2002-01-16 Kim F. Storm <storm@cua.dk>
3122
3123 * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
3124 is invisible. This can happen if cursor is on top line of a
3125 window, and we switch to a buffer with a header line.
3126
3127 * w32term.c (x_erase_phys_cursor): Ditto.
3128
3129 2002-01-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3130
3131 * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
3132 `dont_resize' only when used.
3133
3134 * xdisp.c: Remove forgotten extern declaration of `Qimage'.
3135
3136 2002-01-15 Eli Zaretskii <eliz@is.elta.co.il>
3137
3138 * xdisp.c (display_mode_element): When computing charpos, depend
3139 on multibyteness of elt, not the text in field.
3140
3141 2002-01-15 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3142
3143 * buffer.c (Fkill_all_local_variables):
3144 Increment `update_mode_lines' only once.
3145
3146 2002-01-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3147
3148 * lisp.h (adjust_after_replace_noundo)
3149 (Fupdate_coding_systems_internal): Add prototypes.
3150
3151 * sound.c (Fplay_sound): Initialize header_size also for :data case.
3152
3153 2002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
3154
3155 Support for the --color command-line argument and tty-color-mode
3156 frame parameter:
3157
3158 * term.c (tty_default_color_capabilities, tty_setup_colors)
3159 (set_tty_color_mode): New functions.
3160 (term_init): Call tty_default_color_capabilities.
3161 (Qtty_color_mode_alist): New variable.
3162 (syms_of_term): Intern and staticpro it.
3163
3164 * frame.c (store_frame_param): Call set_tty_color_mode for termcap
3165 frames.
3166 (do_switch_frame): For termcap frames, switch the tty
3167 color mode as specified by the frame's parameters.
3168 (Qtty_color_mode): New variable.
3169 (syms_of_frame): Intern and staticpro it.
3170
3171 * emacs.c (USAGE2): Add the --color option.
3172 (standard_args): Ditto.
3173
3174 2002-01-13 Jan Djarv <Jan.Djarv@mbox200.swipnet.se>
3175
3176 * xterm.h (struct x_output): New members want_fullscreen,
3177 x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
3178 y_pixels_outer_diff.
3179 New enum for FULLSCREEN_* constants.
3180 (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
3181 is NULL.
3182 (x_fullscreen_adjust): Add prototype.
3183
3184 * emacs.c (USAGE2): Add the new full-screen arguments.
3185 (standard_args): Ditto.
3186
3187 * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
3188 New variables.
3189 (syms_of_xfns): Intern and staticpro them.
3190 (x_frame_parms) <"fullscreen">: New parameter.
3191 (x_fullscreen_move, x_set_fullscreen): New functions.
3192 (x_set_frame_parameters): Support for Qfullscreen.
3193 (x_real_positions): More accurate computation of the frame position.
3194 (x_figure_window_size): Support full-screen frames.
3195 (Fx_create_frame): Default the fullscreen parameter.
3196
3197 * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
3198 (XTread_socket) <Expose>: Call x_check_fullscreen.
3199 <ConfigureNotify>: Don't resize to fullscreen.
3200 Call x_check_fullscreen_move, and set the want_fullscreen member of
3201 output_data.x.
3202
3203 2002-01-13 Jason Rumney <jasonr@gnu.org>
3204
3205 * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
3206 for mice with more than 3 buttons.
3207
3208 * w32term.c (parse_button): New parameter xbutton. Callers changed.
3209 (w32_read_socket): Handle new "XBUTTON" messages.
3210
3211 * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
3212 (syms_of_w32fns): DEFVAR_BOOL it.
3213 (w32_wnd_proc): Handle new "XBUTTON" messages.
3214
3215 2002-01-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3216
3217 * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
3218
3219 2002-01-13 Andreas Schwab <schwab@suse.de>
3220
3221 * xterm.c (x_load_font): Never set fonts_changed_p to zero.
3222
3223 2002-01-12 Andreas Schwab <schwab@suse.de>
3224
3225 * .gdbinit (xbuffer): Remove address operator since data is now a
3226 pointer.
3227
3228 2002-01-11 Richard M. Stallman <rms@gnu.org>
3229
3230 * insdel.c (adjust_after_replace_noundo): New function.
3231
3232 * coding.c (code_convert_region): Don't copy old text if undo disabled.
3233
3234 2002-01-09 Jason Rumney <jasonr@gnu.org>
3235
3236 * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
3237 when checking for multiple frames.
3238
3239 2002-01-08 Richard M. Stallman <rms@gnu.org>
3240
3241 * window.c (delete_window): Rewrite the code for changing the
3242 selected window to handle the case where WINDOW is not a leaf.
3243
3244 2002-01-07 Eli Zaretskii <eliz@is.elta.co.il>
3245
3246 * process.c (send_process): Set src_multibyte to 1 after the call
3247 top setup_coding_system, not before the call.
3248
3249 2002-01-07 Jason Rumney <jasonr@gnu.org>
3250
3251 * xmenu.c (set_frame_menubar, xmenu_show):
3252 (xdialog_show): Initialize wv->help to Qnil.
3253
3254 * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
3255 (w32_dialog_show): Initialize wv->help to Qnil.
3256
3257 2002-01-06 Jason Rumney <jasonr@gnu.org>
3258
3259 * xmenu.c (single_submenu): Initialize wv->help to Qnil.
3260
3261 * w32menu.c (w32_menu_display_help): Revert last change.
3262
3263 * xmenu.c (menu_highlight_callback): Revert last change.
3264
3265 2002-01-06 Andreas Schwab <schwab@suse.de>
3266
3267 * insdel.c (make_gap_larger): Make sure buffer size does not
3268 overflow range of int.
3269
3270 2002-01-05 Jason Rumney <jasonr@gnu.org>
3271
3272 * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
3273 OVERLAPS_P.
3274
3275 * w32menu.c (w32_menu_display_help): Hide any tooltip window.
3276
3277 * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
3278 to the left or to the right of the pointer, put it against
3279 the left screen edge.
3280 (x_frame_parms): Add missing braces around initializer.
3281
3282 * w32term.c (x_setup_relief_colors): Don't compute an image's
3283 background color if it doesn't have a Pixmap.
3284 (notice_overwritten_cursor): Don't depend on
3285 output_cursor and updated_area. Compare pixel coordinates with
3286 window's cursor pixel coordinates.
3287 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
3288 Call notice_overwritten_cursor with new arg list.
3289 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
3290 unconditionally.
3291 (x_draw_image_relief): Use predefined macro instead of
3292 constant when the value of `tool_bar_button_relief' is negative.
3293
3294 * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
3295
3296 2002-01-04 Richard M. Stallman <rms@gnu.org>
3297
3298 * xmenu.c (menu_highlight_callback): Hide any tooltip window.
3299
3300 2002-01-03 Richard M. Stallman <rms@gnu.org>
3301
3302 * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
3303 (Fkey_binding): Try the `keymap' property map first.
3304 (Fdescribe_buffer_bindings): Show `keymap' property bindings before
3305 minor mode bindings.
3306
3307 2002-01-03 Kim F. Storm <storm@cua.dk>
3308
3309 * keyboard.c (read_key_sequence): Fixed cast of submaps arg to bcopy.
3310
3311 2002-01-02 Richard M. Stallman <rms@gnu.org>
3312
3313 * keyboard.c (read_key_sequence): Handle the keymap property
3314 before minor mode maps.
3315
3316 * editfns.c (Fformat): Update thissize from field_width
3317 based on the actual width, in the string case.
3318
3319 2002-01-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3320
3321 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
3322 when used as truth value to prevent gcc warnings.
3323
3324 * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
3325 * w32proc.c: Include <config.h>.
3326
3327 2002-01-01 Andreas Schwab <schwab@suse.de>
3328
3329 * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
3330 not EMACS_INT, to make them compatible with DEFVAR_INT.
3331 * lisp.h (max_specpdl_size): Adjust declaration.
3332
3333 2002-01-01 Richard M. Stallman <rms@gnu.org>
3334
3335 * print.c (print_object): Test print_escape_nonascii only for
3336 unibyte strings.
3337 (PRINTPREPARE): Once again bind Qprint_escape_nonascii
3338 when outputting to a multibyte buffer.
3339
3340 2001-12-29 Richard M. Stallman <rms@gnu.org>
3341
3342 * print.c (print_object): In multibyte string, use hex escapes.
3343 Use octal only for unibyte strings.
3344 (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
3345
3346 * lread.c (read_escape): New arg BYTEREP for reporting whether
3347 escape forces unibyte or multibyte.
3348 (read1): When reading a string, take note of that info.
3349
3350 2001-12-29 Ken Raeburn <raeburn@gnu.org>
3351
3352 * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
3353 comparison to test lisp value returned by Fget.
3354
3355 2001-12-29 Richard M. Stallman <rms@gnu.org>
3356
3357 * lisp.h (max_specpdl_size): Add declaration.
3358
3359 * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
3360
3361 * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
3362 Handle modifier bits. Correct typo in error message.
3363
3364 2001-12-28 Richard M. Stallman <rms@gnu.org>
3365
3366 * abbrev.c: Use the plist of an abbrev for multiple params if nec.
3367 (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
3368 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
3369 Update calls to Fdefine_abbrev.
3370 (write_abbrev): Update for changed data format.
3371 Don't list "system" abbrevs.
3372 (Fexpand_abbrev): Update use count with new data format.
3373 (describe_abbrev): Update for changed data format.
3374 (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
3375
3376 * config.in (HAVE_MBSINIT): Add #undef.
3377
3378 * strftime.c (mbsinit): Define as no-op if not available.
3379
3380 * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
3381 (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
3382
3383 * keymap.c (Flookup_key): Error message if key has wrong data type.
3384 (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
3385 (exclude_key): New variable.
3386
3387 2001-12-28 Gerd Moellmann <gerd@gnu.org>
3388
3389 * xterm.c (x_setup_relief_colors): Don't compute an image's
3390 background color if it doesn't have a Pixmap.
3391
3392 * xterm.c (notice_overwritten_cursor): Don't depend on
3393 output_cursor and updated_area. Compare pixel coordinates with
3394 window's cursor pixel coordinates.
3395 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
3396 Call notice_overwritten_cursor with new arg list.
3397 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
3398 unconditionally.
3399
3400 * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
3401 height of the cursor line to the amount to scroll.
3402
3403 2001-12-27 Richard M. Stallman <rms@gnu.org>
3404
3405 * intervals.c (set_point_both): The position after an invisible,
3406 intangible character is not an acceptable stopping point.
3407
3408 2001-12-27 Ken Raeburn <raeburn@gnu.org>
3409
3410 * window.c (enlarge_window): In new preserve_before code, convert
3411 CURBEG from lisp object to integer before doing arithmetic.
3412
3413 2001-12-27 Richard M. Stallman <rms@gnu.org>
3414
3415 * bytecode.c (Fbyte_code): Undo previous change.
3416
3417 2001-12-26 Kim F. Storm <storm@cua.dk>
3418
3419 * keyboard.c (record_char): Ignore duplicate help-echo events only
3420 separated by mouse-movement. When tracking mouse, only record
3421 first and last mouse-movement event in same window.
3422 Don't record mouse-movement events in keyboard macros.
3423
3424 2001-12-25 Richard M. Stallman <rms@gnu.org>
3425
3426 * window.c (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
3427 (Fenlarge_window): New arg PRESERVE_BEFORE.
3428
3429 * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
3430 instead of Fstring_as_unibyte.
3431
3432 2001-12-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3433
3434 The following changes remove mocklisp support:
3435
3436 * mocklisp.h, mocklisp.c: Files removed.
3437
3438 * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
3439 `Qmocklisp' and `Qmocklisp_arguments'.
3440 Remove prototype of syms_of_mocklisp.
3441
3442 * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
3443
3444 * callint.c: Do not include mocklisp.h.
3445 (Fcall_interactively): Do not test for mocklisp case.
3446
3447 * eval.c: Remove variables `Qmocklisp_arguments',
3448 `Vmocklisp_arguments' and `Qmocklisp'. Remove prototype of ml_apply.
3449 (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
3450 Do not test for mocklisp case.
3451 (Fwhile): Remove unused variable `tem'.
3452 (syms_of_eval): Remove variable `moclisp-arguments'.
3453
3454 * data.c (wrong_type_argument): Remove mocklisp case.
3455
3456 * doc.c (Fdocumentation): Remove mocklisp case.
3457
3458 * emacs.c (main): Do not call syms_of_mocklisp.
3459
3460 2001-12-21 Richard M. Stallman <rms@gnu.org>
3461
3462 * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
3463 to the left or to the right of the pointer, put it against
3464 the left screen edge.
3465
3466 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
3467
3468 * Makefile.in (distclean): Remove .gdbinit if we are building
3469 outside the source tree.
3470
3471 2001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
3472
3473 * w32.c (emacs_root_dir): New function.
3474
3475 * msdos.c (emacs_root_dir): New function.
3476
3477 * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
3478 of the current drive as the fallback for default_directory.
3479
3480 * dired.c (file_name_completion): Run the elements of
3481 completion-ignored-extensions through ENCODE_FILE.
3482
3483 * lisp.h (scmp): Remove prototype, since it's now a static
3484 function private to dired.c.
3485
3486 2001-12-18 Richard M. Stallman <rms@gnu.org>
3487
3488 * dired.c (scmp): Function moved from minibuf.c.
3489 Delete multibyte handling--used only on encoded strings.
3490
3491 * minibuf.c (scmp): Function moved to dired.c.
3492
3493 * fns.c (merge): Add QUIT call.
3494
3495 2001-12-18 Dave Love <fx@gnu.org>
3496
3497 * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
3498 language/georgian.el.
3499
3500 2001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
3501
3502 * Makefile.in (lisp, shortlisp): Synchronize with changes to
3503 lisp/Makefile.in:DONTCOMPILE.
3504
3505 2001-12-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3506
3507 * xdisp.c (window_box_height): Do not return negative values.
3508 From Gerd Moellmann <gerd@gnu.org>.
3509
3510 * keyboard.c (head_table): Add missing braces around initializer.
3511
3512 * term.c (keys): Likewise.
3513
3514 * xfns.c (x_frame_parms, visual_classes): Likewise.
3515
3516 2001-12-17 Sam Steingold <sds@gnu.org>
3517
3518 * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
3519 patch (COMPOSING_P, not COMPOSING).
3520
3521 2001-12-17 Richard M. Stallman <rms@gnu.org>
3522
3523 * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
3524
3525 * coding.c (code_convert_region): Update coding->cmp_data->char_offset
3526 before calling decode_coding.
3527
3528 * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
3529
3530 * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
3531 instead of only for COMPOSITION_DISABLED.
3532
3533 2001-12-16 Richard M. Stallman <rms@gnu.org>
3534
3535 * alloc.c (pure_alloc): After overflow, allocate just a small block.
3536
3537 * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
3538
3539 * buffer.h (struct buffer): New field `display_error_modiff'.
3540 * buffer.c (reset_buffer): Initialize `display_error_modiff'.
3541
3542 * window.c (Frecenter): Clear display_error_modiff field.
3543
3544 * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
3545 Call redisplay_window, but not if display_error_modiff field says no.
3546 (redisplay_window_error): New function.
3547 (displayed_buffer): New variable.
3548 (redisplay_internal, redisplay_windows): Call the new functions
3549 instead of redisplay_window directly.
3550
3551 2001-12-15 Richard M. Stallman <rms@gnu.org>
3552
3553 * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
3554
3555 2001-12-14 Andrew Innes <andrewi@gnu.org>
3556
3557 * makefile.w32-in (EMACSLOADPATH): Define.
3558 ($(EMACS)): Run `list-load-path-shadows' after dumping emacs.
3559 (bootstrap-temacs): Remove dependency on bootstrap-clean.
3560
3561 2001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
3562
3563 * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
3564 parameter have a numeric value all the time.
3565
3566 * w32fns.c (x_report_frame_params): Likewise.
3567
3568 2001-12-12 Richard M. Stallman <rms@gnu.org>
3569
3570 * fileio.c (Fwrite_region): Doc fix.
3571
3572 * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
3573 (redisplay_internal): Call clear_image_cache only for window terminals.
3574
3575 2001-12-12 Gerd Moellmann <gerd@gnu.org>
3576
3577 * xdisp.c (move_it_vertically_backward): Change heuristic
3578 for the case that we didn't move far enough initially.
3579
3580 * window.c (Frecenter): Simplify computation in the case of window
3581 system frames and ARG < 0; use window_box_height.
3582
3583 2001-12-11 Richard M. Stallman <rms@gnu.org>
3584
3585 * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
3586 * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
3587
3588 2001-12-11 Andrew Innes <andrewi@gnu.org>
3589
3590 * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
3591 arg is negative.
3592
3593 2001-12-11 Richard M. Stallman <rms@gnu.org>
3594
3595 * m/hp800.h: Split the __hpux conditional into the parts
3596 that are right for GNU/Linux too and the parts that are not.
3597 Use the former if GNU_LINUX.
3598 (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
3599
3600 * s/gnu-linux.h (GNU_LINUX): Defined.
3601
3602 2001-12-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3603
3604 * macros.c, msdos.c, w16select.c: Change doc-string comments to
3605 `new style' [w/`doc:' keyword].
3606
3607 2001-12-10 Jason Rumney <jasonr@gnu.org>
3608
3609 * w32menu.c (w32_free_submenu_strings): Clear menu item struct
3610 before using.
3611
3612 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3613
3614 * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
3615 keyword].
3616
3617 2001-12-09 Eli Zaretskii <eliz@is.elta.co.il>
3618
3619 * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
3620
3621 * s/hpux10.h (srand48): Don't undefine.
3622
3623 2001-12-09 Jason Rumney <jasonr@gnu.org>
3624
3625 * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
3626 Add comment to explain where the struct came from.
3627 (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
3628 (add_menu_item): Process pop-up menus first to avoid memory leak.
3629 (add_menu_item, w32_menu_display_help): Use `help' field as
3630 Lisp_Object.
3631 (w32_free_submenu_strings): Only free owner-drawn strings.
3632
3633 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3634
3635 * COPYING: Moved back.
3636
3637 * charset.c (char_to_string_1, translate_char, Fdefine_charset):
3638 Add parentheses around && within ||.
3639
3640 * indent.c (compute_motion): Likewise.
3641
3642 * intervals.c (merge_properties_sticky): Likewise.
3643
3644 * coding.c (setup_coding_system, shrink_encoding_region)
3645 (Fdecode_sjis_char): Likewise.
3646
3647 2001-12-07 Andreas Schwab <schwab@suse.de>
3648
3649 * xdisp.c (display_mode_element): Don't read past end of string if
3650 it ends with '%'.
3651
3652 * alloc.c (inhibit_garbage_collection): Don't exceed value an int
3653 can hold.
3654
3655 * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum): Rename
3656 from most_positive_fixnum and most_negative_fixnum, resp., and
3657 type changed to Lisp_Object.
3658 (syms_of_data): DEFVAR_LISP them.
3659
3660 2001-12-07 Richard M. Stallman <rms@gnu.org>
3661
3662 * callproc.c (init_callproc): Set Vdata_directory based on the source
3663 location whenever Emacs was run uninstalled.
3664
3665 2001-12-06 Paul Eggert <eggert@twinsun.com>
3666
3667 * config.in (HAVE_WORKING_VFORK): New #undefs.
3668 * process.c (create_process):
3669 Use HAVE_WORKING_VFORK, not HAVE_VFORK.
3670 * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
3671 * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
3672 * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
3673 * m/intel386.h (HAVE_VFORK): Likewise.
3674 * m/mips-siemens.h (HAVE_VFORK): Likewise.
3675 * m/mips.h (HAVE_VFORK): Likewise.
3676 * s/freebsd.h (vfork): Remove #define.
3677 * s/lynxos.h (HAVE_VFORK): Remove #undef.
3678 * s/usg5-4-2.h: Fix comment about vfork.
3679
3680 2001-12-06 Richard M. Stallman <rms@gnu.org>
3681
3682 * s/hpux10.h (random): Add undef.
3683 (HAVE_RANDOM): Define it just once.
3684
3685 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
3686
3687 * eval.c: Undo last change: the standard syntax is not wanted.
3688
3689 2001-12-06 Eli Zaretskii <eliz@is.elta.co.il>
3690
3691 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
3692 scroll bars of the frame before deleting the frame itself. If the
3693 frame has a widget, delete the frame with XtDestroyWidget, and do
3694 not call XDestroyWindow before that.
3695
3696 2001-12-06 Kim F. Storm <storm@cua.dk>
3697
3698 * xfns.c (x_report_frame_params): Return actual fringe widths.
3699
3700 * w32fns.c (x_report_frame_params): Return actual fringe widths.
3701
3702 2001-12-05 Andrew Innes <andrewi@gnu.org>
3703
3704 * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
3705 excessively large.
3706
3707 * insdel.c (make_gap_larger): New function.
3708 (make_gap_smaller): New function.
3709 (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]: Call
3710 make_gap_smaller if arg is negative.
3711
3712 2001-12-04 Stefan Monnier <monnier@cs.yale.edu>
3713
3714 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
3715 Pass a dummy argument when calling interrupt_signal.
3716 (parse_menu_item): Mark disabled items before checking for empty def.
3717 (read_char_minibuf_menu_prompt): Make safety more visible.
3718 (read_key_sequence): Add a `first_unbound' variable.
3719 Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
3720 unbound prefix as soon as we can detect it.
3721
3722 * doc.c (Fsnarf_documentation): Add prototype.
3723 (get_doc_string): Handle negative arguments.
3724 (Fdocumentation): Use AREF and ASIZE.
3725 Move the calls to get_doc_string to a single place.
3726 Don't confuse an interactive-spec for a docstring reference.
3727 (Fdocumentation_property): Take advantage of the fact that
3728 get_doc_string now ignores the sign of the docstring position.
3729
3730 * eval.c: Use standard syntax for usage in docstrings.
3731
3732 2001-12-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3733
3734 * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief` an option.
3735
3736 2001-12-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3737
3738 * xterm.c (x_draw_image_relief): Use predefined macro instead of
3739 constant when the value of `tool_bar_button_relief' is negative.
3740
3741 2001-12-02 Richard M. Stallman <rms@gnu.org>
3742
3743 * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
3744 (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
3745
3746 * fileio.c (read_non_regular): Delete Fsignal call.
3747
3748 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
3749
3750 * lisp.h (run_hook_list_with_args): Undo last change.
3751
3752 2001-12-01 Gerd Moellmann <gerd@gnu.org>
3753
3754 * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
3755
3756 2001-12-01 Jason Rumney <jasonr@gnu.org>
3757
3758 * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
3759
3760 * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
3761 [!WM_MOUSELEAVE]: Define.
3762
3763 * w32menu.c (current_popup_menu, get_menu_item_info):
3764 (set_menu_item_info): New vars.
3765 (set_frame_menubar): Doc fix clarifying GC interaction with menus.
3766 (w32_menu_show): Set current_popup_menu.
3767 (add_menu_item): Allocate new strings for owner-drawn menu items
3768 and help strings.
3769 Use owner-draw for disabled menu items again.
3770 (w32_menu_display_help): Ignore owner-drawn items and popup menus.
3771 (w32_free_submenu_strings, w32_free_menu_strings): New functions.
3772
3773 * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
3774 (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
3775 <WM_EXITMENULOOP>: Free menu strings.
3776 <WM_MOUSELEAVE>: Stop tracking mouse.
3777 (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
3778
3779 * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
3780 and mouse face.
3781
3782 2001-12-01 Kim F. Storm <storm@cua.dk>
3783
3784 The following changes add left-fringe and right-fringe
3785 frame parameters to adjust fringe widths, or remove one or
3786 both fringes.
3787
3788 * frame.h (struct frame): Remove trunc_area_pixel_width and
3789 trunc_area_cols fields.
3790 (Qleft_fringe, Qright_fringe): Declare.
3791 (FRAME_RIGHT_FRINGE_WIDTH): New macro.
3792
3793 * frame.c (Qleft_fringe, Qright_fringe): New vars.
3794 (syms_of_frame): Initialize them.
3795
3796 * window.c (coordinates_in_window): Handle separate left and right
3797 fringe widths.
3798
3799 * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
3800 and fringe_cols fields.
3801 (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
3802 (FRAME_X_FRINGE_COLS): Use fringe_cols field.
3803 (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
3804 (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
3805 (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
3806 (x_compute_fringe_widths): Add prototype.
3807
3808 * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
3809 fill fringe evenly with small dashes.
3810 (x_draw_fringe_bitmap): Clear background if necessary. Align and
3811 clip the new ZV bitmap to avoid jitter between rows.
3812 (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
3813 background. Don't draw fringe bitmaps if fringe width is zero.
3814 (x_compute_fringe_widths): New function.
3815 (x_new_font, x_set_window_size_1): Use it.
3816
3817 * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
3818 (x_set_frame_parameters): Process `font' parameter before other
3819 parameters as fringe widths depend on it.
3820 (x_set_fringe_width): New function.
3821 (x_figure_window_size): Use x_compute_fringe_widths.
3822 (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
3823 parameters.
3824
3825 * widget.c (set_frame_size): Use x_compute_fringe_widths.
3826 (EmacsFrameSetCharSize): Ditto.
3827
3828 * w32term.h: Merged changes from xterm.h.
3829 * w32term.c: Merged changes from xterm.c.
3830 * w32fns.c: Merged changes from xfns.c.
3831
3832 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3833
3834 * COPYING: Removed.
3835
3836 2001-11-29 Dave Love <fx@gnu.org>
3837
3838 * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
3839 extra extra slot.
3840 (detect_coding_mask): Fix call of detect_coding_iso2022.
3841
3842 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3843
3844 * fileio.c (file-name-coding-system)
3845 (default-file-name-coding-system): Doc fix (links to referenced
3846 variables added).
3847
3848 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
3849
3850 * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
3851 Add dummy uses of gcproN variables.
3852
3853 * category.c (describe_category, describe_category_1)
3854 (Fdescribe_categories): Remove. (Moved to lisp/help-fns.el.)
3855 (syms_of_category): Don't defsubr Sdescribe_categories.
3856
3857 2001-11-28 Richard M. Stallman <rms@gnu.org>
3858
3859 * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
3860
3861 * Makefile.in (lispdir): New variable, referring to build dir.
3862 (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
3863
3864 2001-11-28 Andrew Innes <andrewi@gnu.org>
3865
3866 * w32menu.c (w32_menu_display_help): Actually add the new argument
3867 OWNER.
3868
3869 2001-11-28 Jason Rumney <jasonr@gnu.org>
3870
3871 * w32menu.c (add_menu_item): Do not use owner-draw for disabled
3872 menu items. From David Ponce <dponce@wanadoo.fr>.
3873 (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
3874 conditionally.
3875 (w32_menu_display_help): New argument OWNER. Rewritten to store a
3876 help event in the owner frame's keyboard buffer.
3877
3878 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
3879 (Fx_show_tip): Don't subtract last width from row width.
3880
3881 * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
3882 (w32_read_socket): Use EQ to compare frames.
3883
3884 2001-11-28 Gerd Moellmann <gerd@gnu.org>
3885
3886 * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
3887 OVERLAPS_P.
3888
3889 2001-11-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3890
3891 * xdisp.c (message_dolog): Remove unused variables `gcpro2',
3892 `gcpro3' and `gcpro4'.
3893
3894 * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
3895
3896 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
3897
3898 * ccl.c: Use AREF and ASIZE.
3899
3900 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
3901
3902 * lisp.h (run_hook_list_with_args): Remove.
3903 (LIST_END_P): Fix call to wrong_type_argument.
3904 (make_fixnum_or_float): Use EMACS_INT rather than int.
3905
3906 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
3907
3908 * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
3909 (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
3910
3911 * eval.c: Use AREF and ASIZE.
3912 (Ffetch_bytecode): Add the file name to the error message.
3913
3914 * fileio.c (Ffind_file_name_handler): Give precedence to handlers
3915 which match the end of the file-name.
3916 (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
3917 is not a valid env var, but leave it as is instead.
3918
3919 * keymap.c (access_keymap): Handle t bindings like nil bindings.
3920 Make nil bindings in char-tables transparent.
3921 (store_in_keymap): Turn a nil binding into a t binding for char-tables.
3922
3923 2001-11-26 Richard M. Stallman <rms@gnu.org>
3924
3925 * textprop.c (set_text_properties_1): Allow START, END in either order.
3926 Do nothing if range is empty.
3927
3928 * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
3929
3930 * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
3931 (clean): Not here.
3932
3933 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
3934
3935 * textprop.c (set_text_properties_1): Clearly mark that the
3936 interval should not be empty.
3937
3938 * intervals.c (graft_intervals_into_buffer):
3939 Don't call set_text_properties_1 on an empty interval.
3940
3941 2001-11-25 Richard M. Stallman <rms@gnu.org>
3942
3943 * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
3944
3945 * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
3946 don't lose the data in it.
3947
3948 2001-11-25 Juanma Barranquero <lektu@terra.es>
3949
3950 * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
3951
3952 * buffer.c (Fkill_buffer): Use Frun_hooks, not Vrun_hooks.
3953
3954 * print.c (temp_output_buffer_setup): Use Frun_hooks, not Vrun_hooks.
3955
3956 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
3957
3958 * xfaces.c (merge_face_heights): Coerce back to int explicitly.
3959
3960 2001-11-25 Eli Zaretskii <eliz@is.elta.co.il>
3961
3962 * window.c (Fset_window_vscroll): Doc fix. From Kalle Olavi
3963 Niemitalo <kon@iki.fi>.
3964
3965 2001-11-25 Jason Rumney <jasonr@gnu.org>
3966
3967 * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
3968
3969 * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
3970 (Fx_show_tip): Block input during frame creation.
3971 (Fx_show_tip, Fx_hide_tip): Enable.
3972
3973 2001-11-24 Richard M. Stallman <rms@gnu.org>
3974
3975 * lread.c (Fload): Detect recursive load error for more than 3
3976 nestings of the same file.
3977 (Vrecursive_load_depth_limit): Variable deleted.
3978 (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
3979
3980 2001-11-24 Jason Rumney <jasonr@gnu.org>
3981
3982 * xfns.c (compute_tip_xy): Initialize root_x and root_y from
3983 mouse position if either left or top is not specified.
3984
3985 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
3986 <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
3987 (my_create_tip_window, Fx_show_tip): Adjust size for external border.
3988 (my_create_tip_window): Assign tip_window.
3989 (x_create_tip_frame): Use same defaults as X.
3990 (compute_tip_xy): Remove unused variable. Use full screen width.
3991 (Fx_show_tip): Do not double height. Call ShowWindow directly.
3992
3993 * w32term.c (x_after_update_window_line): Doc fix.
3994 (w32_read_socket): Doc fix. Avoid SET_FRAME_GARBAGED for tip
3995 frames.
3996 <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
3997
3998 * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
3999 for all Windowed systems.
4000
4001 2001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
4002
4003 * msdos.c (IT_clear_screen): If the frame's faces are not yet
4004 realized, use the initial screen colors to clear the screen.
4005
4006 2001-11-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4007
4008 * textprop.c (Fset_text_properties): Remove unused variables
4009 `unchanged', `prev_changed', `s' and `len'.
4010
4011 * search.c (Freplace_match): Remove unused variable `inslen'.
4012
4013 * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
4014
4015 2001-11-22 Jason Rumney <jasonr@gnu.org>
4016
4017 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
4018 (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
4019 (my_create_tip_window): New function.
4020 (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
4021 (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
4022
4023 2001-11-20 Jason Rumney <jasonr@gnu.org>
4024
4025 * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
4026 (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
4027
4028 * w32fns.c (Vw32_system_coding_system): Remove.
4029 (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
4030
4031 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
4032
4033 * fileio.c (Fwrite_region): Move choose_write_coding_system to
4034 after build_annotations.
4035
4036 * syntax.c (describe_syntax): Add dummy arg.
4037 (describe_syntax_1): Update call to describe_vector.
4038
4039 * category.c (describe_category): Add dummy arg.
4040 (describe_category_1): Update call to describe_vector.
4041
4042 * keymap.c (Fdescribe_vector): Add `describer' parameter.
4043 (describe_command, describe_translation): Add dummy second param.
4044 (describe_map): Call elt_describer with two arguments.
4045 (describe_vector_princ): Add `fun' parameter.
4046 Call it instead of the hardcoded `princ'.
4047 (describe_vector): Add arg `args'.
4048 Pass it as a new second argument to elt_describer.
4049
4050 * keymap.h (describe_vector): Update prototype.
4051
4052 * frame.c: Don't include keymap.h any more.
4053 (keys_of_frame): Remove.
4054
4055 * lisp.h (keys_of_frame): Remove declaration.
4056
4057 * emacs.c (main): Don't call `keys_of_frame' any more.
4058
4059 2001-11-14 Andreas Schwab <schwab@suse.de>
4060
4061 * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
4062 if defined, 0 otherwise.
4063 (MAP_FAILED): Define if not defined and use it to test mmap failure.
4064 (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
4065
4066 2001-11-19 Richard M. Stallman <rms@gnu.org>
4067
4068 * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
4069
4070 2001-11-18 Jason Rumney <jasonr@gnu.org>
4071
4072 * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
4073 (x_draw_bar_cursor): If the background color of the glyph under
4074 the cursor equals the frame's cursor color, use the glyph's
4075 foreground color for drawing the bar cursor.
4076 (x_after_update_window_line): Clear internal border in different
4077 circumstances.
4078 (w32_set_vertical_scroll_bar): Check for width and height > 0.
4079 (w32_draw_relief_rect): Correct relief by 1 pixel.
4080 (x_set_glyph_string_background_width):
4081 Set extends_to_end_of_line_p if the row's fill_line_p is set and
4082 drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
4083 (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
4084 if cursor_in_non_selected_windows is false.
4085 (show_mouse_face): Clean up. Recognize overwritten cursor differently.
4086 (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
4087 Notice if cursor gets overwritten.
4088 (notice_overwritten_cursor): Renamed from
4089 note_overwritten_text_cursor. Rewritten to take glyph widths
4090 into account, and to take X positions as parameters.
4091 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
4092 around call to x_draw_glyphs.
4093 (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
4094 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
4095 color to use for image glyph reliefs.
4096 (x_draw_image_relief): Accept zero tool_bar_button_relief.
4097 (glyph_rect): Remove unused variable `area'.
4098
4099 * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
4100 some items.
4101 (x_set_internal_border_width): Set frame garbaged when window
4102 doesn't exist yet.
4103 (Fx_create_frame): Accept zero tool_bar_button_relief.
4104 (x_clear_image_1, four_corners_best, image_background)
4105 (image_background_transparent): New functions.
4106 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
4107 (gs_format): Add `:background' entry.
4108 (lookup_image): Set IMG's background color if specified.
4109 (pbm_load, xbm_load_image, png_load): Set IMG's background field
4110 when appropriate.
4111 (x_clear_image_1): Reset `background_valid' and
4112 `background_transparent_valid' fields.
4113 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
4114 calculating it here. Set IMG's background_transparent field.
4115 (enum xpm_keyword_index): Add XPM_BACKGROUND.
4116 (enum png_keyword_index): Add PNG_BACKGROUND.
4117 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
4118 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
4119 (enum gif_keyword_index): Add GIF_BACKGROUND.
4120 (enum gs_keyword_index): Add GS_BACKGROUND.
4121 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
4122 Pre-calculate image background color where necessary.
4123 (x_create_x_image_and_pixmap, xbm_load, gs_load):
4124 Use display info's n_cbits entry for screen depth.
4125 (Fx_show_tip): Remove unused variables `buffer', `top',
4126 `left', `max_width' and `max_height'.
4127
4128 * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
4129
4130 2001-11-18 Gerd Moellmann <gerd@gnu.org>
4131
4132 * puresize.h (BASE_PURESIZE): Increase to 750000.
4133
4134 2001-11-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4135
4136 * frame.c (Fframe_live_p): Doc fix.
4137
4138 2001-11-18 Richard M. Stallman <rms@gnu.org>
4139
4140 * xdisp.c (message_dolog_marker1, message_dolog_marker2)
4141 (message_dolog_marker3): New static variables hold three markers.
4142 (syms_of_xdisp): Initialize and staticpro them.
4143 (message_dolog): Use message_dolog_marker1..3 instead of
4144 allocating markers each time. Unchain them when done.
4145
4146 2001-11-17 Richard M. Stallman <rms@gnu.org>
4147
4148 * doc.c (Fsnarf_documentation): Doc fix.
4149
4150 2001-11-17 Andreas Schwab <schwab@suse.de>
4151
4152 * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
4153
4154 2001-11-17 Richard M. Stallman <rms@gnu.org>
4155
4156 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
4157
4158 2001-11-17 Jason Rumney <jasonr@gnu.org>
4159
4160 * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
4161
4162 2001-11-17 Gerd Moellmann <gerd@gnu.org>
4163
4164 * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
4165 with invalid position.
4166
4167 2001-11-16 Richard M. Stallman <rms@gnu.org>
4168
4169 * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
4170
4171 * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
4172 * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
4173 * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
4174
4175 * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
4176
4177 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
4178
4179 * fileio.c (build_annotations): Split off the tail.
4180 (build_annotations_2): New fun. Extracted from build_annotations.
4181 (Fwrite_region): Split the call to build_annotations into two
4182 calls to build_annotations and build_annotations_2.
4183
4184 2001-11-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4185
4186 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
4187 clear_waiting_for_input with argument.
4188
4189 * xterm.h (x_update_cursor): Remove duplicated prototype.
4190
4191 * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
4192
4193 * xterm.c (waiting_for_input): Remove unnecessary declaration.
4194
4195 * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
4196
4197 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
4198
4199 * fileio.c (choose_write_coding_system): New fun, extracted
4200 from Fwrite_region.
4201 (Fwrite_region): Use it.
4202
4203 * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
4204 (funcall_lambda, run_hook_with_args): Make static and add prototype.
4205 (ml_apply, find_handler_clause): Add prototype.
4206
4207 2001-11-16 Eli Zaretskii <eliz@gnu.org>
4208
4209 * config.in: Add #undef HAVE_COFF_H.
4210
4211 * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
4212 Required for ISC 4.1.
4213
4214 2001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
4215
4216 * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
4217 Andrew Wiseman <a.wiseman@btclick.com>.
4218
4219 2001-11-16 Kim F. Storm <storm@cua.dk>
4220
4221 The following changes are made to clean up the various internal
4222 references to the fringes to actually use the term `fringe' for
4223 them. Previously, they were called `flags areas', `bitmap areas',
4224 `left/right side of windows', or implicitly as `flags' or
4225 `bitmaps':
4226
4227 * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
4228 Comments fixed. Use renamed symbols.
4229
4230 * dispnew.c: Comment fix. Use renamed symbols.
4231
4232 * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
4233 (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
4234 (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
4235
4236 * msdos.c: Comment fix.
4237
4238 * w32fns.c: Use renamed symbols.
4239
4240 * w32term.c: Comment fixes. Use renamed symbols.
4241 (fringe_bitmap_type): Renamed from bitmap_type.
4242 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
4243 (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
4244 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
4245
4246 * w32term.h: Comment fixes. Use renamed symbols.
4247 (fringes_extra): Renamed from flags_areas_extra.
4248 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
4249 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
4250 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
4251 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
4252 (FRAME_X_LEFT_FRINGE_WIDTH):
4253 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
4254 (FRAME_X_RIGHT_FRINGE_WIDTH):
4255 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
4256
4257 * widget.c: Use renamed symbols.
4258
4259 * window.c: Comment fixes. Use renamed symbols.
4260 (coordinates-in-window-p): Doc fix.
4261
4262 * xdisp.c: Comment fixes. Use renamed symbols.
4263
4264 * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
4265
4266 * xfns.c: Use renamed symbols.
4267
4268 * xterm.c: Comment fixes. Use renamed symbols.
4269 (fringe_bitmap_type): Renamed from bitmap_type.
4270 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
4271 (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
4272 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
4273
4274 * xterm.h: Comment fixes. Use renamed symbols.
4275 (fringes_extra): Renamed from flags_areas_extra.
4276 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
4277 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
4278 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
4279 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
4280 (FRAME_X_LEFT_FRINGE_WIDTH):
4281 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
4282 (FRAME_X_RIGHT_FRINGE_WIDTH):
4283 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
4284
4285 2001-11-15 Jason Rumney <jasonr@gnu.org>
4286
4287 * w32menu.c (add-menu-item): Make help_echo and radio buttons
4288 work for most menu items. From David Ponce
4289 <david.ponce@wanadoo.fr>.
4290
4291 2001-11-15 Gerd Moellmann <gerd@gnu.org>
4292
4293 * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
4294 Some x_set_* function expect to be called even if old and new
4295 value are equal.
4296
4297 * xdisp.c (build_desired_tool_bar_string): Accept zero
4298 tool_bar_button_relief.
4299
4300 * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
4301
4302 * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
4303
4304 * xterm.c (x_draw_bar_cursor): If the background color of the
4305 glyph under the cursor equals the frame's cursor color, use
4306 the glyph's foreground color for drawing the bar cursor.
4307
4308 * dispnew.c (direct_output_forward_char): Fix character/byte
4309 position comparison.
4310
4311 2001-11-15 Miles Bader <miles@gnu.org>
4312
4313 * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
4314 (Fdelete_field, Ffield_string, Ffield_string_no_properties):
4315 Update arguments to find_field.
4316 (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
4317 (Fconstrain_to_field): Use LIMIT arg to shorten search time.
4318 * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
4319 * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
4320
4321 2001-11-14 Richard M. Stallman <rms@gnu.org>
4322
4323 * editfns.c (Fpropertize): Allow call with 1 arg.
4324
4325 * dispextern.h (image_background, image_background_transparent):
4326 Conditionalize on HAVE_X_WINDOWS.
4327
4328 2001-11-13 Richard M. Stallman <rms@gnu.org>
4329
4330 * print.c (Fprin1_to_string): Doc fix.
4331
4332 * sunfns.c (Fsun_change_cursor_icon): Doc fix.
4333
4334 * floatfns.c (Fceiling, Ffloor): Doc fixes.
4335
4336 * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
4337
4338 * fileio.c (Ffile_accessible_directory_p): Doc fix.
4339
4340 * eval.c (syms_of_eval): Doc fix.
4341
4342 * coding.c (syms_of_coding): Doc fix.
4343
4344 * doc.c (Fsnarf_documentation): Doc fix.
4345
4346 * dispnew.c (syms_of_display): Doc fix.
4347
4348 * category.c (Fget_unused_category): Doc fix.
4349
4350 * buffer.c (syms_of_buffer): Doc fixes.
4351
4352 2001-11-14 Eli Zaretskii <eliz@is.elta.co.il>
4353
4354 * print.c (prin1, print): Doc fix.
4355
4356 2001-11-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4357
4358 * fontset.h: Remove declarations of variables
4359 `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
4360
4361 * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
4362 `Vclip_large_size_font'.
4363
4364 2001-11-13 Jason Rumney <jasonr@gnu.org>
4365
4366 * w32fns.c: Doc fix.
4367
4368 2001-11-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4369
4370 * xfaces.c (Fface_attributes_as_vector): Doc fix.
4371
4372 * fns.c: Doc fix.
4373
4374 * emacs.c: Doc fix.
4375
4376 * coding.c: Doc fix.
4377
4378 * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
4379 * fontset.c, insdel.c, keymap.c: Change doc-string comments to
4380 `new style' [w/`doc:' keyword].
4381
4382 2001-11-12 Richard M. Stallman <rms@gnu.org>
4383
4384 * xterm.c (XTread_socket): Don't update focus for EnterNotify or
4385 LeaveNotify events. Only FocusIn and FocusOut do that now.
4386 (x_display_and_set_cursor): Do display hollow cursors in active
4387 minibuffer windows when they are not selected.
4388
4389 2001-11-12 Jason Rumney <jasonr@gnu.org>
4390
4391 * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
4392 * w32term.c: Change doc-string comments to `new style'.
4393 [w/`doc:' keyword]. Doc fixes.
4394
4395 * w32fns.c: Don't define max.
4396 (Fx_open_connection): Only execute once.
4397
4398 2001-11-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4399
4400 * ccl.c: Change macros to use do-while block instead of if-else.
4401 Use braces to follow GNU Coding Standards.
4402
4403 2001-11-11 Richard M. Stallman <rms@gnu.org>
4404
4405 * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
4406
4407 * lread.c (read_escape): Use end_of_file_error for reporting eof.
4408
4409 * insdel.c (replace_range): Use adjust_markers_for_replace
4410 instead of adjust_markers_for_delete and adjust_markers_for_insert.
4411
4412 * intervals.h: Declare set_text_properties and set_text_properties_1.
4413
4414 * textprop.c (set_text_properties_1): New subroutine
4415 broken out of set_text_properties.
4416 (set_text_properties): Use set_text_properties_1.
4417
4418 * intervals.c (graft_intervals_into_buffer):
4419 Use set_text_properties_1 to clear out properties.
4420
4421 * search.c (Freplace_match): Use replace_range to insert
4422 and delete. Don't request property inheritance from
4423 surrounding text.
4424
4425 2001-11-10 Jason Rumney <jasonr@gnu.org>
4426
4427 * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
4428 vertical fonts. Allow them if face name is explicitly specified.
4429 Do not give up if we find a font that cannot be converted to an xlfd.
4430
4431 2001-11-10 Gerd Moellmann <gerd@gnu.org>
4432
4433 * unexelf.c (unexec): Use mmap/munmap to allocate buffers
4434 instead of malloc/free.
4435
4436 2001-11-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4437
4438 * xfaces.c (merge_face_vectors): Use braces to follow GNU
4439 Coding Standards.
4440 (Finternal_set_lisp_face_attribute): Likewise.
4441
4442 * buffer.c (Fbury_buffer): Likewise.
4443
4444 * indent.c (current_column_1): Remove unused variable `prev_col'.
4445
4446 * coding.c (encode_coding): Use precomputed value of `src'.
4447 (encode_coding): Remove unused variable `src_end'.
4448 (code_convert_region): Remove unused variables `count'.
4449
4450 2001-11-07 Jason Rumney <jasonr@gnu.org>
4451
4452 * w32term.c (x_display_and_set_cursor): Do not move system caret
4453 if cursor_glyph is NULL.
4454
4455 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4456
4457 * keymap.c (access_keymap): Fix compilation error.
4458
4459 2001-11-07 Miles Bader <miles@gnu.org>
4460
4461 * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
4462
4463 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4464
4465 * intervals.c (graft_intervals_into_buffer):
4466 Remove #ifdef'd-out code.
4467 (graft_intervals_into_buffer): Remove unused variable `middle'.
4468
4469 * lread.c (Feval_region): Remove obsolete #ifdef'd-out
4470 code (eval-current-buffer).
4471 Change doc-string comments to `new style' [w/`doc:' keyword].
4472
4473 2001-11-06 Richard M. Stallman <rms@gnu.org>
4474
4475 * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
4476
4477 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
4478
4479 * lread.c (read1): Fix behavior with nested backquoting.
4480
4481 * keyboard.c (make_lispy_event): Check integerness and fix
4482 Lisp_Object/int mixup.
4483
4484 2001-11-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4485
4486 * fns.c (copy_hash_table): Remove unused variable `v'.
4487
4488 * fontset.c (fontset_font_pattern): Remove unused variable
4489 `family_registry'.
4490
4491 * indent.c (current_column_1): Remove unused variable `prev_col'.
4492
4493 2001-11-05 Richard M. Stallman <rms@gnu.org>
4494
4495 * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
4496
4497 * buffer.c (Fkill_buffer): Don't delete auto save file
4498 if buffer is modified.
4499
4500 2001-11-05 Andrew Innes <andrewi@gnu.org>
4501
4502 * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
4503 CHECK_NUMBER_CDR.
4504
4505 2001-11-05 Richard M. Stallman <rms@gnu.org>
4506
4507 * unexelf.c (unexec): Minor changes; clean up comments.
4508
4509 2001-11-05 Sam Steingold <sds@gnu.org>
4510
4511 * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
4512
4513 2001-11-05 Andreas Schwab <schwab@suse.de>
4514
4515 * sound.c (sound_perror): Save errno from being clobbered.
4516
4517 2001-11-05 Dale Hagglund <rdh@yottayotta.com>
4518
4519 * unexelf.c (unexec): Don't use `mmap'. Instead, read and write
4520 the program image directly.
4521
4522 2001-11-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4523
4524 * buffer.h (Fbuffer_local_value): Add prototype.
4525
4526 2001-11-04 Richard M. Stallman <rms@gnu.org>
4527
4528 * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
4529 and CHECK_BUFFER.
4530
4531 * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
4532 (record_char): Likewise.
4533
4534 * keyboard.c (make_lispy_event): Don't insist a drag event must
4535 move to a different buffer position. Instead, check for moving at
4536 least double_click_fuzz.
4537
4538 * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
4539
4540 * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
4541
4542 * indent.c (current_column_1, Fmove_to_column): Separate the code
4543 for display-table glyphs from the code buffer text, to fix
4544 bugs in the former.
4545
4546 2001-11-04 Michael Welsh Duggan <md5i@cs.cmu.edu>
4547
4548 * buffer.c (Fbuffer_local_value): New function.
4549 (syms_of_buffer): Defsubr it.
4550
4551 * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
4552 value of `cursor-in-non-selected-windows'.
4553
4554 * lisp.h (Qcursor_in_non_selected_windows): New declaration.
4555 * xdisp.c (Qcursor_in_non_selected_windows): New variable.
4556 (syms_of_xdisp): Initialize it.
4557
4558 2001-11-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4559
4560 * xfns.c (Fx_create_frame): Doc fix.
4561
4562 * coding.c: Change doc-string comments to `new style' [w/`doc:'
4563 keyword].
4564
4565 * eval.c (top_level_value, top_level_set): Remove commented and
4566 #ifdef'd-out code.
4567 (Fdefvar): Fix usage in doc-string.
4568
4569 2001-11-03 Richard M. Stallman <rms@gnu.org>
4570
4571 * xfns.c: Include unistd.h, if it exists.
4572
4573 * editfns.c: Move the include of ctype.h after unistd.h.
4574
4575 * gmalloc.c: Test BROKEN_PROTOTYPES.
4576
4577 2001-11-03 Ken Raeburn <raeburn@gnu.org>
4578
4579 * lisp.h (CHECK_STRING_CAR): New macro.
4580 * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
4581 treating XCAR and XCDR as lvalues.
4582 (openp): Use CHECK_STRING_CAR.
4583 (read_list): Use XSETCDR instead of treating XCDR as lvalue.
4584
4585 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
4586
4587 * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
4588 (SIGMASKTYPE): Define.
4589
4590 * syssignal.h (sigunblock): Don't define if already defined.
4591
4592 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4593
4594 * eval.c (debugger_may_continue, Vdebug_ignored_errors)
4595 (call_debugger, Fcondition_case, skip_debugger, unbind_to):
4596 Fix typos in comments.
4597
4598 * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
4599 and #ifdef'd-out code.
4600 Fix and reindent comments.
4601
4602 * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
4603
4604 * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
4605 argument `i' in macros.
4606
4607 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
4608 `i' in macros.
4609
4610 * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
4611 (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
4612 (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
4613 (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
4614 (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
4615 (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
4616 (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
4617 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
4618 in macros.
4619
4620 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
4621 * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
4622 * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
4623 * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
4624 * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
4625 * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
4626 * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
4627 * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
4628 * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
4629 (remove unused second argument).
4630
4631 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
4632
4633 * syntax.c (describe_syntax): New wrapper.
4634 (Finternal_describe_syntax_value): Rename from describe_syntax.
4635 Don't insert space at front and \n at the end.
4636 (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
4637
4638 * regex.c (re_wctype): Try to fix some warnings.
4639 (regcomp, regexec): Don't forget the __restrict.
4640
4641 2001-11-02 Richard M. Stallman <rms@gnu.org>
4642
4643 * textprop.c (Fget_char_property): Doc fix.
4644
4645 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4646
4647 * process.c (Fstart_process): Add usage to doc-string.
4648
4649 * data.c (Fsetq_default): Ditto.
4650
4651 * callint.c (Finteractive): Ditto.
4652
4653 2001-11-01 Stefan Monnier <monnier@cs.yale.edu>
4654
4655 * macros.c: Don't include keymap.h any more.
4656
4657 2001-11-01 Richard M. Stallman <rms@gnu.org>
4658
4659 * data.c (Fmake_local_variable): Doc fix.
4660
4661 * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
4662 (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
4663
4664 * keymap.c (Fdescribe_buffer_bindings): Print character property
4665 bindings along with or instead of the buffer local map.
4666 Make the overriding maps override what they should.
4667
4668 2001-11-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4669
4670 * window.c (grow_mini_window): Fix typo in comment.
4671
4672 2001-11-01 Gerd Moellmann <gerd@gnu.org>
4673
4674 * xterm.c (x_scroll_bar_create): Check for width and height > 0.
4675 (XTset_vertical_scroll_bar): Likewise.
4676
4677 * xfns.c (x_build_heuristic_mask): Use four_corners_best
4678 instead of IMAGE_BACKGROUND.
4679
4680 * xfns.c (four_corners_best): Reindent.
4681
4682 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
4683 Handle :box so that it is possible to specify sexprs.
4684
4685 2001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
4686
4687 * s/hpux11.h: New file.
4688
4689 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4690
4691 * emacs.c (USAGE1): Show command line option --no-window-system
4692 instead of --no-windows in usage.
4693 (standard_args): Rename --no-windows to --no-window-system.
4694 (bug_reporting_address): Follow Emacs coding conventions.
4695
4696 * eval.c (Fcommandp): Doc fix.
4697 Change doc-string comments to `new style' [w/`doc:' keyword].
4698
4699 * frame.c (Fframe_live_p): Doc fix.
4700
4701 * buffer.c (selective-display-ellipses): Doc fix.
4702
4703 2001-10-31 Gerd Moellmann <gerd@gnu.org>
4704
4705 * lread.c (to_multibyte): Fix computation of new read_buffer_size.
4706
4707 * xfaces.c (realize_x_face): If C is not a single-byte character,
4708 set the face's colors_copied_bitwise_p instead of the defaulted_p
4709 members which have a different meaning.
4710 (free_face_colors): Do nothing for a face whose colors have been
4711 copied bitwise.
4712
4713 * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
4714
4715 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4716
4717 * marker.c, mocklisp.c: Change doc-string comments to `new style'
4718 [w/`doc:' keyword].
4719
4720 2001-10-31 Gerd Moellmann <gerd@gnu.org>
4721
4722 * fns.c (require_unwind): Return Lisp_Object.
4723
4724 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4725
4726 * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
4727 (last-input-char): Revert doc-string to be the same as the
4728 doc-string of `last-input-event'.
4729
4730 * xdisp.c: Fix typos in comments.
4731
4732 2001-10-31 Gerd Moellmann <gerd@gnu.org>
4733
4734 * window.c (grow_mini_window): Handle case that the root
4735 window is already smaller than the nominal mininum height.
4736
4737 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
4738
4739 * emacs.c (main): Don't call keys_of_macros any more.
4740
4741 * lisp.h (keys_of_macros): Remove.
4742
4743 * macros.c (keys_of_macros): Remove.
4744
4745 * xfaces.c (Fface_attribute_relative_p): Declare args.
4746
4747 2001-10-30 Jason Rumney <jasonr@gnu.org>
4748
4749 * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
4750 (enum_font_cb2): Ignore fonts with vertical orientation.
4751
4752 2001-10-30 Richard M. Stallman <rms@gnu.org>
4753
4754 * keyboard.c (Finput_pending_p): Doc fix.
4755
4756 2001-10-30 Gerd Moellmann <gerd@gnu.org>
4757
4758 * xterm.c (x_after_update_window_line): Don't run the code
4759 clearing in borders for rows whose visible height is 0.
4760
4761 * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
4762 resized_p flag is set. If not set, use the much less flickering
4763 method previously used.
4764
4765 * dispnew.c (change_frame_size_1): Set frame's resized_p.
4766
4767 * frame.h (struct frame) <resized_p>: New member.
4768
4769 * lread.c (to_multibyte): Ensure read_buffer is at least twice
4770 as large as the number of bytes to convert.
4771
4772 * lread.c (to_multibyte): New function.
4773 (read1): Use it.
4774
4775 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
4776
4777 * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
4778
4779 2001-10-30 Gerd Moellmann <gerd@gnu.org>
4780
4781 * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
4782 (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
4783 if the row's fill_line_p is set and drawing the last glyph with
4784 DRAW_IMAGE_{RAISED,SUNKEN}.
4785
4786 * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
4787
4788 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
4789
4790 * xmenu.c: Include coding.h and charset.h.
4791 (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
4792 (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
4793 (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
4794 Explicitly set wv->help. Use `TRUE' rather than `True'.
4795 (menu_help_callback): Use empty_string.
4796
4797 * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
4798 (Fx_popup_dialog): Explicitly init f.
4799 (w32_menu_display_help): Use empty_string.
4800
4801 2001-10-29 Richard M. Stallman <rms@gnu.org>
4802
4803 * fns.c (Frequire): Detect recursive try to require the same
4804 feature 3 or more levels deep, and get error.
4805 (require_unwind): New subroutine.
4806 (require_nesting_list): New variable.
4807 (syms_of_fns): Init and staticpro it.
4808
4809 * print.c (print_object): Clarify indication of insertion type.
4810
4811 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
4812
4813 * coding.c (syms_of_coding): Document that locale-coding-system is
4814 used for decoding input on X.
4815
4816 * window.c (Fscroll_left, Fscroll_right): Doc fix.
4817
4818 2001-10-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4819
4820 * keyboard.c (Finput_pending_p): Fix typo in doc-string.
4821 (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
4822
4823 2001-10-29 Gerd Moellmann <gerd@gnu.org>
4824
4825 * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
4826 use NO_CURSOR if cursor_in_non_selected_windows is false.
4827
4828 * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
4829 the slant attribute if FRAME is t.
4830
4831 * xfns.c (x_set_internal_border_width): Set frame garbaged
4832 when X window doesn't exist yet.
4833
4834 * xterm.c (x_after_update_window_line): Clear internal border
4835 in different circumstances.
4836
4837 * xterm.c (XTread_socket) <KeyPress>: Don't use
4838 STRING_CHAR_AND_LENGTH if nchars == nbytes. From Kenichi Handa
4839 <handa@etl.go.jp>.
4840
4841 2001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
4842
4843 * m/ibms390.h: New file. From Adam Thornton
4844 <athornton@sinenomine.net>.
4845
4846 2001-10-28 Gerd Moellmann <gerd@gnu.org>
4847
4848 * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
4849
4850 * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
4851 a loop counter.
4852
4853 2001-10-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4854
4855 * emacs.c: Use argv[0] instead of emacs when -t was specified.
4856
4857 * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
4858 keyword].
4859 Fix typos in comments.
4860
4861 * emacs.c (bug_reporting_address): New function.
4862 Use it when displaying usage message.
4863
4864 * minibuf.c (read_minibuf): Remove unused external declaration of
4865 variable `Qread_only'.
4866
4867 * keymap.c (access_keymap): Remove unused variable `charset'.
4868
4869 2001-10-28 Miles Bader <miles@gnu.org>
4870
4871 * xfaces.c (merge_face_heights): Handle TO being relative as well.
4872 Remove #ifdef'd-out code.
4873 (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
4874 (syms_of_xfaces): Initialize them.
4875
4876 2001-10-27 Jason Rumney <jasonr@gnu.org>
4877
4878 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
4879 <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
4880 position using the system caret.
4881
4882 * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
4883 (w32_system_caret_height, w32_system_caret_x)
4884 (w32_system_caret_y): New variables for tracking system caret.
4885 (w32_initialize): Initialize them.
4886 (x_display_and_set_cursor): Make system caret follow the active cursor.
4887
4888 * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
4889 New messages types.
4890
4891 * w32term.c (note_mouse_highlight): Clear old help_echo.
4892
4893 2001-10-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4894
4895 * xterm.c: Fix typo in a comment.
4896
4897 * emacs.c: Fix typos in comments.
4898 Remove unnecessary spaces.
4899 Change doc-string comments to `new style' [w/`doc:' keyword].
4900 (USAGE2): Fix typos in usage string.
4901
4902 * xterm.c: Fix typo in a comment.
4903
4904 * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
4905 emacs.c.
4906
4907 2001-10-27 Gerd Moellmann <gerd@gnu.org>
4908
4909 * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
4910 instead of 1/2 line_height in the heuristic for skipping
4911 farther backward when target_y was not reached.
4912
4913 * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
4914 Display errno only if non-zero.
4915 (sound_warning): New function.
4916 (vox_configure): Don't treat failing to set sample rate as error.
4917 (various places): Improve error messages.
4918
4919 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
4920
4921 * fileio.c (Faccess_file): Run the argument filename through
4922 Fexpand_file_name, before using it.
4923
4924 * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
4925 ring-bell-function. Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
4926
4927 2001-10-26 Gerd Moellmann <gerd@gnu.org>
4928
4929 * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
4930
4931 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
4932 Fix clearing in the case of scroll bars on the right.
4933
4934 2001-10-26 Juanma Barranquero <lektu@terra.es>
4935
4936 * w32gui.h (XImage): Add a dummy typedef.
4937
4938 2001-10-26 Gerd Moellmann <gerd@gnu.org>
4939
4940 * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
4941
4942 2001-10-25 Eli Zaretskii <eliz@is.elta.co.il>
4943
4944 * frame.c (Fframe_parameter): Fix last change.
4945
4946 * fileio.c: Revert last change (which removed old commented-out
4947 version of expand-file-name). Add a comment that explains why
4948 this old version should not be removed.
4949
4950 2001-10-25 Gerd Moellmann <gerd@gnu.org>
4951
4952 * frame.c (Fframe_parameter): Fix a bug whereby some
4953 ``artificial'' frame parameters, like `minibuffer' were not
4954 obtained by calling Fframe_parameters.
4955
4956 * xterm.c (show_mouse_face): Clean up. Recognize overwritten
4957 cursor differently.
4958
4959 * xdisp.c (move_it_vertically_backward): Compute line height
4960 differently. Add heuristic to try to be more compatible to 20.x.
4961
4962 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
4963
4964 * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
4965
4966 * editfns.c (text_property_stickiness): Fix Lisp_Object used as
4967 boolean.
4968
4969 2001-10-25 Miles Bader <miles@gnu.org>
4970
4971 * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
4972 BG is a pointer to a structure, not a structure.
4973 (gif_format, png_format): Add missing commas.
4974
4975 2001-10-24 Richard M. Stallman <rms@gnu.org>
4976
4977 * xfaces.c (Fface_attributes_as_vector): New function.
4978 (syms_of_xfaces): Defsubr it.
4979
4980 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4981
4982 * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
4983 variable `area'.
4984
4985 2001-10-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4986
4987 * search.c (scan_newline): Remove unused variable `selective_display'.
4988
4989 2001-10-25 Miles Bader <miles@gnu.org>
4990
4991 * dispextern.h (struct image): Add `background',
4992 `background_valid', and `background_transparent' fields.
4993 (image_background, image_background_transparent): New declarations.
4994 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
4995 * xfns.c (image_background, image_background_transparent)
4996 (four_corners_best): New functions.
4997 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
4998 (gs_format): Add `:background' entry.
4999 (lookup_image): Set IMG's background color if specified.
5000 (pbm_load, xbm_load_image, png_load): Set IMG's background field
5001 when appropriate.
5002 (x_clear_image_1): Reset `background_valid' and
5003 `background_transparent_valid' fields.
5004 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
5005 calculating it here. Set IMG's background_transparent field.
5006 (enum xpm_keyword_index): Add XPM_BACKGROUND.
5007 (enum png_keyword_index): Add PNG_BACKGROUND.
5008 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
5009 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
5010 (enum gif_keyword_index): Add GIF_BACKGROUND.
5011 (enum gs_keyword_index): Add GS_BACKGROUND.
5012 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
5013 Pre-calculate image background color where necessary.
5014 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
5015 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
5016 color to use for image glyph reliefs.
5017
5018 2001-10-24 Gerd Moellmann <gerd@gnu.org>
5019
5020 * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
5021 in full-width rows.
5022
5023 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
5024 Fix clearing of area not covered by scroll bar.
5025
5026 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5027
5028 * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
5029 and `real_start'.
5030 (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
5031 (glyph_rect): Remove unused variable `area'.
5032
5033 2001-10-24 Gerd Moellmann <gerd@gnu.org>
5034
5035 * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
5036
5037 * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
5038 (row_containing_pos): Take additional argument DY.
5039 Treat rows ending in middle of char differently.
5040 (display_line): Handle tabs on window systems differently.
5041
5042 * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
5043 with additional argument.
5044
5045 * dispextern.h (row_containing_pos): Adjust prototype.
5046
5047 * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
5048 (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
5049 (try_window_id, try_window_reusing_current_matrix)
5050 (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
5051 (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
5052
5053 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5054
5055 * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
5056 gnuemacs).
5057 (HAVE_BOXES): Fix typo in comment.
5058 (push_menu_pane): Fix typo in comment.
5059
5060 * xdisp.c: (display_prop_string_p): Remove unused local declaration
5061 of `Qwhen'.
5062 (single_display_prop_string_p): Remove unused local declarations
5063 of `Qwhen' and `Qmargin'.
5064 (string_buffer_position): Remove unused variable `around'.
5065 (store_frame_title): Remove unused variable `width'.
5066
5067 * window.c: Don't define max.
5068 (coordinates_in_window): Remove unused variable `uy'.
5069
5070 * widget.c: Don't define max.
5071
5072 * process.c: Don't define max.
5073 (create_process): Remove unused variable `buffer'.
5074
5075 2001-10-23 Gerd Moellmann <gerd@gnu.org>
5076
5077 * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
5078
5079 2001-10-23 Eli Zaretskii <eliz@is.elta.co.il>
5080
5081 * xfaces.c (Finternal_set_lisp_face_attribute)
5082 [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
5083 frame is on a windowed display.
5084
5085 2001-10-23 Gerd Moellmann <gerd@gnu.org>
5086
5087 * dispnew.c (sync_window_with_frame_matrix_rows):
5088 Fix handling of windows which aren't full-width, fix handling
5089 of marginal areas.
5090
5091 * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
5092
5093 2001-10-23 Andreas Schwab <schwab@suse.de>
5094
5095 * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
5096 LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
5097
5098 2001-10-23 Gerd Moellmann <gerd@gnu.org>
5099
5100 * xterm.c (x_draw_glyphs): Remove parameters READ_START and
5101 REAL_END. Notice if cursor gets overwritten.
5102 (notice_overwritten_cursor): Take X positions as parameters.
5103 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
5104 around call to x_draw_glyphs.
5105
5106 2001-10-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5107
5108 * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
5109 instead of C) and usage.
5110
5111 * editfns.c (char-to-string): Fix argument names (use CHAR instead
5112 of C) and usage.
5113
5114 * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
5115 `left', `max_width' and `max_height'.
5116
5117 2001-10-23 Gerd Moellmann <gerd@gnu.org>
5118
5119 * xdisp.c (display_line): For a tab continued to the next line,
5120 set row's ends_in_middle_of_char_p.
5121
5122 2001-10-22 Gerd Moellmann <gerd@gnu.org>
5123
5124 * xdisp.c (display_line): Fix computation of continuation lines
5125 width for TABs.
5126
5127 2001-10-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5128
5129 * xdisp.c (build_desired_tool_bar_string): Remove unused variable
5130 `Qlaplace'.
5131
5132 * fileio.c: Remove unused code.
5133
5134 2001-10-22 Miles Bader <miles@gnu.org>
5135
5136 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
5137 (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
5138 Remove `DOC_STRINGS_IN_COMMENTS' cases.
5139
5140 2001-10-21 Jason Rumney <jasonr@gnu.org>
5141
5142 * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
5143
5144 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
5145
5146 * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
5147 (Finsert_string): Avoid the multi-line string literals warning.
5148
5149 2001-10-22 Miles Bader <miles@gnu.org>
5150
5151 * doc.c (Vhelp_manyarg_func_alist): Variable removed.
5152 (Fdocumentation): Don't use it.
5153 (syms_of_doc): Don't initialize it.
5154
5155 * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
5156 * print.c (Fwith_output_to_temp_buffer): Likewise.
5157 * window.c (Fsave_window_excursion): Likewise.
5158 * editfns.c (Fsave_excursion, Fsave_current_buffer)
5159 (Fsave_restriction): Likewise.
5160 * eval.c (Frun_hooks, Frun_hook_with_args)
5161 (Frun_hook_with_args_until_failure)
5162 (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
5163 (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
5164 (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
5165 (Funwind_protect, Fcondition_case): Likewise.
5166 * coding.c (Ffind_operation_coding_system): Likewise.
5167 * keyboard.c (Ftrack_mouse): Likewise.
5168
5169 2001-10-21 Miles Bader <miles@gnu.org>
5170
5171 * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
5172 (Fmake_hash_table): Add usage: string to doc string.
5173 * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
5174 (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
5175 (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
5176 * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
5177 (Fml_prefix_argument_loop): Likewise.
5178
5179 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5180
5181 * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
5182
5183 * sysdep.c (init_sys_modes): Change doc-string comments to `new
5184 style' [w/`doc:' keyword].
5185
5186 * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
5187 * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
5188 comments to `new style' [w/`doc:' keyword].
5189
5190 2001-10-21 Jason Rumney <jasonr@gnu.org>
5191
5192 * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
5193
5194 * w32term.c (remember_mouse_glyph): New function.
5195 (w32_mouse_position): Use it.
5196 (note_mouse_movement): If the mouse moved off the glyph, remember
5197 its new position.
5198
5199 * w32term.h (struct w32_output): Correct spelling of x_compatible.
5200 (w32_display_info): Add mouse_face_overlay.
5201
5202 * w32term.c (notice_overwritten_cursor): Renamed from
5203 note_overwritten_text_cursor. Rewritten to take glyph widths into
5204 account.
5205 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
5206 (fast_find_string_pos): New function.
5207 (fast_find_position): Return the correct vpos. Add parameter
5208 STOP. In the final row, stop before glyphs having STOP as object.
5209 Don't consider glyphs that are not from a buffer.
5210 (fast_find_position) [0]: Add a presumably more correct version
5211 for after 21.1.
5212 (expose_window_tree, expose_frame): Don't compute intersections here.
5213 (expose_window): Do it here instead.
5214 (expose_window_tree, expose_window, expose_line): Return 1 when
5215 overwriting mouse-face.
5216 (expose_window): If W is the window currently being updated, mark
5217 the frame garbaged.
5218 (expose_frame): If mouse-face was overwritten, redo it.
5219 (x_use_underline_position_properties): New variable.
5220 (syms_of_xterm): DEFVAR_BOOL it.
5221 (x_draw_glyph_string): Add comment to use it in future.
5222 (x_draw_glyph_string): Restore clipping after drawing box.
5223 Fix a computation of the underline position.
5224 (w32_get_glyph_string_clip_rect): Minor cleanup.
5225 (x_fill_stretch_glyph_string): Remove an assertion.
5226 (x_produce_glyphs): Don't convert multibyte characters
5227 to unibyte characters in unibyte buffers.
5228 (cursor_in_mouse_face_p): New function.
5229 (x_draw_stretch_glyph_string): Use it to choose a different GC
5230 when drawing a cursor within highlighted text. Don't draw
5231 background again if it has already been drawn.
5232 (x_draw_glyph_string_box): Don't draw a full-width
5233 box just because the glyph row's full_width_p flag is set.
5234 (x_draw_glyphs): Fix computation of rightmost x for
5235 full-width rows.
5236 (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
5237 (w32_draw_relief_rect): Extend left shadow to the bottom and left;
5238 change bottom shadow accordingly. Some cleanup.
5239 (x_update_window_end): Handle overwritten mouse face
5240 also for tool bar windows.
5241 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
5242 DRAW is DRAW_IMAGE_RAISED.
5243 (clear_mouse_face): Return 1 if text with mouse face was
5244 actually redrawn. Make the function static. Reset
5245 dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
5246 optimize away highlighting if we pass over that same overlay again.
5247 (note_mouse_highlight): Call mouse_face_overlay_overlaps
5248 to detect a case where we have to highlight a different region
5249 despite not having left the currently highlighted region.
5250 Set mouse_face_overlay in the x_display_info. Avoid changing the
5251 mouse pointer shape when show_mouse_face has already done it, or
5252 there is no need. Handle mouse-face and help-echo in strings.
5253 (glyph_rect): New function.
5254 (w32_mouse_position): Use it to raise the threshold for mouse
5255 movement event generation.
5256 (w32_initialize_display_info): Initialize the x_display_info's
5257 mouse_face_overlay.
5258 (w32_set_vertical_scroll_bar): Don't clear a zero height
5259 or width area.
5260 (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
5261 a widget to zero height.
5262
5263 * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
5264 Protect unibyte strings created by replacing their multibyte
5265 equivalents in menu_items.
5266 (w32_menu_show): Don't overwrite an item's name with its key
5267 description in case the description is a multibyte string.
5268 (single_submenu): Some cleanup.
5269
5270 * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
5271 (postprocess_image): New function.
5272 (lookup_image): Call it for all image types except PostScript.
5273 (x_kill_gs_process): Call postprocess_image.
5274 (tiff_error_handler, tiff_warning_handler): New functions.
5275 (tiff_load): Install them as handlers.
5276 (x_kill_gs_process): Recognize if someone has cleared the image
5277 cache under us.
5278 (valid_image_p): Protect better against invalid image
5279 specifications. Previous code could signal an error.
5280 (Fx_hide_tip, Fshow_tip): Doc fix.
5281 (Fv_max_tooltip_size): New variable.
5282 (syns_of_xfns): DEFVAR_LISP it.
5283 (Fx_show_tip): Add parameter TEXT. Set the tip frame's root
5284 window buffer to *tip* right after creating the frame. Set frame's
5285 window_width. Use a maximum tooltip size specified by
5286 Vx_max_tooltip_size, if that has valid contents.
5287 (compute_tip_xy): Add parameters WIDTH and HEIGHT.
5288 Make sure the tooltip is completely visible.
5289 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
5290 (Fx_create_frame): Adjust the frame's height for presence
5291 of the tool bar before calling x_figure_window_size.
5292 (x_set_tool_bar_lines): Clear the tool bar window's current matrix
5293 when the window gets smaller.
5294 (x_set_foreground_color): Set frame's cursor_pixel.
5295 (x_set_foreground_color, x_set_background_color): Cleaned up.
5296 (x_set_font): Handle case of x_new_fontset returning the same name
5297 as before, although there was a change in fontsets.
5298
5299 2001-10-21 Miles Bader <miles@gnu.org>
5300
5301 * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
5302 (Flogxor): Add usage: string to doc string.
5303 * charset.c (Fstring): Likewise.
5304 * callproc.c (Fcall_process_region, Fcall_process): Likewise.
5305 * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
5306
5307 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5308
5309 * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
5310
5311 * alloc.c: Reindent DEFUNs with doc: keywords.
5312
5313 * abbrev.c (Finsert_abbrev_table_description): Reindent.
5314
5315 * frame.c: Change doc-string comments to `new style' [w/`doc:'
5316 keyword].
5317
5318 See ChangeLog.9 for earlier changes.
5319
5320 ;; Local Variables:
5321 ;; coding: iso-2022-7bit
5322 ;; End:
5323
5324 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
5325 Copying and distribution of this file, with or without modification,
5326 are permitted provided the copyright notice and this notice are preserved.