(xg_get_image_for_pixmap): Add workaround for monochrome displays
[bpt/emacs.git] / src / ChangeLog
1 2004-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2
3 * gtkutil.c (xg_get_image_for_pixmap): Call g_object_unref on
4 gpix and gmask just before return to avoid memory leak.
5 (xg_get_image_for_pixmap): Add workaround for monochrome displays
6 so insensitive and activated icons look ok.
7
8 2004-06-27 Jason Rumney <jasonr@gnu.org>
9
10 * w32fns.c (file_dialog_callback): Disable edit control if set
11 to directories only on CDN_INITDONE message.
12 (Fx_file_dialog): Default to directories only when prompt starts
13 with "Dired".
14
15 2004-06-25 Kim F. Storm <storm@cua.dk>
16
17 * alloc.c (allocate_misc): Update total_free_markers.
18 (free_misc): New function.
19 (safe_alloca_unwind, free_marker): Use it.
20
21 * lisp.h (free_misc): Add prototype.
22
23 * fns.c (Fmapconcat, Fmapcar): Remove superfluous GCPROs.
24
25 2004-06-24 Richard M. Stallman <rms@gnu.org>
26
27 * emacs.c (Vsignal_USR1_hook, Vsignal_USR2_hook): Definitions deleted.
28 (syms_of_emacs): Lisp variables deleted.
29
30 2004-06-23 David Kastrup <dak@gnu.org>
31
32 * search.c (Freplace_match): Adjust the match-data more thoroughly
33 when replacing strings in the buffer.
34 (Fmatch_data): When INTEGERS is non-nil and the last match was in
35 a buffer, add the buffer as last element to the match data.
36 (Fset_match_data): If an additional element of the match-data is a
37 buffer, restore it to last_thing_searched.
38 (save_search_regs): Save last_thing_searched as part of the match
39 data.
40 (restore_match_data): Restore it again.
41
42 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
43
44 * keymap.c (Ftext_char_description): Doc fix.
45 * doc.c (Fsnarf_documentation): Doc fix.
46
47 2004-06-22 Kim F. Storm <storm@cua.dk>
48
49 * fns.c (Fmapcar, Fmapconcat): GCPRO the args array.
50
51 * lisp.h (struct Lisp_Save_Value): New member dogc.
52 (SAFE_ALLOCA_LISP): Change second arg to number of elements.
53 Set dogc member in Lisp_Save_Value object so it will be GC'ed.
54 (SAFE_FREE_LISP): New macro.
55
56 * alloc.c (safe_alloca_unwind): Clear dogc and pointer members.
57 (make_save_value): Init new dogc member.
58 (mark_object): Mark Lisp_Save_Value pointer array if dogc is set.
59
60 * fns.c (Fmapconcat, Fmapcar): Use new SAFE_ALLOCA_LISP and
61 SAFE_FREE_LISP macros.
62
63 2004-06-22 Kim F. Storm <storm@cua.dk>
64
65 * lisp.h (SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects.
66 Temporarily inhibits GC if memory is xmalloc'ed, as the Lisp_Objects
67 in that memory area are unknown to GC. Add comments.
68
69 * fns.c (Fmapconcat, Fmapcar): Use SAFE_ALLOCA_LISP.
70
71 2004-06-21 Kim F. Storm <storm@cua.dk>
72
73 * lisp.h (MAX_ALLOCA): Define here.
74 (safe_alloca_unwind): Add prototype.
75 (USE_SAFE_ALLOCA, SAFE_ALLOCA, SAFE_FREE): New macros.
76
77 * alloc.c (safe_alloca_unwind): New function.
78
79 * casefiddle.c (casify_object): Use SAFE_ALLOCA.
80
81 * charset.c (Fstring): Use SAFE_ALLOCA.
82
83 * coding.c (MAX_ALLOCA): Remove define.
84
85 * data.c (MAX_ALLOCA): Remove define.
86 (Faset): Use SAFE_ALLOCA.
87
88 * editfns.c (Fformat, Ftranspose_regions): Use SAFE_ALLOCA.
89
90 * fns.c (string_make_multibyte, string_to_multibyte)
91 (string_make_unibyte, Fmapconcat, Fmapcar): Use SAFE_ALLOCA.
92 (MAX_ALLOCA): Remove define.
93 (Fbase64_encode_region, Fbase64_encode_string)
94 (Fbase64_decode_region, Fbase64_decode_string): Use SAFE_ALLOCA.
95 (Fbase64_encode_region, Fbase64_encode_string): Fix potential
96 memory leak if encoding fails.
97
98 * xdisp.c (add_to_log): Use SAFE_ALLOCA.
99
100 2004-06-21 Eli Zaretskii <eliz@gnu.org>
101
102 * print.c (Fwith_output_to_temp_buffer): Doc fix.
103
104 2004-06-20 Richard M. Stallman <rms@gnu.org>
105
106 * xfaces.c (Finternal_copy_lisp_face): Small cleanup; doc fix.
107
108 * search.c (match_limit): Cleaner err msg when no match data available.
109
110 * window.c (syms_of_window): Doc fix.
111
112 * keyboard.c (command_loop_1): Handle values `only' and `identity'
113 for Vtransient_mark_mode.
114
115 * buffer.c (syms_of_buffer): Doc fix.
116
117 2004-06-21 David Kastrup <dak@gnu.org>
118
119 * minibuf.c (Ftry_completion, Fall_completions): Do lazy binding
120 and unbinding of `case-fold-search' according to
121 `completion-ignore-case' around calls of string-match and
122 predicates, respectively. Should give satisfactory performance
123 in all relevant cases.
124
125 2004-06-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
126
127 * xterm.c (x_draw_image_foreground_1): Subtract slice.x/y from
128 clip_x/y_origin.
129
130 * fns.c (string_to_multibyte): Use xmalloc/xfree instead of alloca.
131
132 * macfns.c (Fx_display_color_cells): Do not limit return value to 256.
133
134 * macterm.c (mac_initialize_display_info): Initialize n_planes correctly
135 on Mac OSX.
136
137 2004-06-16 Luc Teirlinck <teirllm@auburn.edu>
138
139 * buffer.c (syms_of_buffer): Clarify `fill-column' docstring.
140
141 2004-06-16 Kim F. Storm <storm@cua.dk>
142
143 * dispextern.h (Vimage_types): Remove extern.
144
145 2004-06-16 Miles Bader <miles@gnu.org>
146
147 * image.c (lookup_image_type): Initialize image type if necessary.
148
149 2004-06-15 Kim F. Storm <storm@cua.dk>
150
151 * xdisp.c (try_cursor_movement): Exclude header line from scroll
152 margin at top of window.
153 (try_window_reusing_current_matrix): Calculate proper cursor position
154 after scrolling up with non-zero scroll margin, as the old cursor
155 position corresponds to value of PT before executing this command.
156 (try_window_id): Consider scroll margin at bottom of window too;
157 otherwise we fail to scroll when hl-line-mode is enabled.
158
159 * syntax.c (skip_chars): Only recognize [:class:] when it has the
160 proper format and class is a lower-case word.
161
162 2004-06-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
163
164 * gtkutil.c (xg_get_image_for_pixmap): New function.
165 (xg_get_gdk_pixmap_and_mask): Removed.
166 (update_frame_tool_bar): Call xg_get_image_for_pixmap instead of
167 xg_get_gdk_pixmap_and_mask.
168
169 * xterm.h (struct x_display_info): Typo in comment fixed.
170
171 2004-06-14 Juanma Barranquero <lektu@terra.es>
172
173 * dispextern.h (Vimage_types): Make it conditional on
174 HAVE_WINDOW_SYSTEM.
175
176 * image.c (Vimage_types): Move from xdisp.c.
177 (Vimage_type_cache): New variable.
178 (define_image_type): New argument indicating whether an image
179 library was loaded; cache loaded status and return t on success,
180 nil otherwise.
181 (CACHE_IMAGE_TYPE, ADD_IMAGE_TYPE): New macros.
182 (w32_delayed_load): New function to load an image library from a
183 list of possible filenames.
184 (init_xpm_functions, init_png_functions, init_jpeg_functions)
185 (init_tiff_functions, init_gif_functions): Use `w32_delayed_load'.
186 (CHECK_LIB_AVAILABLE): Call `define_image_library' with new
187 argument.
188 (Finit_image_library): New function, extracted from `init_image'.
189 Try to initialize an image library on demand and cache whether we
190 were successful or not.
191 (syms_of_image): Initialize `Vimage_types' and
192 `Vimage_type_cache'. Add recognized image types to Vimage_types.
193 Export `init-image-library'.
194 (init_image): Remove initialization of all image types, except xbm
195 and pbm.
196
197 * xdisp.c (Vimage_types): Delete (moved to image.c).
198
199 2004-06-14 Andreas Schwab <schwab@suse.de>
200
201 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
202 Avoid calling specbind when completion-regexp-list is empty.
203
204 2004-06-13 Richard M. Stallman <rms@gnu.org>
205
206 * regex.h (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
207 (re_wctype, re_iswctype, re_wctype_to_bit):
208 Non-function definitions moved here from regex.c.
209
210 * regex.c (re_wctype, re_iswctype): Function defs longer static.
211 (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
212 (re_wctype, re_iswctype, re_wctype_to_bit):
213 Non-function definitions moved to regex.h.
214
215 * window.c (Fselect_window): Doc fix.
216
217 * syntax.c: Include regex.h.
218 (skip_chars): New arg HANDLE_ISO_CLASSES. Callers changed.
219 If requested, make a list of classes, then check the scanned
220 chars for membership in them.
221 (in_classes): New function.
222 Doc fix.
223
224 * keyboard.c (cmd_error): Don't call any_kboard_state
225 if inside a recursive edit level.
226
227 2004-06-13 Lorentey K\e,Aa\e(Broly <lorentey@elte.hu>
228
229 * keyboard.c (command_loop): Call any_kboard_state before
230 command_loop_2 when at top level.
231
232 2004-06-13 Andreas Schwab <schwab@suse.de>
233
234 * print.c (print_object): Always use %ld for printing EMACS_INT.
235
236 * keyboard.c (cancel_hourglass_unwind): Return a value.
237 (modify_event_symbol): Always use %ld for printing EMACS_INT.
238 (Fexecute_extended_command): Likewise.
239
240 * syntax.h (SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
241 avoid clashes.
242 (SYNTAX): Likewise.
243 (SYNTAX_WITH_FLAGS): Likewise.
244 (SYNTAX_MATCH): Likewise.
245
246 * syntax.c (char_quoted): Avoid warning about undefined operation.
247 (find_defun_start): Likewise.
248 (scan_lists): Likewise.
249 (INC_FROM): Likewise.
250 (scan_sexps_forward): Likewise.
251
252 * image.c: Include <ctype.h>.
253
254 * xfaces.c (face_attr_equal_p): Declare parameters.
255
256 2004-06-13 Kenichi Handa <handa@m17n.org>
257
258 * ccl.c (CCL_READ_CHAR): If hit EOF, set REG to -1.
259
260 2004-06-12 Matthew Mundell <matt@mundell.ukfsn.org>
261
262 * eval.c (Fdefun): Signal an error if NAME is not a symbol.
263
264 2004-06-12 Kenichi Handa <handa@m17n.org>
265
266 * ccl.c (CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
267 ccl_prog_stack_struct and update it.
268 (CCL_INVALID_CMD): If CCL_DEBUG is defined, call ccl_debug_hook.
269 (CCL_READ_CHAR): Get instruction counter from eof_ic, not from
270 ccl->eof_ic on EOF.
271 (ccl_debug_hook): New function.
272 (struct ccl_prog_stack): New member eof_ic.
273 (ccl_driver): Handle EOF in subrountine call correctly.
274
275 2004-06-11 Kenichi Handa <handa@m17n.org>
276
277 * coding.c (decode_coding_string): Check CODING_FINISH_INTERRUPT.
278
279 2004-06-11 Kim F. Storm <storm@cua.dk>
280
281 * emacs.c (shut_down_emacs): Inhibit redisplay during shutdown.
282
283 2004-06-11 Juanma Barranquero <lektu@terra.es>
284
285 * keyboard.c (Fposn_at_point): Doc fix.
286
287 2004-06-11 David Kastrup <dak@gnu.org>
288
289 * search.c (match_limit): Don't flag an error if match-data
290 exceeding the allocated search_regs.num_regs gets requested, just
291 return Qnil.
292
293 2004-06-08 Miles Bader <miles@gnu.org>
294
295 * xfaces.c (push_named_merge_point): Return 0 when a cycle is detected.
296
297 2004-06-07 Juanma Barranquero <lektu@terra.es>
298
299 * editfns.c (Fuser_login_name, Ffloat_time, Fencode_time)
300 (Fcurrent_time_string, Fcurrent_time_zone)
301 (Finsert_buffer_substring, Ftranspose_regions): Doc fixes.
302
303 2004-06-07 Miles Bader <miles@gnu.org>
304
305 * xfaces.c (struct named_merge_point): New type.
306 (push_named_merge_point): New function.
307 (merge_named_face): New function.
308 (merge_face_ref, face_at_buffer_position, face_at_string_position):
309 Use `merge_named_face'.
310 (merge_face_inheritance): Function removed.
311 (merge_face_ref): Renamed from `merge_face_vector_with_property'.
312 Add new `err_msgs' and `named_merge_points' args. Return error
313 status. Only print error messages if ERR_MSGS is true. Don't try to
314 do :inherit attribute validation.
315 (merge_face_heights): Handle `unspecified' in both directions.
316 (merge_face_vectors): Rename `cycle_check' arg to `named_merge_points'.
317 Call `merge_face_ref' instead of `merge_face_inheritance'.
318 (Fdisplay_supports_face_attributes_p, Fface_attributes_as_vector)
319 (compute_char_face, face_at_buffer_position)
320 (face_at_string_position): Call `merge_face_ref' instead of
321 `merge_face_vector_with_property'.
322
323 2004-06-07 Kenichi Handa <handa@m17n.org>
324
325 * coding.c (find_safe_codings): Check NILP (safe_codings) only at
326 the necessary places.
327
328 2004-06-07 Kim F. Storm <storm@cua.dk>
329
330 * process.c (Fdelete_process): Undo 2004-05-28 change.
331 Instead, call status_notify also for network process.
332 (status_message): Use process instead of status as arg.
333 Give messages "deleted" or "connection broken by remote peer" for
334 an exited network process.
335 (status_notify): Change call to status_message.
336 (read_process_output): Increase readmax to 4096. Do not increase
337 buffer size for datagram channels (default is now large enough).
338
339 2004-06-06 Steven Tamm <tamm@Steven-Tamms-Computer.local>
340
341 * macfns.c (x_create_tip_frame): Fix Mac OS X 10.1 compilation
342 problem due to newly defined variable.
343
344 2004-06-06 Miles Bader <miles@gnu.org>
345
346 * xfaces.c (Fdisplay_supports_face_attributes_p): Give up
347 immediately if non-interactive or not initialized.
348
349 2004-06-05 Richard M. Stallman <rms@gnu.org>
350
351 * minibuf.c (Fcompleting_read): Doc fix.
352
353 2004-06-05 Andreas Schwab <schwab@suse.de>
354
355 * macfns.c (x_create_tip_frame): Fix declaration after statement.
356
357 2004-06-05 Juanma Barranquero <lektu@terra.es>
358
359 * keymap.c (Fdescribe_vector): Fix docstring.
360 (Fkey_description, Fglobal_key_binding): Fix typo in docstring.
361
362 2004-06-05 Miles Bader <miles@gnu.org>
363
364 * xfaces.c (tty_supports_face_attributes_p): Make sure the specified
365 attributes have different values than the default face.
366
367 2004-06-04 Eli Zaretskii <eliz@gnu.org>
368
369 * xfaces.c (x_supports_face_attributes_p): Make this function
370 conditional on HAVE_WINDOW_SYSTEM.
371 (Fdisplay_supports_face_attributes_p) [HAVE_WINDOW_SYSTEM]: Don't
372 call x_supports_face_attributes_p if it was not compiled in.
373
374 2004-06-04 Miles Bader <miles@gnu.org>
375
376 * xfaces.c (tty_supports_face_attributes_p): New function, mostly
377 from Ftty_supports_face_attributes_p.
378 (x_supports_face_attributes_p): New function.
379 (Ftty_supports_face_attributes_p): Function deleted.
380 (Fdisplay_supports_face_attributes_p): New function.
381 (syms_of_xfaces): Initialize Sdisplay_supports_face_attributes_p.
382 (face_attr_equal_p): New function.
383 (lface_equal_p): Use it.
384
385 2004-06-03 Juanma Barranquero <lektu@terra.es>
386
387 * w32fns.c (Fx_display_grayscale_p, Fw32_send_sys_command)
388 (Vw32_color_map): Fix typo in docstring.
389 (Fx_create_frame, Fw32_find_bdf_fonts, Fx_show_tip)
390 (Fw32_unregister_hot_key, Fw32_reconstruct_hot_key):
391 Make argument names match their use in docstring.
392
393 2004-06-02 Juanma Barranquero <lektu@terra.es>
394
395 Work around bugs/problems with MinGW builds of graphics libraries
396 called from MSVC builds of Emacs.
397
398 * image.c (lookup_image): Make pointer to img static.
399 (png_read_from_memory): Disable "global" optimization.
400
401 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
402
403 * mem-limits.h (EXCEEDS_LISP_PTR) [USE_LSB_TAG]: Never true.
404
405 2004-05-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
406
407 * macfns.c: Don't include ccl.h.
408 [MAC_OSX]: Don't include QuickTime/QuickTime.h.
409 [!MAC_OSX]: Don't include alloca.h, Windows.h, Gestalt.h, or
410 TextUtils.h.
411 (Fx_create_frame): Sync with xfns.c. Initialize cursor
412 descriptors.
413 (Fx_display_mm_height, Fx_display_mm_width): Calculate length from
414 display height/width.
415 (compute_tip_xy, Vx_max_tooltip_size): Declare.
416 (unwind_create_tip_frame, compute_tip_xy): New functions.
417 (x_create_tip_frame, Fx_show_tip, Fx_hide_tip): Sync with xfns.c.
418 (syms_of_macfns): Initialize Qcancel_timer, Vx_max_tooltip_size,
419 and last_show_tip_args.
420
421 * macgui.h [!MAC_OSX]: Include Gestalt.h.
422 (Cursor, No_Cursor): New defines.
423 [!TARGET_API_MAC_CARBON] (SetPortWindowPort): New compatibility
424 macro.
425 [!TARGET_API_MAC_CARBON] (arrow_cursor): Declare.
426
427 * macmenu.c (mac_menu_show, mac_dialog): Use SetPortWindowPort.
428
429 * macterm.c: Don't include Gestalt.h.
430 (enum mouse_tracking_type, mouse_tracking_in_progress): Remove.
431 (XDrawLine, XClearArea, XClearWindow, mac_draw_bitmap)
432 (mac_set_clip_rectangle, mac_reset_clipping, XCreatePixmap)
433 (XFillRectangle, mac_draw_rectangle, mac_draw_string_common)
434 (mac_copy_area, mac_copy_area_with_mask, x_update_end)
435 (construct_mouse_click, XTmouse_position)
436 (x_scroll_bar_report_motion, x_calc_absolute_position)
437 (do_mouse_moved, do_zoom_window, mac_do_receive_drag)
438 (XTread_socket, make_mac_frame): Use SetPortWindowPort.
439 (note_mouse_movement): Clear the mouse face and reset the pointer
440 shape when the pointer goes outside the frame without grabbing.
441 (mac_front_window): New function.
442 (mac_window_to_frame): New macro.
443 (XTmouse_position, x_scroll_bar_report_motion, do_window_update)
444 (do_window_activate, do_window_deactivate, do_app_resume)
445 (do_app_suspend, do_mouse_moved, do_menu_choice, do_grow_window)
446 (do_zoom_window, mac_do_receive_drag, XTread_socket)
447 (mac_check_for_quit_char): Use mac_front_window and/or
448 mac_window_to_frame.
449 (x_scroll_bar_handle_click): Set `(PORTION . WHOLE)' part in a
450 scroll-bar click event.
451 (mac_define_frame_cursor): Change the pointer shape.
452 (x_free_frame_resources): Reset tip_window to NULL when it is
453 disposed.
454 [!TARGET_API_MAC_CARBON] (arrow_cursor): New variable.
455 [!TARGET_API_MAC_CARBON] (do_init_managers): Initialize
456 arrow_cursor.
457 (do_window_update): Don't do anything if the updated window is the
458 tooltip window.
459 (do_mouse_moved): Handle mouse movement events here (previously in
460 XTread_socket). Clear the mouse face if
461 dpyinfo->mouse_face_hidden is set.
462 (do_os_event, do_events): Remove (now in XTread_socket).
463 (XTread_socket): Immediately return if interrupt_input_blocked.
464 Loop until all the events in the queue are processed. Rearrange
465 codes for mouse grabbing. Add tooltip support. Include the
466 contents of do_os_event and do_events. Remove mouse movement
467 handling (now in do_mouse_moved). Add the case where
468 Vmouse_highlight has an integer value.
469 (NewMacWindow): Remove.
470 (make_mac_frame): Do what NewMacWindow previously did. Don't do
471 excess initializations.
472 (make_mac_terminal_frame): Previous initializations in
473 make_mac_frame are moved here.
474 (mac_initialize_display_info): Initialize
475 dpyinfo->mouse_face_overlay and dpyinfo->mouse_face_hidden.
476
477 * xdisp.c [MAC_OS] (No_Cursor): Remove variable.
478 (define_frame_cursor1): Don't treat HAVE_CARBON as a special case.
479
480 2004-05-29 Richard M. Stallman <rms@gnu.org>
481
482 * lisp.h (truncate_undo_list): Update decl.
483
484 * alloc.c (undo_outer_limit): New variable.
485 (syms_of_alloc): Defvar it.
486 (Fgarbage_collect): Pass undo_outer_limit to truncate_undo_list.
487
488 * undo.c (truncate_undo_list): New arg LIMITSIZE.
489
490 * alloc.c (lisp_align_malloc): Check for base == 0
491 regardless of HAVE_POSIX_MEMALIGN.
492 Clean up HAVE_POSIX_MEMALIGN handling of `err'.
493
494 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
495
496 * alloc.c: Undo Kim's recent changes and fix the same bug differently.
497 (marker_blocks_pending_free): Remove.
498 (Fgarbage_collect): Sweep after cleaning up undo-lists.
499 Mark the undo lists after claning them up.
500 Don't free block in marker_blocks_pending_free.
501 (mark_buffer): Don't mark undo_list.
502 (gc_sweep): Sweep hash-tables and strings first.
503 Do free marker blocks that are empty.
504
505 2004-05-28 Jim Blandy <jimb@redhat.com>
506
507 * regex.c (print_partial_compiled_pattern): Add missing 'break'
508 after 'case wordend'. For symbeg and symend, print to stderr,
509 like the other cases.
510
511 2004-05-28 Noah Friedman <friedman@splode.com>
512
513 * process.c (Fdelete_process): Do not call remove_process.
514
515 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
516
517 * alloc.c (struct backtrace): Remove.
518 (Fgarbage_collect): Use the new mark_backtrace.
519
520 * eval.c (mark_backtrace): New function.
521
522 * minibuf.c (run_exit_minibuf_hook): New function.
523 (read_minibuf_unwind): Don't run exit-minibuffer-hook any more.
524 (read_minibuf): Use separate unwind handler to run exit-minibuf-hook.
525
526 2004-05-27 Kim F. Storm <storm@cua.dk>
527
528 * xdisp.c (back_to_previous_visible_line_start): Skip backwards
529 over display properties, e.g. images, that replace buffer text.
530
531 2004-05-25 Kim F. Storm <storm@cua.dk>
532
533 * alloc.c (marker_blocks_pending_free): New var.
534 (gc_sweep): Store free marker blocks on that list.
535 (Fgarbage_collect): Free them after undo-list cleanup.
536
537 * process.c (wait_reading_process_input): Check connect_wait_mask
538 before actually accepting connection in case it has already been
539 accepted due to recursion.
540
541 2004-05-23 K\e,Ba\e(Broly L\e,Bu\e(Brentey <lorentey@elte.hu> (tiny change)
542
543 * coding.c (Fset_safe_terminal_coding_system_internal):
544 Set suppress_error in safe_terminal_coding, not terminal_coding.
545
546 2004-05-22 Richard M. Stallman <rms@gnu.org>
547
548 * alloc.c (Fmake_string): Doc fix.
549
550 * buffer.c (clone_per_buffer_values): Copy the alist of local vars,
551 and the alist pairs too.
552
553 * casefiddle.c (casify_object): Return OBJ unchanged if not real char.
554
555 * emacs.c (main): Update copyright year.
556
557 * fileio.c (Fread_file_name): Expand DIR if not absolute.
558
559 * insdel.c (del_range_2, replace_range): Don't write an anchor
560 if the gap is empty.
561
562 * xdisp.c (try_scrolling): If scroll-up-aggressively or
563 scroll-down-aggressively is small but positive, put point
564 near the screen edge.
565
566 2004-05-22 Juanma Barranquero <lektu@terra.es>
567
568 * keymap.c (Fdefine_key): Doc fix.
569
570 2004-05-22 Kim F. Storm <storm@cua.dk>
571
572 * alloc.c (struct backtrace): Add debug_on_exit member.
573 (Fgarbage_collect): Clear out buffer undo_list markers after gc_sweep.
574 Identify those markers as Lisp_Misc_Free objects. Clear car and cdr of
575 the removed cons cells.
576 (mark_object): Undo previous change - disallow Lisp_Misc_Free objects.
577 (gc_sweep): Clear cons_blocks before sweeping strings, so we don't have
578 any cons cells pointing to unallocated stings.
579 Do not lisp_free any marker blocks, as there may still be pointers
580 to them from buffer undo lists at this stage of GC.
581
582 * keyboard.c (struct backtrace): Add debug_on_exit member.
583 (Fcommand_execute): Clear it.
584
585 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
586
587 * intervals.c (lookup_char_property): Do not prematurely return nil.
588
589 2004-05-19 Jim Blandy <jimb@redhat.com>
590
591 Add support for new '\_<' and '\_>' regexp operators, matching the
592 beginning and end of symbols.
593
594 * regex.c (enum syntaxcode): Add Ssymbol.
595 (init_syntax_once): Set the syntax for '_' to Ssymbol, not Sword.
596 (re_opcode_t): New opcodes `symbeg' and `symend'.
597 (print_partial_compiled_pattern): Print the new opcodes properly.
598 (regex_compile): Parse the new operators.
599 (analyse_first): Skip sym(beg|end) (they match only the empty string).
600 (mutually_exclusive_p): `symend' is mutually exclusive with \s_ and
601 \sw; `symbeg' is mutually exclusive with \S_ and \Sw.
602 (re_match_2_internal): Match symbeg and symend.
603
604 * search.c (trivial_regexp_p): \_ is no longer a trivial regexp.
605
606 2004-05-19 Kim F. Storm <storm@cua.dk>
607
608 * .gdbinit (xsymbol): Fix last change.
609
610 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
611
612 * .gdbinit (xprintstr): New fun.
613 (xstring, xprintsym): Use it.
614
615 * w32proc.c (create_child): Use INTMASK.
616
617 * alloc.c (Fgarbage_collect): Do all the marking before flushing
618 unmarked elements of the undo list.
619
620 2004-05-18 David Ponce <david@dponce.com>
621
622 * print.c (print): Reset print_depth before to call print_object.
623
624 2004-05-18 Jason Rumney <jasonr@gnu.org>
625
626 * w32console.c: Prefix RIF functions with w32con_ to avoid
627 namespace clash with functions in term.c and w32term.c.
628
629 * w32menu.c (add_menu_item, w32_menu_display_help)
630 [USE_LISP_UNION_TYPE]: Cast from Lisp_Object using i member.
631
632 * w32term.h (display_x_get_resource, vga_stdcolor_name): Add prototype.
633
634 2004-05-18 Eli Zaretskii <eliz@gnu.org>
635
636 * lisp.h (DECL_ALIGN): Remove restriction on MS-DOS systems.
637
638 * msdos.c (syms_of_msdos): Initialize dos-unsupported-char-glyph
639 with make_number.
640 (IT_write_glyphs): Extract glyph from dos-unsupported-char-glyph
641 with XINT.
642
643 2004-05-18 Kim F. Storm <storm@cua.dk>
644
645 * blockinput.h (INPUT_BLOCKED_P): New macros.
646
647 * keyboard.c (Frecursive_edit): Return immediately if input blocked.
648 (Ftop_level): Unblock input if blocked.
649
650 * buffer.h (GET_OVERLAYS_AT): New macro.
651 * msdos.c (IT_note_mouse_highlight): Use it.
652 * textprop.c (get_char_property_and_overlay): Use it.
653 * xdisp.c (next_overlay_change, note_mouse_highlight): Use it.
654 * xfaces.c (face_at_buffer_position): Use it.
655
656 * print.c (print_object): Increase buf size.
657
658 2004-05-17 Jason Rumney <jasonr@gnu.org>
659
660 * w32fns.c (Fw32_register_hot_key, Fw32_unregister_hot_key)
661 (Fw32_toggle_lock_key) [USE_LISP_UNION_TYPE]: Cast from
662 Lisp_Object using i member.
663 (w32_quit_key): Rename from Vw32_quit_key, and make an int.
664 (syms_of_w32fns, globals_of_w32fns): Use Lisp_Object and int
665 consistently.
666
667 * w32proc.c (create_child): Use make_number instead of masking pid.
668
669 * w32fns.c (w32_color_map_lookup): Return a Lisp_Object.
670 (x_to_w32_charset, w32_to_x_charset, w32_to_all_x_charsets):
671 Use EQ to compare Lisp_Objects.
672 (w32_parse_hot_key): Use int for lisp_modifiers consistently.
673
674 * w32term.c (w32_num_mouse_buttons): Rename from
675 Vw32_num_mouse_buttons and make it an int.
676
677 * w32.c (init_environment): Use it.
678
679 * w32fns.c (w32_wnd_proc): Likewise.
680
681 * w32proc.c (w32_pipe_read_delay): Rename from
682 Vw32_pipe_read_delay and make it an int.
683
684 * w32.c (_sys_read_ahead): Use it.
685
686 * lisp.h (egetenv) [USE_CRT_DLL]: Remove condition.
687
688 * w32proc.c (create_child) [USE_LSB_TAG]: Don't try to mask pid.
689
690 * w32inevt.c (w32_console_mouse_position, do_mouse_event)
691 (key_event): Don't mix Lisp_Object and int.
692
693 * w32heap.c (init_heap) [USE_LSB_TAG]: Don't check heap location.
694
695 * keyboard.c (kbd_buffer_get_event): Don't use event->code and
696 modifiers in language change event.
697
698 2004-05-17 Kim F. Storm <storm@cua.dk>
699
700 * alloc.c (mark_object): Ignore Lisp_Misc_Free objects.
701 Such objects may be freed markers which still exist on an undo list.
702
703 2004-05-16 Juanma Barranquero <lektu@terra.es>
704
705 * data.c (Fset_default): Make argument names match their use in
706 docstring.
707
708 2004-05-15 Andreas Schwab <schwab@suse.de>
709
710 * emacs.c (gdb_array_mark_flag): Define.
711 * .gdbinit: Mask off gdb_array_mark_flag from vector sizes.
712
713 2004-05-15 Eli Zaretskii <eliz@gnu.org>
714
715 * lisp.h (DECL_ALIGN) [MSDOS]: Don't define DECL_ALIGN to use
716 __attribute__((__aligned__)), so that USE_LSB_TAG would not become
717 defined for the MS-DOS build.
718
719 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
720
721 * w32fns.c (Fw32_define_rgb_color): Avoid XSET.
722
723 2004-05-14 Kenichi Handa <handa@m17n.org>
724
725 * ccl.c (Fccl_execute_on_string): Fix setting elements of STATUS.
726
727 2004-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
728
729 * lisp.h (Vx_resource_name, Vx_resource_class): Move from xfns.c
730 section to frame.c section.
731 (Fxw_display_color_p, Fx_file_dialog): Declare if
732 HAVE_WINDOW_SYSTEM defined.
733
734 * macfns.c (Fx_create_frame): Fix int/Lisp_Object mixup.
735
736 * macmenu.c (set_frame_menubar): Use NILP to test a lisp value.
737
738 * macterm.c (mac_get_emulated_btn, mac_event_to_emacs_modifiers)
739 (mac_get_mouse_btn): Use NILP and EQ to test/compare lisp values.
740 (XTread_socket): Fix int/Lisp_Object mixup.
741 (mac_check_for_quit_char): Fix pointer/Lisp_Object mixup.
742
743 * macterm.h (struct frame, struct face, struct image)
744 (display_x_get_resource, Fx_display_color_p)
745 (Fx_display_grayscale_p, Fx_display_planes, x_free_gcs):
746 Add prototypes.
747
748 2004-05-14 Kim F. Storm <storm@cua.dk>
749
750 * process.c (wait_reading_process_input): Make reentrant.
751 Make Available and Connecting non-static. Save and restore value
752 of waiting_for_user_input_p.
753
754 2004-05-13 Kim F. Storm <storm@cua.dk>
755
756 * keyboard.c (mark_kboards): Don't mark x and y members
757 that are overloaded in selection request events.
758
759 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
760
761 * lisp.h (USE_LSB_TAG): Make it the default when it is known to work.
762
763 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
764
765 * window.c (Fdisplay_buffer, Fsplit_window)
766 (split-height-threshold): Doc fix.
767
768 2004-05-13 Juanma Barranquero <lektu@terra.es>
769
770 * xfaces.c (Ftty_supports_face_attributes_p)
771 (Finternal_copy_lisp_face): Fix typo in docstring.
772 (Finternal_get_lisp_face_attribute): Fix docstring.
773
774 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
775
776 * xfns.c (syms_of_xfns): Provide x-toolkit also for GTK.
777
778 2004-05-11 Steven Tamm <steventamm@mac.com>
779
780 * macfns.c (Fx_create_frame): Default to using tool-bar by
781 setting tool-bar-lines to 1 in default-frame-alist.
782
783 2004-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
784
785 * image.c (xpm_scan, xpm_make_color_table_v, xpm_put_color_table_v)
786 (xpm_get_color_table_v, xpm_make_color_table_h)
787 (xpm_put_color_table_h, xpm_get_color_table_h)
788 (xpm_str_to_color_key, xpm_load_image, xpm_load)
789 (syms_of_image): Support XPM on Carbon Emacs. Does not
790 depend on libXpm, but only supports XPM version 3 without extensions.
791
792 2004-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
793
794 * macterm.c (x_flush, XTframe_up_to_date): Use FRAME_MAC_P
795 instead of FRAME_X_P
796
797 2004-05-11 Kim F. Storm <storm@cua.dk>
798
799 * process.c (read_process_output): Grow decoding_buf when needed;
800 this could cause a crash in allocate_string and compact_small_strings.
801
802 2004-04-29 Jim Blandy <jimb@redhat.com>
803
804 * regex.c (mutually_exclusive_p): In 'case wordbeg', compare op2
805 against proper opcode.
806
807 2004-05-10 Juanma Barranquero <lektu@terra.es>
808
809 * process.c (Fstart_process): Fix docstring.
810
811 * charset.c (Fget_unused_iso_final_char): Fix typos in docstring.
812 (Fchar_bytes, Fchar_width, Fstring_width, Fchar_direction)
813 (Fsplit_char, Fchar_charset): Make argument names match their use
814 in docstring.
815
816 2004-05-10 Richard M. Stallman <rms@gnu.org>
817
818 * print.c (print_preprocess): Use being_printed, loop_count and
819 halftail to detect overdeep nesting and cyclic cdr chains.
820
821 2004-05-10 Andreas Schwab <schwab@suse.de>
822
823 * lisp.h: Declare Fmake_symbolic_link.
824
825 * fileio.c (Frename_file): Remove extra argument in call to
826 Fmake_symbolic_link.
827
828 2004-05-10 Kim F. Storm <storm@cua.dk>
829
830 * xdisp.c (calc_line_height_property): Use string position when
831 object is a string.
832
833 2004-05-10 Kenichi Handa <handa@m17n.org>
834
835 * print.c (temp_output_buffer_setup): Bind inhibit-read-only and
836 inhibit-modification-hooks to t temporarily before calling
837 Ferase_buffer.
838
839 * xfns.c (x_create_tip_frame): Bind inhibit-read-only and
840 inhibit-modification-hooks to t temporarily before calling
841 Ferase_buffer.
842
843 * w32fns.c (x_create_tip_frame): Bind inhibit-read-only and
844 inhibit-modification-hooks to t temporarily before calling
845 Ferase_buffer.
846
847 * fns.c (count_combining): Delete it.
848 (concat): Don't check combining bytes.
849
850 2004-05-09 Jason Rumney <jasonr@gnu.org>
851
852 * w32fns.c (Vw32_ansi_code_page): New Lisp variable.
853 (globals_of_w32fns): Set it.
854
855 2004-05-09 Piet van Oostrum <piet@cs.uu.nl> (tiny change)
856
857 * data.c (Fquo): Simplify.
858
859 2004-05-08 Peter Whaite <emacs@whaite.ca> (tiny change)
860
861 * data.c (Fquo): If any argument is float, do the computation in
862 floating point.
863
864 2004-05-08 Juanma Barranquero <lektu@terra.es>
865
866 * process.c (Fwaiting_for_user_input_p, Fmake_network_process)
867 (Fset_process_query_on_exit_flag, Vprocess_adaptive_read_buffering):
868 Fix spelling of Emacs on docstring.
869 (Fset_process_coding_system, Fprocess_coding_system)
870 (Fset_process_filter_multibyte, Fprocess_filter_multibyte_p):
871 Make argument names match their use in docstring.
872 (Fprocess_id, Fprocess_query_on_exit_flag, Finterrupt_process):
873 Fix docstring.
874
875 * editfns.c (Finsert_buffer_substring): Make argument names match their
876 use in docstring.
877
878 * syntax.c (Fmodify_syntax_entry): Fix docstring.
879
880 2004-05-07 Steven Tamm <steventamm@mac.com>
881
882 * macterm.c (mac_check_for_quit_char): Adding BLOCK_INPUT
883 around call to ReceiveEvent to avoid certain crashes.
884
885 2004-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
886
887 * macterm.c (mac_draw_line_to_pixmap, XCreatePixmapFromBitmapData)
888 (mac_fill_rectangle_to_pixmap, mac_draw_rectangle_to_pixmap)
889 (mac_copy_area_to_pixmap, mac_copy_area_with_mask_to_pixmap):
890 Save/restore the current graphics port and device handle when
891 drawing into an offscreen graphics world.
892
893 * image.c [MAC_OS] (XPutPixel, XGetPixel, image_load_qt_1)
894 (gif_load): Likewise.
895
896 2004-05-07 Juanma Barranquero <lektu@terra.es>
897
898 * window.c (Fset_window_buffer): Fix docstring.
899
900 2004-05-06 Thien-Thi Nguyen <ttn@gnu.org>
901
902 * emacs.c (main) [VMS]: Fix var ref.
903
904 2004-05-06 Romain Francoise <romain@orebokech.com> (tiny change)
905
906 * data.c (Fsetq_default): Fix docstring.
907
908 2004-05-06 Jason Rumney <jasonr@gnu.org>
909
910 * image.c (Display) [HAVE_NTGUI]: Redefine while loading xpm.h
911 to avoid name clash.
912
913 2004-05-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
914
915 * fileio.c (barf_or_query_if_file_exists): Use lstat.
916 (Frename_file): Handle renaming of symlinks across file systems.
917 (Frename_file): Put symlink handling inside #ifdef S_IFLNK.
918
919 2004-05-04 Kim F. Storm <storm@cua.dk>
920
921 * xdisp.c (Qtotal): New var.
922 (syms_of_xdisp): Intern and staticpro it.
923 (calc_line_height_property): New arg total. Set it if
924 line-spacing property has format (total . VALUE).
925 (x_produce_glyphs): Ignore line-spacing if line-height is 0.
926 Handle total line-spacing property.
927
928 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
929
930 * gtkutil.c (xg_update_scrollbar_pos): Call XClearWindow to clear
931 "under" scroll bar when size/position changes.
932
933 2004-05-03 Jason Rumney <jasonr@gnu.org>
934
935 * makefile.nt: Remove.
936
937 2004-05-02 Eli Zaretskii <eliz@gnu.org>
938
939 * syntax.h (SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY_INT):
940 Avoid compiler warnings.
941
942 * Makefile.in (region-cache.o): Depend on config.h.
943
944 2004-05-02 Romain Francoise <romain@orebokech.com> (tiny change)
945
946 * indent.c (compute_motion): Save vpos in prev_vpos when dealing
947 with continuation lines, too.
948
949 2004-05-02 Thien-Thi Nguyen <ttn@gnu.org>
950
951 * syssignal.h (init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
952
953 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
954
955 * xdisp.c (calc_line_height_property): YAILOM (yet another
956 int/Lisp_Object mixup).
957
958 2004-05-01 Eli Zaretskii <eliz@gnu.org>
959
960 * msdos.c (top-level): Add "#pragma pack(0)" after <dir.h>, to
961 undo bad effect of pack(4) in some versions of system headers.
962
963 2004-05-01 Jason Rumney <jasonr@gnu.org>
964
965 * w32term.c (x_draw_hollow_cursor): Sync with xterm.c
966
967 2004-04-30 Kim F. Storm <storm@cua.dk>
968
969 * buffer.c (syms_of_buffer) <line-spacing>: Allow float value.
970 (syms_of_buffer) <cursor-type>: Doc fix.
971
972 * dispextern.h (struct it): Remove member use_default_face.
973 Add members override_ascent, override_descent, override_boff.
974
975 * xdisp.c (init_iterator): Handle line-spacing float value.
976 Initialize override_ascent member.
977 (append_space_for_newline): Reset override_ascent.
978 Remove use_default_face.
979 (calc_line_height_property): New function to calculate value of
980 line-height and line-spacing properties. Look at overlays, too.
981 Set override_ascent, override_descent, override_boff members when
982 using another face than the current face. Float values are now
983 relative to the frame default font, by default; accept a cons
984 of ratio and face name to specify value relative to a specific face.
985 (x_produce_glyphs): Use calc_line_height_property.
986 Use override_ascent etc. when set to handle different face heights.
987 A negative line-spacing property value is interpreted as a total
988 line height, rather than inter-line spacing.
989 (note_mouse_highlight): Allocate room for 40 overlays initially.
990
991 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
992
993 * data.c (Fsubr_name): New fun.
994 (syms_of_data): Defsubr it.
995
996 2004-04-29 Kim F. Storm <storm@cua.dk>
997
998 * xdisp.c (null_glyph_slice): New var.
999 (append_glyph, append_composite_glyph, append_stretch_glyph):
1000 Use it to initialize glyph slice.
1001
1002 2004-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
1003
1004 * xdisp.c (x_produce_glyphs): Fix the proverbial int/Lisp_Object mixup.
1005 (on_hot_spot_p): Make sure we always return a value.
1006 (Flookup_image_map): Remove unused var ix and iy.
1007 (note_mode_line_or_margin_highlight): Remove unused var `image'.
1008
1009 2004-04-27 Eli Zaretskii <eliz@gnu.org>
1010
1011 * msdos.c (init_environment): If one of the TMP... environment
1012 variables is set to a drive letter without a trailing slash,
1013 append a slash.
1014
1015 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
1016
1017 * editfns.c (lisp_time_argument): Provide externally.
1018
1019 * fileio.c (Fset_file_times): New function.
1020 (syms_of_fileio): Intern and staticpro it.
1021
1022 2004-04-27 Kim F. Storm <storm@cua.dk>
1023
1024 * xdisp.c (x_produce_glyphs): Fix last change; handle newline in
1025 header line strings.
1026
1027 * dispextern.h (struct it): New member use_default_face.
1028
1029 * xdisp.c (Qline_height): New variable.
1030 (syms_of_xdisp): Intern and staticpro it.
1031 (append_space_for_newline): Partially undo 2004-04-25 change;
1032 add default_face_p arg, and restore callers.
1033 Clear it->use_default_face after use.
1034 (x_produce_glyphs): Set default font for ascii char if
1035 it->use_default_font is set. Change line-spacing property to set
1036 just extra line spacing. Handle new line-height property.
1037
1038 2004-04-26 Andreas Schwab <schwab@suse.de>
1039
1040 * print.c (print_object): Print non-ascii characters in bool
1041 vector representation as octal escapes.
1042
1043 * lisp.h (BOOL_VECTOR_BITS_PER_CHAR): Define.
1044 * print.c (print_object): Use it instead of BITS_PER_CHAR for
1045 bool vectors.
1046 * lread.c (read1): Likewise.
1047 * alloc.c (Fmake_bool_vector): Likewise.
1048 * data.c (Faref, Faset): Likewise.
1049 * fns.c (Fcopy_sequence, concat, internal_equal, Ffillarray)
1050 (mapcar1): Likewise.
1051
1052 2004-04-26 Steven Tamm <tamm@Steven-Tamms-Computer.local>
1053
1054 * lread.c (init_lread): Fixing typo HAVE_CARBON test logic
1055
1056 2004-04-26 Miles Bader <miles@gnu.org>
1057
1058 * lisp.h (CYCLE_CHECK): Macro moved from xfaces.c.
1059
1060 2004-04-26 Juanma Barranquero <lektu@terra.es>
1061
1062 * buffer.c (Fpop_to_buffer): Fix docstring.
1063
1064 2004-04-26 Steven Tamm <steventamm@mac.com>
1065
1066 * lread.c (init_lread): Don't display missing lisp directory
1067 warnings with Carbon Emacs because self-contained bundled Emacs
1068 may be built without correct installation path.
1069
1070 2004-04-25 Kim F. Storm <storm@cua.dk>
1071
1072 * macterm.c (x_draw_hollow_cursor): Fix height of box for narrow lines.
1073
1074 * xterm.c (x_draw_hollow_cursor): Fix height of box for narrow lines.
1075
1076 * xdisp.c (append_space_for_newline): Rename from append_space.
1077 Remove DEFAULT_FACE_P arg; always use current face. Callers changed.
1078 (x_produce_glyphs): Handle line-spacing property on newline char.
1079 If value is t, adjust ascent and descent to fit current row height.
1080 If value is an integer or float, set extra_line_spacing to integer
1081 value, or to float value x current line height.
1082
1083 2004-04-23 Kenichi Handa <handa@m17n.org>
1084
1085 * fontset.c (Finternal_char_font): If POSITION is nil, return
1086 font for displaying CH with the default face.
1087
1088 2004-04-23 Juanma Barranquero <lektu@terra.es>
1089
1090 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
1091
1092 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1093
1094 * lisp.h (XINT) [EXPLICIT_SIGN_EXTEND && !NO_UNION_TYPE]:
1095 Don't make assumptions about the relative place of i and val.
1096 (EQ) [!NO_UNION_TYPE]: Don't forget to check the type match as well.
1097
1098 2004-04-21 Kim F. Storm <storm@cua.dk>
1099
1100 * dispextern.h (struct glyph_slice): New struct.
1101 (struct glyph): New member slice.
1102 (GLYPH_SLICE_EQUAL_P): New macro.
1103 (GLYPH_EQUAL_P): Use it.
1104 (struct glyph_string): New member slice.
1105 (struct it_slice): New struct.
1106 (struct it): New member slice, add member to stack too.
1107 New member constrain_row_ascent_descent_p.
1108 (image_ascent): Add prototype.
1109
1110 * dispnew.c (buffer_posn_from_coords): Return full image width
1111 and height even for image slices (posn is relative to full image).
1112 (marginal_area_string): Adjust x0,y0 for image slice.
1113
1114 * image.c (image_ascent): Add slice arg; calculate ascent for
1115 image slice (or full image).
1116
1117 * keyboard.c (Fposn_at_x_y, Fposn_at_point): New defuns.
1118 (syms_of_keyboard): Defsubr them.
1119
1120 * lisp.h (pos_visible_p): Fix prototype.
1121
1122 * macterm.c (x_draw_relief_rect): Add top_p and bot_p args.
1123 (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
1124 (x_draw_image_foreground, x_draw_image_relief)
1125 (x_draw_image_foreground_1, x_draw_image_glyph_string):
1126 Draw sliced images.
1127
1128 * w32term.c (w32_draw_relief_rect): Add top_p and bot_p args.
1129 (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
1130 (x_draw_image_foreground, x_draw_image_relief)
1131 (w32_draw_image_foreground_1, x_draw_image_glyph_string):
1132 Draw sliced images.
1133
1134 * w32term.h (image_ascent): Remove prototype.
1135
1136 * window.c (Fpos_visible_in_window_p): Return pixel position if
1137 PARTIALLY arg is non-nil. Simplify. Doc fix.
1138 (Fwindow_vscroll, Fset_window_vscroll): Add optional PIXEL_P arg
1139 to return/set vscroll in pixels.
1140
1141 * window.h (Fwindow_vscroll, Fset_window_vscroll): Fix EXFUN.
1142
1143 * xdisp.c (Qslice): New variable.
1144 (syms_of_xdisp): Intern and staticpro it.
1145 (pos_visible_p): Return pixel position in new x and y args.
1146 (init_iterator): Reset it->slice info.
1147 (handle_display_prop): Parse (slice ...) property.
1148 (push_it, pop_it): Save/restore slice info.
1149 (make_cursor_line_fully_visible): Fix 2004-04-14 change. Do not
1150 force repositioning of tall row if window is vscrolled, as that
1151 would reset vscroll.
1152 (append_space): Set it->constrain_row_ascent_descent_p to avoid
1153 increasing row height if row is non-empty.
1154 (fill_image_glyph_string): Copy slice info.
1155 (take_vertical_position_into_account): Simplify.
1156 (produce_image_glyph): Handle iterator slice info, setup glyph
1157 slice info. Do not force minimum line height.
1158 (x_produce_glyphs): If it->constrain_row_ascent_descent_p is set,
1159 do not increase height (ascent/descent) of non-empty row when
1160 adding normal character glyph; instead reduce glyph ascent/descent
1161 appropriately; if row is higher than current glyph, adjust glyph
1162 descent/ascent to reposition glyph within the existing row.
1163 Likewise, when char is newline, only set ascent/descent if row is
1164 currently empty.
1165 (note_mouse_highlight): Handle hotspots with sliced image.
1166
1167 * xterm.c (x_draw_relief_rect): Add top_p and bot_p args.
1168 (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
1169 (x_draw_image_foreground, x_draw_image_relief)
1170 (x_draw_image_foreground_1, x_draw_image_glyph_string):
1171 Draw sliced images.
1172
1173 * xterm.h (image_ascent): Remove prototype.
1174
1175 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
1176
1177 * keymap.c (Fkey_description): Fix the usual int/Lisp_Object mixup.
1178
1179 2004-04-20 John Paul Wallington <jpw@gnu.org>
1180
1181 * fns.c (Fassoc, Feql): Fix indentation.
1182
1183 * fontset.c (regularize_fontname): Rename from regulalize_fontname.
1184
1185 2004-04-19 John Paul Wallington <jpw@gnu.org>
1186
1187 * fns.c (Feql): New function.
1188 (syms_of_fns): Defsubr it.
1189
1190 2004-04-18 Jason Rumney <jasonr@gnu.org>
1191
1192 * w32select.c (Fw32_set_clipboard_data): Get sequence number
1193 after closing the clipboard.
1194
1195 2004-04-16 Luc Teirlinck <teirllm@auburn.edu>
1196
1197 * buffer.c (Fbuffer_base_buffer): Doc fix.
1198
1199 2004-04-17 Kim F. Storm <storm@cua.dk>
1200
1201 * keymap.c (Fkey_description): Add optional PREFIX arg.
1202 Combine prefix with KEYS to make up the full key sequence to describe.
1203 Correlate meta_prefix_char and following (simple) key to describe
1204 as meta modifier. All callers changed.
1205 (describe_map): Rename arg `keys' to `prefix'. Remove local
1206 `elt_prefix' var. Use Fkey_description with prefix instead of
1207 elt_prefix combined with Fsingle_key_description.
1208 (describe_vector): Declare static. Replace arg `elt_prefix' with
1209 `prefix'. Add KEYMAP_P arg. Add local var `elt_prefix'; use it
1210 if !KEYMAP_P. Use Fkey_description with prefix instead of
1211 Fsingle_key_description.
1212
1213 * keymap.h (Fkey_description): Fix prototype.
1214 (describe_vector): Remove prototype.
1215
1216 * xdisp.c (update_overlay_arrows): Fix handling of up_to_date < 0.
1217
1218 * image.c (PNG_BG_COLOR_SHIFT): Remove.
1219 (png_load): Fix calculation of transparent background color on X
1220 and W32 platforms.
1221
1222 2004-04-16 Juanma Barranquero <lektu@terra.es>
1223
1224 * xdisp.c (try_scrolling): Make sure `scroll-conservatively' is
1225 not too large before computing how much to scroll.
1226
1227 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
1228
1229 * dired.c (Ffile_attributes): Don't pass extra nil arg to file-handler.
1230
1231 2004-04-14 Luc Teirlinck <teirllm@auburn.edu>
1232
1233 * fileio.c (Fverify_visited_file_modtime, Fvisited_file_modtime):
1234 Add hyperlink to Elisp manual to the docstring.
1235
1236 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
1237
1238 * callint.c (fix_command): Use XDCR.
1239
1240 2004-04-14 Nick Roberts <nick@nick.uklinux.net>
1241
1242 * window.c (Fget_lru_window): Doc fix.
1243
1244 2004-04-14 Kim F. Storm <storm@cua.dk>
1245
1246 * editfns.c (Fformat): Fix allocation size of precision array.
1247
1248 * dispnew.c (update_window): Only set changed_p if
1249 scrolling_window actually did scroll.
1250 (scrolling_window): Only return 1 if we actually did scroll.
1251
1252 * xdisp.c (get_glyph_string_clip_rect): Fix reduction of cursor
1253 height to glyph height when cursor row is not fully visible.
1254 (make_cursor_line_fully_visible): Add FORCE_P arg to return
1255 failure in case row is higher than window. Callers changed.
1256 (try_scrolling): Fix loop in scrolling if last_line_misfit (from Gerd).
1257 Try to scroll partially visible, higher-than-window cursor row.
1258 (redisplay_window): Always try to scroll partially visible,
1259 higher-than-window cursor row - both initially and again with
1260 centering_position = 0.
1261 Clear desired matrix before retrying with centering_position = 0.
1262
1263 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
1264
1265 * syntax.c (scan_lists): Simplify backward string scan.
1266 Fix off-by-one boundary check for string and comment fences.
1267
1268 2004-04-13 Joe Buehler <jbuehler@hekimian.com>
1269
1270 * sheap.c, unexcw.c: New files.
1271
1272 2004-04-12 Luc Teirlinck <teirllm@auburn.edu>
1273
1274 * buffer.c (Fmake_indirect_buffer): Throw an error if the intended
1275 base buffer has been killed. Correct the error message if the
1276 base buffer does not exist.
1277
1278 2004-04-12 Joe Buehler <jbuehler@hekimian.com>
1279
1280 * s/cygwin.h: Changes for Cygwin unexec() support, changes in
1281 Cygwin itself. Add support for Xaw3d scrollbars.
1282
1283 * puresize.h: Set up PURE_P() for Cygwin unexec() support.
1284
1285 * lastfile.c: Define my_endbss[] for Cygwin unexec() support.
1286
1287 * gmalloc.c (__default_morecore): Use bss_sbrk(), not __sbrk(),
1288 before Cygwin unexec.
1289
1290 * Makefile.in: Link changes for Cygwin unexec() support.
1291
1292 2004-04-12 Andreas Schwab <schwab@suse.de>
1293
1294 * buffer.c (Fmake_indirect_buffer): Check that NAME is a string.
1295
1296 2004-04-11 Luc Teirlinck <teirllm@auburn.edu>
1297
1298 * buffer.c (Fgenerate_new_buffer_name): Return NAME argument if
1299 IGNORE argument equals NAME. Doc fix.
1300
1301 2004-04-11 Masatake YAMATO <jet@gyve.org>
1302
1303 * buffer.c (fix_start_end_in_overlays): Make overlays
1304 empty if they are backwards.
1305
1306 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1307
1308 * xfaces.c (face_color_supported_p): Fix compilation without X11.
1309
1310 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
1311
1312 * doc.c (Fsnarf_documentation): Ignore new file name entries.
1313
1314 2004-04-06 Kim F. Storm <storm@cua.dk>
1315
1316 * msdos.c (clear_mouse_face): Only clear mouse highlight if not hidden.
1317 (dos_rawgetc): Set mouse_face_hidden after clearing highlight.
1318
1319 * w32term.c (w32_read_socket): Set mouse_face_hidden after
1320 clearing highlight.
1321
1322 * xdisp.c (clear_mouse_face): Only clear mouse highlight if not hidden.
1323
1324 * xterm.c (handle_one_xevent): Set mouse_face_hidden after
1325 clearing highlight.
1326
1327 * indent.c (vmotion): Do not reserve one column for continuation
1328 marks on window frames.
1329
1330 2004-04-04 Eli Zaretskii <eliz@gnu.org>
1331
1332 * charset.h (SINGLE_BYTE_CHAR_P): Fix macro to avoid warnings
1333 from GCC.
1334
1335 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1336
1337 * .gdbinit-union: Remove.
1338
1339 * .gdbinit: Make it work for USE_LSB_TAG and !NO_LISP_UNION.
1340 (xgetptr, xgetint, xgettype): New funs. Use them everywhere.
1341 ($nonvalbits): Remove.
1342 ($valmask): Set it by calling xreload to avoid redundancy.
1343
1344 * emacs.c (gdb_use_union, gdb_use_lsb): New vars.
1345 (gdb_emacs_intbits): Remove.
1346
1347 2004-03-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1348
1349 * data.c (Fbyteorder): Make test work even if unsigned is not 4 bytes.
1350
1351 2004-03-30 Kenichi Handa <handa@m17n.org>
1352
1353 * editfns.c (Fformat): Fix initialization of the array info.
1354
1355 2004-03-30 Kim F. Storm <storm@cua.dk>
1356
1357 * xterm.c (x_mouse_click_focus_ignore_position): New var.
1358 (syms_of_xterm): DEFVAR_BOOL it.
1359 (ignore_next_mouse_click_timeout): New var.
1360 (handle_one_xevent): Clear it on KeyPress, set it on EnterNotify.
1361 Use it to filter mouse clicks following focus event.
1362
1363 2004-03-29 David Ponce <david@dponce.com>
1364
1365 * callint.c (Fcall_interactively): Fix last change.
1366
1367 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
1368
1369 * eval.c (Fcommandp): Simplify.
1370
1371 * data.c (Finteractive_form): Rename from Fsubr_interactive_form.
1372 Extend to handle all kinds of functions.
1373
1374 * lisp.h (Finteractive_form): Declare.
1375
1376 * callint.c (Fcall_interactively): Use it.
1377
1378 2004-03-26 Kim F. Storm <storm@cua.dk>
1379
1380 * xdisp.c (syms_of_xdisp): Include `void-variable' in list_of_error
1381 to catch errors in calc_pixel_width_or_height during redisplay.
1382
1383 2004-03-26 Masatake YAMATO <jet@gyve.org>
1384
1385 * buffer.c (fix_start_end_in_overlays): Rename fix_overlays_in_range.
1386
1387 * lisp.h (fix_start_end_in_overlays): Likewise.
1388
1389 * insdel.c (adjust_markers_for_insert): Call fix_start_end_in_overlays.
1390
1391 * editfns.c (Ftranspose_regions): Likewise.
1392
1393 2004-03-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1394
1395 * xterm.c (handle_one_xevent): Do not pass key press events to GTK.
1396
1397 2004-03-19 Richard M. Stallman <rms@gnu.org>
1398
1399 * s/sol2-6.h: Delete previous change.
1400
1401 2004-03-19 Kim F. Storm <storm@cua.dk>
1402
1403 * xdisp.c (move_it_in_display_line_to): Fix MOVE_TO_POS case when
1404 to_charpos corresponds to newline in right fringe. Use local
1405 BUFFER_POS_REACHED_P macro.
1406
1407 2004-03-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1408
1409 * xdisp.c (calc_pixel_width_or_height): Add ifdef HAVE_WINDOW_SYSTEM
1410 to compile on non-window system.
1411
1412 2004-03-19 Kim F. Storm <storm@cua.dk>
1413
1414 * dispextern.h (calc_pixel_width_or_height): Add prototype.
1415
1416 * image.c (Qcenter): Move to xdisp.c.
1417
1418 * xdisp.c (Qcenter): Declare here.
1419 (syms_of_xdisp): Intern and staticpro it.
1420 (handle_single_display_prop): Allow space display property on all
1421 platforms.
1422 (display_mode_line): Set mode_line_p before displaying line.
1423 (calc_pixel_width_or_height): Declare extern. Add separate :align-to
1424 handling. Remove complex cases for fringes and scroll-bars.
1425 Add left, right, and center alignment positions. Add text (area)
1426 width/height. Return width or height for image specs.
1427 (produce_stretch_glyph): Improve handling of :align-to. Is now
1428 relative to left of text area by default, but other base offsets
1429 can be specified -- also for text lines.
1430
1431 * term.c (produce_glyphs): Handle IT_STRETCH.
1432 (produce_stretch_glyph): New function to handle space width and
1433 align-to display properties on non-window systems.
1434
1435 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
1436
1437 * fileio.c (Fread_file_name): Set completion-ignore-case for
1438 case-insensitive systems.
1439
1440 2004-03-14 Masatake YAMATO <jet@gyve.org>
1441
1442 * xdisp.c (note_mode_line_or_margin_highlight): Accept HEADER_LINE
1443 when keymap and cursor are setup.
1444
1445 2004-03-14 Steven Tamm <steventamm@mac.com>
1446
1447 * Makefile.in (XMENU_OBJ) [HAVE_CARBON]: Do not include xmenu.o.
1448
1449 2004-03-14 Kim F. Storm <storm@cua.dk>
1450
1451 * dispextern.h (x_find_image_file): Add prototype.
1452
1453 * image.c (x_find_image_file): Make extern.
1454
1455 * xfns.c (x_find_image_file): Remove prototype.
1456
1457 2004-03-13 Eli Zaretskii <eliz@gnu.org>
1458
1459 * Makefile.in (XMENU_OBJ): Include xmenu.o if HAVE_MENUS is defined.
1460
1461 * emacs.c (main): Call syms_of_xmenu only if HAVE_MENUS is defined.
1462
1463 2004-03-12 Richard M. Stallman <rms@gnu.org>
1464
1465 * fns.c (internal_equal): New arg PROPS controls comparing
1466 text properties. All callers changed.
1467 (Fequal_including_properties): New function.
1468 (syms_of_fns): defsubr it.
1469
1470 2004-03-12 Kim F. Storm <storm@cua.dk>
1471
1472 Fix image support on MAC. From YAMAMOTO Mitsuharu.
1473
1474 * dispextern.h (XImagePtr, XImagePtr_or_DC): Add typedefs.
1475 (image_background, image_background_transparent): Fix prototypes.
1476
1477 * image.c (XImagePtr, XImagePtr_or_DC): Move typedefs to dispextern.h.
1478
1479 * macfns.c (x_list_fonts, x_get_font_info, x_load_font)
1480 (x_query_font, x_find_ccl_program, x_set_window_size)
1481 (x_make_frame_visible, mac_initialize, XCreatePixmap)
1482 (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
1483 (mac_draw_line_to_pixmap): Move prototypes to macterm.h.
1484
1485 * macterm.h (x_list_fonts, x_get_font_info, x_load_font)
1486 (x_query_font, x_find_ccl_program, x_set_window_size)
1487 (x_make_frame_visible, mac_initialize, XCreatePixmap)
1488 (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
1489 (mac_draw_line_to_pixmap): Add prototypes.
1490
1491 2004-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1492
1493 * macterm.c (XTread_socket): Fix mouse click on tool bar.
1494
1495 2004-03-11 Kim F. Storm <storm@cua.dk>
1496
1497 * dispextern.h: Move image related prototypes from xfns.c section
1498 to image.c. Condition them by HAVE_WINDOW_SYSTEM rather than
1499 HAVE_X_WINDOWS.
1500
1501 * Makefile.in (XOBJ): Consolidate into one list. Add image.o.
1502 Move gtkutil.o to new GTK_OBJ list.
1503 (XMENU_OBJ) [HAVE_MENUS]: Move declaration to proper place.
1504 (GTK_OBJ) [USE_GTK]: New declaration.
1505 (obj): Add $(GTK_OBJ) to list.
1506
1507 2004-03-11 Steven Tamm <steventamm@mac.com>
1508
1509 * image.c [MAC_OSX]: Include sys/stat.h
1510
1511 * macfns.c (syms_of_macfns): Remove definitions of things now
1512 defined in image.c
1513
1514 2004-03-11 Kim F. Storm <storm@cua.dk>
1515
1516 The following changes consolidates the identical/similar image
1517 support code previously found in xfns.c, w32fns.c, and macfns.c
1518 into a new file image.c.
1519
1520 * makefile.w32-in (OBJ1): Add image.o.
1521 ($(BLD)/image.$(O)): Add dependencies.
1522
1523 * Makefile.in (XOBJ, MAC_OBJ): Add image.o.
1524 (image.o): Add dependencies.
1525
1526 * image.c: New file with consolidated image support code.
1527 (COLOR_TABLE_SUPPORT): New define to control whether
1528 color table support is available (X only).
1529 (Bitmap_Record): Common name for x_bitmap_record,
1530 w32_bitmap_record, and mac_bitmap_record.
1531 (XImagePtr): Common name for pointer to XImage or equivalent.
1532 (XImagePtr_or_DC): New type to simplify code sharing; equivalent
1533 to XImagePtr on X+MAC, and to HDC on W32.
1534 (GET_PIXEL): Wrapper for XGetPixel or equivalent.
1535 (NO_PIXMAP): Common name for "None" or equivalent.
1536 (PNG_BG_COLOR_SHIFT): Bits to shift PNG background colors.
1537 (RGB_PIXEL_COLOR): Common type for an integer "pixel color" value.
1538 (PIX_MASK_RETAIN, PIX_MASK_DRAW): Portability macros (from macfns.c).
1539 (FRAME_X_VISUAL, x_defined_color, DefaultDepthOfScreen):
1540 Define with suitable equivalents on W32 and MAC for code sharing.
1541 (XDrawLine): Define on MAC for code sharing.
1542 (Destroy_Image, Free_Pixmap): Wrappers for code sharing.
1543 (IF_LIB_AVAILABLE): Macro to simplify code sharing.
1544 (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
1545 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
1546 (x_reference_bitmap, x_create_bitmap_from_data)
1547 (x_create_bitmap_from_file, x_destroy_bitmap)
1548 (x_destroy_all_bitmaps, x_create_bitmap_mask)
1549 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
1550 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
1551 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
1552 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
1553 (define_image_type, lookup_image_type, valid_image_p)
1554 (image_error, enum image_value_type, struct image_keyword)
1555 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
1556 (make_image, free_image, prepare_image_for_display, image_ascent)
1557 (four_corners_best, image_background, image_background_transparent)
1558 (x_clear_image_1, x_clear_image, x_alloc_image_color)
1559 (make_image_cache, free_image_cache, clear_image_cache)
1560 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
1561 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
1562 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
1563 (find_image_fsspec, image_load_qt_1, image_load_quicktime)
1564 (init_image_func_pointer, image_load_quartz2d)
1565 (struct ct_color, init_color_table, free_color_table)
1566 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
1567 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
1568 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
1569 (x_disable_image, x_build_heuristic_mask)
1570 (XBM support, XPM support, PBM support, PNG support, JPEG support)
1571 (TIFF support, GIF support, Ghostscript support): Consolidate image
1572 code from xfns.c, w32fns.c, and macfns.c.
1573 (syms_of_image): Consolidate image related symbol setup here.
1574 (init_image): Consolidate image related initializations here.
1575
1576 * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Add calls to syms_of_image
1577 and init_image. Remove call to init_xfns.
1578
1579 * macterm.h (struct mac_bitmap_record): Add file member.
1580 Not currently used, but simplifies code sharing.
1581
1582 * macfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
1583 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
1584 (x_reference_bitmap, x_create_bitmap_from_data)
1585 (x_create_bitmap_from_file, x_destroy_bitmap)
1586 (x_destroy_all_bitmaps, x_create_bitmap_mask)
1587 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
1588 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
1589 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
1590 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
1591 (define_image_type, lookup_image_type, valid_image_p)
1592 (image_error, enum image_value_type, struct image_keyword)
1593 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
1594 (make_image, free_image, prepare_image_for_display, image_ascent)
1595 (four_corners_best, image_background, image_background_transparent)
1596 (x_clear_image_1, x_clear_image, x_alloc_image_color)
1597 (make_image_cache, free_image_cache, clear_image_cache)
1598 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
1599 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
1600 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
1601 (find_image_fsspec, image_load_qt_1, image_load_quicktime)
1602 (init_image_func_pointer, image_load_quartz2d)
1603 (struct ct_color, init_color_table, free_color_table)
1604 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
1605 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
1606 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
1607 (x_disable_image, x_build_heuristic_mask)
1608 (XBM support, XPM support, PBM support, PNG support, JPEG support)
1609 (TIFF support, GIF support, Ghostscript support): Merge with image
1610 code from xfns.c and macfns.c into image.c.
1611 (syms_of_xfns): Move image related symbols to image.c.
1612 (init_external_image_libraries, init_xfns): Remove; initialization
1613 moved to init_image in image.c.
1614
1615 * w32fns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
1616 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
1617 (x_reference_bitmap, x_create_bitmap_from_data)
1618 (x_create_bitmap_from_file, x_destroy_bitmap)
1619 (x_destroy_all_bitmaps, x_create_bitmap_mask)
1620 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
1621 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
1622 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
1623 (define_image_type, lookup_image_type, valid_image_p)
1624 (image_error, enum image_value_type, struct image_keyword)
1625 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
1626 (make_image, free_image, prepare_image_for_display, image_ascent)
1627 (four_corners_best, image_background, image_background_transparent)
1628 (x_clear_image_1, x_clear_image, x_alloc_image_color)
1629 (make_image_cache, free_image_cache, clear_image_cache)
1630 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
1631 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
1632 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
1633 (struct ct_color, init_color_table, free_color_table)
1634 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
1635 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
1636 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
1637 (x_disable_image, x_build_heuristic_mask)
1638 (XBM support, XPM support, PBM support, PNG support, JPEG support)
1639 (TIFF support, GIF support, Ghostscript support): Merge with image
1640 code from xfns.c and macfns.c into image.c.
1641 (syms_of_xfns): Move image related symbols to image.c.
1642 (init_external_image_libraries, init_xfns): Remove; initialization
1643 moved to init_image in image.c.
1644
1645 * xfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
1646 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
1647 (x_reference_bitmap, x_create_bitmap_from_data)
1648 (x_create_bitmap_from_file, x_destroy_bitmap)
1649 (x_destroy_all_bitmaps, x_create_bitmap_mask)
1650 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
1651 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
1652 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
1653 (define_image_type, lookup_image_type, valid_image_p)
1654 (image_error, enum image_value_type, struct image_keyword)
1655 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
1656 (make_image, free_image, prepare_image_for_display, image_ascent)
1657 (four_corners_best, image_background, image_background_transparent)
1658 (x_clear_image_1, x_clear_image, x_alloc_image_color)
1659 (make_image_cache, free_image_cache, clear_image_cache)
1660 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
1661 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
1662 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
1663 (struct ct_color, init_color_table, free_color_table)
1664 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
1665 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
1666 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
1667 (x_disable_image, x_build_heuristic_mask)
1668 (XBM support, XPM support, PBM support, PNG support, JPEG support)
1669 (TIFF support, GIF support, Ghostscript support): Merge with
1670 w32fns.c and macfns.c image code into image.c.
1671 (syms_of_xfns): Move image related symbols to image.c.
1672 (init_xfns): Remove; initialization moved to init_image in image.c.
1673
1674 * lisp.h (syms_of_image, init_image): Add protoypes.
1675 (init_xfns): Remove prototype.
1676
1677 * dispextern.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
1678 (x_reference_bitmap, x_create_bitmap_from_data)
1679 (x_create_bitmap_from_file, x_destroy_bitmap)
1680 (x_create_bitmap_mask): Move prototypes from dispextern.h.
1681 (gamma_correct) [MAC_OS]: Add prototype.
1682
1683 * xterm.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
1684 (x_reference_bitmap, x_create_bitmap_from_data)
1685 (x_create_bitmap_from_file, x_destroy_bitmap)
1686 (x_create_bitmap_mask): Move prototypes to dispextern.h.
1687
1688 2004-03-09 Kenichi Handa <handa@etlken2>
1689
1690 * coding.c (decode_coding_emacs_mule): Handle insufficent source
1691 correctly.
1692
1693 2004-03-04 Richard M. Stallman <rms@gnu.org>
1694
1695 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS): New definition.
1696
1697 * window.c (Fdisplay_buffer): Doc fix.
1698
1699 * buffer.c (Fpop_to_buffer): Doc fix.
1700
1701 2004-03-03 Kim F. Storm <storm@cua.dk>
1702
1703 * xdisp.c (display_line): Fix call to get_overlay_arrow_glyph_row.
1704
1705 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
1706
1707 * editfns.c (Ftranslate_region): Lisp_Object/int mixup.
1708
1709 2004-03-02 Richard M. Stallman <rms@gnu.org>
1710
1711 * indent.c (compute_motion): Save vpos in prev_vpos, like hpos etc.
1712
1713 2004-03-02 Kenichi Handa <handa@m17n.org>
1714
1715 * doc.c (Fsubstitute_command_keys): Fix counding bytes.
1716
1717 2004-03-02 Kim F. Storm <storm@cua.dk>
1718
1719 * window.h (struct window): New member overlay_arrow_bitmap.
1720
1721 * window.c (make_window): Initialize overlay_arrow_bitmap.
1722
1723 * xdisp.c (Voverlay_arrow_variable_list): New variable to properly
1724 implement and integrate multiple overlay arrows with redisplay.
1725 (syms_of_xdisp): DEFVAR_LISP and initialize it.
1726 (last_arrow_position, last_arrow_string): Replace by properties.
1727 (Qlast_arrow_position, Qlast_arrow_string)
1728 (Qoverlay_arrow_string, Qoverlay_arrow_bitmap): New variables.
1729 (syms_of_xdisp): Intern and staticpro them.
1730 (overlay_arrow_string_or_property, update_overlay_arrows)
1731 (overlay_arrow_in_current_buffer_p, overlay_arrows_changed_p)
1732 (overlay_arrow_at_row): New functions for multiple overlay arrows.
1733 (redisplay_internal): Use them instead of directly accessing
1734 Voverlay_arrow_position etc. for multiple overlay arrows.
1735 (mark_window_display_accurate): Use update_overlay_arrows.
1736 (try_cursor_movement): Use overlay_arrow_in_current_buffer_p.
1737 (try_window_id): Use overlay_arrows_changed_p.
1738 (get_overlay_arrow_glyph_row): Add overlay_arrow_string arg.
1739 (display_line): Use overlay_arrow_at_row to check multiple
1740 overlay arrows, and get relevant overlay-arrow-string and
1741 overlay-arrow-bitmap. Set w->overlay_arrow_bitmap accordingly.
1742 (produce_image_glyph): Set pixel_width = 0 for fringe bitmap.
1743 (syms_of_xdisp): Remove last_arrow_position and last_arrow_string.
1744
1745 * fringe.c (draw_fringe_bitmap): Use w->overlay_arrow_bitmap if set.
1746 (update_window_fringes): Remove unused code.
1747
1748 2004-03-01 Jason Rumney <jasonr@gnu.org>
1749
1750 * w32term.c (w32_read_socket): Fix last change to ButtonPress handling.
1751
1752 2004-03-01 Juanma Barranquero <lektu@terra.es>
1753
1754 * fringe.c (Fdefine_fringe_bitmap): Fix typo in docstring.
1755
1756 * makefile.w32-in ($(BLD)/fringe.$(O)): Add dependencies.
1757
1758 2004-03-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1759
1760 * xfns.c (Fx_display_color_cells): Use number of planes to calculate
1761 how many colors can be displayed.
1762
1763 2004-03-01 Kenichi Handa <handa@m17n.org>
1764
1765 * editfns.c (Ftranslate_region): Handle multibyte chars in TABLE
1766 correctly.
1767
1768 2004-02-28 Kim F. Storm <storm@cua.dk>
1769
1770 * dispnew.c (update_window): Update header line also if there are
1771 no other changes in window (move code after set_cursor label).
1772
1773 * lisp.h (mark_window_display_accurate): Remove prototype.
1774
1775 * window.c (window_loop, Fforce_window_update): Force mode line
1776 updates by setting prevent_redisplay_optimizations_p and
1777 update_mode_lines.
1778
1779 2004-02-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1780
1781 * xfns.c (x_window): Fix indentation.
1782
1783 * xterm.c (x_calc_absolute_position): Call x_real_positions
1784 to get WM window sizes and use those to calculate position.
1785 (x_set_offset): Remove code commented out.
1786
1787 2004-02-28 Miles Bader <miles@gnu.org>
1788
1789 * keyboard.c (adjust_point_for_property): #ifdef-out dodgy xassert.
1790
1791 2004-02-28 Kim F. Storm <storm@cua.dk>
1792
1793 * keyboard.c (kbd_buffer_store_event_hold): New function to store
1794 an event into kbd fifo, but with special handling of quit event;
1795 a quit event is saved for later, and further events are discarded
1796 until the saved quit event has been processed.
1797 (kbd_buffer_store_event): Use kbd_buffer_store_event_hold.
1798 (gen_help_event): Store help event in kbd fifo.
1799 (NREAD_INPUT_EVENTS): Remove.
1800 (read_avail_input): Adapt to new read_socket_hook interface.
1801 Remove allocation and initialization of local input_event buffer,
1802 as read_socket_hook stores events directly in fifo. Allocate and
1803 initialize local hold_quit event to handle postponed quit event
1804 (and store it if set by kbd_buffer_store_event_hold).
1805
1806 * keyboard.h (kbd_buffer_store_event_hold): Add prototype.
1807 (gen_help_event): Fix prototype.
1808
1809 * macterm.c (XTread_socket): Remove bufp_r and
1810 numcharsp args. Add hold_quit arg.
1811 Rework to use just one, local, inev input_event. Store inev
1812 directly in fifo using kbd_buffer_store_event_hold.
1813
1814 * sysdep.c (BUFFER_SIZE_FACTOR): Remove.
1815 (read_input_waiting): Adapt to new read_socket_hook interface.
1816 Remove allocation and initialization of local input_event buffer,
1817 as read_socket_hook stores events directly in fifo. Allocate and
1818 initialize local hold_quit event to handle postponed quit event
1819 (and store it if set by kbd_buffer_store_event_hold).
1820
1821 * term.c (read_socket_hook): Fix arg list.
1822
1823 * termhooks.h (read_socket_hook): Fix prototype.
1824
1825 * w32inevt.c (w32_console_read_socket): Remove bufp_r and
1826 numcharsp args. Add hold_quit arg.
1827 Rework to use just one, local, inev input_event. Store inev
1828 directly in fifo using kbd_buffer_store_event_hold.
1829
1830 * w32inevt.h (w32_console_mouse_position): Fix prototype.
1831
1832 * w32term.c (w32_read_socket): Remove bufp_r and numcharsp args.
1833 Add hold_quit arg. Rework to use just one, local, inev
1834 input_event. Store inev directly in fifo using
1835 kbd_buffer_store_event_hold. Update count in one place.
1836 Postpone call to gen_help_event until inev is stored; use new
1837 local do_help for this.
1838 Remove local emacs_event in handing of ButtonPress event; just use
1839 inev instead (so no reason to copy it later).
1840
1841 * xsmfns.c (x_session_check_input): Remove numchars arg.
1842
1843 * xterm.c (x_focus_changed, x_detect_focus_change):
1844 Remove numchars arg. Always store event into bufp arg.
1845 Return nothing. Callers changed accordingly.
1846 (glyph_rect): Simplify.
1847 (STORE_KEYSYM_FOR_DEBUG): New macro.
1848 (SET_SAVED_MENU_EVENT): Use inev instead of bufp, etc.
1849 (current_bufp, current_numcharsp) [USE_GTK]: Remove.
1850 (current_hold_quit) [USE_GTK]: Add.
1851 (event_handler_gdk): Adapt to new handle_one_xevent.
1852 (handle_one_xevent): Remove bufp_r and numcharsp args.
1853 Add hold_quit arg. Rework to use just one, local, inev
1854 input_event. Store inev directly in fifo using
1855 kbd_buffer_store_event_hold. Update count in one place.
1856 Postpone call to gen_help_event until inev is stored; use new
1857 local do_help for this.
1858 Simplify handling of keysyms (consolidate common code). Fix bug
1859 where count was updated with nchars instead of nbytes.
1860 Remove local emacs_event in handing of ButtonPress event; just use
1861 inev instead (so no reason to copy it later).
1862 Remove `out' label. Rename label `ret' to `done'; add various
1863 `goto done' to clarify code flow in deeply nested blocks.
1864 (x_dispatch_event): Simplify as handle_one_xevent now calls
1865 kbd_buffer_store_event itself.
1866 (XTread_socket): Remove bufp_r and numcharsp args. Add hold_quit
1867 arg. Call handle_one_xevent with new arglist. Store event from
1868 x_session_check_input in fifo.
1869 [USE_GTK]: Setup current_hold_quit.
1870 Decrement handling_signal before unblocking input.
1871 (x_initialize) [USE_GTK]: Initialize current_count.
1872
1873 * xterm.h (x_session_check_input): Fix prototype.
1874
1875 2004-02-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1876
1877 * s/darwin.h (LD_SWITCH_SYSTEM_TEMACS): Add `-framework QuickTime'.
1878
1879 * dispextern.h [MAC_OSX]: Do not include Carbon/Carbon.h (now in
1880 macgui.h).
1881
1882 * emacs.c (main) [HAVE_CARBON]: Call init_xfns.
1883
1884 * macgui.h [MAC_OSX]: Include Carbon/Carbon.h.
1885 (mktime, DEBUG, Z, free, malloc, realloc, max, min)
1886 (init_process) [MAC_OSX] : Avoid conflicts with Carbon/Carbon.h.
1887 [!MAC_OSX]: Include QDOffscreen.h and Controls.h.
1888 (INFINITY) [MAC_OSX]: Avoid conflict with definition in math.h.
1889 (Bitmap): Remove typedef.
1890 (Pixmap): Change int to GWorldPtr.
1891
1892 * macmenu.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
1893
1894 * macterm.h [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
1895 (RED16_FROM_ULONG, GREEN16_FROM_ULONG, BLUE16_FROM_ULONG):
1896 New #define to extract 16-bit depth color components from unsigned
1897 long representation.
1898 (PIX_MASK_DRAW, PIX_MASK_RETAIN): New #define to represent pixel
1899 colors used for masks.
1900 (struct mac_display_info): Add color_p. Remove n_cbits.
1901
1902 * macfns.c: Include sys/types.h and sys/stat.h.
1903 [MAC_OSX]: Do not include Carbon/Carbon.h (now in macgui.h).
1904 Include QuickTime/QuickTime.h.
1905 (XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
1906 (XSetForeground, mac_draw_line_to_pixmap): Add externs for
1907 functions defined in macterm.c.
1908 (XImagePtr): New typedef. Corresponds to XImage * in xfns.c.
1909 (ZPixmap): New #define for compatibility with xfns.c.
1910 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
1911 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
1912 (find_image_fsspec, image_load_qt_1, image_load_quicktime):
1913 New functions.
1914 (four_corners_best, x_create_x_image_and_pixmap)
1915 (x_destroy_x_image, unwind_create_frame, x_disable_image)
1916 (x_edge_detection, init_color_table, colors_in_color_table)
1917 (lookup_rgb_color, lookup_pixel_color, postprocess_image)
1918 (x_put_x_image, slurp_file, xbm_scan, xbm_load, xbm_load_image)
1919 (xbm_image_p, xbm_read_bitmap_data, xbm_file_p, x_to_xcolors)
1920 (x_from_xcolors, x_detect_edges): New declarations (from xfns.c).
1921 (mac_color_map_lookup, x_to_mac_color): Fix Lisp_Object/unsigned
1922 long mixup.
1923 (mac_defined_color, x_to_x_colors): Use RED16_FROM_ULONG etc.
1924 (x_decode_color): Don't use n_cbits (in struct mac_display_info).
1925 (x_set_foreground_color, x_set_cursor_color): Sync with w32fns.c.
1926 (x_set_cursor_type, Fxw_color_values, valid_image_p)
1927 (image_value_type, parse_image_spec, image_ascent, x_clear_image)
1928 (x_alloc_image_color, clear_image_cache, lookup_image)
1929 (x_find_image_file, xbm_read_bitmap_file_data)
1930 (enum xbm_keyword_index, xbm_format, xbm_image_p, xbm_scan)
1931 (xbm_read_bitmap_data, xbm_load, pbm_image_p, pbm_scan_number)
1932 (enum pbm_keyword_index, pbm_format, enum png_keyword_index)
1933 (png_format, png_image_p, enum jpeg_keyword_index, jpeg_format)
1934 (jpeg_image_p, enum tiff_keyword_index, tiff_format, tiff_image_p)
1935 (enum gif_keyword_index, gif_format, gif_image_p): Sync with xfns.c.
1936 (x_make_gc): Sync with xfns.c. Enclose unused `border_tile' with
1937 #if 0.
1938 (x_free_gcs): Sync with xfns.c. Enclose unused `border_tile' with
1939 #if 0. Free white_relief.gc and black_relief.gc.
1940 (unwind_create_frame, x_emboss, x_laplace, x_edge_detection):
1941 New functions (from xfns.c).
1942 (Fx_create_frame): Record unwind_create_frame.
1943 (Fxw_display_color_p): Use dpyinfo->color_p.
1944 (Fx_display_grayscale_p, Fx_display_planes): Don't use
1945 dpyinfo->n_cbits.
1946 (Fx_display_color_cells): Use dpyinfo->n_planes;
1947 (QCmatrix, QCcolor_adjustment, QCmask, Qemboss, Qedge_detection)
1948 (Qheuristic, cross_disabled_images, emboss_matrix)
1949 (laplace_matrix): New variables (from xfns.c).
1950 (Fimage_size, Fimage_mask_p, four_corners_best, image_background)
1951 (x_clear_image_1, postprocess_image, slurp_file, xbm_load_image)
1952 (xbm_file_p, x_to_xcolors, x_from_xcolors, x_detect_edges)
1953 (image_background_transparent): New function (from xfns.c).
1954 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
1955 (image_load_quicktime): Add declaration.
1956 [MAC_OSX] (image_load_quartz2d): Likewise.
1957 [MAC_OSX] (CGImageCreateWithPNGDataProviderProcType): New typedef.
1958 [MAC_OSX] (MyCGImageCreateWithPNGDataProvider): New variable.
1959 [MAC_OSX] (init_image_func_pointer, image_load_quartz2d): New funs.
1960 (xbm_load_image_from_file, x_laplace_read_row)
1961 (x_laplace_write_row, pbm_read_file): Remove functions.
1962 [HAVE_XPM] (enum xpm_keyword_index, xpm_format, xpm_image_p)
1963 (xpm_load): Sync with xfns.c (although XPM is not supported yet).
1964 (colors_in_color_table): Sync with xfns.c (although not used).
1965 (lookup_rgb_color): Don't lookup color table. Just do gamma
1966 correction.
1967 (COLOR_INTENSITY): New #define (from xfns.c).
1968 (x_disable_image): New function (from xfns.c).
1969 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
1970 (x_build_heuristic_mask): Sync with xfns.c.
1971 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
1972 (HAVE_PBM): Remove #ifdef.
1973 (pbm_load): Sync with xfns.c. Set img->width and img->height
1974 before IMAGE_BACKGROUND.
1975 (png_image_p, png_load): Don't enclose declarations with #if HAVE_PNG.
1976 (Qpng, enum png_keyword_index, png_format, png_type, png_image_p):
1977 Don't enclose with #if HAVE_PNG.
1978 [!HAVE_PNG] (png_load) [MAC_OSX]: Use image_load_quartz2d if a
1979 symbol _CGImageCreateWithPNGDataProvider is defined.
1980 Otherwise use image_load_quicktime.
1981 [!HAVE_PNG] (png_load) [!MAC_OSX]: Use image_load_quicktime.
1982 [HAVE_PNG] (png_load): Sync with xfns.c.
1983 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
1984 (jpeg_image_p, jpeg_load): Don't enclose declarations with #if
1985 HAVE_JPEG.
1986 (Qjpeg, enum jpeg_keyword_index, jpeg_format, jpeg_type)
1987 (jpeg_image_p): Don't enclose with #if HAVE_JPEG.
1988 [!HAVE_JPEG] (jpeg_load) [MAC_OSX]: Use image_load_quartz2d.
1989 [!HAVE_JPEG] (jpeg_load) [!MAC_OSX]: Use image_load_quicktime.
1990 [HAVE_JPEG] (jpeg_load): Sync with xfns.c.
1991 (tiff_image_p, tiff_load): Don't enclose declarations with #if
1992 HAVE_TIFF.
1993 (Qtiff, enum tiff_keyword_index, tiff_format, tiff_type)
1994 (tiff_image_p): Don't enclose with #if HAVE_TIFF.
1995 [!HAVE_TIFF] (tiff_load): Use image_load_quicktime.
1996 [HAVE_TIFF] (tiff_error_handler, tiff_warning_handler):
1997 New functions (from xfns.c).
1998 [HAVE_TIFF] (tiff_load): Sync with xfns.c.
1999 (gif_image_p, gif_load): Don't enclose declarations with #if HAVE_GIF.
2000 (Qgif, enum gif_keyword_index, gif_format, gif_type, gif_image_p):
2001 Don't enclose with #if HAVE_GIF.
2002 [!HAVE_GIF] (gif_load): Use Quicktime Movie Toolbox if it is
2003 animated gif. Otherwise use image_load_quicktime.
2004 [HAVE_GIF] (gif_lib.h): Temporarily define DrawText as
2005 gif_DrawText to avoid conflict with QuickdrawText.h.
2006 [HAVE_GIF] (gif_load): Sync with xfns.c.
2007 (enum gs_keyword_index, gs_format, gs_image_p, gs_load)
2008 [HAVE_GHOSTSCRIPT] (x_kill_gs_process): Sync with xfns.c (although
2009 Ghostscript is not supported yet).
2010 (syms_of_macfns): Initialize Qemboss, Qedge_detection, Qheuristic,
2011 QCmatrix, QCcolor_adjustment, and QCmask. Add DEFVAR_BOOL
2012 cross_disabled_images (from xfns.c). Remove #if 0 for supported
2013 image types. Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
2014 HAVE_PNG. Add defsubr for Simage_size and Simage_mask_p.
2015 (init_xfns): Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
2016 HAVE_PNG. Call EnterMovies to support animated gifs.
2017 Call init_image_func_pointer to bind a symbol
2018 _CGImageCreateWithPNGDataProvider if it is defined.
2019
2020 * macterm.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
2021 (x_draw_bar_cursor): Sync declaration with xterm.c.
2022 (XFreePixmap, mac_draw_rectangle_to_pixmap, mac_copy_area)
2023 (mac_copy_area_to_pixmap): Implementation with GWorld (offscreen
2024 graphics).
2025 (mac_set_forecolor, mac_set_backcolor): Use RED16_FROM_ULONG etc.
2026 (mac_draw_line_to_pixmap, XCreatePixmap)
2027 (XCreatePixmapFromBitmapData, mac_fill_rectangle_to_pixmap)
2028 (mac_copy_area_with_mask, mac_copy_area_with_mask_to_pixmap):
2029 New functions.
2030 (mac_draw_bitmap) [TARGET_API_MAC_CARBON]:
2031 Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
2032 Cast bits to char *.
2033 (reflect_byte): New function (from w32fns.c).
2034 (mac_create_bitmap_from_bitmap_data): Use it and don't stuff bits
2035 due to byte alignment.
2036 (mac_scroll_area) [TARGET_API_MAC_CARBON]:
2037 Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
2038 (XSetForeground): Remove static (now used in macfns.c).
2039 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New #define (from w32term.c).
2040 (mac_alloc_lighter_color, x_destroy_window): Sync with w32term.c.
2041 (x_setup_relief_color, x_setup_relief_colors, x_draw_box_rect)
2042 (x_draw_glyph_string_box, x_draw_image_foreground)
2043 (x_draw_image_foreground_1, x_draw_image_glyph_string)
2044 (x_draw_stretch_glyph_string, x_draw_glyph_string)
2045 (x_draw_hollow_cursor, x_draw_bar_cursor, mac_draw_window_cursor):
2046 Sync with xterm.c.
2047 (x_draw_relief_rect): Sync with xterm.c. Make 1 pixel shorter
2048 than the xterm.c version when a strictly horizontal or vertical
2049 line is drawn.
2050 (XTset_terminal_window): Add static.
2051 (x_make_frame_visible): Add UNBLOCK_INPUT.
2052 (x_free_frame_resources): New funcion (from xterm.c).
2053 (XTread_socket): Call handle_tool_bar_click if mouse up/down event
2054 occurs in tool bar area.
2055 (mac_initialize_display_info): Remove dpyinfo->n_cbits.
2056 Set dpyinfo->color_p. Determine dpyinfo->n_planes using HasDepth.
2057 Initialize image cache.
2058 (stricmp, wildstrieq, mac_font_pattern_match, mac_font_match):
2059 Enclose unused functions with #if 0.
2060 (Qbig5, Qcn_gb, Qsjis, Qeuc_kr): New variables.
2061 (decode_mac_font_name): New function to apply code conversions
2062 from a mac font name to an XLFD font name according to its script code.
2063 (x_font_name_to_mac_font_name): Apply code conversion from an XLFD
2064 font name to a mac font name according to REGISTRY and ENCODING fields.
2065 (init_font_name_table) [TARGET_API_MAC_CARBON]: Don't use a font
2066 whose name starts with `.'.
2067 (init_font_name_table): Use decode_mac_font_name. Add both
2068 jisx0208.1983-sjis and jisx0201.1976-0 entries if the script code
2069 of a font is smJapanese.
2070 (mac_do_list_fonts): New function to list fonts that match a given
2071 pattern.
2072 (x_list_fonts, XLoadQueryFont): Use it.
2073 (XLoadQueryFont): Set rbearing field for each variable width
2074 character to avoid needless redraw.
2075 (syms_of_macterm): Initialize Qbig5, Qcn_gb, Qsjis, and Qeuc_kr.
2076
2077 2004-02-26 Kim F. Storm <storm@cua.dk>
2078
2079 * keyboard.c (NREAD_INPUT_EVENTS): Temporarily increase to 512
2080 as read_socket_hook handler on X aborts if buffer is too small
2081 and W32 handler doesn't always check buffer limit.
2082
2083 * xdisp.c (handle_single_display_prop): Handle left-fringe and
2084 right-fringe similar to a display margin image. Specifically,
2085 the characters having the fringe prop are no longer shown, and
2086 we use IT_IMAGE/next_element_from_image with image_id = -1 to
2087 do this. Set fringe bitmap face_id in it->face_id.
2088 (produce_image_glyph): Handle image_id < 0 as "no image" case, but
2089 still realize it->face (i.e. the fringe bitmap face).
2090
2091 2004-02-25 Miles Bader <miles@gnu.org>
2092
2093 * xdisp.c (check_it): Check string/string_pos consistency.
2094 (init_iterator): Initialize string-related fields properly.
2095
2096 2004-02-11 Miles Bader <miles@gnu.org>
2097
2098 * xdisp.c (produce_image_glyph): Force negative descents to zero.
2099
2100 2004-02-10 Miles Bader <miles@gnu.org>
2101
2102 * xfns.c (lookup_image): Remove xassert(!interrupt_input_blocked);
2103 BLOCK_INPUT can be nested, so it doesn't make much sense.
2104
2105 2004-02-24 Michael Mauger <mmaug@yahoo.com>
2106
2107 * w32fns.c (slurp_file, xbm_scan, xbm_load_image)
2108 (xbm_read_bitmap_data): Use unsigned char for image data.
2109
2110 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
2111
2112 * abbrev.c (Finsert_abbrev_table_description): Doc fix.
2113
2114 2004-02-22 Jason Rumney <jasonr@gnu.org>
2115
2116 * w32term.c (w32_draw_fringe_bitmap): Draw overlaid bitmaps
2117 correctly over other bitmaps.
2118
2119 2004-02-21 Eli Zaretskii <eliz@gnu.org>
2120
2121 * emacs.c (USAGE1): Split into two halves.
2122 (USAGE2): Second half of the old USAGE1.
2123 (USAGE3): Rename from USAGE2.
2124 (USAGE4): Rename from USAGE3.
2125
2126 2004-02-21 Juri Linkov <juri@jurta.org>
2127
2128 * emacs.c (USAGE1): Add --no-desktop. Move --display from USAGE2.
2129 Fix --multibyte. Move --help, --version to USAGE2. Add alias
2130 --file. Fix -f, -l. Sort options. Untabify.
2131 (USAGE2): Add -hb. Fix --name, --title. Sort options. Untabify.
2132
2133 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
2134
2135 * category.c (Fdefine_category, Fcategory_docstring)
2136 (Fget_unused_category, Fset_category_table)
2137 (Fcategory_set_mnemonics): Doc fixes.
2138
2139 2004-02-20 Kim F. Storm <storm@cua.dk>
2140
2141 * keyboard.c: Undo 2004-02-16 and 2004-02-17 changes.
2142 The following changes are relative to the 2004-01-21 revision.
2143 (NREAD_INPUT_EVENTS): Define as max number of input events to read
2144 in one call to read_socket_hook. Value is 8.
2145 (read_avail_input): Separate and rework handling of read_socket_hook
2146 and non-read_socket_hook cases. Use smaller input_event buffer
2147 in read_socket_hook case, and repeat if full buffer is read.
2148 Use new local variable 'discard' to skip input after C-g.
2149 In non-read_socket_hook case, just use a single input_event, and
2150 call kbd_buffer_store_event on the fly for each character.
2151
2152 2004-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
2153
2154 * lisp.h (union Lisp_Object): Give a more precise type for `type'.
2155 Remove unused `gu' alternative.
2156
2157 2004-02-19 Andreas Schwab <schwab@suse.de>
2158
2159 * fringe.c (Fdefine_fringe_bitmap): Use && instead of & to avoid
2160 warning.
2161
2162 2004-02-18 Kim F. Storm <storm@cua.dk>
2163
2164 * xdisp.c (get_window_cursor_type, display_and_set_cursor):
2165 Fix last change.
2166
2167 2004-02-17 Kim F. Storm <storm@cua.dk>
2168
2169 * xdisp.c (fast_find_position): Fix return value of new version;
2170 it was inverted compared to the 21.1 version.
2171 (get_window_cursor_type): Don't look at glyph if NULL.
2172 (display_and_set_cursor): Set glyph to NULL if cursor in fringe.
2173
2174 * keyboard.c: Rework previous change; it didn't consider that the
2175 buf array was allocated on the stack.
2176 (prev_read): Remove variable.
2177 (read_avail_input_buf): New static event buffer array.
2178 (in_read_avail_input): New static variable to handle re-entrancy.
2179 (read_avail_input): Change buf to pinter to read_avail_input_buf.
2180 Use in_read_avail_input to handle re-entrance; when re-entered,
2181 fully initialize and use tmp_buf array instead of read_avail_input_buf.
2182 Do not initialize read_avail_input_buf in full here; instead assume it
2183 is always cleared on entry. To ensure that, we clear (just) the
2184 entries that were used before we return.
2185 (init_keyboard): Initialize read_avail_input_buf here.
2186
2187 2004-02-16 Jesper Harder <harder@ifa.au.dk> (tiny change)
2188
2189 * cmds.c (Fend_of_line): Doc fix.
2190
2191 2004-02-16 Dmitry Antipov <dmitry.antipov@mail.ru> (tiny change)
2192
2193 * keyboard.c (prev_read): New static variable.
2194 (read_avail_input): Use it to zero out only those slots in buf[]
2195 that were used last time we were called.
2196
2197 2004-02-16 Eli Zaretskii <eliz@gnu.org>
2198
2199 * Makefile.in (obj): Move fringe.o from here...
2200 (XOBJ, MAC_OBJ): ...to here.
2201
2202 2004-02-16 Stephen Eglen <stephen@gnu.org>
2203
2204 * fringe.c (init_fringe_bitmap): Define j in MAC_OS code.
2205
2206 2004-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
2207
2208 * data.c (Fbyteorder):
2209 * fringe.c (Fdefine_fringe_bitmap):
2210 * xdisp.c (handle_single_display_prop):
2211 * xselect.c (x_handle_dnd_message): Lisp_Object/int mixup.
2212
2213 2004-02-16 Jason Rumney <jasonr@gnu.org>
2214
2215 * w32term.c (w32_draw_fringe_bitmap): Handle overlay fringe bitmaps.
2216
2217 2004-02-15 Steven Tamm <steventamm@mac.com>
2218
2219 * macterm.c (Vmac_emulate_three_button_mouse): New variable for
2220 controlling emulation of a three button mouse with option and
2221 command keys.
2222 (Qreverse, mac_get_enumlated_btn): Handle the emulation
2223 (mac_event_to_emacs_modifiers, XTread_socket): Ditto.
2224
2225 2004-02-15 Kim F. Storm <storm@cua.dk>
2226
2227 * buffer.c (syms_of_buffer): Doc fix for indicate-buffer-boundaries.
2228
2229 * fringe.c (init_fringe_bitmap) [MAC_OS, WORDS_BIG_ENDIAN]:
2230 Perform byte-swapping.
2231
2232 2004-02-14 Kim F. Storm <storm@cua.dk>
2233
2234 * dispextern.h (struct draw_fringe_bitmap_params): Change member
2235 bits from char to short to facilitate wider bitmaps.
2236 (struct redisplay_interface): Fix prototype of define_fringe_bitmap
2237 member.
2238
2239 * fringe.c (struct fringe_bitmap): Change member bits from char to
2240 short to facilitate 16 bits wide bitmaps. Modify all standard
2241 bitmaps accordingly.
2242 (BYTES_PER_BITMAP_ROW, STANDARD_BITMAP_HEIGHT): New macros.
2243 (FRBITS): Use STANDARD_BITMAP_HEIGHT instead of just sizeof.
2244 (draw_fringe_bitmap): Ditto.
2245 (init_fringe_bitmap) [MAC_OS]: Don't bitswap.
2246 (init_fringe_bitmap) [HAVE_X_WINDOWS]: Enhance bitswapping to
2247 handle up to 16 bits wide bitmaps.
2248 (Fdefine_fringe_bitmap): Doc fix. Handle wider bitmaps.
2249 (Ffringe_bitmaps_at_pos): Add missing arg declarations.
2250
2251 * macterm.c (mac_draw_bitmap): Handle 16 bits wide bitmaps directly.
2252 (x_draw_fringe_bitmap): Use enhanced mac_draw_bitmap, so we no longer
2253 need to call mac_create_bitmap_from_bitmap_data and mac_free_bitmap.
2254
2255 * w32term.c (w32_define_fringe_bitmap): Bitmaps are now 16 bits wide,
2256 so it is no longer necessary to expand them here.
2257
2258 * xterm.c (x_draw_fringe_bitmap): Handle wider bitmaps (max 16 bits).
2259
2260 2004-02-12 Kim F. Storm <storm@cua.dk>
2261
2262 * window.c (Fwindow_fringes): Doc fix.
2263
2264 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2265
2266 * xselect.c (x_get_foreign_selection): Add new optional parameter
2267 time_stamp.
2268 (Fx_get_selection_internal): Ditto, pass time_stamp to
2269 x_get_foreign_selection.
2270
2271 * data.c (Fbyteorder): New function.
2272
2273 2004-02-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2274
2275 * atimer.c: Move include stdio.h to same place as in other files.
2276
2277 * region-cache.c: Ditto.
2278
2279 * sysdep.c: Ditto.
2280
2281 * xfaces.c: Ditto.
2282
2283 2004-02-09 Sam Steingold <sds@gnu.org>
2284
2285 * w32term.c (w32_draw_fringe_bitmap): Fix a typo in the last patch.
2286
2287 2004-02-09 Kim F. Storm <storm@cua.dk>
2288
2289 * fringe.c: New file. Move original fringe related declarations
2290 and code from dispextern.h and xdisp.c here.
2291 Rework code to support user defined fringe bitmaps, redefining
2292 standard bitmaps, ability to overlay user defined bitmap with
2293 overlay arrow bitmap, and add faces to bitmaps.
2294 (Voverflow_newline_into_fringe): Declare here.
2295 (enum fringe_bitmap_align): New enum.
2296 (..._bits): All bitmaps are now defined without bitswapping; that
2297 is now done in init_fringe_once (if necessary).
2298 (standard_bitmaps): New array with specifications for the
2299 standard fringe bitmaps.
2300 (fringe_faces): New array.
2301 (valid_fringe_bitmap_id_p): New function.
2302 (draw_fringe_bitmap_1): Rename from draw_fringe_bitmap.
2303 (draw_fringe_bitmap): New function which draws fringe bitmap,
2304 possibly overlaying bitmap with cursor in right fringe or the
2305 overlay arrow in the left fringe.
2306 (update_window_fringes): Do not handle overlay arrow here.
2307 Compare and copy fringe bitmap faces.
2308 (init_fringe_bitmap): New function.
2309 (Fdefine_fringe_bitmap, Fdestroy_fringe_bitmap): New DEFUNs to
2310 define and destroy user defined fringe bitmaps.
2311 (Fset_fringe_bitmap_face): New DEFUN to set face for a fringe bitmap.
2312 (Ffringe_bitmaps_at_pos): New DEFUN to read current fringe bitmaps.
2313 (syms_of_fringe): New function. Defsubr new DEFUNs.
2314 DEFVAR_LISP Voverflow_newline_into_fringe.
2315 (init_fringe_once, init_fringe): New functions.
2316 (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: New functions.
2317
2318 * Makefile.in (obj): Add fringe.o.
2319 (fringe.o): New dependencies.
2320
2321 * dispextern.h (FRINGE_ID_BITS): New definition for number of
2322 bits allocated to hold a fringe number. Increase number of bits
2323 from 4 to 8 to allow user defined fringe bitmaps.
2324 (struct glyph_row, struct it): New members left_user_fringe_bitmap,
2325 left_user_fringe_face_id, right_user_fringe_bitmap,
2326 right_user_fringe_face_id.
2327 (enum fringe_bitmap_type, struct fringe_bitmap, fringe_bitmaps):
2328 Move to new file fringe.c.
2329 (MAX_FRINGE_BITMAPS): Define here.
2330 (struct draw_fringe_bitmap_params): New members bits, cursor_p,
2331 and overlay_p. Change member which to int.
2332 (struct redisplay_interface): New members define_fringe_bitmap
2333 and destroy_fringe_bitmap.
2334 (valid_fringe_bitmap_id_p): Add prototype.
2335 (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: Add prototypes.
2336
2337 * dispnew.c (row_equal_p): Compare fringe bitmap faces and overlay
2338 arrows.
2339 (update_frame): Do flush_display if force_flush_display_p to
2340 ensure display (specifically fringes) are updated in a timely
2341 manner when resizing the frame by dragging the mouse.
2342 (update_window_line): Update row if overlay arrow changed.
2343 (scrolling_window): Redraw fringe bitmaps if fringe bitmap faces
2344 or overlay arrow changed.
2345
2346 * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
2347 syms_of_fringe, and init_fringe.
2348
2349 * frame.h (struct frame): New member force_flush_display_p.
2350
2351 * lisp.h (syms_of_fringe, init_fringe, init_fringe_once):
2352 Add prototypes.
2353
2354 * macterm.c (mac_draw_bitmap): Add overlay_p arg.
2355 (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps;
2356 thanks to YAMAMOTO Mitsuharu for advice on how to do this.
2357 Use cursor color for displaying cursor in fringe.
2358 (x_redisplay_interface): Add null handlers for
2359 define_fringe_bitmap and destroy_fringe_bitmap functions.
2360
2361 * w32term.c (w32_draw_fringe_bitmap): Copy unadapted code from
2362 xterm.c to handle overlayed fringe bitmaps and to use cursor color
2363 for displaying cursor in fringe.
2364 (w32_define_fringe_bitmap, w32_destroy_fringe_bitmap): New W32
2365 specific functions to define and destroy fringe bitmaps in fringe_bmp.
2366 (w32_redisplay_interface): Add them to redisplay_interface.
2367 (w32_term_init): Call w32_init_fringe instead of explicitly
2368 defining fringe bitmaps in fringe_bmp array.
2369 (x_delete_display): Call w32_reset_fringes instead of explicitly
2370 destroying fringe bitmaps in fringe_bmp array.
2371
2372 * xdisp.c (Voverflow_newline_into_fringe, syms_of_xdisp)
2373 (left_bits, right_bits, up_arrow_bits, down_arrow_bits)
2374 (continued_bits, continuation_bits, ov_bits, first_line_bits)
2375 (last_line_bits, filled_box_cursor_bits, hollow_box_cursor_bits)
2376 (bar_cursor_bits, hbar_cursor_bits, zv_bits, hollow_square_bits)
2377 (fringe_bitmaps, draw_fringe_bitmap, draw_row_fringe_bitmaps)
2378 (draw_window_fringes, compute_fringe_widths, update_window_fringes):
2379 Move fringe handling vars and code to new file fringe.c.
2380 (handle_display_prop): Handle left-fringe and right-fringe
2381 display properties; store user fringe bitmaps in iterator.
2382 (move_it_in_display_line_to): Handle cursor in fringe at eob.
2383 (clear_garbaged_frames): Set force_flush_display_p if resized.
2384 (redisplay_window): Redraw fringe bitmaps if not just_this_one_p.
2385 (display_line): Handle cursor in fringe at eob.
2386 (display_line): Set row user fringe bitmaps from iterator.
2387
2388 * xterm.c (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps.
2389 Use cursor color for displaying cursor in fringe.
2390 (x_redisplay_interface): Add null handlers for
2391 define_fringe_bitmap and destroy_fringe_bitmap functions.
2392
2393 2004-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2394
2395 * macfns.c (Fx_change_window_property): Make doc string and
2396 parameters same as for X version.
2397
2398 * w32fns.c (Fx_change_window_property): Ditto.
2399
2400 2004-02-07 Kim F. Storm <storm@cua.dk>
2401
2402 * xdisp.c (hscroll_window_tree): Position cursor near to right
2403 margin in hscrolled window when jumping to end of line (rather
2404 than centering cursor).
2405
2406 * process.c (wait_reading_process_input): Don't do adaptive read
2407 buffering if waiting for a specific process.
2408
2409 2004-02-05 Luc Teirlinck <teirllm@auburn.edu>
2410
2411 * minibuf.c (Fminibufferp, Fread_from_minibuffer)
2412 (Fread_minibuffer, Feval_minibuffer)
2413 (Fread_string, Fread_no_blanks_input)
2414 (Fcompleting_read): Doc fixes.
2415 (syms_of_minibuf): Doc fixes for minibuffer-completion-table and
2416 completion-regexp-list. Define Qcase_fold_search and staticpro it.
2417 (read_minibuf): Fix initial comment.
2418 (Ftry_completion, Fall_completions, Ftest_completion): Bind
2419 case-fold-search to the value of completion-ignore-case when
2420 checking completion-regexp-list.
2421 (Fdisplay_completion_list): Make it handle arguments that are
2422 symbols. Doc fix.
2423
2424 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2425
2426 * xterm.h: Add declaration of free_frame_menubar.
2427
2428 * xfns.c (x_create_bitmap_mask): Removed unused variable depth.
2429 (x_set_menu_bar_lines): Added ! defined USE_GTK for olines.
2430 (Fx_change_window_property): Add declaration of parameters type and
2431 format. Remove unused variable cons.
2432
2433 * xselect.c: Include stdio,h.
2434
2435 2004-02-05 Kenichi Handa <handa@m17n.org>
2436
2437 * fns.c (Fset_char_table_range): Fix previous change.
2438
2439 * buffer.c (Fset_buffer_multibyte): Fix docstring.
2440
2441 2004-02-04 Luc Teirlinck <teirllm@auburn.edu>
2442
2443 * editfns.c (Fchar_after, Fchar_before): Doc fixes.
2444
2445 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
2446
2447 * keymap.c (Vmouse_events): Rename from Vmenu_events.
2448 (syms_of_keymap): Add mouse-[45], header-line, and mode-line to it.
2449
2450 2004-02-04 Kenichi Handa <handa@m17n.org>
2451
2452 * fns.c (Fset_char_table_range): Handle charsets ascii,
2453 eight-bit-control, and eight-bit-graphic correctly.
2454
2455 2004-02-03 Jason Rumney <jasonr@gnu.org>
2456
2457 * w32select.c (Fw32_set_clipboard_data): Make coding iso2022 safe.
2458
2459 * w32fns.c (x_to_w32_font): Likewise.
2460
2461 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2462
2463 * xterm.h: Add x_handle_dnd_message, x_check_property_data,
2464 x_fill_property_data, x_property_data_to_lisp and check_x_display_info.
2465
2466 * xterm.c (handle_one_xevent): Call x_handle_dnd_message for
2467 ClientMessages.
2468
2469 * xselect.c: Include termhooks.h and X11/Xproto.h
2470 (x_check_property_data, x_fill_property_data)
2471 (x_property_data_to_lisp, mouse_position_for_drop)
2472 (Fx_get_atom_name, x_handle_dnd_message): New functions for DND support.
2473 (Fx_send_client_event): Move here from xfns.c.
2474 (syms_of_xselect): Add Sx_get_atom_name and Sx_send_client_message.
2475
2476 * xfns.c (x-send-client-message): Move to xselect.c
2477 (Fx_change_window_property): Add optional arguments TYPE, FORMAT and
2478 OUTER_P.
2479 (Fx_window_property): Add optional arguments TYPE, SOURCE, DELETE_P,
2480 VECTOR_RET_P. Handle AnyPropertyType. Call x_property_data_to_lisp
2481 if vector_ret_p is true.
2482 (syms_of_xfns): Sx_send_client_message moved to xselect.c.
2483
2484 2004-02-02 Eli Zaretskii <eliz@gnu.org>
2485
2486 * fileio.c (Fcopy_file): If NEWNAME is a directory, expand the
2487 basename of FILE relative to it, not FILE itself.
2488
2489 2004-02-02 Kenichi Handa <handa@m17n.org>
2490
2491 * coding.c (coding_restore_composition): Check invalid
2492 composition data more rigidly.
2493
2494 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
2495
2496 * fileio.c (Fread_file_name_internal): Correctly handle the case
2497 where insert-default-directory is nil.
2498 (Fread_file_name): Always return an empty string if the user exits
2499 with an empty minibuffer. Adapt the docstring accordingly.
2500 (syms_of_fileio): Adapt the docstring of insert-default-directory
2501 to the change in Fread_file_name.
2502
2503 2004-01-29 Eli Zaretskii <eliz@gnu.org>
2504
2505 * alloca.c [!alloca]: Fix the prototype for xfree.
2506
2507 2004-01-29 Kenichi Handa <handa@m17n.org>
2508
2509 * fns.c (string_char_to_byte): Optimize for ASCII only string.
2510 (string_byte_to_char): Likewise.
2511
2512 2004-01-28 Peter Runestig <peter@runestig.com>
2513
2514 * makefile.w32-in, w32fns.c: Add `default-printer-name' function.
2515
2516 2004-01-27 Steven Tamm <steventamm@mac.com>
2517
2518 * unexmacosx.c (unexec_copy): Do not copy more than was
2519 requested to prevent overwriting during unexec.
2520
2521 2004-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2522
2523 * process.c (sigchld_handler): Add comment about not calling malloc.
2524
2525 * process.h: Add extern to synch_process_termsig.
2526
2527 2004-01-27 Steven Tamm <steventamm@mac.com>
2528
2529 * macterm.c (make_mac_frame, make_mac_terminal_frame):
2530 Move setting of scroll bars from make_mac_frame to
2531 make_mac_terminal_frame to prevent clobbering of scroll-bar-mode.
2532
2533 2004-01-26 Richard M. Stallman <rms@gnu.org>
2534
2535 * search.c (Freplace_match): Handle nonexistent
2536 back-references properly.
2537
2538 2004-01-03 Richard M. Stallman <rms@gnu.org>
2539
2540 * window.c (decode_any_window): New function.
2541 (Fwindow_height, Fwindow_width, Fwindow_edges)
2542 (Fwindow_pixel_edges, Fwindow_inside_edges)
2543 (Fwindow_inside_pixel_edges): Use decode_any_window.
2544
2545 2004-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2546
2547 * process.h: synch_process_termsig new variable.
2548
2549 * callproc.c: Define synch_process_termsig.
2550 (Fcall_process): Initiate synch_process_termsig to zero and
2551 check if non-zero and get signal name after subprocess has ended.
2552
2553 * process.c (sigchld_handler): Set synch_process_termsig
2554 if terminated by a signal. synch_process_death setting removed.
2555
2556 * sysdep.c (mkdir, rmdir): Also check synch_process_termsig.
2557
2558 2004-01-26 Andreas Schwab <schwab@suse.de>
2559
2560 * print.c (print_preprocess): Declare size as EMACS_INT to not
2561 lose bits.
2562 (print_object): Likewise.
2563 * alloc.c (Fpurecopy): Likewise.
2564
2565 2004-01-25 Luc Teirlinck <teirllm@auburn.edu>
2566
2567 * window.c (Fwindow_minibuffer_p): Doc fix.
2568
2569 2004-01-24 Jonathan Yavner <jyavner@member.fsf.org>
2570
2571 * editfns.c (Fformat): Make both passes accept the same set of flags.
2572
2573 2004-01-23 Kenichi Handa <handa@m17n.org>
2574
2575 * fns.c (Fmd5): If OBJECT is a buffer different from the current
2576 one, set buffer to OBJECT temporarily.
2577
2578 2004-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
2579
2580 * keyboard.c (kbd_buffer_gcpro): Remove.
2581 (kbd_buffer_store_event, clear_event, Fdiscard_input)
2582 (stuff_buffered_input, init_keyboard, syms_of_keyboard):
2583 Don't initialize and/or maintain the variable any more. It was made
2584 redundant by my commit of 2003-06-15.
2585
2586 * lisp.h [USE_LSB_TAG && !DECL_ALIGN]: Signal an error.
2587
2588 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2589
2590 * lisp.h: Add undef DECL_ALIGN.
2591
2592 2004-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
2593
2594 * process.c (wait_reading_process_input) [SYNC_INPUT]:
2595 Check interrupt_input_pending explicitly.
2596
2597 * lisp.h (QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
2598
2599 * keyboard.c (handle_async_input): New fun,
2600 extracted from input_available_signal.
2601 (input_available_signal, reinvoke_input_signal): Use it.
2602
2603 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
2604
2605 * buffer.c (buffer_defaults, buffer_local_symbols): Use DECL_ALIGN.
2606
2607 * lisp.h [USE_LSB_TAG]: Add definitions for Lisp_Object value
2608 manipulation macros for when tags are in the lower bits.
2609 (struct Lisp_Free) [USE_LSB_TAG]: Add padding.
2610 (DECL_ALIGN): New macro.
2611 (DEFUN): Use it.
2612
2613 * lisp.h [ENABLE_CHECKING]: Don't force union type.
2614
2615 * s/darwin.h (__attribute__): Remove outdated workaround.
2616
2617 * macterm.c (main) [USE_LSB_TAG]: Don't range check the ram.
2618
2619 * alloc.c (lisp_malloc, lisp_align_malloc) [USE_LSB_TAG]:
2620 Don't check range of malloc address.
2621 (pure_alloc) [USE_LSB_TAG]: Enforce alignment.
2622
2623 * process.c (wait_reading_process_input): Lisp_Object/int mixup.
2624
2625 * dired.c (Ffile_attributes): Lisp_Object/int mixup.
2626
2627 2004-01-19 Kenichi Handa <handa@m17n.org>
2628
2629 * fontset.c (fontset_font_pattern): Fix previous change.
2630
2631 2004-01-16 Miles Bader <miles@gnu.ai.mit.edu>
2632
2633 * xdisp.c (Voverflow_newline_into_fringe)
2634 (move_it_in_display_line_to, redisplay_internal)
2635 (update_window_fringes, redisplay_window, display_line, window):
2636 Add `#ifdef HAVE_WINDOW_SYSTEM' around fringe-drawing stuff, so
2637 that it compiles without a window-system.
2638 * dispnew.c (direct_output_for_insert, update_window): Likewise.
2639
2640 2004-01-16 Kim F. Storm <storm@cua.dk>
2641
2642 * buffer.h (struct buffer): New member indicate_buffer_boundaries.
2643
2644 * buffer.c (init_buffer_once): Set buffer_defaults and
2645 buffer_local_flags for indicate_buffer_boundaries.
2646 (syms_of_buffer): Defvar_per_buffer it, and defvar_lisp_nopro
2647 default- variable for it.
2648
2649 * dispextern.h (struct glyph_row): New members left_fringe_bitmap,
2650 right_fringe_bitmap, redraw_fringe_bitmaps_p for new fringe handling.
2651 New members exact_window_width_line_p and cursor_in_fringe_p for
2652 overflowing newlines into right fringe.
2653 New members indicate_bob_p, indicate_top_line_p, indicate_eob_p,
2654 and indicate_bottom_line_p for buffer boundaries and scrolling.
2655 (enum fringe_bitmap_type): Add UP_ARROW_BITMAP, DOWN_ARROW_BITMAP,
2656 FIRST_LINE_BITMAP, LAST_LINE_BITMAP, FILLED_BOX_CURSOR_BITMAP,
2657 HOLLOW_BOX_CURSOR_BITMAP, BAR_CURSOR_BITMAP, HBAR_CURSOR_BITMAP,
2658 and HOLLOW_SQUARE_BITMAP.
2659 (draw_fringe_bitmap, draw_window_fringes, update_window_fringes):
2660 Add prototypes.
2661
2662 * dispnew.c (row_equal_p, update_window_line): Compare fringe bitmaps
2663 instead of related indicator fields.
2664 Compare exact_window_width_line_p and cursor_in_mouse_face_p indicators.
2665 (direct_output_for_insert): Handle exact width lines like
2666 contined lines. Call update_window_fringes.
2667 (update_window): Call update_window_fringes.
2668 (scrolling_window): Don't skip desired rows with changed bitmaps.
2669 Check if fringe bitmaps changes when assigning scrolled rows.
2670
2671 * xdisp.c (Voverflow_newline_into_fringe): New variable.
2672 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): New macro.
2673 (move_it_in_display_line_to): Overflow newline into fringe for
2674 rows that are exactly as wide as the window.
2675 (up_arrow_bits, down_arrow_bits, first_line_bits, last_line_bits)
2676 (filled_box_cursor_bits, hollow_box_cursor_bits, bar_cursor_bits)
2677 (hbar_cursor_bits, hollow_square_bits): New fringe bitmaps.
2678 (fringe_bitmaps): Add new bitmaps.
2679 (draw_fringe_bitmap): Make extern. Remove WHICH arg.
2680 Select proper bitmap for cursor in fringe when appropriate.
2681 Handle alignment of bitmap to top or bottom of row.
2682 (draw_row_fringe_bitmaps): Don't select bitmaps here; that is now
2683 done by update_window_fringes.
2684 (update_window_fringes, draw_window_fringes): New functions.
2685 (redisplay_internal): Call update_window_fringes in case only
2686 cursor row is updated.
2687 (redisplay_window): Call update_window_fringes.
2688 Explicitly call draw_window_fringes if redisplay was done using
2689 the current matrix or the overlay arrow is in the window.
2690 (try_window_reusing_current_matrix): Mark scrolled rows for
2691 fringe update (to update buffer-boundaries / scrolling icons).
2692 (find_last_unchanged_at_beg_row): Handle exact width lines line
2693 continued lines.
2694 (display_line): Overflow newline into fringe for rows that are
2695 exactly as wide as the window. Don't append space for newline
2696 in this case.
2697 (notice_overwritten_cursor): Explicitly clear cursor bitmap
2698 in fringe as if it had been overwritten.
2699 (erase_phys_cursor): Erase cursor bitmap in fringe.
2700 (syms_of_xdisp): Mark show-trailing-whitespace and
2701 void-text-area-pointer as user options.
2702 DEFVAR_LISP Voverflow_newline_into_fringe. Enable by default.
2703
2704 * xterm.c (x_update_window_end): Call draw_window_fringes.
2705 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
2706 in row instead of actually drawing fringe bitmaps.
2707 (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
2708 (x_draw_window_cursor): Draw cursor in fringe.
2709
2710 * w32term.c (x_update_window_end): Call draw_window_fringes.
2711 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
2712 in row instead of actually drawing fringe bitmaps.
2713 (w32_draw_fringe_bitmap): Handle bottom aligned bitmaps.
2714 (w32_draw_window_cursor): Draw cursor in fringe.
2715
2716 * macterm.c (x_update_window_end): Call draw_window_fringes.
2717 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
2718 in row instead of actually drawing fringe bitmaps.
2719 (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
2720 (mac_draw_window_cursor): Draw cursor in fringe.
2721
2722 2004-01-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2723
2724 * xterm.c (handle_one_xevent): Don't handle characters that are part
2725 of an old style (XLookupString) compose sequence.
2726
2727 2004-01-15 Kenichi Handa <handa@m17n.org>
2728
2729 * search.c (Freplace_match): Use make_multibyte_string or
2730 make_unibyte_string according to the buffer multibyteness.
2731
2732 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
2733
2734 * alloc.c (struct interval_block, struct string_block)
2735 (struct symbol_block, struct marker_block, live_string_p)
2736 (live_cons_p, live_symbol_p, live_float_p, live_misc_p):
2737 Better preserve alignment for objects in blocks.
2738 (FLOAT_BLOCK_SIZE): Adjust for possible alignment padding.
2739
2740 * lread.c (defvar_per_buffer): Remove dead declaration.
2741
2742 * macterm.c (do_check_ram_size): Don't hardcode the lisp address
2743 space size.
2744
2745 2004-01-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2746
2747 * xmenu.c (popup_get_selection): Check new parameter down_on_keypress
2748 if a key press should pop down. Only pop down if a key is pressed
2749 outside the menu/dialog.
2750 (create_and_show_popup_menu): Pass 0 for down_on_keypress to
2751 popup_get_selection.
2752 (create_and_show_dialog): Pass 1 for down_on_keypress to
2753 popup_get_selection.
2754
2755 2004-01-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2756
2757 * alloc.c (allocate_vectorlike): Surround calls to mallopt with
2758 BLOCK/UNBLOCK_INPUT.
2759
2760 2004-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2761
2762 * xmenu.c (Fx_popup_dialog): Add an Ok button if no buttons are
2763 specified.
2764
2765 2004-01-08 Kenichi Handa <handa@m17n.org>
2766
2767 * editfns.c (Fformat): Fix '&' to '&&'.
2768
2769 2004-01-08 Andreas Schwab <schwab@suse.de>
2770
2771 * print.c (print_preprocess) <case Lisp_Vectorlike>: Only mask
2772 size if PSEUDOVECTOR_FLAG is set.
2773
2774 2004-01-07 Kenichi Handa <handa@m17n.org>
2775
2776 * charset.c (Fdeclare_equiv_charset): Fix docstring.
2777
2778 * fontset.c (fontset_ref_via_base): Fix previous change.
2779
2780 2004-01-07 Kim F. Storm <storm@cua.dk>
2781
2782 * process.c (read_process_output): Only activate adaptive
2783 buffering if we read less than 256 bytes at a time.
2784
2785 2004-01-06 Kim F. Storm <storm@cua.dk>
2786
2787 * dispnew.c (buffer_posn_from_coords): Return both buffer/string
2788 object and image object. Return glyph width and height.
2789 (mode_line_string, marginal_area_string): Ditto.
2790
2791 * dispextern.h (buffer_posn_from_coords, mode_line_string)
2792 (marginal_area_string): Fix prototypes.
2793
2794 * keyboard.h (POSN_POSN, POSN_SET_POSN): Rename macros from
2795 POSN_BUFFER_POSN and POSN_SET_BUFFER_POSN. All uses changed.
2796 (POSN_INBUFFER_P, POSN_BUFFER_POSN): New macros.
2797
2798 * keyboard.c (make_lispy_position): Use modified mode_line_string,
2799 buffer_posn_from_coords, and marginal_area_string functions to
2800 include both string object and image object in the lispy position.
2801 Also add actual glyph width and height to position.
2802 (read_key_sequence): Use real buffer position from mouse
2803 event to find keymap property even when click is in marginal area.
2804
2805 * xdisp.c (note_mode_line_or_margin_highlight): Use modified
2806 mode_line_string and marginal_area_string functions to handle
2807 both string object and image object properties.
2808
2809 2004-01-06 Andreas Schwab <schwab@suse.de>
2810
2811 * syntax.c (skip_chars): Treat '-' at end of string as ordinary
2812 character.
2813
2814 2004-01-02 Andreas Schwab <schwab@suse.de>
2815
2816 * macterm.c (emacs_options, x_initialized, same_x_server):
2817 Remove unused (and duplicated) definitions.
2818
2819 2004-01-02 Kim F. Storm <storm@cua.dk>
2820
2821 * process.h (struct Lisp_Process): New members for adaptive read
2822 buffering: adaptive_read_buffering, read_output_delay, and
2823 read_output_skip.
2824
2825 * process.c (ADAPTIVE_READ_BUFFERING): New conditional.
2826 (READ_OUTPUT_DELAY_INCREMENT, READ_OUTPUT_DELAY_MAX)
2827 (READ_OUTPUT_DELAY_MAX_MAX): New constants.
2828 (process_output_delay_count, process_output_skip): New vars.
2829 (Vprocess_adaptive_read_buffering): New variable.
2830 (make_process): Initialize adaptive read buffering members.
2831 (Fstart_process): Set adaptive_read_buffering member.
2832 (deactivate_process): Cleanup adaptive read buffering.
2833 (wait_reading_process_input): Temporarily omit delayed
2834 subprocesses from the set of file descriptors to read from;
2835 adjust the select timeout if we skipped any subprocesses.
2836 (read_process_output): Increase adaptive read buffering delay if
2837 we read less than a full buffer; reduce delay when we read a
2838 full buffer.
2839 (send_process): Simplify using local Lisp_Process var.
2840 Reset adaptive read buffering delay after write.
2841 (init_process): Initialize process_output_delay_count and
2842 process_output_skip.
2843 (syms_of_process): DEFVAR_LISP Vprocess_adaptive_read_buffering.
2844
2845 2004-01-01 Jason Rumney <jasonr@gnu.org>
2846
2847 * w32term.c (w32_text_out): Use s->font, for consistency with callers.
2848
2849 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
2850
2851 * print.c (Ferror_message_string): Add hyperlink in the docstring
2852 to the definition of `signal' in the Elisp manual.
2853 * eval.c (Fsignal): Ditto.
2854
2855 2003-12-29 James Clark <jjc@jclark.com> (tiny change)
2856
2857 * fns.c (internal_equal): Return t for two NaN arguments.
2858
2859 2003-12-29 Richard M. Stallman <rms@gnu.org>
2860
2861 * data.c (store_symval_forwarding): Handle setting
2862 default-fill-column, etc., by changing the value in
2863 buffers that use the default.
2864
2865 * minibuf.c (Fset_minibuffer_window): Doc fix.
2866
2867 * fileio.c (choose_write_coding_system): Ignore auto_saving
2868 if using the visited file for auto saves.
2869 (Fwrite_region): Don't update SAVE_MODIFF
2870 if auto-saving in visited file.
2871
2872 2003-12-29 Kenichi Handa <handa@m17n.org>
2873
2874 * dispextern.h (face_font_available_p): Extern it.
2875
2876 * fontset.c (Voverriding_fontspec_alist): New variable.
2877 (lookup_overriding_fontspec): New function.
2878 (fontset_ref_via_base): Call lookup_overriding_fontspec if necessary.
2879 (fontset_font_pattern): Likewise.
2880 (regulalize_fontname): New function.
2881 (Fset_fontset_font): Call regulalize_fontname.
2882 (Fset_overriding_fontspec_internal): New function.
2883 (syms_of_fontset): Initialize and staticpro Voverriding_fontspec_alist.
2884 Defsubr Sset_overriding_fontspec_internal.
2885
2886 * xfaces.c (face_font_available_p): New function.
2887
2888 2003-12-28 Richard M. Stallman <rms@gnu.org>
2889
2890 * buffer.c (Fother_buffer): Don't crash if BUF is nil
2891 or if its name is nil.
2892
2893 * buffer.c (Fkill_buffer): Don't delete auto-save file
2894 if it's the same as the visited file.
2895
2896 2003-12-28 Luc Teirlinck <teirllm@auburn.edu>
2897
2898 * coding.c (Fcheck_coding_system): Doc fix.
2899
2900 2003-12-28 Kim F. Storm <storm@cua.dk>
2901
2902 * Makefile.in (eval.o): Depend on dispextern.h.
2903
2904 * dispnew.c (buffer_posn_from_coords): Fix calculation of dy for
2905 image glyph using image's ascent.
2906 (mode_line_string): Return image glyph as object clicked on.
2907 Adjust y0 for image glyph using image's ascent.
2908
2909 * dispextern.h (FACE_ID_BITS, MAX_FACE_ID): New defines.
2910 (struct glyph): New members, ascent and descent. Used to save
2911 this glyph's ascent and descent, instead of having.
2912 (struct glyph): Declare member face_id using FACE_ID_BITS.
2913 (find_hot_spot): Add prototype.
2914
2915 * keyboard.c (Qimage): Remove extern (now in lisp.h).
2916 (QCmap): Declare extern.
2917 (make_lispy_position): When position is inside image hot-spot,
2918 use hot-spot element's id as posn element.
2919
2920 * lisp.h (IMAGEP): New macro to test for image object type.
2921 (Qimage): Declare extern.
2922
2923 * macfns.c (Qimage): Remove extern (now in lisp.h).
2924 (valid_image_p, parse_image_spec): Use IMAGEP macro.
2925
2926 * macterm.c (Qface, Qmouse_face): Remove unused externs.
2927
2928 * w32fns.c (Qimage): Remove extern (now in lisp.h).
2929 (valid_image_p, parse_image_spec): Use IMAGEP macro.
2930
2931 * w32menu.c (Qmouse_click, Qevent_kind): Remove unused externs.
2932
2933 * w32term.c (Qface, Qmouse_face): Remove unused externs.
2934
2935 * xdisp.c (Qarrow, Qhand, Qtext, Qpointer): New variables for
2936 pointer types.
2937 (Qrelative_width, Qalign_to): Remove unused variables.
2938 (Vvoid_text_area_pointer): Replace Vshow_text_cursor_in_void.
2939 (QCmap, QCpointer, Qrect, Qcircle, Qpoly): New variables for
2940 image maps.
2941 (x_y_to_hpos_vpos): Return glyph relative coordinates through
2942 new dx and dy args.
2943 Remove buffer_only_p arg (always 0). Simplify code accordingly.
2944 (get_glyph_string_clip_rect): Draw cursor using glyph's rather
2945 than row's ascent and height, to get sensible height on tall rows.
2946 (build_desired_tool_bar_string): Remove Qimage extern.
2947 (get_tool_bar_item): Fix call to x_y_to_hpos_vpos.
2948 (produce_image_glyph): Adjust it.ascent to minimum row ascent if
2949 image glyph is alone on the last line.
2950 (append_glyph, append_composite_glyph, produce_image_glyph)
2951 (append_stretch_glyph): Set glyph's ascent and descent.
2952 (on_hot_spot_p): New function to check if position is inside an
2953 rectangular, circular, or polygon-shaped image hot-spot,
2954 (find_hot_spot): New function to search for image hot-spot.
2955 (Flookup_image_map): New defun to search for image hot-spot.
2956 (define_frame_cursor1): New aux function to determine frame pointer.
2957 (note_mode_line_or_margin_highlight, note_mouse_highlight):
2958 Handle `pointer' text property and :pointer image property to
2959 control frame pointer shape. Detect image hot-spots for pointer
2960 and help_echo properties. Use define_frame_cursor1.
2961 (note_mouse_highlight): Use Vvoid_text_area_pointer.
2962 (syms_of_xdisp): Defsubr new defun. Intern and staticpro new variables.
2963 DEFVAR_LISP Vvoid_text_area_pointer instead of Vshow_text_cursor_in_void.
2964
2965 * xfaces.c (cache_face): Abort if c->size exceeds MAX_FACE_ID.
2966
2967 * xfns.c (x_set_mouse_color): Remove bogus x_check_errors call.
2968 (Qimage): Remove extern (now in lisp.h).
2969 (valid_image_p, parse_image_spec): Use IMAGEP macro.
2970
2971 * xmenu.c (show_help_event): Remove unused code.
2972
2973 * xterm.c (Qface, Qmouse_face): Remove unused externs.
2974 (x_draw_hollow_cursor): Draw cursor using glyph's rather than
2975 row's ascent and descent, to get a sensible height on tall rows.
2976
2977 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
2978
2979 * minibuf.c (Fcompleting_read): Undo previous change.
2980
2981 2003-12-25 Lars Hansen <larsh@math.ku.dk>
2982
2983 * dired.c (Fdirectory_files, Fdirectory_files_and_attributes):
2984 Arguments GCPRO'ed in call to file name handler.
2985
2986 2003-12-25 Thien-Thi Nguyen <ttn@gnu.org>
2987
2988 * termcap.c (tgetst1): Scan for "%pN"; if all
2989 N are continuous in [1,9], remove all "%pN".
2990
2991 2003-12-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2992
2993 * gtkutil.c (xg_frame_set_char_size): Call x_wm_set_size_hint.
2994
2995 * xfaces.c (lface_fully_specified_p): Take into account that
2996 MAC OS always have unspecified stipple.
2997
2998 2003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
2999
3000 * tparam.c (tparam1): Add handling for `%pN', which
3001 means use param N for the next substitution.
3002
3003 2003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
3004
3005 * xfaces.c (Fcolor_gray_p): Fix omission bug:
3006 In case `frame' is nil, consult the selected frame.
3007 (Fcolor_supported_p): Likewise.
3008
3009 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
3010
3011 * fns.c (Frandom, Fstring_make_multibyte, Fset_char_table_range):
3012 Doc fixes.
3013
3014 * minibuf.c (read_minibuf): Allow INITIAL to be a cons of a string
3015 and an integer. Adapt the introductory comment accordingly.
3016 (Fread_from_minibuffer): Delete code moved into read_minibuf.
3017 Doc fix.
3018 (Fread_minibuffer, Fread_no_blanks_input): Adapt to changes in
3019 read_minibuf.
3020 (Fcompleting_read): Delete code moved into read_minibuf.
3021 (Ftest_completion): Make it handle obarrays and hash tables correctly.
3022
3023 2003-12-03 Kenichi Handa <handa@m17n.org>
3024
3025 * coding.c (decode_coding_iso2022): Fix for preserving UTF-8
3026 encoding sequence.
3027
3028 2003-12-01 Kenichi Handa <handa@m17n.org>
3029
3030 * composite.c (syms_of_composite): Don't make the compostion hash
3031 table week.
3032
3033 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
3034
3035 * intervals.h: Add EXFUN for Fget_char_property_and_overlay.
3036 * textprop.c (Fget_char_property_and_overlay): New function.
3037 (syms_of_textprop): Defsubr it.
3038
3039 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3040
3041 * dispnew.c (buffer_posn_from_coords): Add ifdef HAVE_WINDOW_SYSTEM
3042 to compile on terminal configuration.
3043
3044 * fileio.c (Fread_file_name): Check use_file_dialog also before
3045 calling Fx_file_dialog.
3046
3047 * fns.c: use_file_dialog: New variable.
3048 (syms_of_fns): DEFVAR_BOOL use-file-dialog.
3049
3050 2003-11-29 Kim F. Storm <storm@cua.dk>
3051
3052 * msdos.c (Qcursor_type, Qbar, Qhbar): Declare extern.
3053 (syms_of_msdos): Don't intern and staticpro them.
3054
3055 2003-11-27 Kim F. Storm <storm@cua.dk>
3056
3057 * dispnew.c (buffer_posn_from_coords): Calculate and return pixel
3058 coordinates relative to glyph at posn. If glyph is an image,
3059 return that as object at posn. Callers changed.
3060 (mode_line_string, marginal_area_string): Calculate and return
3061 pixel coordinates relative to glyph. Callers changed.
3062
3063 * dispextern.h (buffer_posn_from_coords, mode_line_string)
3064 (marginal_area_string): Fix prototypes.
3065 (window_box_left_offset, window_box_right_offset): Add prototypes.
3066
3067 * frame.h (get_specified_cursor_type, get_window_cursor_type):
3068 Remove prototypes.
3069
3070 * keyboard.h (EVENT_CLICK_COUNT, POSN_SCROLLBAR_PART): Fix defines.
3071
3072 * keyboard.c (make_lispy_position): Add x and y coordinates
3073 relative to the current glyph as 7th element of position.
3074 If glyph is an image, return it in the object element.
3075 (read_key_sequence): Skip checks for keymap property in cases
3076 where POSN_STRING is not a string (e.g. an image).
3077
3078 * xdisp.c (Vdisplay_pixels_per_inch): New variable.
3079 (Vshow_text_cursor_in_void): New variable.
3080 (glyph_to_pixel_coords): Don't use negative hpos.
3081 (x_y_to_hpos_vpos): Fix for partially visible first glyph.
3082 (append_stretch_glyph): Change ascent arg to be actual value
3083 in pixels rather than ratio to height. Callers changed.
3084 (calc_pixel_width_or_height): New aux function, implementing
3085 pixel based artihmetic for glyph widths and heights.
3086 (produce_stretch_glyph): Use calc_pixel_width_or_height for
3087 :width, :height, :align-to, and :ascent, thus allowing these to
3088 be specified in pixels as well as multiples of characters.
3089 Don't produce stretch glyphs with zero width or height.
3090 (get_specified_cursor_type): Declare static.
3091 (get_window_cursor_type): Declare static. Add glyph arg to be
3092 able to know when cursor is on an image; always substitute
3093 hollow-box cursor for filled-box cursor on images, to avoid
3094 negative images and flicker when blinking the cursor.
3095 (display_and_set_cursor): Pass glyph to get_window_cursor_type.
3096 (note_mode_line_or_margin_highlight): Use non-text cursor rather
3097 than vertical scroll-bar cursor in display margins.
3098 (note_mouse_highlight): Use non-text cursor rather than text
3099 cursor in fringes and over images in the text area.
3100 Use non-text cursor when mouse pointer is outside editable text,
3101 i.e. in the void after end-of-line or end-of-buffer; this was
3102 already done for W32, but is now standard for all systems --
3103 user can toggle show-text-cursor-in-void to get old behaviour.
3104 (syms_of_xdisp): DEFVAR_LISP Vshow_text_cursor_in_void and
3105 Vdisplay_pixels_per_inch.
3106
3107 2003-11-25 Andreas Schwab <schwab@suse.de>
3108
3109 * fns.c (internal_equal) <case Lisp_Vectorlike>: Declare size as
3110 EMACS_INT to not lose bits.
3111 (Ffillarray): Don't set bits beyond the size of a bool vector.
3112
3113 2003-11-25 Kim F. Storm <storm@cua.dk>
3114
3115 * print.c (Fredirect_debugging_output) [!GNU_LINUX]: Do not
3116 define this defun on systems that cannot use stderr as lvalue.
3117
3118 2003-11-24 Gerd Moellmann <gerd@gnu.org>
3119
3120 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS)
3121 [__FreeBSD_version >= 500042]: Define as -znocombreloc because
3122 ld's default is incompatible with unexec.
3123
3124 2003-11-23 Kim F. Storm <storm@cua.dk>
3125
3126 * window.c (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
3127 (window_loop): Handle REDISPLAY_BUFFER_WINDOWS.
3128 (Fforce_window_update): New defun.
3129 (syms_of_window): Defsubr it.
3130 (Fset_window_margins, Fset_window_fringes): Doc fix.
3131
3132 * print.c (Fredirect_debugging_output): New defun.
3133 (syms_of_print): Defsubr it.
3134
3135 2003-11-22 Luc Teirlinck <teirllm@auburn.edu>
3136
3137 * fns.c (Fset_char_table_parent): Doc fix.
3138
3139 2003-11-22 Kim F. Storm <storm@cua.dk>
3140
3141 * dispnew.c (buffer_posn_from_coords): Return actual row/column
3142 for glyph clicked on, rather than (unused) pixel positions.
3143 (mode_line_string, marginal_area_string): Change X and Y args to
3144 pointers for returning actual row/column for glyph clicked on.
3145 Simplify and optimize loops.
3146
3147 * dispextern.h (mode_line_string, marginal_area_string):
3148 Update prototypes.
3149
3150 * keyboard.c (make_lispy_position): New function for generating
3151 mouse click positions from frame and pixel coordinates.
3152 Enhanced to return buffer position and actual row/column for
3153 events outside the text area using updated mode_line_string and
3154 marginal_area_string functions.
3155 Return left-fringe and right-fringe clicks as such, rather than
3156 clicks in text area.
3157 (make_lispy_event) [USE_X_TOOLKIT, USE_GTK]: Don't call
3158 pixel_to_glyph_coords, as we never use the results.
3159 (make_lispy_event): Use make_lispy_position for MOUSE_CLICK_EVENT,
3160 WHEEL_EVENT, and DRAG_N_DROP_EVENT to replace redundant code.
3161 Eliminate unused code in WHEEL_EVENT handling.
3162 (make_lispy_movement): Use make_lispy_position.
3163
3164 * window.c (coordinates_in_window): Remove redundant tests.
3165 Fix returned X pixel value for left-margin.
3166
3167 * xdisp.c (note_mode_line_or_margin_highlight): Adapt to new
3168 mode_line_string and marginal_area_string parameters.
3169
3170 2003-11-22 Lars Hansen <larsh@math.ku.dk>
3171
3172 * w32.c (struct the_group, getgrgid): Add.
3173 * mac.c (struct my_group, getgrgid): Add.
3174
3175 2003-11-21 Luc Teirlinck <teirllm@auburn.edu>
3176
3177 * fns.c (Fassq, Fassoc, Frassq, Frassoc): Doc fixes.
3178
3179 2003-11-21 Lars Hansen <larsh@math.ku.dk>
3180
3181 * dired.c (Ffile_attributes): Add parameter ID-FORMAT and
3182 include in call to file name handler. Optionally translate numeric
3183 UID and GID to strings. Update docstring.
3184 (directory_files_internal): Add parameter ID-FORMAT.
3185 (Fdirectory_files_and_attributes): Add parameter ID-FORMAT and
3186 include in call to file name handler and call to
3187 directory_files_internal. Update Docstring.
3188 (Fdirectory_files): Add dummy parameter in call to
3189 directory_files_internal.
3190 * lisp.h (Qinteger): Add.
3191 (Qinteger_or_floatp, Qinteger_or_float_or_marker_p): Remove.
3192 (Ffile_attributes): Add parameter.
3193 * data.c (Qinteger): Export.
3194
3195 2003-11-21 Luc Teirlinck <teirllm@auburn.edu>
3196
3197 * fns.c (Freverse, Fnreverse): Doc fixes.
3198
3199 2003-11-19 Kim F. Storm <storm@cua.dk>
3200
3201 * xdisp.c (init_iterator): Initialize it->start to position
3202 before reseating (in case start position is invisible).
3203 (init_to_row_start): Set it->start to row-start.
3204 (redisplay_window): Accept optional_new_start if start position
3205 is invisible (in which case IT_CHARPOS overshoots PT).
3206 (display_line): Setup row->start from it->start (rather than
3207 it->current which is wrong if first char on line is invisible).
3208 When done, reseat it->start to it->current (= start of next row).
3209 (expose_area): Fix exposure of text area when first char (e.g. TAB)
3210 is only partially visible.
3211
3212 * dispextern.h (struct it): New member start.
3213
3214 2003-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3215
3216 * alloc.c (make_float, Fcons): Clear the markbit at init time.
3217 (make_float, Fcons, Fmake_symbol, allocate_misc): Move the increment
3218 of block_index outside of the macro call.
3219 (Fgarbage_collect): Remove null code.
3220
3221 * m/amdx86-64.h: Don't redefine XPNTR.
3222
3223 * keyboard.c (parse_modifiers, apply_modifiers): Use INTMASK instead
3224 of VALMASK.
3225
3226 * fns.c (hashfn_eq, hashfn_eql, hashfn_equal, hash_put)
3227 (sxhash_string, sxhash): Use INTMASK instead of VALMASK.
3228 (maybe_resize_hash_table): Use MOST_POSITIVE_FIXNUM.
3229
3230 * lisp.h (VALMASK): Only define for non-union type.
3231 (MARKBIT): Remove.
3232 (ARRAY_MARK_FLAG): Use previous value of MARKBIT.
3233 (XTYPE): Define unconditionally.
3234 (XSETTYPE): Remove one more remnant.
3235 (EQ): Define differently for the union and non-union cases.
3236 (INTMASK): New bit mask.
3237 (struct Lisp_Marker): Move down to prepare for upcoming patch.
3238 (GC_EQ): Delegate to EQ.
3239
3240 * coding.c (coding_restore_composition): Lisp_Object/int mixup.
3241
3242 2003-11-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3243
3244 * xterm.c (x_window_to_scroll_bar): Move check of display to
3245 where window_id is compared.
3246
3247 2003-11-17 Kim F. Storm <storm@cua.dk>
3248
3249 * dispextern.h (struct it): New member first_vpos.
3250
3251 * xdisp.c (start_display): Set it->first_vpos.
3252 (try_window_id): Use first_vpos to start display in first _text_
3253 line if no reusable lines at start of window with header line.
3254
3255 2003-11-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3256
3257 * w32fns.c (XPutPixel):
3258 * w32bdf.c (w32_init_bdf_font):
3259 * sunfns.c (sel_read):
3260 * process.c (Fmake_network_process):
3261 * frame.c (store_frame_param):
3262 * fontset.c (Fset_fontset_font):
3263 * emacs.c (shut_down_emacs):
3264 * ccl.c (ccl_driver): Remove period at end of error message.
3265
3266 * config.in: Regenerate.
3267
3268 * xfns.c (x_window_to_frame, x_any_window_to_frame)
3269 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
3270 (x_top_window_to_frame): Add Display* argument to xg_win_to_widget.
3271 (x_create_bitmap_mask, xg_set_icon, create_frame_xic)
3272 (xic_set_statusarea, x_window, gif_load): Formatting adjustments.
3273
3274 * xterm.h (struct x_display_info): New field xg_cursor for GTK.
3275
3276 * xterm.c: Add Display * to x_window_to_scroll_bar declaration.
3277 (XTmouse_position, handle_one_xevent): Pass Display* to
3278 x_window_to_scroll_bar.
3279 (x_window_to_scroll_bar): Take a Display* argument.
3280 Check that display for frame is equal to Display* argument.
3281 (event_handler_gdk): Remove current_dpyinfo. Get dpyinfo from
3282 x_display_info_for_display instead. Use Display in xev instead
3283 of GDK_DISPLAY.
3284 (x_dispatch_event): Call x_display_info_for_display.
3285 (XTread_socket): Move GTK part out of loop. current_dpyinfo removed.
3286 (x_connection_closed): Call xg_display_close for GTK.
3287 (x_term_init): Call xg_display_open for additional displays.
3288 Initiate dpyinfo->xg_cursor with call to xg_create_default_cursor
3289 for GTK.
3290
3291 * xmenu.c (single_menu_item, mouse_position_for_popup)
3292 (x_activate_menubar): Formatting adjustments.
3293
3294 * xdisp.c (update_tool_bar, redisplay_tool_bar): Formatting
3295 adjustments.
3296
3297 * gtkutil.c (xg_get_gdk_display, xg_set_screen, xg_display_open)
3298 (xg_display_close, xg_create_default_cursor)
3299 (xg_get_gdk_pixmap_and_mask): New functions for multiple display
3300 handling.
3301 (xg_left_ptr_cursor): Remove.
3302 (xg_set_cursor): Change cursor to GdkCursor*. Do not create
3303 cursor here.
3304 (xg_win_to_widget): Take Display* argument, call
3305 gdk_xid_table_lookup_for_display.
3306 (xg_create_frame_widgets, xg_get_file_name, create_menus)
3307 (xg_create_widget, xg_modify_menubar_widgets): Call xg_set_screen.
3308 (xg_create_widget, xg_create_scroll_bar): Use xg_cursor
3309 in FRAME_X_DISPLAY_INFO.
3310 (xg_get_scroll_id_for_window): Take Display* argument.
3311 (update_frame_tool_bar): Call xg_get_gdk_pixmap_and_mask.
3312 (xg_initialize): Remove xg_left_ptr_cursor.
3313
3314 * gtkutil.h: xg_get_scroll_id_for_window, xg_win_to_widget takes
3315 Display* argument also. Declare xg_display_open,
3316 xg_display_close, xg_create_default_cursor.
3317
3318 2003-11-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3319
3320 * xterm.c (x_detect_focus_change): Do not change focus frame for
3321 Enter/LeaveNotify if the current focus frame has explicit focus.
3322
3323 2003-11-14 Kim F. Storm <storm@cua.dk>
3324
3325 * dispnew.c (update_text_area): Fix redisplay error when hscroll
3326 is active and first glyph is only partially visible.
3327
3328 2003-11-13 Kenichi Handa <handa@m17n.org>
3329
3330 * xdisp.c (select_frame_for_redisplay): New function.
3331 (redisplay_internal): Record also selected_frame for
3332 unwind_redisplay. Call select_frame_for_redisplay before
3333 redrawing each frame.
3334 (unwind_redisplay): Argument changed to a cons.
3335
3336 2003-11-12 Luc Teirlinck <teirllm@auburn.edu>
3337
3338 * fns.c (Fstring_to_multibyte): Doc fix.
3339
3340 2003-11-11 Kenichi Handa <handa@m17n.org>
3341
3342 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
3343
3344 2003-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3345
3346 * xfns.c (x_window): Set XtNx and XtNy in shell widget for
3347 program specified positions.
3348
3349 2003-11-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3350
3351 * xterm.c (XAW_ARROW_SCROLLBARS): Define it for Xaw 1.5E.
3352
3353 2003-11-08 Kenichi Handa <handa@m17n.org>
3354
3355 * Makefile.in (lisp): Add kannada.el.
3356 (shortlisp): Likewise.
3357
3358 2003-11-07 Kenichi Handa <handa@m17n.org>
3359
3360 * coding.c (coding_allocate_composition_data):
3361 Reset coding->composing to COMPOSITION_NO.
3362 (coding_restore_composition): Detect invalid composition data.
3363 Give Fstring and Fvector a Lispy integer, not C int.
3364
3365 2003-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
3366
3367 * floatfns.c (Flogb): Don't use VALMASK.
3368
3369 * m/amdx86-64.h (VALBITS, XINT, XUINT): Remove.
3370 * m/ia64.h (VALBITS, XINT, XUINT): Remove.
3371
3372 * lisp.h (XINT): Move the cast to clarify what is going on.
3373 (GCTYPEMASK, XSETTYPE): Remove.
3374 (XGCTYPE): Make it an alias of XTYPE.
3375
3376 2003-11-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3377
3378 * xterm.c (x_term_init): Fix formatting.
3379
3380 2003-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3381
3382 * gtkutil.h: Declare xg_have_tear_offs, remove xg_keep_popup
3383 and xg_did_tearoff.
3384
3385 * gtkutil.c: Remove variable xg_did_tearoff.
3386 (xg_have_tear_offs): New function.
3387 (tearoff_remove): Just decrease xg_detached_menus.
3388 (tearoff_activate): Increase xg_detached_menus and call
3389 tearoff_remove when tearoff is removed.
3390 (xg_keep_popup): Remove function.
3391 (create_menus): Give add_tearoff_p as argument to recursive
3392 call to create_menus.
3393 (xg_create_widget): Use variables instead of multiple
3394 strcmp. Tell create_menus to create tear off only for
3395 menu bar menus.
3396 (xg_update_menubar): Change title for a detached menu also.
3397 (xg_modify_menubar_widgets): Always call xg_update_menubar, regardless
3398 of deep_p.
3399 (xg_initialize): Initialize xg_detached_menus, remove
3400 initialization of xg_did_tearoff.
3401
3402 * xmenu.c (set_frame_menubar): For GTK, set deep_p if
3403 xg_have_tear_offs returns non-zero.
3404 (create_and_show_popup_menu): Remove setting of xg_did_tearoff and
3405 call to xg_keep_popup.
3406
3407 2003-11-01 Andrew Choi <akochoi@shaw.ca>
3408
3409 * macterm.c (XTread_socket): Handle menubar selection and grow
3410 window only for mouseDown events.
3411
3412 2003-10-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3413
3414 * xterm.c (x_term_init): For GTK part, increase x_initialized
3415 to check for more than one display. Use error instead of return 0.
3416
3417 2003-10-31 Andrew Choi <akochoi@shaw.ca>
3418
3419 * unexmacosx.c (unrelocate): New function (contributed by Nozomu Ando).
3420 (copy_dysymtab): Call it.
3421
3422 2003-10-31 Luc Teirlinck <teirllm@auburn.edu>
3423
3424 * eval.c (Fdefvaralias): Doc fix.
3425
3426 2003-10-26 Luc Teirlinck <teirllm@auburn.edu>
3427
3428 * data.c (Fsetplist): Doc fix.
3429
3430 2003-10-14 Lute Kamstra <lute@gnu.org>
3431
3432 * window.c (Fset_window_fringes): Clarify docstring.
3433
3434 2003-10-14 Kim F. Storm <storm@cua.dk>
3435
3436 * window.c (Fset_window_margins): Simplify arg checking.
3437
3438 2003-10-13 Richard M. Stallman <rms@gnu.org>
3439
3440 * regex.c (MAX_BUF_SIZE): Reduce to 2**15.
3441 (print_partial_compiled_pattern): Replace assert with a printout.
3442 (skip_noops, mutually_exclusive_p): Change args, values to re_char *.
3443
3444 * alloc.c (lisp_align_malloc): If BASE is 0, call memory_full.
3445
3446 * window.c (Fset_window_margins): Allow only integers as args.
3447 (syms_of_window) <special-display-buffer-names, special-display-regexps>:
3448 Doc fixes.
3449
3450 2003-10-13 Lute Kamstra <lute@gnu.org>
3451
3452 * window.c (Fset_window_fringes): Elaborate docstring.
3453
3454 2003-10-12 Andrew Choi <akochoi@shaw.ca>
3455
3456 * macterm.c (XTread_socket): Call DragWindow only for mouseDown events.
3457
3458 * s/darwin.h (GC_MARK_STACK): Define.
3459
3460 2003-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3461
3462 * window.c (shrink_windows): New function.
3463 (size_window): Call shrink_windows to calculate window sizes when
3464 shrinking frame with more than one window.
3465
3466 2003-10-12 Kim F. Storm <storm@cua.dk>
3467
3468 * xdisp.c (compute_fringe_widths): Doc fix.
3469
3470 2003-10-08 Kenichi Handa <handa@m17n.org>
3471
3472 * coding.c (Fcoding_system_p): Return t for auto-loading coding system.
3473
3474 2003-10-07 Kenichi Handa <handa@m17n.org>
3475
3476 * coding.c (Qcoding_system_define_form): New variable.
3477 (syms_of_coding): Intern and staticpro it.
3478 (Fcheck_coding_system): Try to autoload the definition of
3479 CODING-SYSTEM.
3480
3481 2003-10-05 Luc Teirlinck <teirllm@auburn.edu>
3482
3483 * fns.c (Frequire): Doc fix.
3484
3485 2003-10-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3486
3487 * xfns.c (Fx_send_client_event): New function as a base for
3488 manipulating extended window manager hints.
3489 (Fx_send_client_event): Remove unused variable s.
3490
3491 * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,
3492 that function is removed.
3493
3494 * xterm.c (x_set_offset): Use move_offset_left/top instead of
3495 x/y_pixels_outer_diff.
3496 (x_check_expected_move): Calculate move_offset_left/top.
3497
3498 * xterm.h (struct x_output): New members: move_offset_top/left.
3499
3500 * frame.c (x_set_frame_parameters): Remove x_fullscreen_move,
3501 call x_set_offset directly.
3502
3503 * frame.h (enum): FULLSCREEN_MOVE_WAIT removed.
3504
3505 * frame.c (Fdelete_frame): Free decode_mode_spec_buffer.
3506
3507 * xterm.c (x_delete_display): Free font names and font_encoder
3508 in dpyinfo->font_table.
3509
3510 * xfns.c (Fx_close_connection): Only call XFreeFont here.
3511 Move xfree of font names to x_delete_display.
3512
3513 * xterm.h (struct x_display_info): New member, wm_type.
3514 (struct x_output): New members, expected_top/left and
3515 check_expected_move.
3516
3517 * xterm.c (handle_one_xevent): Reset wm_type when ReparentNotify
3518 is received.
3519 (handle_one_xevent): Rename x_check_expected_move from
3520 x_check_fullscreen_move.
3521 (x_set_offset): Only add WM decoration sizes to modified_top/left
3522 for X_WMTYPE_A. Set check_expected_move when WM type is unknown.
3523 (x_check_expected_move): Rename from x_check_fullscreen_move.
3524 Removed fullscreen specific code. Use check_expected_move,
3525 expected_left/top instead. Also, set wm_type.
3526 (x_term_init): Initialize wm_type to unknown.
3527
3528 * frame.c (x_fullscreen_move): Remove addition of WM decoration
3529 sizes to move_x/y.
3530
3531 2003-10-03 Kenichi Handa <handa@m17n.org>
3532
3533 * macterm.c (x_load_font): Clear all members of FONTP before start
3534 filling them.
3535
3536 2003-10-02 Kenichi Handa <handa@m17n.org>
3537
3538 * fontset.c (fs_load_font): Don't set fontp->font_encoder to NULL
3539 before calling find_ccl_program_func. Call find_ccl_program_func
3540 only when fontp->font_encoder is not NULL.
3541
3542 * xterm.c (x_load_font): Clear all members of FONTP before start
3543 filling them.
3544
3545 2003-10-03 John Paul Wallington <jpw@gnu.org>
3546
3547 * keymap.c (map_keymap): Don't abort when binding is a vector.
3548
3549 2003-10-02 Jason Rumney <jasonr@gnu.org>
3550
3551 * makefile.w32-in (emacs.o, coding.o, bytecode.o):
3552 Sync dependencies with Makefile.in.
3553 (alloca.o): Remove.
3554
3555 * w32fns.c (w32_load_system_font): Clear all members of FONTP before
3556 filling them.
3557
3558 * w32bdf.c (w32_load_bdf_font): Likewise.
3559
3560 2003-09-30 Richard M. Stallman <rms@gnu.org>
3561
3562 * term.c (set_tty_color_mode): Calculate current_mode_spec
3563 regardless of value of VAL.
3564
3565 * intervals.c (graft_intervals_into_buffer):
3566 Set BUF_INTERVALS (buffer)->up_obj when appropriate.
3567 Handle over_used when splitting UNDER.
3568
3569 2003-09-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3570
3571 * regex.c (regex_compile): Free the stack when returning from function.
3572
3573 2003-09-28 Kenichi Handa <handa@m17n.org>
3574
3575 * fontset.c (Finternal_char_font): Change return value to
3576 cons (FONT-NAME . GLYPH-CODE).
3577
3578 2003-09-28 Eli Zaretskii <eliz@gnu.org>
3579
3580 * term.c (tty_setup_colors): Treat any negative argument as -1.
3581
3582 2003-09-27 Gaute B Strokkenes <biggaute@uwc.net> (tiny change)
3583
3584 * process.c (send_process): Delete unused temp_buf.
3585
3586 2003-09-26 Dave Love <fx@gnu.org>
3587
3588 * xterm.c (x_bitmap_mask): Declare.
3589
3590 2003-09-25 Dave Love <fx@gnu.org>
3591
3592 * Makefile.in (fns.o): Depend on md5.h.
3593
3594 2003-09-25 Kim F. Storm <storm@cua.dk>
3595
3596 * window.c (set_window_buffer): Fix redisplay problems when
3597 switching between buffers with different display margin widths.
3598
3599 2003-09-23 Kim F. Storm <storm@cua.dk>
3600
3601 * process.c (set_socket_option): Fix :bindtodevice option.
3602 (Fset_network_process_option): Update process contact list when
3603 setting option succeeds.
3604 (Fmake_network_process): Doc fix.
3605
3606 2003-09-23 Dave Love <fx@gnu.org>
3607
3608 * process.c (Fnetwork_interface_info): Use HAVE_STRUCT_IFREQ... macros.
3609
3610 2003-09-22 Eli Zaretskii <eliz@gnu.org>
3611
3612 * term.c (set_tty_color_mode): Use INTEGERP to test whether a
3613 color mode is an integer number (it could be -1).
3614
3615 2003-09-22 Richard M. Stallman <rms@gnu.org>
3616
3617 * intervals.c (graft_intervals_into_buffer): Correct the main loop
3618 in the case where OVER is longer than UNDER.
3619
3620 2003-09-22 Masatake YAMATO <jet@gyve.org>
3621
3622 * window.c (Fset_window_scroll_bars): Validate the value of
3623 `vertical_type'.
3624
3625 2003-09-21 Kim F. Storm <storm@cua.dk>
3626
3627 * frame.c (Vdefault_frame_scroll_bars): New variable.
3628 (x_set_vertical_scroll_bars): Use it instead of hardcoded values.
3629 (syms_of_frame): DEFVAR_LISP it, and initialize according to
3630 window-system default scroll bar position.
3631
3632 * window.c (Fwindow_scroll_bars): Doc fix.
3633
3634 2003-09-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3635
3636 * xterm.c (x_set_offset): Take window manager decorations into account.
3637
3638 2003-09-19 Richard M. Stallman <rms@gnu.org>
3639
3640 * atimer.h: Don't include lisp.h.
3641 (P_): Define it here (as well as elsewhere).
3642
3643 * print.c (Fprin1_to_string): Move the PRINTPREPARE
3644 later, so that PRINTFINISH won't unbind Qinhibit_modification_hooks.
3645
3646 * data.c (Fvariable_binding_locus): New function.
3647 (syms_of_data): defsubr it.
3648 (Flocal_variable_p): Delete duplicate call to indirect_variable.
3649
3650 2003-09-18 Dave Love <fx@gnu.org>
3651
3652 * alloc.c (GC_MALLOC_CHECK): Move conditional undef after lisp.h.
3653
3654 * process.c (Fnetwork_interface_info): Fix type error.
3655 (Fnetwork_interface_list): Doc fix.
3656 (read_process_output, read_process_output): Delete unused var.
3657
3658 2003-09-17 Kim F. Storm <storm@cua.dk>
3659
3660 * process.c (Fnetwork_interface_list, Fnetwork_interface_info):
3661 Require HAVE_NET_IF_H and HAVE_SYS_IOCTL_H to include these fns.
3662 (Fnetwork_interface_info): Check that ifreq struct has required
3663 fields before accessing them; this requires that those fields are
3664 defined as macros, which may be too restrictive on some platforms,
3665 but it is better than failing on other platforms.
3666 (syms_of_process): Only defsubr above fns when included.
3667
3668 2003-09-17 Dave Love <fx@gnu.org>
3669
3670 * unexalpha.c: Don't include varargs.h.
3671
3672 2003-09-17 Kim F. Storm <storm@cua.dk>
3673
3674 * process.c (Fset_process_sentinel): Add sentinel to childp plist
3675 for network process.
3676 (socket_options): Add `:' prefix to option names. Add optbit field.
3677 (set_socket_option): Remove no_error arg and special handling of s < 0.
3678 Return 1<<optbit for known option, 0 for unknown.
3679 Do not interpret 0 as false for boolean option (only nil).
3680 Pass failed option and value to report_file_error.
3681 (Fset_network_process_options): Replace by Fset_network_process_option.
3682 (Fset_network_process_option): New function to set just one option.
3683 (Fmake_network_process): Allow :coding arg to be a cons.
3684 Allow :server arg to be an integer specifying backlog size.
3685 Remove :options arg, and allow options to be specified directly
3686 as :KEY, VALUE pairs. Parse these options before binding socket.
3687 As before, :reuseaddr t is default for a server process, but this
3688 can now be disabled by specifying :reuseaddr nil.
3689 (Fnetwork_interface_info): Rename from Fget_network_interface_info.
3690 (init_process): Availability of network options is now checked with
3691 simpler syntax (featurep 'make-network-process :OPTION); use loop to
3692 setup features.
3693 (syms_of_process): Fix defsubr's for the replaced functions.
3694
3695 2003-09-16 Dave Love <fx@gnu.org>
3696
3697 * Makefile.in: Depend on coding.h.
3698
3699 2003-09-14 Kim F. Storm <storm@cua.dk>
3700
3701 * process.c [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
3702 (Fnetwork_interface_list, Fget_network_interface_info): New defuns.
3703 (syms_of_process): Defsubr them.
3704
3705 * config.in: Regenerate.
3706
3707 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3708
3709 * m/sr2k.h (XMARKBIT, XUNMARK): Remove.
3710 * m/news-r6.h (XUNMARK): Remove.
3711 * m/mips.h (XUNMARK): Remove.
3712 * m/mips-siemens.h (XUNMARK): Remove.
3713 * m/iris4d.h (XUNMARK): Remove.
3714 * m/hp800.h (XMARKBIT, XUNMARK): Remove.
3715
3716 2003-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
3717
3718 * lisp.h (VALBITS): Don't remove 1 for the markbit.
3719 (union Lisp_Object): Use unsigned int for types. Remove markbit.
3720 (MARKBIT): Remove 1 from VALBITS so we still use same old val.
3721 (XTYPE): Use unsigned right-shift.
3722 (XMARKBIT, XMARK, XUNMARK): Remove.
3723
3724 * alloc.c (init_intervals, init_symbol, init_marker):
3725 Don't preallocate anything.
3726 (Fgarbage_collect, mark_object): Ignore the markbit.
3727
3728 * bytecode.c (mark_byte_stack, unmark_byte_stack): Ignore the markbit.
3729
3730 2003-09-08 Lute Kamstra <lute@gnu.org>
3731
3732 * xdisp.c (pint2hrstr): New function.
3733 (decode_mode_spec): Add `%i' and `%I' specs.
3734 * buffer.c (syms_of_buffer): Document `%i' and `%I' constructs
3735 for `mode-line-format'.
3736
3737 2003-09-07 Andreas Schwab <schwab@suse.de>
3738
3739 * alloc.c: Use long instead of int when casting ABLOCKS_BUSY to
3740 avoid warning.
3741
3742 2003-09-07 Eli Zaretskii <eliz@gnu.org>
3743
3744 * editfns.c (region_limit): Support any non-zero value of BEGINNINGP.
3745
3746 2003-09-03 Kim F. Storm <storm@cua.dk>
3747
3748 * xdisp.c (get_window_cursor_type): Partially undo 2002-03-01
3749 change (superseded by 2002-08-30 change); the default blink-off
3750 cursor is now again "no cursor".
3751
3752 2003-09-01 Jason Rumney <jasonr@gnu.org>
3753
3754 * makefile.w32-in (alloca.o): Remove.
3755 (coding.o): Depend on intervals.h
3756 (emacs.o, bytecode.o): Depend on window.h
3757
3758 2003-09-01 Dave Love <fx@gnu.org>
3759
3760 * Makefile.in (alloca.o): Remove commands.
3761 (coding.o): Depend on intervals.h composite.h window.h.
3762 (emacs.o): Depend on window.h keyboard.h keymap.h.
3763 (gtkutil.o): Depend on keyboard.h charset.h coding.h.
3764 (bytecode.o): Depend on window.h.
3765
3766 2003-08-31 Jason Rumney <jasonr@gnu.org>
3767
3768 * w32term.c (w32_per_char_metric): Allow cached metrics to be
3769 returned even when font_type is unknown.
3770
3771 * xdisp.c (init_iterator): Remove old WINDOWSNT conditional.
3772
3773 2003-08-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3774
3775 * xterm.c (x_term_init): Initialize new fields in x_display_info.
3776
3777 * xterm.h (struct x_display_info): Add red/green/blue_bits and
3778 *_offset.
3779
3780 * xfns.c (lookup_rgb_color): Use new fields in x_display_info to
3781 calculate pixel value.
3782
3783 2003-08-29 Gerd Moellmann <gerd.moellmann@t-online.de>
3784
3785 * xdisp.c (redisplay_internal): Fix change of 2003-04-30.
3786 Don't tell redisplay display is accurate when it's actually been
3787 paused for pending input.
3788
3789 2003-08-29 Richard M. Stallman <rms@gnu.org>
3790
3791 * dispnew.c (adjust_glyph_matrix): Call window_box
3792 whenever W is nonzero.
3793
3794 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
3795 (Fkill_local_variable, Fmake_variable_frame_local)
3796 (Flocal_variable_p, Flocal_variable_if_set_p):
3797 Use indirect_variable to trace thru variable aliases.
3798
3799 * config.in: Updated.
3800
3801 * callint.c (Fcall_interactively): Save and restore
3802 Vthis_command, Vthis_original_command, real_this_command,
3803 and current_kboard->Vlast_command.
3804
3805 * abbrev.c (Fexpand_abbrev): Insert before deleting.
3806
3807 2003-08-29 Gerd Moellmann <gerd@gnu.org>
3808
3809 * xfns.c (lookup_rgb_color): Handle TrueColor visuals specially.
3810
3811 2003-08-28 David Abrahams <dave@boost-consulting.com> (tiny change)
3812
3813 * coding.c (decode_coding_iso2022): Initialize local variable c2.
3814 (decode_coding_sjis_big5): Likewise.
3815
3816 2003-08-27 Jason Rumney <jasonr@gnu.org>
3817
3818 * w32.c (sys_pipe): Protect against file descriptor overflow.
3819
3820 * w32fns.c (syms_of_w32fns): Remove non-existent functions.
3821
3822 * w32term.c (w32_read_socket): Fix WM_MOUSEWHEEL assignment.
3823
3824 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
3825
3826 * xfns.c (Vgtk_version_string): New variable.
3827 (syms_of_xfns): DEFVAR_LISP it. Provide gtk.
3828
3829 2003-08-24 Eli Zaretskii <eliz@gnu.org>
3830
3831 * term.c (term_init): Remove `const' from buffer_size's declaration.
3832
3833 * Makefile.in (msdos.o): Depend on intervals.h.
3834
3835 * msdos.c: Include intervals.h, since STRING_INTERVALS requires that.
3836
3837 2003-08-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3838
3839 * xterm.h (struct x_display_info): New fields: client_leader_window
3840 and Xatom_wm_client_leader.
3841
3842 * xterm.c (x_initialize): Move call to x_session_initialize to ...
3843 (x_term_init): ... here. Initialize client_leader fields in dpyinfo.
3844
3845 * xsmfns.c (create_client_leader_window): New function.
3846 (x_session_initialize): Call create_client_leader_window, take
3847 dpyinfo as argument.
3848
3849 * xfns.c (Fx_create_frame): Set property WM_CLIENT_LEADER.
3850
3851 * Makefile.in (xsmfns.o): Add more depenedencies.
3852
3853 2003-08-21 Dave Love <fx@gnu.org>
3854
3855 * m/iris4d.h: Use _MIPS_SZLONG, not _LP64.
3856
3857 2003-08-21 Kenichi Handa <handa@m17n.org>
3858
3859 * term.c (term_init): Fix previous change; don't rely on the
3860 length of `buffer' if TERMINFO is defined.
3861
3862 2003-08-20 Dave Love <fx@gnu.org>
3863
3864 * atimer.h: Include lisp.h.
3865
3866 * lisp.h (EMACS_LISP_H): New.
3867 (popup_activated_flag): Don't declare.
3868
3869 * alloca.c: Some merging with gnulib. Change logic and doc
3870 concerning (x)malloc/(x)free -- no longer Emacs-specific.
3871 [DO_BLOCK_INPUT]: Don't include lisp.h.
3872 (xmalloc, xfree): Declare.
3873 (malloc): Don't declare.
3874
3875 * Makefile.in (LWLIB_OPTIONS): Remove (unused).
3876 (alloca.o): Remove obsolete stuff concerning alloca.s. Depend on
3877 atimer.h, blockinput.h.
3878
3879 * alloc.c (lisp_align_malloc): Change type of `aligned'.
3880
3881 * alloca.s: Removed.
3882
3883 2003-08-19 Gerd Moellmann <gerd@gnu.org>
3884
3885 * s/freebsd.h [__FreeBSD_version >= 400000]: Define TERMINFO,
3886 use -lncurses.
3887
3888 * term.c (term_init): Use a buffer of size 4096 for tgetent since
3889 FreeBSD returns something longer than 2044. Abort if the end of
3890 the buffer is overwritten.
3891
3892 2003-08-19 Miles Bader <miles@gnu.org>
3893
3894 * xterm.c (x_term_init): Correctly use result of Ffile_readable_p.
3895
3896 2003-08-19 Gerd Moellmann <gerd@gnu.org>
3897
3898 * alloc.c (lisp_align_malloc): Check for memory full when
3899 allocating ablocks, which also avoids freeing a pointer into an
3900 ablocks structure.
3901
3902 * puresize.h (BASE_PURESIZE): Increase to 1100000.
3903
3904 * buffer.c (Fmove_overlay): Set overlay's next pointer unconditionally.
3905
3906 2003-08-16 Richard M. Stallman <rms@gnu.org>
3907
3908 * editfns.c (Fencode_time): Doc fix.
3909
3910 2003-08-16 David Ponce <david@dponce.com>
3911
3912 * fileio.c (Fwrite_region): Fix conditional expression to issue
3913 the right message.
3914
3915 2003-08-16 Juri Linkov <juri@jurta.org> (tiny change)
3916
3917 * syntax.c (Fforward_word): Argument changed to optional.
3918 Set default value to 1.
3919
3920 2003-08-15 Kenichi Handa <handa@m17n.org>
3921
3922 * xfaces.c (better_font_p): Prefer a real scalable font; i.e. not
3923 what autoscaled.
3924 (best_matching_font): Once we find a better scalable font, set
3925 non_scalable_has_exact_height_p to 1.
3926 (try_font_list): Call try_alternative_families to try any family
3927 with the given registry.
3928
3929 2003-08-09 Andreas Schwab <schwab@suse.de>
3930
3931 * alloc.c (mark_object): Handle Lisp_Misc_Save_Value.
3932
3933 * print.c (print_string): Fix printing of multibyte string with
3934 nontrivial printcharfun.
3935
3936 2003-07-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3937
3938 * xfns.c (xg_set_icon): Rewrite to compile with GTK 2.0 and 2.2.
3939
3940 * xterm.c (x_bitmap_icon): Return if xg_set_icon succeeds.
3941
3942 2003-07-31 Kenichi Handa <handa@m17n.org>
3943
3944 * process.c (read_process_output): Return the actually read bytes
3945 instead of the result of decoding.
3946
3947 2003-07-31 Kenichi Handa <handa@m17n.org>
3948
3949 * xterm.h (struct x_bitmap_record): New member have_mask.
3950
3951 * xfns.c (x_create_bitmap_from_data): Initialize have_mask member
3952 to 0.
3953 (x_create_bitmap_from_file): Likewise.
3954 (x_destroy_bitmap): Check have_mask member before freeing a mask.
3955 (x_destroy_all_bitmaps): Likewise.
3956 (x_create_bitmap_mask): Set have_mask member to 1.
3957
3958 2003-07-30 Richard M. Stallman <rms@gnu.org>
3959
3960 * Makefile.in (CFLAGS) [!OPTIMIZE]: Undo previous change.
3961
3962 2003-07-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3963
3964 * gtkutil.c (xg_mark_data): Update calls to mark_object.
3965
3966 2003-07-29 Richard M. Stallman <rms@gnu.org>
3967
3968 * xterm.c (xim_open_dpy, xim_initialize, xim_close_dpy):
3969 Conditionalize XIM code on HAVE_XIM.
3970
3971 * fns.c (Fclear_string): New function.
3972 (syms_of_fns): defsubr it.
3973
3974 2003-07-28 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
3975
3976 * xfns.c (xic_set_preeditarea): Add the left fringe width to spot.x.
3977
3978 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
3979
3980 * xfns.c: Don't check HAVE_PNG_H: autoconf doesn't seem to find it.
3981
3982 * buffer.c (delete_all_overlays): New function.
3983 * buffer.h (delete_all_overlays): Declare.
3984 * coding.c (run_pre_post_conversion_on_str):
3985 * print.c (temp_output_buffer_setup):
3986 * fileio.c (Finsert_file_contents):
3987 * minibuf.c (get_minibuffer): Use it.
3988
3989 2003-07-22 Andrew Choi <akochoi@shaw.ca>
3990
3991 * unexmacosx.c (unexec_regions_sort_compare):
3992 (unexec_regions_merge): New functions. Sort and merge unexec
3993 regions before dumping them.
3994
3995 2003-07-22 Dave Love <fx@gnu.org>
3996
3997 * xfns.c [HAVE_PNG]: Consider both png.h and libpng/png.h.
3998
3999 2003-07-21 Stefan Monnier <monnier@cs.yale.edu>
4000
4001 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P)
4002 (GC_STRING_CHARS, string_bytes): Use ARRAY_MARK_FLAG rather than
4003 MARKBIT as the gcmarkbit for strings.
4004
4005 2003-07-21 Richard M. Stallman <rms@gnu.org>
4006
4007 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Add undef.
4008
4009 * fns.c (Flocale_info): Rename from Flanginfo. Doc fixes.
4010 (syms_of_fns): Corresponding change.
4011
4012 * alloc.c (syms_of_alloc): Doc fixes.
4013
4014 2003-07-20 Han Boetes <han@mijncomputer.nl> (tiny change)
4015
4016 * s/netbsd.h: Use -Wl syntax.
4017
4018 2003-07-17 Richard M. Stallman <rms@gnu.org>
4019
4020 * xterm.c (xim_initialize): Redo 6/24 change.
4021
4022 2003-07-15 Stefan Monnier <monnier@cs.yale.edu>
4023
4024 * buffer.c (copy_overlays): Use EMACS_INT for positions.
4025 (Fswitch_to_buffer): Don't signal an error when switching to the same
4026 buffer in a dedicated window.
4027
4028 * alloc.c: Use bitmaps for cons, as was done for floats.
4029 (init_float, init_cons): Let the normal code allocate the first block.
4030 (CONS_BLOCK_SIZE): Redefine based on BLOCK_BYTES and bitmap size.
4031 (CONS_BLOCK, CONS_INDEX, CONS_MARKED_P, CONS_MARK, CONS_UNMARK):
4032 New macros.
4033 (struct cons_block): Move conses to the beginning. Add gcmarkbits.
4034 (Fcons): Use lisp_align_malloc and CONS_UNMARK.
4035 (live_cons_p): Check the pointer is not past the `conses' array.
4036 (mark_maybe_object, mark_maybe_pointer): Use CONS_MARKED_P.
4037 (mark_object, mark_buffer): Use CONS_MARKED_P and CONS_MARK.
4038 (survives_gc_p): Use CONS_MARKED_P and simplify.
4039 (gc_sweep): Use CONS_MARKED_P, CONS_UNMARK, and lisp_align_free.
4040
4041 2003-07-13 Paul Eggert <eggert@twinsun.com>
4042
4043 GCC 3.3 (sparc) no longer puts "int foo = 0;" into data; it
4044 puts it into BSS instead, at least on Solaris 8 and 9.
4045 This is a valid optimization, and it may occur on other platforms,
4046 so Emacs should not assume that initializing a static variable to
4047 zero puts it into data.
4048 * alloc.c (pure, staticvec):
4049 Initialize these arrays to nonzero, so that they're not
4050 put into BSS by that optimization.
4051
4052 2003-07-13 Stefan Monnier <monnier@cs.yale.edu>
4053
4054 * alloc.c (BLOCK_PADDING): Rename from ABLOCKS_PADDING. Update users.
4055 (lisp_align_malloc): Use posix_memalign is available.
4056 (ABLOCKS_BASE): Use HAVE_POSIX_MEMALIGN as an optimization.
4057 (STRING_BLOCK_SIZE): Rename from STRINGS_IN_STRING_BLOCK
4058 for consistency. Update users.
4059
4060 2003-07-13 Richard M. Stallman <rms@gnu.org>
4061
4062 * s/netbsd.h (START_FILES_1, END_FILES_1): Always define them.
4063
4064 2003-07-13 Terje Rosten <terjeros@phys.ntnu.no>
4065
4066 * xterm.c (x_bitmap_icon,x_wm_set_icon_pixmap): Modify to add mask,
4067 and use the Gtk+ function gtk_window_icon_from_file if available.
4068
4069 * xfns.c (x_bitmap_mask, x_create_bitmap_mask): New functions to
4070 handle mask of bitmaps.
4071 (x_allocate_bitmap_record, x_destroy_bitmap): Modify to handle the
4072 mask property.
4073 (xg_set_icon): New function, wrapper for gtk_window_icon_from_file.
4074
4075 * xterm.h (xg_set_icon): New function.
4076
4077 2003-07-12 Paul Eggert <eggert@twinsun.com>
4078
4079 * unexelf.c (unexec): Consider a section to precede the .bss
4080 section if its addresses overlap that of .bss.
4081
4082 2003-07-12 Richard M. Stallman <rms@gnu.org>
4083
4084 * Makefile.in (CFLAGS) [!OPTIMIZE]: Set CFLAGS to -g.
4085
4086 * config.in (HAVE_CRTIN): Add #undef.
4087 (INLINE): Really inline only if OPTIMIZE is defined.
4088
4089 * s/netbsd.h (START_FILES, LIB_STANDARD): Use START_FILES_1,
4090 END_FILES_1.
4091 (START_FILES_1, END_FILES_1): New macros (conditional).
4092 (LD_SWITCH_SYSTEM_TEMACS): Define.
4093
4094 * s/openbsd.h: Don't include bsd4-3.h.
4095 (TERMINFO): Define.
4096 (LIBS_TERMCAP): Define.
4097 (LD_SWITCH_SYSTEM): Define (two definitions).
4098
4099 * xfns.c: Include libpng/png.h instead of png.h.
4100
4101 2003-07-11 Andreas Schwab <schwab@suse.de>
4102
4103 * buffer.c (modify_overlay): Update prototype.
4104 * lisp.h (adjust_overlays_for_insert, adjust_overlays_for_delete):
4105 Likewise.
4106
4107 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
4108
4109 * lisp.h (VALBITS): Define in terms of GCTYPEBITS.
4110 (struct interval): Move to intervals.h.
4111 (struct Lisp_Marker): Use EMACS_INT for position info.
4112 (forward_point): Remove prototype of defunct function.
4113 (Qmodification_hooks, Qrear_nonsticky, Fnext_property_change)
4114 (Fget_text_property, Fset_text_properties, Ftext_propertes_not_all)
4115 (syms_of_textprop, set_text_properties): Remove prototypes that are
4116 already in intervals.h.
4117
4118 * intervals.h (struct interval): Move from lisp.h.
4119 Use EMACS_INT for position and size info.
4120
4121 * coding.c: Include intervals.h for Fset_text_properties.
4122
4123 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
4124 position and length information.
4125
4126 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
4127
4128 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
4129 position and length information.
4130
4131 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
4132
4133 Change overlays_after and overlays_before so the overlays themselves
4134 are linked into lists, rather than using cons cells. After all each
4135 Lisp_Misc already occupies 5 words, so we can add a `next' field to
4136 Lisp_Overlay for free and save up one cons cell per overlay (not
4137 to mention one indirection when traversing the list of overlay).
4138
4139 * lisp.h (struct Lisp_Overlay): New field `next'.
4140
4141 * buffer.h (struct buffer): Change overlays_before and overlays_after
4142 from Lisp lists of overlays to pointers to overlays.
4143
4144 * buffer.c (overlay_strings, recenter_overlay_lists):
4145 Fix typo in eassert in last commit.
4146 (unchain_overlay): New function.
4147 (add_overlay_mod_hooklist): Use AREF.
4148 (copy_overlays, reset_buffer, overlays_at, overlays_in)
4149 (overlay_touches_p, overlay_strings, recenter_overlay_lists)
4150 (fix_overlays_in_range, fix_overlays_before, Fmake_overlay)
4151 (Fmove_overlay, Fdelete_overlay, Foverlay_lists)
4152 (report_overlay_modification, evaporate_overlays, init_buffer_once):
4153 Adjust to new type of overlays_(before|after).
4154
4155 * alloc.c (mark_object): Mark the new `next' field of overlays.
4156 (mark_buffer): Manually mark the overlays_(after|before) fields.
4157
4158 * coding.c (run_pre_post_conversion_on_str):
4159 * editfns.c (overlays_around):
4160 * xdisp.c (load_overlay_strings):
4161 * fileio.c (Finsert_file_contents):
4162 * indent.c (current_column):
4163 * insdel.c (signal_before_change, signal_after_change):
4164 * intervals.c (set_point_both):
4165 * print.c (temp_output_buffer_setup): Use new type for
4166 overlays_(before|after).
4167
4168 2003-07-08 Stefan Monnier <monnier@cs.yale.edu>
4169
4170 * buffer.c (report_overlay_modification): Don't run hooks while
4171 traversing the list of overlays.
4172
4173 * buffer.h (struct buffer): Use an int for overlay_center.
4174 (overlays_at, evaporate_overlays, recenter_overlay_lists)
4175 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
4176
4177 * buffer.c (reset_buffer, recenter_overlay_lists)
4178 (adjust_overlays_for_insert, adjust_overlays_for_delete)
4179 (fix_overlays_in_range, Fmake_overlay, Fmove_overlay)
4180 (evaporate_overlays, init_buffer_once): Update use of overlay_center.
4181 (overlays_at, evaporate_overlays, recenter_overlay_lists)
4182 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
4183
4184 * xdisp.c (fast_find_position): Remove unused var.
4185
4186 * cmds.c (Qexpand_abbrev): New sym.
4187 (syms_of_cmds): Initialize it.
4188 (internal_self_insert): Use it to call expand-abbrev.
4189
4190 2003-07-09 Kim F. Storm <storm@cua.dk>
4191
4192 * xterm.c (use_xim) [!USE_XIM]: Default to disable XIM if Emacs
4193 was configured with --without-xim.
4194 (x_term_init) [!USE_XIM]: Use `useXIM' resource to turn on XIM.
4195
4196 2003-07-07 Richard M. Stallman <rms@gnu.org>
4197
4198 * xdisp.c (reseat_1): Set it->area to TEXT_AREA.
4199
4200 * alloc.c (Fgarbage_collect): Doc fix.
4201
4202 2003-07-07 Nozomu Ando <nand@mac.com> (tiny change)
4203
4204 * buffer.c (Fkill_buffer): Clear charpos cache if necessary.
4205
4206 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
4207
4208 * minibuf.c (read_minibuf): UNGCPRO before returning.
4209 (Ftry_completion, Fall_completions): Doc fix.
4210
4211 * alloc.c (live_float_p): Check that p is not past the `floats' array,
4212 now that `floats' is not the last element of the struct any more.
4213
4214 2003-07-06 Jason Rumney <jasonr@gnu.org>
4215
4216 * w32term.h (ClipboardSequence_Proc): New type.
4217
4218 * w32fns.c (clipboard_sequence_fn): New variable.
4219 (globals_of_w32fns): Initialize it.
4220
4221 * w32select.c (last_clipboard_sequence_number): New variable.
4222 (Fw32_set_clipboard_data, Fw32_get_clipboard_data): Use sequence
4223 number if possible.
4224
4225 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
4226
4227 * m/amdx86-64.h (MARKBIT):
4228 * m/ia64.h (MARKBIT): Remove definition since lisp.h does not compare
4229 MARKBIT and ARRAY_MARK_FLAG any more.
4230
4231 * m/hp800.h (XSETMARKBIT):
4232 * m/sr2k.h (XSETMARKBIT):
4233 * lisp.h (XSETMARKBIT): Remove unused macro.
4234
4235 * lisp.h (mark_object): Change prototype.
4236
4237 * alloc.c (mark_object): Change arg *Lisp_Object -> Lisp_Object.
4238 (last_marked): Change accordingly.
4239 (mark_interval, mark_maybe_object, mark_maybe_pointer)
4240 (Fgarbage_collect, mark_glyph_matrix, mark_face_cache, mark_image)
4241 (mark_buffer): Update calls to mark_object.
4242
4243 * bytecode.c (mark_byte_stack):
4244 * fns.c (sweep_weak_table):
4245 * keyboard.c (mark_kboards): Update calls to mark_object.
4246
4247 2003-07-06 Jason Rumney <jasonr@gnu.org>
4248
4249 * alloc.c (struct ablock): Only include padding when there is some.
4250
4251 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
4252
4253 * alloc.c (ALIGN): Add casts to simplify usage.
4254 (BLOCK_ALIGN, BLOCK_BYTES, ABLOCKS_PADDING, ABLOCKS_SIZE)
4255 (ABLOCKS_BYTES, ABLOCK_ABASE, ABLOCKS_BUSY, ABLOCKS_BASE): New macros.
4256 (struct ablock, struct ablocks): New types.
4257 (free_ablock): New global var.
4258 (lisp_align_malloc, lisp_align_free): New functions.
4259 (FLOAT_BLOCK_SIZE): Redefine in terms of BLOCK_BYTES.
4260 (struct float_block): Reorder and add gcmarkbits.
4261 (GETMARKBIT, SETMARKBIT, UNSETMARKBIT, FLOAT_BLOCK, FLOAT_INDEX)
4262 (FLOAT_MARKED_P, FLOAT_MARK, FLOAT_UNMARK): New macros.
4263 (init_float, make_float): Use lisp_align_malloc.
4264 (free_float, live_float_p): Don't use `type' any more.
4265 (make_float): Use FLOAT_UNMARK to access to mark bit.
4266 (mark_maybe_object, mark_maybe_pointer, survives_gc_p):
4267 Use FLOAT_MARKED_P to access the mark bit.
4268 (pure_alloc): Simplify use of ALIGN.
4269 (mark_object): Use FLOAT_MARK to access the mark bit.
4270 (gc_sweep): Use new macros to access the float's mark bit.
4271 (init_alloc_once): Init free_ablock.
4272
4273 * lisp.h (struct Lisp_Float): Remove unused field `type'.
4274
4275 2003-06-27 Stefan Monnier <monnier@cs.yale.edu>
4276
4277 * alloc.c (VECTOR_MARK, VECTOR_UNMARK, VECTOR_MARKED_P): New macros.
4278 (GC_STRING_BYTES): Don't mask markbit (it's only used on `size').
4279 (allocate_buffer): Move.
4280 (string_bytes): Don't mask markbit of `size_byte'.
4281 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
4282 (mark_object, mark_buffer, survives_gc_p, gc_sweep):
4283 Use the `size' field of buffers (rather than the `name' field) for
4284 the mark bit, as is done for all other vectorlike objects.
4285 Use the new macros to access the mark bit of vectorlike objects.
4286
4287 2003-06-26 Richard M. Stallman <rms@gnu.org>
4288
4289 * puresize.h (BASE_PURESIZE): Increment base size.
4290
4291 * xdisp.c (fast_find_position): Enable Gerd's new definition.
4292
4293 * xterm.c (xim_initialize): Undo previous change.
4294
4295 2003-06-26 Stefan Monnier <monnier@cs.yale.edu>
4296
4297 * alloc.c (survives_gc_p): Simplify.
4298
4299 * buffer.c (set_buffer_internal_1): Test CONSP for lists.
4300
4301 * window.c (Fset_window_dedicated_p): Simplify.
4302 (display_buffer_1): Don't raise the win from which minibuf was entered.
4303 (temp_output_buffer_show): Don't assume BEG == 1. Simplify.
4304 (Fminibuffer_selected_window): Simplify.
4305
4306 * buffer.h (struct buffer_text): Lisp_Object `markers' => Lisp_Marker.
4307
4308 * lisp.h (unchain_marker): Lisp_Object arg => Lisp_Marker.
4309 (struct Lisp_Marker): Lisp_Object `chain' => Lisp_Marker `next'.
4310
4311 * insdel.c (check_markers, adjust_markers_for_delete)
4312 (adjust_markers_for_insert, adjust_markers_for_replace)
4313 (prepare_to_modify_buffer, RESTORE_VALUE):
4314 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos)
4315 (Fset_marker, set_marker_restricted, set_marker_both, unchain_marker)
4316 (set_marker_restricted_both, Fbuffer_has_markers_at, count_markers):
4317 * alloc.c (Fmake_marker, free_marker, gc_sweep):
4318 * buffer.c (Fget_buffer_create, Fkill_buffer, Fset_buffer_multibyte):
4319 * editfns.c (save_excursion_restore, transpose_markers):
4320 * window.c (delete_window):
4321 * xdisp.c (message_dolog): Update for new types.
4322
4323 2003-06-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4324
4325 * xfaces.c (set_font_frame_param): Set default_face_done_p to zero.
4326 (realize_default_face): Use default_face_done_p for the force_p
4327 argument to set_lface_from_font_name. Set default_face_done_p to one.
4328
4329 * frame.c (make_frame): Initialize default_face_done_p.
4330
4331 * frame.h (struct frame): Add default_face_done_p.
4332
4333 * config.in: Add XRegisterIMInstantiateCallback_arg6 so it
4334 will be defined.
4335
4336 2003-06-25 Stefan Monnier <monnier@cs.yale.edu>
4337
4338 * alloc.c (make_interval, Fmake_symbol, allocate_misc):
4339 Initialize the new field `gcmarkbit'.
4340 (mark_interval, MARK_INTERVAL_TREE): Use the new `gcmarkbit' field.
4341 (mark_interval_tree): Don't mark the tree separately from the nodes.
4342 (UNMARK_BALANCE_INTERVALS): Don't unmark the tree.
4343 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
4344 (mark_object, survives_gc_p, gc_sweep): Use new `gcmarkbit' fields.
4345
4346 * lisp.h (struct interval, struct Lisp_Symbol, struct Lisp_Free)
4347 (struct Lisp_Marker, struct Lisp_Intfwd, struct Lisp_Boolfwd)
4348 (struct Lisp_Kboard_Objfwd, struct Lisp_Save_Value)
4349 (struct Lisp_Buffer_Local_Value, struct Lisp_Overlay)
4350 (struct Lisp_Objfwd, struct Lisp_Buffer_Objfwd): Add `gcmarkbit' field.
4351
4352 2003-06-24 Dave Love <fx@gnu.org>
4353
4354 * xterm.c (xim_initialize): Use XRegisterIMInstantiateCallback_arg6.
4355
4356 * strftime.c: Test HAVE_SYS__MBSTATE_H, not __hpux. Merge changes
4357 from gnulib.
4358
4359 2003-06-21 Richard M. Stallman <rms@gnu.org>
4360
4361 * fileio.c (Fwrite_region): Alternate messages
4362 for append and partial write.
4363
4364 * keyboard.c (read_key_sequence): When converting upcase fn key to
4365 downcase, update fkey and keytran so `backspace' gets translated.
4366
4367 * keyboard.c (read_avail_input): Don't signal SIGHUP in batch mode.
4368
4369 * process.c (wait_reading_process_input): Don't signal SIGIO
4370 in batch mode.
4371
4372 2003-06-17 Kenichi Handa <handa@m17n.org>
4373
4374 * Makefile.in (xselect.o): Don't depend on charset.h, coding.h,
4375 composite.h.
4376
4377 * xselect.c: Don't include charset.h, coding.h, composite.h.
4378 (Qforeign_selection): New variable.
4379 (syms_of_xselect): Intern and static it.
4380 (selection_data_to_lisp_data): Return a unibyte string made from
4381 data with `foreign-selection' text property.
4382
4383 2003-06-15 Stefan Monnier <monnier@cs.yale.edu>
4384
4385 * termhooks.h (EVENT_INIT): New macro.
4386
4387 * keyboard.c (mark_kboards): Move from alloc.c. Mark kbd_buffer.
4388
4389 * alloc.c (mark_kboards): Move to keyboard.c.
4390
4391 * keyboard.c (record_asynch_buffer_change, read_avail_input):
4392 * xterm.c (x_dispatch_event):
4393 * xmenu.c (find_and_call_menu_selection):
4394 * xdisp.c (handle_tool_bar_click):
4395 * w32menu.c (menubar_selection_callback):
4396 * sysdep.c (kbd_input_ast, read_input_waiting):
4397 * msdos.c (dos_rawgetc):
4398 * macterm.c (mac_check_for_quit_char):
4399 * macmenu.c (menubar_selection_callback):
4400 * gtkutil.c (xg_tool_bar_callback): Don't pass uninitialized
4401 data to kbd_buffer_store_event.
4402
4403 2003-06-15 Kim F. Storm <storm@cua.dk>
4404
4405 * xdisp.c (x_fix_overlapping_area): Always use area relative X
4406 to fix redisplay problem with tall characters (such as \e,AC\e(B).
4407
4408 2003-06-13 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
4409
4410 * fileio.c (Fcopy_file): Doc fix: copies file modes, too.
4411
4412 2003-06-12 Kenichi Handa <handa@m17n.org>
4413
4414 * fileio.c (Fwrite_region): Save and restore restriction.
4415
4416 2003-06-12 Dave Love <fx@gnu.org>
4417
4418 * alloca.c (alloca): Declare arg as size_t.
4419
4420 * sysdep.c: Remove redundant include of unistd.h, stdlib.h.
4421 Use HAVE_DECL_SYS_SIGLIST, not SYS_SIGLIST_DECLARED.
4422
4423 2003-06-11 Dave Love <fx@gnu.org>
4424
4425 * search.c (shrink_regexp_cache): Use xrealloc.
4426 (syms_of_search): Use xmalloc.
4427
4428 2003-06-10 Kim F. Storm <storm@cua.dk>
4429
4430 * xdisp.c (phys_cursor_in_rect_p): Fix 2003-05-24 change.
4431 Adjust phys_cursor.x to be relative to window box, rather than
4432 text area before checking -- to ensure cursor is redrawn when
4433 exposing window.
4434 Note: This also fixes a similar (older) bug if display margins
4435 are present.
4436
4437 2003-06-06 Kenichi Handa <handa@m17n.org>
4438
4439 * coding.c (encoding_buffer_size): If coding->type is
4440 coding_type_ccl, double magnification on CRLF encoding.
4441
4442 2003-06-06 Jason Rumney <jasonr@gnu.org>
4443
4444 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): New constant.
4445 (w32_get_string_resource): Try SYSTEM_DEFAULT_RESOURCES last.
4446
4447 * xfaces.c (Finternal_face_x_get_resource): Do it on Windows and
4448 Mac too.
4449
4450 2003-06-05 Dave Love <fx@gnu.org>
4451
4452 * strftime.c: Merge changes from gnulib.
4453
4454 * mktime.c (__mktime_internal): Merge changes from gnulib
4455 involving year 69 and dst2.
4456
4457 Changes to merge with gnulib version and be consistent with the
4458 autoconf test:
4459
4460 * getloadavg.c: Set NLIST_STRUCT from HAVE_NLIST_H.
4461 Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not NLIST_NAME_UNION.
4462 [HAVE_LOCALE_H]: Include locale.h.
4463 (getloadavg) [HAVE_SETLOCALE]: Run sscanf in C locale.
4464
4465 2003-06-05 Kim F. Storm <storm@cua.dk>
4466
4467 * window.c (coordinates_in_window): Convert X and Y to window
4468 relative coordinates inside mode-line and header-line parts.
4469 Convert X and Y to margin area relative coordinates inside left
4470 and right display margin parts.
4471
4472 2003-06-05 Jason Rumney <jasonr@gnu.org>
4473
4474 * w32fns.c (add_system_logical_colors_to_map): New function.
4475 (Fx_open_connection): Use it.
4476
4477 2003-06-04 Stefan Monnier <monnier@cs.yale.edu>
4478
4479 * process.c (allocate_pty): Revert part of the previous patch.
4480 (Faccept_process_output): Simplify.
4481
4482 2003-06-04 Jason Rumney <jasonr@gnu.org>
4483
4484 * termhooks.h (enum event_kind): Remove MOUSE_WHEEL_EVENT.
4485
4486 * keyboard.c (Qmouse_wheel, mouse_wheel_syms)
4487 (lispy_mouse_wheel_names): Remove.
4488 (syms_of_keyboard): Remove Qmouse_wheel and mouse_wheel_syms.
4489 Always define drag_and_drop_syms.
4490
4491 * macterm.c (XTread_socket): Map mouse wheel events to Emacs
4492 WHEEL_EVENT events.
4493
4494 2003-06-03 Stefan Monnier <monnier@cs.yale.edu>
4495
4496 * xdisp.c (update_tool_bar): Add missing UNGCPRO.
4497
4498 * buffer.c (init_buffer_once): Make kill-buffer-hook permanent-local.
4499
4500 2003-06-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4501
4502 * gtkutil.c (make_menu_item): Make sure we don't crash on a NULL
4503 menu item label.
4504
4505 2003-06-03 Richard M. Stallman <rms@gnu.org>
4506
4507 * window.c (Fwindow_edges): Doc fix.
4508 (Fwindow_pixel_edges, Fwindow_inside_edges)
4509 (Fwindow_inside_pixel_edges): New functions.
4510 (syms_of_window): defsubr them.
4511
4512 * window.h (WINDOW_LEFT_FRINGE_COLS, WINDOW_RIGHT_FRINGE_COLS)
4513 (WINDOW_MODE_LINE_LINES, WINDOW_HEADER_LINE_LINES): New macros.
4514
4515 2003-06-02 Stefan Monnier <monnier@cs.yale.edu>
4516
4517 * dispnew.c (Fsit_for): Don't lie about the number of args.
4518
4519 2003-06-02 Dave Love <fx@gnu.org>
4520
4521 * callproc.c: Use HAVE_FCNTL_H, not USG5.
4522 (syms_of_callproc) <process-environment>: Doc fix.
4523
4524 * doc.c: Use HAVE_FCNTL_H, not USG5.
4525
4526 * xfaces.c (font_rescale_ratio): Fix for K&R.
4527
4528 * termcap.c: Use HAVE_FCNTL_H, not _POSIX_VERSION.
4529
4530 * mem-limits.h: Use HAVE_SYS_RESOURCE_H, HAVE_SYS_VLIMIT_H.
4531
4532 * lread.c [HAVE_FCNTL_H]: Include fcntl.h.
4533
4534 * gtkutil.c: Include keyboard.h, charset.h, coding.h.
4535 (xg_create_frame_widgets): Use ENCODE_UTF_8.
4536
4537 * xterm.c (Qutf_8): Move to coding.c
4538
4539 * xmenu.c (ENCODE_MENU_STRING): New.
4540 (list_of_panes, list_of_items, digest_single_submenu, xmenu_show):
4541 Use it.
4542
4543 * coding.h (ENCODE_UTF_8): New.
4544 (Qutf_8): Declare.
4545
4546 * coding.c (Qutf_8): New.
4547 (syms_of_coding): Intern it.
4548
4549 * fns.c: Doc fixes.
4550
4551 2003-06-02 Kenichi Handa <handa@m17n.org>
4552
4553 * buffer.c (Fset_buffer_multibyte): Fix previous change.
4554
4555 2003-06-01 Stefan Monnier <monnier@cs.yale.edu>
4556
4557 * lread.c (openp): Make sure STR is a string.
4558
4559 2003-06-01 David Ponce <david@dponce.com>
4560
4561 * termhooks.h (enum event_kind): Added new WHEEL_EVENT event.
4562 Declare MOUSE_WHEEL_EVENT only if MAC_OSX defined.
4563
4564 * keyboard.c (Qmouse_wheel): Declare only if MAC_OSX defined.
4565 (mouse_wheel_syms, lispy_mouse_wheel_names): Likewise.
4566 (discard_mouse_events): Discard WHEEL_EVENT events too.
4567 (lispy_wheel_names, wheel_syms): New.
4568 (syms_of_keyboard): Init and staticpro `wheel_syms'. Init and
4569 staticpro `Qmouse_wheel' and `mouse_wheel_syms' only if MAC_OSX
4570 defined.
4571 (make_lispy_event): Add WHEEL_EVENT handler.
4572
4573 * w32term.c (construct_mouse_wheel): Construct WHEEL_EVENT.
4574 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
4575 WHEEL_EVENT events.
4576
4577 2003-05-31 John Paul Wallington <jpw@gnu.org>
4578
4579 * Makefile.in (lisp, shortlisp): byte-run, float-sup, map-ynp, and
4580 timer are in lisp/emacs-lisp.
4581
4582 2003-05-31 Kenichi Handa <handa@m17n.org>
4583
4584 * buffer.c (Fset_buffer_multibyte): Correctly recover a narrowed
4585 region when a buffer is changed to unibyte.
4586
4587 * charset.h (VALID_LEADING_CODE_P): New macro.
4588 (UNIBYTE_STR_AS_MULTIBYTE_P): Check more rigidly.
4589
4590 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): If coding->flags
4591 is nonzero, accept multibyte form of eight-bit-control chars.
4592 (decode_composition_emacs_mule): Likewise.
4593 (decode_coding_emacs_mule): Likewise.
4594 (encode_coding_emacs_mule): If coding->flags is nonzero, produce
4595 multibyte form of eight-bit-control chars.
4596
4597 * fileio.c (Qauto_save_coding, auto_save_coding): New variables.
4598 (Finsert_file_contents): If coding-system-for-read is bound to
4599 Qauto_save_coding, use the coding system emacs-mule with special
4600 setting for recovering a file.
4601 (choose_write_coding_system): On auto saving, use the coding
4602 system emacs-mule with special setting for auto saving.
4603 (syms_of_fileio) <Qauto_save_coding>: Intern and staticpro it.
4604
4605 2003-05-30 Kenichi Handa <handa@m17n.org>
4606
4607 * coding.c (ccl_coding_driver): Set ccl->eight_bit_control
4608 properly before calling ccl_driver.
4609
4610 * ccl.h (struct ccl_program) <eight_bit_control>: Comment fixed.
4611
4612 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when it is
4613 nonzero.
4614 (ccl_driver): Initialize extra_bytes to ccl->eight_bit_control.
4615 (setup_ccl_program): Initialize ccl->eight_bit_control to zero.
4616
4617 2003-05-29 Glenn Morris <gmorris@ast.cam.ac.uk>
4618
4619 * xfaces.c (realize_default_face): Do not abort if lface is
4620 non-existent - reverts change from 2003-05-19.
4621
4622 2003-05-29 Kenichi Handa <handa@m17n.org>
4623
4624 * coding.c (decode_coding_iso2022): Pay attention to the byte
4625 sequence of CTEXT extended segment, and retain those bytes as is.
4626
4627 2003-05-28 Kenichi Handa <handa@m17n.org>
4628
4629 * coding.c (ENCODE_UNSAFE_CHARACTER): Adjusted for the name change
4630 of CODING_REPLACEMENT_CHARACTER.
4631 (decode_coding_iso2022): If CODING_FLAG_ISO_SAFE, set
4632 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in coding->mode, and
4633 check this flag on encoding.
4634 (encode_coding_sjis_big5): Check
4635 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag of coding->mode.
4636 (Fset_terminal_coding_system_internal): Set
4637 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in terminal_coding.mode
4638 instead of setting CODING_FLAG_ISO_SAFE flag in
4639 terminal_coding.flags.
4640
4641 * coding.h (CODING_REPLACEMENT_CHARACTER): Renamed from
4642 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
4643 (CODING_MODE_INHIBIT_UNENCODABLE_CHAR): New macro.
4644
4645 2003-05-28 Richard M. Stallman <rms@gnu.org>
4646
4647 * print.c (syms_of_print) <print-escape-nonascii>: Doc fix.
4648
4649 * eval.c (unbind_to): Move init of this_binding to separate statement.
4650
4651 2003-05-28 Kim F. Storm <storm@cua.dk>
4652
4653 * xdisp.c (expose_window): Fix error in calculation of
4654 window relative coordinates of area to redisplay.
4655
4656 2003-05-27 Jason Rumney <jasonr@gnu.org>
4657
4658 * w32term.c (GET_WHEEL_DELTA_WPARAM): New macro.
4659
4660 2003-05-27 David Ponce <david@dponce.com>
4661
4662 Handle W32 mouse wheel events as mouse click events, like in X.
4663
4664 * keyboard.c (make_lispy_event) [WINDOWSNT]: Don't handle
4665 MOUSE_WHEEL_EVENT anymore.
4666
4667 * w32term.c (construct_mouse_wheel): Result is a MOUSE_CLICK_EVENT.
4668 Scrolling down/up the mouse wheel is respectively mapped to mouse
4669 button 4 and 5.
4670 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
4671 MOUSE_CLICK_EVENT events. Forward w32 MSH_MOUSEWHEEL events as
4672 WM_MOUSEWHEEL events.
4673
4674 2003-05-27 Andreas Schwab <schwab@suse.de>
4675
4676 * buffer.c (syms_of_buffer) <default-direction-reversed>: Doc fix.
4677
4678 * xdisp.c (try_window_id): Avoid aborting if PT is inside a
4679 partially visible line.
4680
4681 * alloc.c (Fgarbage_collect): Fix last change.
4682
4683 2003-05-26 John Paul Wallington <jpw@gnu.org>
4684
4685 * xfns.c (Fx_create_frame): Don't call Qface_set_after_frame_default.
4686
4687 2003-05-25 Stefan Monnier <monnier@cs.yale.edu>
4688
4689 * window.c (Fset_window_buffer): Add type of `keep_margins'.
4690 (Fset_window_fringes, Fset_window_scroll_bars): Declare before use.
4691
4692 * window.h (window_box_text_cols): Declare.
4693
4694 * xdisp.c (window_text_bottom_y, draw_row_fringe_bitmaps)
4695 (x_draw_vertical_border): Remove unused var `f'.
4696
4697 * xfaces.c (build_scalable_font_name): Remove `unused var
4698 pixel_size' warning.
4699
4700 * xfns.c (png_load): Remove `unused vars intent, image_gamma' warning.
4701
4702 * unexelf.c (unexec): Remove `unused var n' warning.
4703
4704 * strftime.c (my_strftime_localtime_r): Remove `defined but
4705 unused' warning.
4706
4707 * process.c (allocate_pty): Remove `unused var stb' and
4708 `cp might be used uninitialized' warnings.
4709
4710 * dispnew.c (mode_line_string): Remove unused var `f'.
4711
4712 * coding.c (find_safe_codings): Remove unused var `i'.
4713
4714 * bytecode.c (Fbyte_code): Remove `unused val' warning.
4715
4716 * buffer.c (Fkill_buffer): Remove unused var `list'.
4717
4718 * alloc.c (Fgarbage_collect): Remove `unused var tail' warning.
4719
4720 2003-05-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4721
4722 * frame.c (make_frame): Condition want_fullscreen with
4723 HAVE_WINDOW_SYSTEM.
4724
4725 2003-05-25 Juanma Barranquero <lektu@terra.es>
4726
4727 * window.c (Fset_window_scroll_bars): Fix typo in argument name.
4728 (Fwindow_scroll_bars): Fix typo in docstring.
4729
4730 2003-05-24 Kim F. Storm <storm@cua.dk>
4731
4732 The following changes serve several purposes:
4733
4734 1) Swap the position of fringes and display margins in windows, i.e.
4735 the fringes are now displayed between the margins and the text area
4736 (by default).
4737
4738 2) Allow fringe and scroll bar parameters to be set per-buffer and
4739 per-window (like display margins). Such settings are now stored
4740 in window configurations, preserved when frames are resized, and
4741 copied when windows are split vertically or horizontally.
4742 Several bugs related to display margins have been fixed.
4743
4744 3) Consistently use FRAME_FONT and FRAME_FONTSET macros.
4745
4746 4) Use FRAME_COLUMN_WIDTH (f) consistently throughout the code
4747 rather than FRAME_WIDTH (FRAME_FONT (f)).
4748
4749 5) Introduce a consistent naming of variables, members and macros
4750 depending on whether their value is measured in pixels or in
4751 canonical columns/lines. Pixel dimensions are named *_width and
4752 *_height, while canonical columns/lines are named *_cols and
4753 *_lines. Pixel positions are named *_x and *_y, while column/line
4754 positions are named *_col and *_line.
4755
4756 6) Consolidate more of the X, W32, and MAC gui code by moving
4757 common data into struct frame, and generalize it for the non-gui
4758 case by using suitable defaults.
4759
4760 7) Cleanup and consolidate the macros controlling frame and window
4761 layout into frame.h and window.h, and generalize the use of the
4762 various window_box_* functions (enhanced to handle the new fringe
4763 position and the per-window fringe and scroll bar settings).
4764
4765 * frame.h (struct frame): Rename members height to text_lines,
4766 width to text_cols, window_height to total_lines, window_width to
4767 total_cols, new_height to new_text_lines, new_width to
4768 new_text_cols. All uses changed.
4769 (struct frame): New members which consolidate common members of
4770 x_output, w32_output, and mac_output structures: left_pos,
4771 top_pos, pixel_height, pixel_width, x_pixels_diff, y_pixels_diff,
4772 win_gravity, size_hint_flags, border_width, internal_border_width,
4773 line_height, fringe_cols, left_fringe_width, right_fringe_width,
4774 want_fullscreen. All uses changed.
4775 (struct frame): New member column_width contaning the canonical
4776 column width, analogue to line_height. All uses changed.
4777 (struct frame): Rename members scroll_bar_pixel_width to
4778 config_scroll_bar_width, and scroll_bar_cols to
4779 config_scroll_bar_cols. All uses changed.
4780 (struct frame): New member scroll_bar_actual_width which
4781 consolidates and renames the vertical_scroll_bar_extra member of
4782 x_output, w32_output, and mac_output structures. All uses changed.
4783 (FRAME_PIXEL_HEIGHT): Renamed from PIXEL_HEIGHT and moved
4784 from x/w32/macterm.h files. All uses changed. Also change code
4785 which referred to f->output_data...->pixel_height.
4786 (FRAME_PIXEL_WIDTH): Renamed from PIXEL_WIDTH and moved
4787 from x/w32/macterm.h files. All uses changed. Also change code
4788 which referred to f->output_data...->pixel_width.
4789 (FRAME_LINES): Renamed from FRAME_HEIGHT. All uses changed.
4790 Also change code which referred to f->height.
4791 (FRAME_COLS): Renamed from FRAME_WIDTH. All uses changed.
4792 Also change code which referred to f->width.
4793 (FRAME_NEW_HEIGHT, FRAME_NEW_WIDTH): Remove macros; change uses
4794 to update new_text_lines and new_text_cols members directly.
4795 (FRAME_CONFIG_SCROLL_BAR_WIDTH): Renamed from
4796 FRAME_SCROLL_BAR_PIXEL_WIDTH. All uses changed.
4797 (FRAME_CONFIG_SCROLL_BAR_COLS): Renamed from
4798 FRAME_SCROLL_BAR_COLS. All uses changed.
4799 (FRAME_LEFT_SCROLL_BAR_COLS, FRAME_RIGHT_SCROLL_BAR_COLS):
4800 Renamed from FRAME_LEFT_SCROLL_BAR_WIDTH and
4801 FRAME_RIGHT_SCROLL_BAR_WIDTH, resp. All uses changed.
4802 (FRAME_SCROLL_BAR_AREA_WIDTH, FRAME_LEFT_SCROLL_BAR_AREA_WIDTH)
4803 (FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH): New macros.
4804 (FRAME_TOTAL_COLS): Renamed from FRAME_WINDOW_WIDTH.
4805 (SET_FRAME_COLS): Renamed from SET_FRAME_WIDTH.
4806 (FRAME_TOTAL_COLS_ARG): Renamed from FRAME_WINDOW_WIDTH_ARG.
4807 (WINDOW_VERTICAL_SCROLL_BAR_COLUMN): Remove unused macro.
4808 (WINDOW_VERTICAL_SCROLL_BAR_HEIGHT): Remove unused macro.
4809 (FRAME_LINE_HEIGHT): Renamed from CANON_Y_UNIT. Unconditionally
4810 return line_height member (it now has proper value also for
4811 non-window frames).
4812 (FRAME_COLUMN_WIDTH): Renamed from CANON_X_UNIT. Unconditionally
4813 return new column_width member (rather than the default font width).
4814 (FRAME_FRINGE_COLS, FRAME_LEFT_FRINGE_WIDTH)
4815 (FRAME_RIGHT_FRINGE_WIDTH): Renamed from FRAME_X_... and moved
4816 from x/w32/macterm.h files. Unconditionally return corresponding
4817 member of frame structure (they now have proper values also for
4818 non-window frames).
4819 (FRAME_TOTAL_FRINGE_WIDTH): Renamed from FRAME_FRINGE_WIDTH.
4820 Calculate return value from left and right widths.
4821 (FRAME_INTERNAL_BORDER_WIDTH): Unconditionally return
4822 internal_border_width member (has proper value for non-window frame).
4823 (FRAME_PIXEL_X_FROM_CANON_X): Renamed from PIXEL_X_FROM_CANON_X.
4824 (FRAME_PIXEL_Y_FROM_CANON_Y): Renamed from PIXEL_Y_FROM_CANON_Y.
4825 (FRAME_CANON_X_FROM_PIXEL_X): Renamed from CANON_X_FROM_PIXEL_X.
4826 (FRAME_CANON_Y_FROM_PIXEL_Y): Renamed from CANON_Y_FROM_PIXEL_Y.
4827 (FRAME_LINE_TO_PIXEL_Y): Renamed from CHAR_TO_PIXEL_ROW,
4828 consolidated from xterm.h, macterm.h, and w32term.h.
4829 (FRAME_COL_TO_PIXEL_X): Renamed from CHAR_TO_PIXEL_COL,
4830 consolidated from xterm.h, macterm.h, and w32term.h.
4831 (FRAME_TEXT_COLS_TO_PIXEL_WIDTH): Renamed from
4832 CHAR_TO_PIXEL_WIDTH consolidated from x/mac/w32term.h.
4833 (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Renamed from
4834 CHAR_TO_PIXEL_HEIGHT consolidated from x/mac/w32term.h.
4835 (FRAME_PIXEL_Y_TO_LINE): Renamed from PIXEL_TO_CHAR_ROW
4836 consolidated from x/mac/w32term.h.
4837 (FRAME_PIXEL_X_TO_COL): Renamed from PIXEL_TO_CHAR_COL
4838 consolidated from x/mac/w32term.h.
4839 (FRAME_PIXEL_WIDTH_TO_TEXT_COLS): Renamed from
4840 PIXEL_TO_CHAR_WIDTH consolidated from x/mac/w32term.h.
4841 (FRAME_PIXEL_HEIGHT_TO_TEXT_LINES): Renamed from
4842 PIXEL_TO_CHAR_HEIGHT consolidated from x/mac/w32term.h.
4843
4844 * window.h (struct window): Rename members left to left_col,
4845 top to top_line, height to total_lines, width to total_cols,
4846 left_margin_width to left_margin_cols, right_margin_width to
4847 right_margin_cols, orig_height to orig_total_lines, orig_top to
4848 orig_top_line. All uses changed.
4849 (struct window): New members left_fringe_width, right_fringe_width,
4850 fringes_outside_margins, scroll_bar_width, vertical_scroll_bar_type.
4851 (WINDOW_XFRAME, WINDOW_FRAME_COLUMN_WIDTH, WINDOW_FRAME_LINE_HEIGHT):
4852 New macros primarily used to simplify other macros.
4853 (WINDOW_TOTAL_COLS): New macro. Change relevant code that
4854 referred to XINT (w->width).
4855 (WINDOW_TOTAL_LINES): New macro. Change relevant code that
4856 referred to XINT (w->height).
4857 (WINDOW_TOTAL_WIDTH): New macro. Change relevant code that
4858 referred to XINT (w->width) * canon_x_unit.
4859 (WINDOW_TOTAL_HEIGHT): New macro. Change relevant code that
4860 referred to XINT (w->height) * canon_y_unit.
4861 (WINDOW_LEFT_EDGE_COL): New macro. Change relevant code that
4862 referred to XINT (w->left).
4863 (WINDOW_RIGHT_EDGE_COL): Renamed from WINDOW_RIGHT_EDGE. Change
4864 all uses and code that referred to XINT (w->left) + XINT (w->width).
4865 (WINDOW_TOP_EDGE_LINE): New macro. Change relevant code that
4866 referred to XINT (w->top).
4867 (WINDOW_BOTTOM_EDGE_LINE): New macro. Change relevant code that
4868 referred to XINT (w->top) + XINT (w->height).
4869 (WINDOW_LEFT_EDGE_X): New macro. Change relevant code that
4870 referred to XINT (w->left) * canon_x_unit.
4871 (WINDOW_RIGHT_EDGE_X): New macro. Change relevant code that
4872 referred to (XINT (w->left) + XINT (w->width)) * canon_x_unit.
4873 (WINDOW_TOP_EDGE_Y): New macro. Change relevant code that
4874 referred to XINT (w->top) * canon_y_unit.
4875 (WINDOW_BOTTOM_EDGE_Y): New macro. Change relevant code that
4876 referred to (XINT (w->top) + XINT (w->height)) * canon_y_unit.
4877 (WINDOW_LEFTMOST_P): New macro.
4878 (WINDOW_BOX_LEFT_EDGE_COL): Renamed from WINDOW_LEFT_MARGIN.
4879 All uses changed.
4880 (WINDOW_BOX_RIGHT_EDGE_COL): Renamed from WINDOW_RIGHT_MARGIN.
4881 All uses changed.
4882 (WINDOW_BOX_LEFT_EDGE_X): Renamed from
4883 WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, moved from dispextern.h.
4884 Do not exclude left fringe width.
4885 (WINDOW_BOX_RIGHT_EDGE_X): Renamed from
4886 WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X, moved from dispextern.h.
4887 Do not exclude fringe widths.
4888 (WINDOW_LEFT_FRINGE_WIDTH, WINDOW_RIGHT_FRINGE_WIDTH)
4889 (WINDOW_FRINGE_COLS, WINDOW_TOTAL_FRINGE_WIDTH): New macros.
4890 Change relevant code that referred to FRAME_LEFT_FRINGE_WIDTH,
4891 FRAME_RIGHT_FRINGE_WIDTH, FRAME_FRINGE_COLS, and
4892 FRAME_TOTAL_FRINGE_WIDTH to allow per-window fringe settings.
4893 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS): New macro.
4894 (WINDOW_VERTICAL_SCROLL_BAR_TYPE, WINDOW_HAS_VERTICAL_SCROLL_BAR)
4895 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT)
4896 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT)
4897 (WINDOW_CONFIG_SCROLL_BAR_WIDTH, WINDOW_CONFIG_SCROLL_BAR_COLS):
4898 New macros. Change code which referenced corresponding
4899 FRAME_VERTICAL_SCROLL_BAR_TYPE, FRAME_HAS_VERTICAL_SCROLL_BARS,
4900 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT,
4901 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT,
4902 FRAME_SCROLL_BAR_PIXEL_WIDTH, and FRAME_SCROLL_BAR_COLS macros to
4903 allow per-window scroll-bar settings.
4904 (WINDOW_LEFT_SCROLL_BAR_COLS, WINDOW_RIGHT_SCROLL_BAR_COLS): New macros.
4905 (WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH): New macro. Change code that
4906 referred to FRAME_LEFT_SCROLL_BAR_WIDTH.
4907 (WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH): New macro. Change code
4908 that referred to FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT and
4909 FRAME_SCROLL_BAR_WIDTH.
4910 (WINDOW_SCROLL_BAR_COLS, WINDOW_SCROLL_BAR_AREA_WIDTH)
4911 (WINDOW_SCROLL_BAR_AREA_X): New macros.
4912 (WINDOW_HEADER_LINE_HEIGHT): Renamed from
4913 WINDOW_DISPLAY_HEADER_LINE_HEIGHT, moved from dispextern.h.
4914 (WINDOW_BOX_HEIGHT_NO_MODE_LINE): Renamed from
4915 WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, moved from dispextern.h.
4916 (WINDOW_BOX_TEXT_HEIGHT): Renamed from
4917 WINDOW_DISPLAY_PIXEL_WIDTH, moved from dispextern.h.
4918 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
4919 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
4920 (WINDOW_TEXT_TO_FRAME_PIXEL_X): Moved here from dispextern.h.
4921 (WINDOW_LEFT_MARGIN_WIDTH): Renamed from
4922 WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH, moved from dispextern.h.
4923 (WINDOW_RIGHT_MARGIN_WIDTH): Renamed from
4924 WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, moved from dispextern.h.
4925 (window_from_coordinates): Update prototype.
4926 (Fset_window_buffer): Update EXFUN.
4927 (set_window_buffer): Update prototype.
4928
4929 * dispextern.h (struct glyph_matrix): Rename members window_left_x
4930 to window_left_col, window_top_y to window_top_line. All uses
4931 changed.
4932 (FRAME_INTERNAL_BORDER_WIDTH_SAFE): Remove macro; can now safely
4933 use FRAME_INTERNAL_BORDER_WIDTH macro instead as
4934 internal_border_width is now set to 0 for non-window frames.
4935 (WINDOW_DISPLAY_PIXEL_WIDTH, WINDOW_DISPLAY_PIXEL_HEIGHT)
4936 (WINDOW_DISPLAY_MODE_LINE_HEIGHT, WINDOW_DISPLAY_HEADER_LINE_HEIGHT)
4937 (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, WINDOW_DISPLAY_TEXT_HEIGHT)
4938 (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X)
4939 (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y, WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y)
4940 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
4941 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
4942 (WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH)
4943 (WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, WINDOW_WANTS_MODELINE_P):
4944 Move to window.h and renamed [see window.h changes].
4945 (WINDOW_AREA_TO_FRAME_PIXEL_X, WINDOW_AREA_PIXEL_WIDTH)
4946 (WINDOW_DISPLAY_TEXT_AREA_PIXEL_WIDTH): Remove macros.
4947 (WINDOW_WANTS_MODELINE_P, WINDOW_WANTS_HEADER_LINE_P):
4948 Use WINDOW_TOTAL_LINES.
4949 (frame_update_line_height): Remove prototype.
4950
4951 * buffer.h (struct buffer): Rename members measured in columns:
4952 left_margin_width to left_margin_cols, right_margin_width to
4953 right_margin_cols. All uses changed.
4954 New members left_fringe_width, right_fringe_width,
4955 fringes_outside_margins for per-buffer fringe settings.
4956 New members scroll_bar_width and vertical_scroll_bar_type for
4957 per-buffer scroll bar settings.
4958
4959 * buffer.c (init_buffer_once): Set buffer_defaults and
4960 buffer_local_flags for new buffer-local variables
4961 left_fringe_width, right_fringe_width, fringes_outside_margins,
4962 scroll_bar_width, and vertical_scroll_bar_type.
4963 (syms_of_buffer): Defvar_per_buffer them, and defvar_lisp_nopro
4964 default-* variables for them.
4965
4966 * dispnew.c: Make (many) trivial substitutions for renamed and
4967 new macros in dispextern.h, frame.h and window.h.
4968 (mode_line_string): No need to adjust width for mode lines, as it
4969 is already adjusted by the caller.
4970 (marginal_area_string): Handle fringes inside/outside margins.
4971
4972 * frame.c: Make (many) trivial substitutions for renamed and
4973 new macros in dispextern.h, frame.h and window.h.
4974 (make_frame): Initialize left_fringe_width, right_fringe_width,
4975 fringe_cols, scroll_bar_actual_width, border_width,
4976 internal_border_width, column_width, line_height, x_pixels_diff,
4977 y_pixels_diff, want_fullscreen, size_hint_flags, and win_gravity
4978 members with values suitable for a non-window frames.
4979
4980 * gtkutil.c: Make (many) trivial substitutions for renamed and
4981 new macros in dispextern.h, frame.h and window.h.
4982
4983 * indent.c: Make (few) trivial substitutions for renamed and
4984 new macros in dispextern.h, frame.h and window.h.
4985
4986 * keyboard.c: Make (many) trivial substitutions for renamed and
4987 new macros in dispextern.h, frame.h and window.h.
4988 (make_lispy_event): Use window positions returned from
4989 window_from_coordinates when constructing the lisp event for
4990 MOUSE_CLICK_EVENT and DRAG_N_DROP_EVENT, rather than calculating
4991 (incorrect) values locally.
4992 (make_lispy_movement): Use window positions returned from
4993 window_from_coordinates when constructing the lisp event, rather
4994 than calculating (incorrect) values locally.
4995
4996 * scroll.c: Make (some) trivial substitutions for renamed and
4997 new macros in dispextern.h, frame.h and window.h.
4998
4999 * sunfns.c (Fsun_menu_internal): Adapt to per-window fringes and
5000 scroll-bars.
5001
5002 * sysdep.c: Make (few) trivial substitutions for renamed and
5003 new macros in dispextern.h, frame.h and window.h.
5004
5005 * term.c: Make (some) trivial substitutions for renamed and
5006 new macros in dispextern.h, frame.h and window.h.
5007
5008 * widget.c: Make (few) trivial substitutions for renamed and
5009 new macros in dispextern.h, frame.h and window.h.
5010
5011 * window.c: Make (many) trivial substitutions for renamed and
5012 new macros in dispextern.h, frame.h and window.h.
5013 (make_window): Initialize new members
5014 left_margin_cols, right_margin_cols, left_fringe_width,
5015 right_fringe_width, fringes_outside_margins, scroll_bar_width,
5016 and vertical_scroll_bar_type.
5017 (coordinates_in_window): Adapted to new fringe/margin positions
5018 and per-window fringes and scroll-bars.
5019 Fix bug related to incorrectly adjusting coordinates by
5020 frame's internal_border_width (the effect normally negible since
5021 the internal_border_width is typically 0 or 1 pixel, but very
5022 noticeable for an internal_border_width of e.g. 25 pixels).
5023 Upon successful return (other than ON_NOTHING), the coordinates
5024 are now always properly converted to window relative for the
5025 given display element.
5026 (window_from_coordinates): Add new parameters wx and wy to
5027 return the window relative x and y position in the returned
5028 window and part. A null arg means, don't return the position.
5029 All callers changed.
5030 (adjust_window_margins): New function which may reduce the width
5031 of the display margins if a window's text area is too small after
5032 resizing or splitting windows.
5033 (size_window): Fix bug that did not account for display margin
5034 widths when checking the minimum width of a window; use
5035 adjust_window_margins.
5036 (set_window_buffer): Call Fset_window_fringes and
5037 Fset_window_scroll_bars to setup per-window elements.
5038 Add new arg KEEP_MARGINS_P. Non-nil means to keep window's
5039 existing display margin, fringe widths, and scroll bar settings
5040 (e.g. after splitting a window or resizing the frame).
5041 All callers changed.
5042 (Fset_window_buffer): New arg KEEP_MARGINS. All callers changed.
5043 (Fsplit_window): Duplicate original window's display margin,
5044 fringe, and scroll-bar settings; then call Fset_window_buffer with
5045 KEEP_MARGINS non-nil. This fixes a bug which caused a split
5046 window to only preserve the display margins in one of the windows.
5047 When splitting horizontally, call adjust_window_margins on both
5048 windows to ensure that the text area of the new windows is non too
5049 narrow. This fixes a bug which could cause Emacs to trap if the
5050 width of the split window was less than the width of the display
5051 margins.
5052 (window_box_text_cols): Renamed from window_internal_width.
5053 All uses changed. Adapt to per-window fringes and scroll bars.
5054 Fix bug that caused vertical separator to be subtracted also on
5055 window frames. Fix another bug that did not reduce the returned
5056 value by the columns used for display margins.
5057 (window_scroll_line_based): Fix bug related to scrolling too much
5058 when display margins are present (implicitly fixed by the fix to
5059 window_box_text_cols).
5060 (scroll_left, scroll_right): Fix bug related to scrolling too far
5061 by default when display margins are present (implicitly fixed by
5062 the fix to window_box_text_cols).
5063 (struct saved_window): Rename members left to left_col, top to
5064 top_line, width to total_cols, height to total_lines, orig_top to
5065 orig_top_line, orig_height to orig_total_lines. All uses changed.
5066 New members left_margin_cols, right_margin_cols,
5067 left_fringe_width, right_fringe_width, fringes_outside_margins,
5068 scroll_bar_width, and vertical_scroll_bar_type for saving
5069 per-window display elements.
5070 (Fset_window_configuration): Restore display margins, fringes,
5071 and scroll bar settings. This fixes a bug which caused display
5072 margins to be discarded when saving and restoring a window
5073 configuration.
5074 (save_window_save): Save display margins, fringes, and scroll bar
5075 settings. This fixes a bug which caused display margins to be
5076 discarded when saving and restoring a window configuration.
5077 (Fset_window_margins): Do nothing if display margins are not
5078 really changed. Otherwise, call adjust_window_margins to ensure
5079 the text area doesn't get too narrow. This fixes a bug which
5080 could cause Emacs to trap if setting display margins wider than
5081 the width of the window.
5082 (Fset_window_fringes): New defun to allow user to specifically set
5083 this window's fringe widths and position vs. display margins.
5084 (Fwindow_fringes): New defun to return window's actual fringe
5085 settings.
5086 (Fset_window_scroll_bars): New defun to allow user to specifically
5087 set this window's scroll bar width and position.
5088 (Fwindow_scroll_bars): New defun to return window's actual scroll
5089 bar settings.
5090 (compare_window_configurations): Also compare display margins,
5091 fringes, and scroll bar settings.
5092 (syms_of_window): Defsubr new defuns for fringe and scroll bars.
5093
5094 * xdisp.c: Make (many) trivial substitutions for renamed and
5095 new macros in dispextern.h, frame.h and window.h.
5096 (window_box_width): Adapt to per-window fringes and scroll bars,
5097 and new fringe vs. display margin position. Note that returned
5098 value is no longer guaranteed to be a whole multiple of the frame
5099 column width, since per-window fringes may now be any width.
5100 (window_box_left_offset): New function like window_box_left, but
5101 value is relative to left border of window (rather than frame).
5102 (window_box_right_offset): New function like window_box_right,
5103 but value is relative to left border of window.
5104 (window_box_left): Adapt to per-window fringes and scroll bars,
5105 and new fringe vs. display margin position. Simplify by using
5106 WINDOW_LEFT_EDGE_X and window_box_left_offset.
5107 (window_box): Allow null args for unnecessary return values;
5108 change/simplify relevant callers.
5109 (x_y_to_hpos_vpos): Adapt to per-window fringes and scroll bars,
5110 and new fringe vs. display margin position.
5111 Use window_box_left_offset and window_box_right_offset
5112 (get_glyph_string_clip_rect): Adapt to per-window fringes and
5113 scroll bars, and new fringe vs. display margin position.
5114 Use WINDOW_LEFT_EDGE_X and WINDOW_TOTAL_WIDTH.
5115 (draw_fringe_bitmap): Rework to handle per-window fringes and new
5116 fringe vs. display margin position.
5117 (hscroll_window_tree): Use window_box_width instead of window_box.
5118 (redisplay_window): Adapt to per-window scroll bars.
5119 (draw_glyphs): Rework to handle per-window fringes and scroll
5120 bars, and new fringe vs. display margin position.
5121 Use WINDOW_LEFT_EDGE_X, WINDOW_TOTAL_WIDTH, and window_box_left.
5122 (x_clear_end_of_line): Adapt to per-window fringes and scroll
5123 bars, and new fringe vs. display margin position. Fix bug which
5124 increased total width of full_width rows by width of scroll bars
5125 although window's total width already includes that.
5126 (x_fix_overlapping_area): Simplify using window_box_left_offset.
5127 (expose_area): Simplify using window_box_left_offset.
5128 (x_draw_vertical_border): Handle per-window scroll bar settings,
5129 mixing windows with left, right and no scroll bars.
5130
5131 * xfaces.c [WINDOWSNT]: Move redefinition of FONT_WIDTH macro to
5132 where it's used in x_list_fonts (for clarity).
5133 (frame_update_line_height): Remove unused function; functionality
5134 is now done directly when setting the default font in x_set_font.
5135
5136 * xfns.c: Make (many) trivial substitutions for renamed and
5137 new macros in dispextern.h, frame.h and window.h.
5138
5139 * xmenu.c: Make (some) trivial substitutions for renamed and
5140 new macros in dispextern.h, frame.h and window.h.
5141
5142 * xterm.h (struct x_output): Move members left_pos, top_pos,
5143 border_width, pixel_height, pixel_width, line_height,
5144 internal_border_width, vertical_scroll_bar_extra,
5145 left_fringe_width, right_fringe_width, fringe_cols,
5146 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
5147 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
5148 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
5149 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
5150 (PIXEL_WIDTH, PIXEL_HEIGHT)
5151 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
5152 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Moved to
5153 frame.h and renamed [see frame.h changes].
5154 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
5155 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
5156 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Moved to frame.h
5157 and renamed [see frame.h changes].
5158
5159 * xterm.c: Make (several) trivial substitutions for renamed and
5160 new macros in dispextern.h, frame.h and window.h.
5161 (x_draw_glyph_string_box): Adapt to per-window fringes and
5162 scroll-bars.
5163 (scroll_run): Adapt to new fringe position.
5164 (glyph_rect): Use window coordinates returned from
5165 window_from_coordinates rather than frame_to_window_pixel_xy.
5166 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
5167 scroll-bars.
5168 (handle_one_xevent): Simplify a USE_GTK conditional.
5169 (x_clip_to_row): Remove superfluous whole_line_p arg and code
5170 (fringes are now inside margins, i.e. always in the clipping area).
5171 All callers changed.
5172 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
5173 directly, then call compute_fringe_widths. Don't call
5174 frame_update_line_height.
5175
5176 * w32term.h (struct w32_output): Move members left_pos, top_pos,
5177 border_width, pixel_height, pixel_width, line_height,
5178 internal_border_width, vertical_scroll_bar_extra,
5179 left_fringe_width, right_fringe_width, fringe_cols,
5180 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
5181 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
5182 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
5183 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
5184 (PIXEL_WIDTH, PIXEL_HEIGHT)
5185 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
5186 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Moved to
5187 frame.h and renamed [see frame.h changes].
5188 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
5189 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
5190 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Moved to frame.h
5191 and renamed [see frame.h changes].
5192
5193 * w32term.c: Make (several) trivial substitutions for renamed and
5194 new macros in dispextern.h, frame.h and window.h.
5195 (x_draw_glyph_string_box): Adapt to per-window fringes and
5196 scroll-bars.
5197 (glyph_rect): Use window coordinates returned from
5198 window_from_coordinates rather than frame_to_window_pixel_xy.
5199 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
5200 scroll-bars.
5201 (w32_clip_to_row): Remove superfluous whole_line_p arg and code
5202 (fringes are now inside margins, i.e. always in the clipping area).
5203 All callers changed.
5204 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
5205 directly, then call compute_fringe_widths. Don't call
5206 frame_update_line_height.
5207
5208 * w32console.c: Make (few) trivial substitutions for renamed and
5209 new macros in dispextern.h, frame.h and window.h.
5210
5211 * w32fns.c: Make (many) trivial substitutions for renamed and
5212 new macros in dispextern.h, frame.h and window.h.
5213
5214 * w32menu.c: Make (few) trivial substitutions for renamed and
5215 new macros in dispextern.h, frame.h and window.h.
5216
5217 * macterm.h (struct mac_output): Move members left_pos, top_pos,
5218 border_width, pixel_height, pixel_width, line_height,
5219 internal_border_width, vertical_scroll_bar_extra,
5220 left_fringe_width, right_fringe_width, fringe_cols,
5221 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
5222 x_pixels_diff, y_pixels_diff to struct frame (frame.h).
5223 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
5224 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
5225 (PIXEL_WIDTH, PIXEL_HEIGHT)
5226 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
5227 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Moved to
5228 frame.h and renamed [see frame.h changes].
5229 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
5230 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
5231 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Moved to frame.h
5232 and renamed [see frame.h changes].
5233
5234 * macterm.c: Make (several) trivial substitutions for renamed and
5235 new macros in dispextern.h, frame.h and window.h.
5236 (x_draw_glyph_string_box): Adapt to per-window fringes and
5237 scroll-bars.
5238 (glyph_rect): Use window coordinates returned from
5239 window_from_coordinates rather than frame_to_window_pixel_xy.
5240 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
5241 scroll-bars.
5242 (x_clip_to_row): Remove superfluous whole_line_p arg and code
5243 (fringes are now inside margins, i.e. always in the clipping area).
5244 All callers changed.
5245 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
5246 directly, then call compute_fringe_widths. Don't call
5247 frame_update_line_height.
5248
5249 * macfns.c: Make (several) trivial substitutions for renamed and
5250 new macros in dispextern.h, frame.h and window.h.
5251 (x_real_positions): Set f->x_pixels_diff and f->y_pixels_diff to 0.
5252
5253 * macmenu.c: Make (few) trivial substitutions for renamed and
5254 new macros in dispextern.h, frame.h and window.h.
5255
5256 * msdos.h (struct x_output): Remove members left_pos, top_pos,
5257 and line_height, and use corresponding new members in struct
5258 frame. All uses changed.
5259 (FRAME_LINE_HEIGHT, FRAME_INTERNAL_BORDER_WIDTH): Remove macros;
5260 superseeded by corresponding macros in frame.h.
5261
5262 * msdos.c: Make (several) trivial substitutions for renamed and
5263 new macros in dispextern.h, frame.h and window.h.
5264 (IT_note_mouse_highlight): Use updated window coordinates returned
5265 by window_from_coordinates, rather than adjusting them locally.
5266 (internal_terminal_init): No need to initialize line_height here;
5267 it now defaults to 1.
5268
5269 2003-05-24 Stefan Monnier <monnier@cs.yale.edu>
5270
5271 * keyboard.c (read_key_sequence): Adjust fkey and keytran when
5272 dropping `down' events.
5273
5274 2003-05-24 Andreas Schwab <schwab@suse.de>
5275
5276 * coding.c (find_safe_codings): Fix last change.
5277
5278 2003-05-24 Istvan Marko <mi@imarko.dhs.org> (tiny change)
5279
5280 * xfns.c (x_window): Fix typo from 2003-05-21 change.
5281
5282 2003-05-23 Stefan Monnier <monnier@cs.yale.edu>
5283
5284 * xdisp.c (display_mode_element): Increase max depth.
5285 Simplify the error handling code. Use a different error string
5286 for the case where we hit the depth limit.
5287
5288 * lisp.h (Vfundamental_mode_abbrev_table): Don't declare.
5289
5290 * buffer.c (reset_buffer_local_variables): Remove redundant setting.
5291
5292 2003-05-21 Stefan Monnier <monnier@cs.yale.edu>
5293
5294 * intervals.c (get_local_map): Don't get char-property of previous
5295 point any more: get_pos_property already does it and better.
5296
5297 2003-05-21 Dave Love <fx@gnu.org>
5298
5299 [Merged from unicode branch.]
5300
5301 * xfns.c (x_window, x_window): Use use_xim.
5302
5303 * xterm.c (use_xim): Initialize.
5304 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
5305 (x_term_init): Maybe set use_xim.
5306
5307 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
5308
5309 2003-05-21 Jason Rumney <jasonr@gnu.org>
5310
5311 * unexw32.c (_start): Remove _fmode initialization.
5312
5313 * emacs.c (main) [WINDOWSNT]: Move it here.
5314
5315 2003-05-20 Dave Love <fx@gnu.org>
5316
5317 * s/gnu-linux.h (MAIL_USE_FLOCK): Make it conditional.
5318
5319 2003-05-19 Richard M. Stallman <rms@gnu.org>
5320
5321 * xfaces.c (Finternal_set_lisp_face_attribute): Handle Qunspecified
5322 as value for QCfont attribute.
5323 (realize_default_face): lface should already exist; crash if not.
5324 Specify 0 for FORCE_P when calling set_lface_from_font_name.
5325
5326 * frame.c (Fignore_event): Doc fix.
5327
5328 2003-05-19 Kenichi Handa <handa@m17n.org>
5329
5330 * coding.c (decode_coding_string): Handle post-read-conversion
5331 even if the coding doesn't require decoding.
5332
5333 2003-05-18 Richard M. Stallman <rms@gnu.org>
5334
5335 * callproc.c (Fcall_process_region): Doc fix.
5336
5337 2003-05-17 Stefan Monnier <monnier@cs.yale.edu>
5338
5339 * lread.c (Fload): Print a message if package is obsolete.
5340
5341 * window.c (Fselect_window): Add optional `norecord' arg.
5342 (select_window_1): Fold into Fselect_window.
5343 (select_window_norecord): New function.
5344 (temp_output_buffer_show): Use it. Preserve current buffer.
5345
5346 * window.h (Fselect_window): Update declaration.
5347
5348 * window.c (delete_window, Fother_window, Fset_window_configuration):
5349 * minibuf.c (read_minibuf):
5350 * macterm.c (x_new_focus_frame):
5351 * frame.c (do_switch_frame, Fset_frame_selected_window, Fdelete_frame):
5352 * callint.c (Fcall_interactively):
5353 * xterm.c (x_new_focus_frame): Pass nil as new arg to Fselect_window.
5354
5355 * buffer.c (Fpop_to_buffer): Pass norecord to Fselect_window.
5356
5357 2003-05-17 David Kastrup <dak@gnu.org>
5358
5359 * process.c (read_process_output): Back out change from 2003-03-09.
5360
5361 2003-05-17 Stefan Monnier <monnier@cs.yale.edu>
5362
5363 * editfns.c (get_pos_property): Don't assume that `object' = nil.
5364
5365 * textprop.c (text_property_stickiness): New arg `buffer'.
5366
5367 * intervals.h (text_property_stickiness): New arg `buffer'.
5368 (get_pos_property): Declare.
5369
5370 * intervals.c (get_local_map): Use get_pos_property, to obey
5371 stickiness and empty overlays.
5372 (create_root_interval, graft_intervals_into_buffer): Use BEG.
5373 (merge_properties, intervals_equal, merge_properties_sticky):
5374 Use XCAR, XCDR.
5375 (adjust_for_invis_intang): Pass new arg to text_property_stickiness.
5376
5377 2003-05-17 Richard M. Stallman <rms@gnu.org>
5378
5379 * minibuf.c (read_minibuf): If buffer is empty, record the default
5380 in the history.
5381 (Fminibuffer_complete_word): When deleting the overlap, take account
5382 of its real position.
5383
5384 * fns.c (map_char_table): Fix previous change.
5385
5386 * syntax.c (find_defun_start):
5387 When open_paren_in_column_0_is_defun_start,
5388 return beginning of buffer.
5389
5390 * lisp.h (map_char_table): Declare added arg.
5391
5392 * fns.c (map_char_table): New arg TABLE gets the master table.
5393 All calls changed.
5394 Process default and inheritance, resorting to Faref if necessary.
5395
5396 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
5397 (Faccessible_keymaps): Pass new arg to map_char_table.
5398
5399 * fontset.c (Ffontset_info): Pass new arg to map_char_table.
5400
5401 * casetab.c (set_case_table): Pass new arg to map_char_table.
5402
5403 * data.c (let_shadows_buffer_binding_p): Make target of p volatile.
5404
5405 * lisp.h (specbinding_func): New typedef.
5406 (struct specbinding): Use specbinding_func, to put the `volatile'
5407 in the right place.
5408
5409 * alloc.c (Fgarbage_collect): Cast pointers into specpdl
5410 to avoid GCC warning.
5411
5412 2003-05-16 Ralph Schleicher <rs@nunatak.allgaeu.org> (tiny change)
5413
5414 * fileio.c (Fdelete_file): Handle symlinks pointing to directories.
5415
5416 2003-05-15 Stefan Monnier <monnier@cs.yale.edu>
5417
5418 * keyboard.c (apply_modifiers): Don't fill the other cache.
5419
5420 2003-05-14 Stefan Monnier <monnier@cs.yale.edu>
5421
5422 * .gdbinit-union: New file, for USE_LISP_UNION_TYPE users.
5423
5424 * window.h (Qwindowp, Qwindow_live_p, Vwindow_list)
5425 (Fwindow_end, Fselected_window, Fdelete_window, Fwindow_buffer)
5426 (Fget_buffer_window, Fsave_window_excursion, Fsplit_window)
5427 (Fset_window_configuration, Fcurrent_window_configuration)
5428 (compare_window_configurations, Fcoordinates_in_window_p, Fwindow_at)
5429 (Fpos_visible_in_window_p, mark_window_cursors_off)
5430 (window_internal_height, window_internal_width, Frecenter)
5431 (Fscroll_other_window, Fset_window_start, temp_output_buffer_show)
5432 (replace_buffer_in_all_windows, init_window_once, init_window)
5433 (syms_of_window, keys_of_window): Move from lisp.h.
5434 * lisp.h: Move window.c declarations to window.h.
5435
5436 * bytecode.c: Include window.h.
5437 * emacs.c: Include window.h.
5438
5439 * keyboard.c (make_lispy_event): Apply modifiers to multibyte-char key.
5440 (keyremap): Add `parent' field.
5441 (keyremap_step): Use it. Remove `parent' argument.
5442 (read_key_sequence): Setup and use the new `parent' field.
5443
5444 2003-05-11 Stefan Monnier <monnier@cs.yale.edu>
5445
5446 * keyboard.c (adjust_point_for_property): Ensure termination.
5447
5448 2003-05-10 Stefan Monnier <monnier@cs.yale.edu>
5449
5450 * keyboard.c (follow_key): Remove dead variable `did_meta'.
5451 (access_keymap_keyremap, keyremap_step): New funs, extracted from the
5452 duplicated handling of function-key-map and key-translation-map
5453 in read_key_sequence.
5454 (read_key_sequence): Use them.
5455
5456 * keyboard.c (adjust_point_for_property): Try harder to move point
5457 to the non-sticky end of an invisible property.
5458
5459 * xdisp.c (single_display_prop_intangible_p): Make `space' display
5460 property intangible as well.
5461
5462 2003-05-10 Andreas Schwab <schwab@suse.de>
5463
5464 * xmenu.c (single_menu_item): Change last parameter to void* to
5465 avoid warning.
5466
5467 2003-05-09 Richard M. Stallman <rms@gnu.org>
5468
5469 * print.c (Fprin1_to_string): Instead of gcpro, set abort_on_gc.
5470 Bind Qinhibit_modification_hooks to t so there will be no GC.
5471 Rename local `tem' to `save_deactivate_mark'.
5472
5473 * eval.c (specpdl_ptr): Declare volatile.
5474 (unbind_to): Copy the whole binding and decrement specpdl_ptr
5475 before doing the work of unbinding it.
5476
5477 * lisp.h (struct specbinding): Declare elements volatile.
5478 (specpdl_ptr): Declare volatile.
5479
5480 * Makefile.in (alloca.o): Specify -DDO_BLOCK_INPUT in compiling.
5481
5482 * alloca.c: Test DO_BLOCK_INPUT rather than `emacs'
5483 for use of BLOCK_INPUT and inclusion of lisp.h and blockinput.h.
5484
5485 2003-05-08 Dave Love <fx@gnu.org>
5486
5487 * coding.c (Vlast_coding_system_used): Doc fix.
5488
5489 2003-05-07 Jason Rumney <jasonr@gnu.org>
5490
5491 * fileio.c (Ffile_symlink_p): Let handlers handle symlinks even
5492 when system does not support them.
5493
5494 2003-05-05 Stefan Monnier <monnier@cs.yale.edu>
5495
5496 * fileio.c (Qwrite_region_annotate_functions): New var.
5497 (build_annotations): Use it to process the global part of the hook.
5498 (syms_of_fileio): Init and staticpro it.
5499
5500 * keyboard.c (safe_run_hooks_error): Display a message instead of
5501 silently ignoring the error.
5502
5503 2003-05-03 Stefan Monnier <monnier@cs.yale.edu>
5504
5505 * keyboard.c (input_available_signal): Mark static.
5506 (menu_bar_items): Use map_keymap.
5507 (menu_bar_one_keymap): Remove.
5508 (menu_bar_item): Adjust arglist (for use in map_keymap).
5509 Properly hide a second binding when not both are keymaps.
5510
5511 * xmenu.c (struct skp): New struct, to pass args through map_keymap.
5512 (single_keymap_panes): Use it and map_keymap.
5513 (single_menu_item): Use skp as well.
5514
5515 * keymap.h (map_keymap_function_t): New type.
5516 (map_keymap): Declare.
5517
5518 * keymap.c (map_keymap_item, map_keymap_char_table_item, map_keymap)
5519 (map_keymap_call, Fmap_keymap): New functions.
5520 (syms_of_keymap): Defsubr map-keymap.
5521
5522 2003-05-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5523
5524 * gtkutil.c (create_dialog, make_widget_for_menu_item)
5525 (make_menu_item, create_menus, xg_update_menu_item): Don't call
5526 ..._with_mnemonic functions for menu items.
5527
5528 2003-05-01 Kenichi Handa <handa@m17n.org>
5529
5530 * coding.c (coding_system_accept_latin_extra_p): Delete this
5531 function.
5532 (find_safe_codings): Pay attention to
5533 the property tranlsation-table-for-encode of each codings.
5534 (syms_of_coding): Give Qtranslation_table the extra slot number 2.
5535
5536 2003-05-01 Stefan Monnier <monnier@cs.yale.edu>
5537
5538 * eval.c (Funwind_protect): Use func=Fprogn rather than symbol=Qnil.
5539
5540 2003-04-30 Stefan Monnier <monnier@cs.yale.edu>
5541
5542 * eval.c (unbind_to): Don't handle symbol = Qnil any more.
5543
5544 * lisp.h (CHECK): Wrap args in parenthesis.
5545 (specbind): Fix doc: symbol = Qnil is not supported any more.
5546
5547 * bytecode.c (Fbyte_code) <unwind-protect>:
5548 Use Fprogn rather than 0 and Qnil.
5549
5550 * keyboard.c (parse_modifiers_uncached): Parse `down', `drag',
5551 `double', and `triple' modifiers as well.
5552
5553 2003-04-30 Richard M. Stallman <rms@gnu.org>
5554
5555 * keyboard.c (echo_char): Don't clear out a dash that follows a space.
5556
5557 * alloc.c (abort_on_gc): New variable.
5558 (Fgarbage_collect): Abort if abort_on_gc is set.
5559
5560 * lisp.h (abort_on_gc): Add decl.
5561
5562 * eval.c (Fsignal): Clear abort_on_gc.
5563
5564 * editfns.c (Fformat): Set abort_on_gc during first scan of format.
5565 Reinit FORMAT_START and END before second scan.
5566
5567 * xdisp.c (move_it_vertically_backward): Do the final big else
5568 even if nlines is 0.
5569
5570 * xdisp.c (redisplay_internal): Finish the per-frame loop
5571 even if redisplay is suspended by input.
5572
5573 2003-04-24 Andrew Choi <akochoi@shaw.ca>
5574
5575 * macterm.c (x_list_fonts): Return all fonts that match if
5576 maxnames = -1.
5577
5578 2003-04-25 Kenichi Handa <handa@m17n.org>
5579
5580 * syntax.c (skip_chars): Fix previous change.
5581
5582 2003-04-24 Kenichi Handa <handa@m17n.org>
5583
5584 * syntax.c (skip_chars): Make the code faster by using the common
5585 technique of *p, *stop, and *endp.
5586
5587 2003-04-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5588
5589 * xdisp.c (update_tool_bar): BLOCK_INPUT before calling
5590 tool_bar_items so GTK tool bar expose callback does not access items
5591 being updated.
5592
5593 2003-04-19 Stefan Monnier <monnier@cs.yale.edu>
5594
5595 * eval.c (Fapply): Undo last change and add a comment about why.
5596
5597 2003-04-18 Miles Bader <miles@gnu.org>
5598
5599 * data.c (Faset): Calculate nbytes earlier, to satisfy the now
5600 pickier PARSE_MULTIBYTE_SEQ.
5601
5602 2003-04-17 Stefan Monnier <monnier@cs.yale.edu>
5603
5604 * eval.c (For, Fand, Fprogn, un_autoload, do_autoload):
5605 Use XCDR, XCAR, CONSP.
5606 (Fdefmacro): Fix docstring. Use XCAR, XCDR.
5607 (Fapply): Remove unnecessary GCPRO.
5608
5609 * doc.c (Fsubstitute_command_keys): Remove spurious casts.
5610
5611 * charset.h (PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
5612
5613 * buffer.h: Don't hardcode BEG==1.
5614
5615 * abbrev.c (Fdefine_abbrev_table): Use XCAR, XCDR.
5616
5617 2003-04-16 Richard M. Stallman <rms@gnu.org>
5618
5619 * xdisp.c (try_window, try_window_reusing_current_matrix):
5620 When at end of window, set window_end_pos to Z-ZV.
5621
5622 * buffer.c (Foverlay_recenter): Doc fix.
5623
5624 2003-04-14 Stefan Monnier <monnier@cs.yale.edu>
5625
5626 * dispnew.c (Fsit_For): Support XEmacs-style arg list.
5627
5628 2003-04-14 Andrew Choi <akochoi@shaw.ca>
5629
5630 * macterm.c (mac_check_for_quit_char): Don't check more often than
5631 once a second.
5632
5633 2003-04-11 Stefan Monnier <monnier@cs.yale.edu>
5634
5635 * keyboard.c (kbd_buffer_get_event): Don't handle SELECT_WINDOW_EVENT
5636 specially, so that they can't hide an implicit switch-frame event.
5637 (make_lispy_event): Handle SELECT_WINDOW_EVENT.
5638 (head_table): Use switch-frame as event_kind for select-window.
5639 (keys_of_keyboard): Don't bind [select-window] in special-event-map.
5640
5641 * editfns.c (Fformat): Lisp_Object/int mixup.
5642 (format2): Remove unused var numargs.
5643
5644 2003-04-11 Kenichi Handa <handa@m17n.org>
5645
5646 * fileio.c (Vafter_insert_file_adjust_coding_function): Delete.
5647 (Qafter_insert_file_set_coding): New variable.
5648 (syms_of_fileio): Initialize and staticpro it. Delete declaration
5649 for after-insert-file-adjust-coding-function.
5650 (Finsert_file_contents): Call Qafter_insert_file_set_coding
5651 instead of Vafter_insert_file_adjust_coding_function.
5652
5653 2003-04-11 Kenichi Handa <handa@m17n.org>
5654
5655 * lisp.h (temp_echo_area_glyphs): Adjust prototype.
5656
5657 * minibuf.c (temp_echo_area_glyphs): Change the arg to Lisp
5658 string. Callers changed.
5659
5660 2003-04-10 Kenichi Handa <handa@m17n.org>
5661
5662 * fileio.c (Vafter_insert_file_adjust_coding_function): New variable.
5663 (syms_of_fileio): Declare it as a lisp variable.
5664 (Finsert_file_contents):
5665 Call Vafter_insert_file_adjust_coding_function before calling
5666 decode-format.
5667
5668 2003-04-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5669
5670 * xterm.c (xg_scroll_callback): Call gtk_range_get_adjustment to
5671 get GtkAdjustment as widget now is a GtkRange.
5672
5673 * gtkutil.c (xg_create_scroll_bar): Connect to value-changed on
5674 GtkRange to avoid memory leak.
5675
5676 2003-04-09 Kenichi Handa <handa@m17n.org>
5677
5678 * xfaces.c (Vface_font_rescale_alist): New variable.
5679 (struct font_name): New member rescale_ratio.
5680 (font_rescale_ratio): New function.
5681 (split_font_name): If NUMERIC_P is nonzero, set font->rescale_ratio.
5682 (better_font_p): On comparing point sized, pay attention to
5683 recale_ratio member of fonts.
5684 (build_scalable_font_name): Reflect font->rescale_ratio in the
5685 font name.
5686 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
5687
5688 * lread.c (read1): Before calling index, check if the 2nd
5689 arguemnt is in ASCII range.
5690
5691 2003-04-08 Richard M. Stallman <rms@gnu.org>
5692
5693 * fileio.c (Ffile_symlink_p): Doc fix.
5694
5695 * editfns.c (Fformat): Translate positions of text properties
5696 in the format string to apply them to the result.
5697
5698 * fileio.c (Finsert_file_contents): Doc fix.
5699 (syms_of_fileio) <after-insert-file-functions>: Doc fix.
5700
5701 2003-04-08 Ivan Zakharyaschev <imz@altlinux.org> (tiny change)
5702
5703 * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN.
5704
5705 2003-04-08 Steven Tamm <steventamm@mac.com>
5706
5707 * mac.c (init_mac_osx_environment): Switch libexec and bin so
5708 that self-contained application finds libexec files.
5709
5710 2003-04-08 Kenichi Handa <handa@m17n.org>
5711
5712 * coding.c (code_convert_region_unwind):
5713 Set Vlast_coding_system_used to the argument.
5714 (code_convert_region): If post-read-conversion function changed
5715 the value of last-coding-sytem, keep the new value in
5716 coding->symbol so that it won't be overridden.
5717 (run_pre_post_conversion_on_str): Likewise.
5718 (coding_system_accept_latin_extra_p): New function.
5719 (find_safe_codings): Pay attention to characters registered in
5720 latin-extra-code-table.
5721
5722 2003-04-07 Thien-Thi Nguyen <ttn@gnu.org>
5723
5724 * Makefile.in (md5.o): Add missing dependency info.
5725
5726 2003-04-06 Richard M. Stallman <rms@gnu.org>
5727
5728 * xselect.c (x_handle_selection_request): Move UNGCPRO to very end.
5729
5730 * marker.c (verify_bytepos): New function.
5731
5732 * intervals.c (set_intervals_multibyte_1): When becoming
5733 multibyte, adjust right and left child sizes to a whole set of
5734 characters. If an interval gets zero total-length, delete it.
5735 If an interval consists of just its children, delete one of them.
5736
5737 * intervals.h (CHECK_TOTAL_LENGTH): New macro.
5738 * intervals.c: Add many calls to CHECK_TOTAL_LENGTH.
5739
5740 * alloc.c: (VALIDATE_LISP_STORAGE): Macro deleted.
5741 All calls deleted.
5742 (lisp_malloc): Do the work here directly.
5743
5744 2003-04-06 Gareth Jones <emacs@referential.org.uk> (tiny change)
5745
5746 * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub
5747 char tables.
5748
5749 2003-04-04 Kenichi Handa <handa@m17n.org>
5750
5751 * editfns.c (Fformat): Use a copy of FORMAT string so that we can
5752 destructively change "%S" to "%s".
5753
5754 2003-04-03 Miles Bader <miles@gnu.org>
5755
5756 * xfaces.c (choose_face_font): Make sure *NEEDS_OVERSTRIKE is
5757 always set.
5758
5759 2003-04-01 Dave Love <fx@gnu.org>
5760
5761 * xfns.c (xpm_lookup_color): Grok "opaque".
5762
5763 2003-03-31 Andrew Choi <akochoi@shaw.ca>
5764
5765 * frame.c (x_report_frame_params) [HAVE_CARBON]: Do not report
5766 parent window ID.
5767
5768 * macfns.c (syms_of_macfns): Remove call to init_x_parm_symbols.
5769
5770 * macterm.h (struct mac_output): Define x_pixels_diff and
5771 y_pixels_diff.
5772
5773 2003-03-31 Juanma Barranquero <lektu@terra.es>
5774
5775 * makefile.w32-in ($(BLD)/frame.$(O)): Add dependency on
5776 blockinput.h and files included from it.
5777
5778 2003-03-31 Kim F. Storm <storm@cua.dk>
5779
5780 The following changes consolidates the common code related to
5781 frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
5782 files into frame.c.
5783
5784 * frame.c: Include blockinput.h.
5785 (Vx_resource_name, Vx_resource_class, Qx_frame_parameter)
5786 (Qx_resource_name, Qface_set_after_frame_default): Define vars here.
5787 (Qauto_raise, Qauto_lower, ...): Define all frame parameter
5788 related vars here.
5789 (struct frame_parm_table, frame_parms): New table for describing
5790 frame parameters and their associated Q-variable.
5791 The order of the parameters corresponds to the sequence of the
5792 frame_parm_handlers table in redisplay_interface.
5793 (x_fullscreen_move, x_set_frame_parameters)
5794 (x_report_frame_params, x_set_fullscreen, x_set_line_spacing)
5795 (x_set_screen_gamma, x_set_font, x_set_fringe_width)
5796 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
5797 (x_set_autoraise, x_set_autolower, x_set_unsplittable)
5798 (x_set_vertical_scroll_bars, x_set_scroll_bar_width, x_icon_type):
5799 Generic functions for processing of frame parameters.
5800 (validate_x_resource_name, xrdb_get_resource, Fx_get_resource)
5801 (display_x_get_resource, x_get_resource_string): Functions for
5802 generic access to X resources.
5803 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
5804 (x_default_parameter, Fx_parse_geometry): Functions for generic
5805 access to frame parameters.
5806 (x_figure_window_size): Generic calculation of frame size.
5807 Fixed to add space needed for tool bar. Also setup size_hint_flags.
5808 (syms_of_frame): Intern and staticpro frame parameter variables.
5809 Defvar_lisp Vx_resource_class and Vx_resource_name here.
5810 Defsubr Sx_get_resource and Sx_parse_geometry.
5811
5812 * frame.h (Qauto_raise, Qauto_lower, ...): Declare extern all frame
5813 parameter related vars defined in frame.c.
5814 (EMACS_CLASS): Define here.
5815 (enum FULLSCREEN_*): Define here.
5816 (x_set_scroll_bar_default_width, x_wm_set_icon_position)
5817 (x_set_offset, x_new_font, x_new_fontset): Add prototypes.
5818 (x_fullscreen_adjust, x_set_frame_parameters, x_report_frame_params)
5819 (x_set_fullscreen, x_set_line_spacing, x_set_screen_gamma, x_set_font)
5820 (x_set_fringe_width, x_set_border_width, x_set_internal_border_width)
5821 (x_set_visibility, x_set_autoraise, x_set_autolower)
5822 (x_set_unsplittable, x_set_vertical_scroll_bars)
5823 (x_set_scroll_bar_width, x_icon_type, validate_x_resource_name)
5824 (x_figure_window_size): Add prototypes.
5825
5826 * dispextern.h (frame_parm_handler): New typedef.
5827 (struct redisplay_interface): New member frame_parm_handlers.
5828 (enum resource_types): Move declaration here.
5829 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
5830 (x_default_parameter): Add prototypes.
5831
5832 * window.c: Remove extern decl for frame parameter vars.
5833 (change_window_heights): New generic function;
5834 replaces x_change_window_heights. All users changed.
5835
5836 * window.h (change_window_heights): Add prototype.
5837
5838 * xfaces.c: Remove extern decl for frame parameter vars.
5839
5840 * xterm.h (EMACS_CLASS): Remove. Use generic define.
5841 (struct w32_display_info): Fix type of xrdb member.
5842 (enum FULLSCREEN_*): Remove.
5843 Remove prototypes for generic functions (in frame.h).
5844
5845 * xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
5846 parameters now defined in frame.h and frame.c.
5847 (Vx_resource_name): Remove. Use generic var.
5848 (enum x_frame_parms): Remove (bogus, unused enum).
5849 (check_x_display_info): Make non-static (for frame.c).
5850 (struct x_frame_parm_table, x_frame_parms): Remove.
5851 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
5852 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
5853 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
5854 (x_change_window_heights, x_set_autoraise, x_set_autolower)
5855 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
5856 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
5857 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
5858 Remove. Use generic functions instead.
5859 (enum resource_types): Remove.
5860 (x_set_scroll_bar_default_width): New global function (for frame.c).
5861 (Fx_create_frame): Depend on x_figure_window_size to add space for
5862 toolbar and setup size_hint_flags.
5863 (x_frame_parm_handlers): New table for redisplay_interface.
5864 (syms_of_xfns): Don't intern/staticpro removed vars.
5865
5866 * xterm.c: Remove unnecessary extern declarations.
5867 (x_fullscreen_adjust): Remove. Use generic instead.
5868 (x_redisplay_interface): Add x_frame_parm_handlers member.
5869
5870 * w32gui.h (XrmDatabase): New (dummy) typedef.
5871
5872 * w32term.h (EMACS_CLASS): Remove. Use generic define.
5873 (struct w32_display_info): Fix type of xrdb member.
5874 (enum FULLSCREEN_*): Remove.
5875 (x_fullscreen_adjust): Remove prototype.
5876
5877 * w32fns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
5878 parameters now defined in frame.h and frame.c.
5879 (Vx_resource_name): Remove. Use generic var.
5880 (enum x_frame_parms): Remove (bogus, unused enum).
5881 (check_x_display_info): Make non-static (for frame.c).
5882 (struct x_frame_parm_table, x_frame_parms): Remove.
5883 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
5884 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
5885 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
5886 (x_change_window_heights, x_set_autoraise, x_set_autolower)
5887 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
5888 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
5889 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
5890 Remove. Use generic functions instead.
5891 (enum resource_types): Remove.
5892 (x_set_scroll_bar_default_width): New global function (for frame.c).
5893 (Fx_create_frame): Depend on x_figure_window_size to add space for
5894 toolbar and setup size_hint_flags.
5895 (w32_frame_parm_handlers): New table for redisplay_interface.
5896 (syms_of_w32fns): Don't intern/staticpro removed vars.
5897
5898 * w32term.c: Remove unnecessary extern declarations.
5899 (x_fullscreen_adjust): Remove. Use generic instead.
5900 (x_redisplay_interface): Add w32_frame_parm_handlers member.
5901
5902 * w32reg.c (x_get_string_resource): Use XrmDatabase.
5903
5904 * macgui.h (XrmDatabase): New (dummy) typedef.
5905
5906 * macterm.h (EMACS_CLASS): Remove.
5907 (struct mac_display_info): Add xrdb member.
5908 (struct mac_output): Add want_fullscreen member.
5909
5910 * macfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
5911 parameters now defined in frame.h and frame.c.
5912 (Vx_resource_name): Remove. Use generic var.
5913 (check_x_display_info): Make non-static (for frame.c).
5914 (struct x_frame_parm_table, x_frame_parms): Remove.
5915 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
5916 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
5917 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
5918 (x_change_window_heights, x_set_autoraise, x_set_autolower)
5919 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
5920 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
5921 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
5922 Remove. Use generic functions instead.
5923 (enum resource_types): Remove.
5924 (x_set_scroll_bar_default_width): New global function (for frame.c).
5925 (mac_frame_parm_handlers): New table for redisplay_interface.
5926 (syms_of_macfns): Don't intern/staticpro removed vars.
5927
5928 * macterm.c: Remove unnecessary extern declarations.
5929 (x_redisplay_interface): Add mac_frame_parm_handlers member.
5930
5931 * Makefile.in (frame.o): Add dependency on blockinput.h and files
5932 included from it (atimer.h and systime.h).
5933
5934 2003-03-30 Andreas Schwab <schwab@suse.de>
5935
5936 * xdisp.c (x_insert_glyphs): Fix swapped width and height
5937 parameters for shift_glyphs_for_insert.
5938
5939 * macterm.c (x_redisplay_interface): Add missing entry for
5940 draw_vertical_window_border.
5941
5942 2003-03-29 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
5943
5944 * fileio.c (Fexpand_file_name): In the no-handler case, after
5945 expanding, look again for a handler and invoke it. This is needed
5946 for filenames like "/foo/../user@host:/bar/../baz" -- the first
5947 expansion produces "/user@host:/bar/../baz" which needs to be
5948 expanded again for the finame result "/user@host:/baz".
5949
5950 2003-03-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5951
5952 * gtkutil.c (xg_tool_bar_item_expose_callback): Reduce size
5953 of area to be redrawn for better performance.
5954
5955 2003-03-28 Stefan Monnier <monnier@cs.yale.edu>
5956
5957 * xterm.c (take_vertical_position_into_account): Remove.
5958 (xt_action_hook): Call set_vertical_scroll_bar if needed.
5959 (XM_SB_MIN, XM_SB_RANGE): Remove (min is now set to 0).
5960 (xm_scroll_callback, x_create_toolkit_scroll_bar)
5961 (x_set_toolkit_scroll_bar_thumb): Simplify.
5962 (x_scroll_bar_expose): Only compile if !USE_TOOLKIT_SCROLL_BARS.
5963 (XTread_socket): Remove unused var.
5964 (x_make_frame_invisible): Replace goto with else.
5965
5966 * xdisp.c (set_vertical_scroll_bar): New fun.
5967 (redisplay_window): Use it.
5968
5969 2003-03-26 Richard M. Stallman <rms@gnu.org>
5970
5971 * xdisp.c (update_tool_bar): Recompute tool bar if
5972 update_mode_lines is set. Set w->update_mode_line
5973 only if the tool bar contents actually change.
5974 (update_menu_bar): Undo previous change.
5975
5976 2003-03-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5977
5978 * gtkutil.c (xg_resize_widgets): Don't call xg_frame_cleared.
5979 (xg_frame_set_char_size): Calculate scroll bar width before frame
5980 width. Call SET_FRAME_GARBAGED and cancel_mouse_face.
5981 (xg_separator_p): Check for all documented separator types.
5982 (xg_update_scrollbar_pos): Variable gheight not needed, use height.
5983 (update_frame_tool_bar): Don't call gdk_window_process_all_updates.
5984
5985 * xdisp.c (update_menu_bar): Set w->update_mode_line to Qt
5986 so tool bar gets updated.
5987
5988 2003-03-26 Stefan Monnier <monnier@cs.yale.edu>
5989
5990 * data.c (store_symval_forwarding): Re-instate part of the code
5991 that was deleted with too much enthusiasm.
5992
5993 2003-03-25 Stefan Monnier <monnier@cs.yale.edu>
5994
5995 * data.c (store_symval_forwarding): Delete special read-only
5996 hack for type == -1, since we now use ->constant instead.
5997 (Fkill_local_variable): Don't use XBUFFER if it can be nil.
5998
5999 * buffer.c (overlays_in): Declare static.
6000 (syms_of_buffer) <enable-multibyte-characters>: Use the symbol's
6001 `constant' field rather than the variable's `type' field.
6002
6003 2003-03-24 Andrew Choi <akochoi@shaw.ca>
6004
6005 * config.in [MAC_OSX]: Do not redefine bcopy, bzero, and bcmp.
6006
6007 * dispextern.h [HAVE_CARBON]: Include Carbon.h.
6008
6009 * fns.c [MAC_OSX]: Do not redefine vector.
6010
6011 * keyboard.c [MAC_OSX]: Handle SIGINT with interrupt_signal.
6012
6013 * macgui.h: Remove definition of No_Cursor.
6014
6015 * macterm.h: Include Carbon.h. Replace (struct Cursor *) by Cursor.
6016
6017 * xdisp.c: Define No_Cursor.
6018 (x_write_glyphs, notice_overwritten_cursor)
6019 (draw_phys_cursor_glyph, note_mode_line_or_margin_highlight)
6020 (note_mouse_highlight): Remove Mac-specific code.
6021 (note_mouse_highlight): Use bcmp instead of == to compare Cursors.
6022
6023 2003-03-24 John Paul Wallington <jpw@gnu.org>
6024
6025 * xdisp.c (redisplay_window): If mini window's buffer is not
6026 empty, then redisplay it like other windows.
6027
6028 2003-03-23 Kim F. Storm <storm@cua.dk>
6029
6030 * w32term.c (w32_draw_window_cursor): Fix last change.
6031
6032 2003-03-23 Kenichi Handa <handa@m17n.org>
6033
6034 * alloc.c (make_string_from_bytes, make_specified_string):
6035 Add `const' for the arg CONTENTS.
6036
6037 * lisp.h (make_string_from_bytes, make_specified_string):
6038 Prototypes adjusted.
6039
6040 2003-03-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6041
6042 * xdisp.c (get_glyph_string_clip_rect): Remove ; at end of #endif
6043
6044 * gtkutil.h: Take two more arguments to xg_update_scrollbar_pos.
6045 (XG_SB_RANGE): New define.
6046
6047 * gtkutil.c (xg_fixed_handle_expose): New function.
6048 (xg_create_frame_widgets): Call xg_fixed_handle_expose for
6049 expose events.
6050 (xg_update_scrollbar_pos): Take two more arguments, left and width
6051 of scroll bar including borders.
6052 Clear left and right part outside scroll bar separately as some
6053 themes have bars that are not an even number of pixels.
6054 Don't set reallocate_redraws, don't call
6055 gdk_window_process_all_updates.
6056 (xg_set_toolkit_scroll_bar_thumb): Upper value is fixed,
6057 so no need to change it. Calculate size and value with XG_SB_RANGE.
6058
6059 * xterm.c (x_scroll_bar_create, XTset_vertical_scroll_bar):
6060 Pass left and width of scroll bar including borders to
6061 xg_update_scrollbar_pos.
6062
6063 2003-03-22 Thien-Thi Nguyen <ttn@gnu.org>
6064
6065 * Makefile.in: Make sure space precedes end-of-line backslashes.
6066
6067 2003-03-22 Kim F. Storm <storm@cua.dk>
6068
6069 * xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
6070 Add generic versions here. Remove system specific versions
6071 defined elsewhere.
6072
6073 * dispextern.h (pixel_to_glyph_coords, glyph_to_pixel_coords):
6074 Add prototypes.
6075
6076 * xterm.h (STORE_NATIVE_RECT): New macro.
6077
6078 2003-03-21 Kim F. Storm <storm@cua.dk>
6079
6080 * xdisp.c (get_glyph_string_clip_rect):
6081 Use FRAME_INTERNAL_BORDER_WIDTH.
6082
6083 * dispextern.h (struct redisplay_interface): Add active_p
6084 argument to draw_window_cursor member. All uses changed.
6085
6086 2003-03-21 Kim F. Storm <storm@cua.dk>
6087
6088 The following changes consolidate code related to writing and
6089 inserting glyphs, exposing frame, the tool bar, the mouse face,
6090 the output cursor, and help echo from xterm.c, w32term.c and
6091 macterm.c into xdisp.c. It also generalizes the use of the
6092 window_part enum instead of using numeric values throughout.
6093
6094 * xdisp.c: Consolidate gui-independent code here.
6095 Include keymap.h.
6096 (Qhelp_echo): Import.
6097 (mouse_autoselect_window, x_stretch_cursor_p): Declare here.
6098 (help_echo_string, help_echo_window, help_echo_object)
6099 (previous_help_echo_string, help_echo_pos): Declare here.
6100 (output_cursor, last_mouse_frame, last_tool_bar_item): Declare here.
6101 (estimate_mode_line_height): Define here. Handle windowing
6102 systems directly (without using estimate_mode_line_height_hook).
6103 (x_y_to_hpos_vpos, get_tool_bar_item, note_tool_bar_highlight):
6104 (update_window_cursor, update_cursor_in_window_tree)
6105 (fast_find_position, fast_find_string_pos)
6106 (note_mode_line_highlight, note_mode_line_or_margin_highlight)
6107 (expose_area, expose_line, expose_overlaps, expose_window)
6108 (expose_window_tree, phys_cursor_in_rect_p): New generic versions;
6109 declared static as they are only used locally in xdisp.c.
6110 (draw_glyphs): Rename from x_draw_glyphs and make static.
6111 (tool_bar_item_info, notice_overwritten_cursor): Make static.
6112 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
6113 (set_output_cursor, x_cursor_to, handle_tool_bar_click)
6114 (x_write_glyphs, x_insert_glyphs, x_clear_end_of_line):
6115 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
6116 (display_and_set_cursor, x_update_cursor, x_clear_cursor)
6117 (show_mouse_face, clear_mouse_face, cursor_in_mouse_face_p)
6118 (note_mouse_highlight, x_clear_window_mouse_face)
6119 (cancel_mouse_face, x_draw_vertical_border, expose_frame)
6120 (x_intersect_rectangles): New generic functions for use by xdisp.c
6121 and GUI front-ends.
6122 (syms_of_xdisp): Initialize and staticpro help_echo* variables.
6123 Defvar_bool "x-streach-cursor" and "mouse-autoselect-window" here.
6124
6125 * dispextern.h (Display_Info): Generic typedef for *_display_info.
6126 (NativeRectangle): Generic typedef for rectangle type.
6127 (enum window_part): Move here from window.c.
6128 (struct redisplay_interface): New members flush_display_optional,
6129 define_frame_cursor, clear_frame_area, draw_window_cursor,
6130 draw_vertical_window_border, shift_glyphs_for_insert.
6131 Rename member clear_mouse_face to clear_window_mouse_face.
6132 (estimate_mode_line_height_hook): Remove hook.
6133 (auto_raise_tool_bar_buttons_p): Don't declare extern.
6134 (tool_bar_item_info): Remove prototype.
6135 (help_echo_string, help_echo_window, help_echo_object)
6136 (previous_help_echo_string, help_echo_pos)
6137 (last_mouse_frame, last_tool_bar_item, mouse_autoselect_window):
6138 (x_stretch_cursor_p, output_cursor): Declare extern.
6139 (x_draw_glyphs, notice_overwritten_cursor): Remove prototypes.
6140 (x_write_glyphs), x_insert_glyphs, x_clear_end_of_line)
6141 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
6142 (display_and_set_cursor, set_output_cursor, x_cursor_to)
6143 (x_update_cursor, x_clear_cursor, x_draw_vertical_border)
6144 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
6145 (note_mouse_highlight, x_clear_window_mouse_face, cancel_mouse_face)
6146 (handle_tool_bar_click, clear_mouse_face, show_mouse_face)
6147 (cursor_in_mouse_face_p, expose_frame, x_intersect_rectangles):
6148 Add prototypes.
6149 (mode_line_string, marginal_area_string): Fix prototypes.
6150
6151 * window.c (enum window_part): Move to dispextern.h.
6152 (coordinates_in_window): Use enum window_part member names
6153 instead of numbers to describe return value.
6154 (struct check_window_data): Change part member to window_part.
6155 (check_window_containing): Return window_part unaltered.
6156 (window_from_coordinates): Change part arg from int to enum
6157 window_part. Allow part arg to be null. All users changed.
6158
6159 * window.h (window_from_coordinates): Fix prototype.
6160
6161 * term.c (estimate_mode_line_height): Move to xdisp.c.
6162
6163 * keyboard.c (make_lispy_event): Use enum window_part.
6164
6165 * dispnew.c (mode_line_string, marginal_area_string): Use enum
6166 window_part instead of int in arg list. Users changed.
6167
6168 * xterm.h (No_Cursor): Declare as None for X.
6169 (struct mac_output): Replace member cross_cursor by hand_cursor.
6170
6171 * xterm.c: Remove consolidated defines and code.
6172 (BETWEEN): Remove unused macro.
6173 (x_draw_vertical_window_border, x_shift_glyphs_for_insert)
6174 (x_define_frame_cursor, x_clear_frame_area)
6175 (x_draw_window_cursor): New X-specific functions for RIF.
6176 (x_redisplay_interface): Add new members.
6177
6178 * xfns.c: Setup and use hand_cursor instead of cross_cursor.
6179
6180 * w32term.h (struct w32_output): Remove cross_cursor member.
6181
6182 * w32term.c: Remove consolidated defines and code.
6183 (BETWEEN): Remove unused macro.
6184 (w32_draw_vertical_window_border, w32_shift_glyphs_for_insert)
6185 (w32_define_frame_cursor, w32_clear_frame_area)
6186 (w32_draw_window_cursor): New W32-specific functions for RIF.
6187 (w32_redisplay_interface): Add new members.
6188
6189 * w32gui.h (No_Cursor): Define as 0 for W32.
6190 (XRectangle): Add X compatible rectangle type.
6191 (NativeRectangle): Declare as RECT for W32.
6192 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
6193
6194 * w32fns.c: Remove setup of cross_cursor (already has hand_cursor).
6195
6196 * w32console.c: Remove consolidated defines and code.
6197
6198 * msdos.h (Display_Info): Add generic typedef.
6199
6200 * msdos.c: Remove consolidated defines and code.
6201 (IT_note_mouse_highlight, dos_rawgetc): Use enum window_part.
6202
6203 * macterm.h (struct mac_output): Replace member cross_cursor by
6204 hand_cursor.
6205 (activate_scroll_bars, deactivate_scroll_bars): Add prototypes.
6206
6207 * macterm.c: Remove consolidated defines and code.
6208 (BETWEEN): Remove unused macro.
6209 (mac_draw_vertical_window_border, mac_shift_glyphs_for_insert)
6210 (mac_define_frame_cursor, mac_clear_frame_area)
6211 (mac_draw_window_cursor): New Mac-specific functions for RIF.
6212 (x_redisplay_interface): Add new members.
6213
6214 * macgui.h (No_Cursor): Define as 0 for Mac.
6215 (XRectangle): Add X compatible rectangle type.
6216 (NativeRectangle): Declare as Rect for Mac.
6217 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
6218
6219 * macfns.c (x_set_mouse_color): Setup hand_cursor.
6220 (x_set_cursor_color): Use x_display_and_set_cursor.
6221
6222 * Makefile.in (xdisp.o): Add dependency on blockinput.h and files
6223 included from it. Add dependency on keymap.h.
6224
6225 * makefile.w32-in (xdisp.o): Add dependency on keymap.h.
6226
6227 2003-03-21 Kenichi Handa <handa@m17n.org>
6228
6229 * fileio.c (Fexpand_file_name): Fix previous change.
6230
6231 2003-03-19 Kenichi Handa <handa@m17n.org>
6232
6233 * fileio.c (Ffile_name_directory): Reconstruct file name by
6234 make_specified_string.
6235 (Ffile_name_nondirectory, Ffile_name_as_directory)
6236 (Fdirectory_file_name, Fexpand_file_name)
6237 (Fsubstitute_in_file_name): Likewise.
6238 (Fread_file_name): Compare decoded homedir with DIR and
6239 DEFAULT_FILENAME.
6240
6241 * alloc.c (make_specified_string): If NCHARS is negative, count
6242 the number of characters.
6243
6244 2003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6245
6246 * gtkutil.c (xg_frame_cleared): Call gtk_widget_queue_draw for
6247 all widgets.
6248
6249 * gtkutil.h: Removed xg_ignore_next_thumb.
6250
6251 2003-03-18 Kenichi Handa <handa@m17n.org>
6252
6253 * coding.c (Vchar_coding_system_table): Remove this variable.
6254 (Vcoding_system_safe_chars): New variable.
6255 (intersection): Remove this function.
6256 (find_safe_codings): Don't use Vchar_coding_system_table, but try
6257 all codings in SAFE_CODINGS.
6258 (Ffind_coding_systems_region_internal): Adjust for the change of
6259 find_safe_codings. Get generic coding systems from
6260 Vcoding_system_safe_chars.
6261 (Fdefine_coding_system_internal): New function.
6262 (syms_of_coding): Defsubr Sdefine_coding_system_internal.
6263 Initialize and staticpro Vcoding_system_safe_chars.
6264
6265 2003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6266
6267 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb): Check if new values
6268 equal old values before updating.
6269
6270 * xterm.c (xg_scroll_callback): Remove xg_ignore_next_thumb.
6271
6272 * gtkutil.c (xg_initialize): Remove xg_ignore_next_thumb.
6273
6274 2003-03-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6275
6276 * gtkutil.c: Removed handle_fixed_child, struct xg_last_sb_pos.
6277 (xg_resize_widgets): Don't call foreach(handle_fixed_child).
6278 (xg_gtk_scroll_destroy): Remove free of struct xg_last_sb_pos.
6279 (scroll_bar_button_cb): Set bar->dragging to NIL on button release.
6280 (xg_create_scroll_bar): Pass bar to button event callback.
6281 (xg_find_top_left_in_fixed): New function.
6282 (xg_update_scrollbar_pos): Don't call gdk_window_clear on
6283 whole scroll bar area. Get old position with
6284 xg_find_top_left_in_fixed, calculate and only clear needed areas.
6285 (xg_set_toolkit_scroll_bar_thumb): Do not adjust scroll bar if
6286 dragging is in progress. Calculate whole as for Motif.
6287 Remove code that saved last values. Call gtk_range functions to
6288 set scroll bar sizes.
6289
6290 * gtkutil.h: Removed xg_ignore_next_thumb.
6291
6292 2003-03-17 Juanma Barranquero <lektu@terra.es>
6293
6294 * makefile.w32-in ($(BLD)/xdisp.$(O)): Add dependency on blockinput.h
6295 and files included from it.
6296
6297 2003-03-18 Stefan Monnier <monnier@cs.yale.edu>
6298
6299 * keymap.c (accessible_keymaps_1): Break cycles but without preventing
6300 multiple occurrences of the same keymap under different prefixes.
6301 (Faccessible_keymaps): Remove code redundant since 1994-08-03T07:39:00Z!rms@gnu.org.
6302
6303 2003-03-16 Jason Rumney <jasonr@gnu.org>
6304
6305 * w32gui.h: Use HDC for Display.
6306
6307 * w32term.c (w32_encode_char): Prevent double-byte chars from
6308 crashing Emacs.
6309
6310 * w32fns.c (jpeg_load, png_load, slurp_file): Read image files
6311 as binary.
6312
6313 2003-03-16 Juanma Barranquero <lektu@terra.es>
6314
6315 * xdisp.c (x_produce_glyphs): Use FRAME_BASELINE_OFFSET.
6316
6317 2003-03-16 Kim F. Storm <storm@cua.dk>
6318
6319 The following changes consolidate some of the gui-independent
6320 parts of the processing and drawing of "glyph strings" from
6321 xterm.c, w32term.c, and macterm.c into xdisp.c.
6322
6323 * dispextern.h (struct glyph): Reduce face_id member from 22 to
6324 21 bits (this reduces number of faces from 4M to 2M).
6325 Replace W32 specific w32_font_type member (2 bits) by generic
6326 font_type member (3 bits) for portability.
6327 (FONT_TYPE_UNKNOWN): New define, default for font_type member.
6328 (enum draw_glyphs_face): Define here.
6329 (struct glyph_string): Define here. Merge W32 and X versions.
6330 (struct redisplay_interface): New members per_char_metric,
6331 encode_char, compute_glyph_string_overhangs, draw_glyph_string.
6332 (VCENTER_BASELINE_OFFSET): Define here.
6333 (dump_glyph_string, x_get_glyph_overhangs, x_produce_glyphs)
6334 (x_draw_glyphs, notice_overwritten_cursor): Declare prototypes here.
6335
6336 * xdisp.c: Consolidate gui-independent "glyph string" code here.
6337 (dump_glyph_string): Moved here.
6338 (init_glyph_string, append_glyph_string_lists, append_glyph_string)
6339 (prepend_glyph_string_lists, get_glyph_face_and_encoding)
6340 (fill_composite_glyph_string, fill_glyph_string)
6341 (fill_image_glyph_string, fill_stretch_glyph_string)
6342 (left_overwritten, left_overwriting, right_overwritten)
6343 (right_overwriting, get_char_face_and_encoding)
6344 (set_glyph_string_background_width, compute_overhangs_and_x)
6345 (append_glyph, append_composite_glyph, produce_image_glyph)
6346 (take_vertical_position_into_account, append_stretch_glyph)
6347 (produce_stretch_glyph): New generic functions (based on X version).
6348 Call platform specific functions through rif.
6349 (INIT_GLYPH_STRING): New macro, hides W32 details.
6350 (BUILD_STRETCH_GLYPH_STRING, BUILD_IMAGE_GLYPH_STRING)
6351 (BUILD_CHAR_GLYPH_STRINGS, BUILD_COMPOSITE_GLYPH_STRING)
6352 (BUILD_GLYPH_STRINGS): Generic macros (based on X version).
6353 (x_draw_glyphs, x_get_glyph_overhangs, x_produce_glyphs)
6354 (notice_overwritten_cursor):
6355 Generic functions exported to platform modules. Users changed.
6356
6357 * xterm.h (FONT_DESCENT, FRAME_X_OUTPUT, FRAME_BASELINE_OFFSET)
6358 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE)
6359 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
6360 New macros for consolidated code.
6361
6362 * xterm.c: Remove consolidated defines and code.
6363 (x_per_char_metric, x_encode_char)
6364 (x_compute_glyph_string_overhangs): Adapt to RIF requirements.
6365 (x_redisplay_interface): Add new members.
6366
6367 * w32gui.h (Display): Add dummy typedef for consolidation.
6368 (XChar2b): Define alias for wchar_t for consolidation.
6369 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
6370
6371 * w32term.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY)
6372 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE):
6373 New macros for consolidation.
6374
6375 * w32term.c: Remove consolidated defines and code.
6376 (BUILD_WCHAR_T, BYTE1, BYTE2): Macros removed; callers changed
6377 to use STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2 instead.
6378 (w32_per_char_metric): Change font_type arg to int for RIF.
6379 (w32_encode_char): Return int according to RIF requirements.
6380 (w32_compute_glyph_string_overhangs): Adapt to RIF.
6381 (w32_get_glyph_overhangs): New function for RIF. Uses generic
6382 x_get_glyph_overhangs.
6383 (w32_redisplay_interface): Add new members.
6384
6385 * macgui.h (XChar2b): Move typedef here for consolidation.
6386 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
6387
6388 * macterm.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY):
6389 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): New macros for
6390 consolidation.
6391
6392 * macterm.c: Remove consolidated defines and code.
6393 (mac_per_char_metric): New function for RIF.
6394 (mac_encode_char): Adapt to new RIF requirements.
6395 (mac_compute_glyph_string_overhangs): Adapt for RIF.
6396 (x_redisplay_interface): Add new members.
6397
6398 2003-03-15 Stefan Monnier <monnier@cs.yale.edu>
6399
6400 * keymap.c (Vmenu_events): New var.
6401 (syms_of_keymap): Initialize it.
6402 (where_is_internal): Check more carefully what is a menu event.
6403
6404 2003-03-14 Richard M. Stallman <rms@gnu.org>
6405
6406 * lread.c (read1): After #!, exit loop on eof.
6407
6408 2003-03-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6409
6410 * gtkutil.h: Add declaration for xg_frame_cleared.
6411
6412 * xterm.c (x_clear_frame): Call xg_frame_cleared for GTK.
6413
6414 * gtkutil.c (struct xg_last_sb_pos): New structure.
6415 (handle_fixed_child): New function.
6416 (xg_resize_widgets): Call handle_fixed_child on all scroll bar widgets
6417 and force a redraw on them.
6418 (xg_gtk_scroll_destroy): Free struct xg_last_sb_pos also.
6419 (xg_create_scroll_bar): Add struct xg_last_sb_pos to scroll bar
6420 so we can avoid unneeded redraws.
6421 (xg_update_scrollbar_pos): Invalidate data in xg_last_sb_pos
6422 and force a redraw on the scroll bar.
6423 (xg_set_toolkit_scroll_bar_thumb): Do not change/redraw scroll bar
6424 if xg_last_sb_pos shows the positions are up to date.
6425 (xg_frame_cleared): New function.
6426
6427 2003-03-13 Kenichi Handa <handa@m17n.org>
6428
6429 * coding.c (Fdetect_coding_region): Fix docstring.
6430 (Fdetect_coding_string): Fix docstring.
6431
6432 2003-03-13 Andreas Schwab <schwab@suse.de>
6433
6434 * gtkutil.c: Add prototype for create_menus.
6435
6436 * data.c (long_to_cons): Fix type of top.
6437
6438 * xselect.c (selection_data_to_lisp_data): Use int instead of
6439 long for an integer of size 4.
6440
6441 * gtkutil.c (xg_update_frame_menubar): Add missing return value.
6442 (xg_tool_bar_help_callback): Likewise.
6443
6444 2003-03-12 Andreas Schwab <schwab@suse.de>
6445
6446 * xterm.c (x_term_init) [USE_GTK]: Fix typo.
6447
6448 2003-03-12 Kim F. Storm <storm@cua.dk>
6449
6450 The following changes consolidate the fringe handling from
6451 xterm.c, w32term.c, and macterm.c into xdisp.c.
6452
6453 * xdisp.c: Consolidate fringe handling code here.
6454 (left_bits, right_bits, continued_bits, continuation_bits)
6455 (ov_bits, zv_bits): Define fringe bitmaps.
6456 (fringe_bitmaps): New array holding fringe bitmaps.
6457 (draw_fringe_bitmap): Draw a specific bitmap; call display
6458 specific drawing routine via rif->draw_fringe_bitmap.
6459 (draw_row_fringe_bitmaps): Generic replacement for
6460 x_draw_row_fringe_bitmaps; all callers changed.
6461 (compute_fringe_widths): Generic replacement for
6462 x_compute_fringe_widths; all callers changed.
6463
6464 * dispextern.h (enum fringe_bitmap_type): Define here.
6465 (struct fringe_bitmap, struct draw_fringe_bitmap_params): New.
6466 (fringe_bitmaps): Declare extern.
6467 (struct redisplay_interface): New member draw_fringe_bitmap.
6468 (draw_row_fringe_bitmaps, compute_fringe_widths): Declare extern.
6469
6470 * xterm.c: Remove generic fringe code.
6471 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
6472 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
6473
6474 * w32term.c: Remove generic fringe code.
6475 (w32_draw_fringe_bitmap): Only perform actual fringe drawing.
6476 (w32_redisplay_interface): Add w32_draw_fringe_bitmap member.
6477
6478 * macterm.c: Remove generic fringe code.
6479 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
6480 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
6481
6482 2003-03-11 Stefan Monnier <monnier@cs.yale.edu>
6483
6484 * print.c (Fprin1_to_string): Return unibyte string if possible.
6485
6486 2003-03-09 David Kastrup <dak@gnu.org>
6487
6488 * process.c (read_process_output): We have allocated enough space
6489 for readmax and carryover, so actually use the alloted space.
6490
6491 2003-03-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6492
6493 * keyboard.c (make_lispy_event): Extend mouse_syms if needed for
6494 toolkit scrollbar click.
6495
6496 * xterm.c (x_window_to_scroll_bar): Call xg_get_scroll_id_for_window
6497 for USE_GTK.
6498 (x_scroll_bar_handle_click): Use this function for toolkit scrollbars
6499 also.
6500 (handle_one_xevent): ButtonPress/Release: If event is for a toolkit
6501 scrollbar and control is pressed, call x_scroll_bar_handle_click.
6502
6503 * gtkutil.h: Declare xg_get_scroll_id_for_window.
6504
6505 * gtkutil.c (xg_get_scroll_id_for_window): New function.
6506 (xg_tool_bar_item_expose_callback): New function.
6507 (xg_tool_bar_expose_callback): Call update_frame_tool_bar.
6508 (xg_create_tool_bar): Connect xg_tool_bar_expose_callback to expose
6509 on the tool bar widget.
6510 (update_frame_tool_bar): Connect xg_tool_bar_item_expose_callback
6511 to expose on the tool bar item widgets.
6512
6513 2003-03-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6514
6515 * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of
6516 struct image* when deciding to update (struct image* may have been
6517 deleted from the image cache).
6518
6519 * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if
6520 the event isn't for a frame (i.e. for dialogs).
6521
6522 2003-03-07 Kenichi Handa <handa@m17n.org>
6523
6524 * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of
6525 composition components reaches the limit, terminate composing.
6526 (COMPOSITION_OK): New macro.
6527 (detect_coding_iso2022): Use it if an escape sequence for
6528 composition is found.
6529 (coding_restore_composition): Adjust the number of composition
6530 components if it is not sane.
6531
6532 2003-03-06 Juanma Barranquero <lektu@terra.es>
6533
6534 * w32term.h (struct w32_display_info): Add xrdb member to support
6535 passing resources via -xrm on Windows.
6536
6537 * w32term.c (w32_make_rdb): New function.
6538 (w32_term_init): Use it to initialize xrdb member of w32_display_info
6539 struct. Delete leftover code.
6540
6541 * w32fns.c (Fx_get_resource, x_get_resource_string): Pass xrdb to check
6542 for resources passed on the command line.
6543
6544 * w32reg.c (w32_get_rdb_resource): New function.
6545 (x_get_string_resource): Use it, so resources passed with -xrm
6546 supercede the ones in the registry.
6547
6548 2003-03-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6549
6550 * xterm.c (x_detect_focus_change): Call x_any_window_to_frame
6551 instead of x_top_window_to_frame.
6552
6553 2003-03-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6554
6555 * xsmfns.c (smc_save_yourself_CB): Add --no-splash to options
6556 when restarting Emacs.
6557
6558 2003-03-03 Richard M. Stallman <rms@gnu.org>
6559
6560 * buffer.c (Fkill_buffer): Use Frun_hook_with_args_until_failure
6561 to run kill-buffer-query-functions.
6562 (Qkill_buffer_query_functions): New var.
6563 (syms_of_buffer): Init and staticpro it.
6564
6565 2003-03-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6566
6567 * xterm.h (XSync): Define as gdk_window_process_all_updates for GTK.
6568
6569 2003-02-25 Kim F. Storm <storm@cua.dk>
6570
6571 * xdisp.c (redisplay_window): Fix infinite loop in redisplay.
6572 If centering point failed to make whole line visible and vscroll
6573 is non-zero, disable vscroll and try centering point again.
6574
6575 * lread.c (read1): Accept `single space' syntax like (? x).
6576
6577 2003-02-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6578
6579 * keyboard.c (cancel_hourglass_unwind): Surround with
6580 #ifdef HAVE_X_WINDOWS
6581
6582 2003-02-25 Kenichi Handa <handa@m17n.org>
6583
6584 * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer
6585 process only when "subprocesses" is defined.
6586
6587 2003-02-24 Stefan Monnier <monnier@cs.yale.edu>
6588
6589 * syntax.c (back_comment): Only check nestedness of 2nd char if needed.
6590
6591 2003-02-24 Juanma Barranquero <lektu@terra.es>
6592
6593 * callint.c (fix_command): Declare as static void and move before
6594 Fcall_interactively.
6595
6596 * xdisp.c (Qwhen): Declare external; it's now defined in callint.c.
6597 (syms_of_xdisp): Don't initialize Qwhen.
6598
6599 2003-02-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6600
6601 * keyboard.c (cancel_hourglass_unwind): New function.
6602 (command_loop_1): Cancel hourglass with unwind-protect.
6603
6604 2003-02-23 Richard M. Stallman <rms@gnu.org>
6605
6606 * callint.c (fix_command): New subroutine, from Fcall_interactively.
6607 Detect (when ... (region-beginning)) etc.
6608 (Fcall_interactively): Call fix_command.
6609 (Qif, Qwhen): New variables.
6610 (syms_of_callint): Init and staticpro them.
6611
6612 * regex.c (print_partial_compiled_pattern): Output to stderr.
6613
6614 2003-02-23 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
6615
6616 * dired.c (directory_files_internal): Don't expand directory.
6617 (Fdirectory_files, Fdirectory_files_and_attributes): Do it here
6618 instead. From Lars Hansen <larsh@math.ku.dk>.
6619
6620 2003-02-22 Stefan Monnier <monnier@cs.yale.edu>
6621
6622 * fns.c (string_to_multibyte): Remove unused var i.
6623 (Flanginfo): Fix int/Lisp_Object mixup.
6624 (void_call2): New fun.
6625 (Fmap_char_table): Use it in place of call2.
6626
6627 * xfaces.c (x_face_list_fonts): Fix int/Lisp_Object mixup.
6628
6629 * macros.c (Fstart_kbd_macro): Remove redundant assignment.
6630
6631 * keymap.c (copy_keymap_1): Make it static.
6632
6633 * alloc.c (Fgarbage_collect): Don't use XSETFLOAT.
6634
6635 2003-02-22 David Ponce <david@dponce.com>
6636
6637 * lread.c (Fload): Don't check STRING_MULTIBYTE.
6638
6639 2003-02-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6640
6641 * process.h: Removed subtty field from struct Lisp_Process.
6642
6643 * process.c (create_process): Remove setting of subtty.
6644 (emacs_get_tty_pgrp): New function.
6645 (Fprocess_running_child_p, process_send_signal):
6646 Call emacs_get_tty_pgrp instead of ioctl.
6647 (process_send_signal): Call EMACS_KILLPG if ioctl TIOCSIGSEND fails.
6648
6649 2003-02-21 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
6650
6651 * keymap.c (Fdefine_key): Doc fix.
6652
6653 2003-02-21 Juanma Barranquero <lektu@terra.es>
6654
6655 Port of patch for RC by Klaus Zeitler <kzeitler@lucent.com>.
6656
6657 * s/hpux10.h: Define POLL_INTERRUPTED_SYS_CALL, not
6658 POLLING_PROBLEM_IN_SELECT.
6659
6660 * s/hpux11.h: Include hpux10-20.h instead of hpux10.h.
6661 Delete #undef of POLLING_PROBLEM_IN_SELECT.
6662
6663 * s/hpux10-20.h: New file.
6664
6665 * process.c (wait_reading_process_input):
6666 Use POLL_INTERRUPTED_SYS_CALL, not POLLING_PROBLEM_IN_SELECT.
6667
6668 2003-02-20 Kenichi Handa <handa@m17n.org>
6669
6670 * fontset.c (check_fontset_name): If NAME is nil, return the
6671 default fontset.
6672 (override_font_info): New function.
6673 (Fset_fontset_font): Document that NAME nil means the default fontset.
6674 (Ffontset_info): If FONTSET is not the default fontset, merge
6675 FONTSET onto the copy of the default fontset, and work on that
6676 copy. Document that NAME nil means the default fontset.
6677 (Ffontset_font): Document that NAME nil means the default fontset.
6678
6679 * process.c (setup_process_coding_systems): If the process's
6680 in/out descriptor is -1, do nothing.
6681
6682 2003-02-19 Andreas Schwab <schwab@suse.de>
6683
6684 * lisp.h (Fcancel_kbd_macro_events, Fstring_to_multibyte):
6685 Add prototypes.
6686
6687 2003-02-19 Kenichi Handa <handa@m17n.org>
6688
6689 * xfaces.c (try_alternative_families): Try all scalable fonts if
6690 Vscalable_fonts_allowed is not Qt.
6691
6692 2003-02-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6693
6694 * xfaces.c (x_face_list_fonts): Set *pfonts to 0 if no fonts found.
6695
6696 2003-02-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6697
6698 * xterm.c (x_list_fonts): If maxnames is less than 0, get all font
6699 names.
6700
6701 * xfaces.c (x_face_list_fonts): Allocate struct font_name here.
6702 (sorted_font_list): Move allocation of struct font_name to
6703 x_face_list_fonts.
6704 (Fx_font_family_list): Set font-list-limit to -1 to get all font names.
6705 (Fx_list_fonts): Set maxnames to -1 to get all font names.
6706
6707 2003-02-18 Kim F. Storm <storm@cua.dk>
6708
6709 * lread.c (read1): Fix last change.
6710 "`" is not always special. Allow "?" after a character constant.
6711
6712 2003-02-18 Andrew Choi <akochoi@shaw.ca>
6713
6714 * unexmacosx.c (copy_data_segment): Also copy __cfstring section.
6715
6716 2003-02-18 Andreas Schwab <schwab@suse.de>
6717
6718 * window.c (window_scroll_pixel_based): Move outside a
6719 multi-glyph character before setting new window start.
6720
6721 * xdisp.c (in_display_vector_p): New function.
6722 * dispextern.h (in_display_vector_p): Declare.
6723
6724 2003-02-18 Kim F. Storm <storm@cua.dk>
6725
6726 * lread.c (read1): Fix and relax read syntax.
6727 Recognize "[", ";", "#", and "?" after a dotted-pair dot.
6728 Only recognize "," after dotted-pair dot if inside backquote.
6729 Never include "`" or "," (inside backquote) in a symbol.
6730 Allow dotted-pair dot after a character constant.
6731 Allow "`" and "," (inside backquote) after a character constant.
6732
6733 2003-02-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6734
6735 * gtkutil.c (xg_tool_bar_expose_callback): New function.
6736 (xg_create_tool_bar): Force style of tool bar to be horizontal with
6737 icons. Set name of tool bar to emacs-toolbar.
6738 (update_frame_tool_bar): Connect expose event to
6739 xg_tool_bar_expose_callback.
6740
6741 2003-02-17 Richard M. Stallman <rms@gnu.org>
6742
6743 * keyboard.c (this_command_key_count_reset): New variable.
6744 Initiatize to 0 where this_command_key_count is set.
6745 (read_char): Save and restore this_command_key_count_reset
6746 around input method code.
6747 (read_char): If this_command_key_count_reset, echo reread commands.
6748 (Freset_this_command_lengths): Set this_command_key_count_reset to 1.
6749
6750 2003-02-17 Kenichi Handa <handa@m17n.org>
6751
6752 * fns.c (string_to_multibyte): Always return a multibyte string.
6753
6754 2003-02-16 Jason Rumney <jasonr@gnu.org>
6755
6756 * w32fns.c (w32_list_bdf_fonts, w32_list_fonts):
6757 Negative max_fonts parameter means list all.
6758
6759 2003-02-14 Dave Love <fx@gnu.org>
6760
6761 * fns.c (Flanginfo): Doc fix.
6762
6763 2003-02-13 Kim F. Storm <storm@cua.dk>
6764
6765 * lread.c (read_escape): Interpret \s as a SPACE character, except
6766 for \s-X in a character constant which still is the super modifier.
6767 (read1): Signal an `invalid read syntax' error if a character
6768 constant is immediately followed by a digit or symbol character.
6769
6770 * search.c (Fmatch_data): Doc fix. Explicitly state that
6771 match-data is undefined if last search failed.
6772
6773 * keymap.c (Fcommand_remapping): Renamed from Fremap_command.
6774 All uses changed.
6775
6776 2003-02-12 Juanma Barranquero <lektu@terra.es>
6777
6778 * eval.c (Fdefmacro): Fix typo.
6779
6780 2003-02-12 Kim F. Storm <storm@cua.dk>
6781
6782 * macros.c (Fstart_kbd_macro): If appending, and last keyboard
6783 macro is a string, convert meta modifiers in string when copying
6784 the string into a vector.
6785
6786 2003-02-11 Kim F. Storm <storm@cua.dk>
6787
6788 * keymap.c (Fremap_command): Return nil if arg is not a symbol.
6789
6790 2003-02-11 Kenichi Handa <handa@m17n.org>
6791
6792 * Makefile.in (lisp, shortlisp): Add malayalam.el and tamil.el.
6793
6794 2003-02-10 Kim F. Storm <storm@cua.dk>
6795
6796 * process.c: Doc fixes.
6797 (syms_of_process): Add `:' prefix to QCfilter_multibyte.
6798
6799 2003-02-10 Kenichi Handa <handa@m17n.org>
6800
6801 * fns.c (Fstring_to_multibyte): Fix typo in the docstring.
6802
6803 * process.c (QCfilter_multibyte): New variable.
6804 (setup_process_coding_systems): New function.
6805 (Fset_process_buffer, Fset_process_filter):
6806 Call setup_process_coding_systems.
6807 (Fstart_process): Initialize the member `filter_multibyte' of
6808 struct Lisp_Process.
6809 (create_process): Call setup_process_coding_systems.
6810 (Fmake_network_process): New keyward `:filter-multibyte'.
6811 Initialize the member `filter_multibyte' of struct Lisp_Process.
6812 Call setup_process_coding_systems.
6813 (server_accept_connection): Call setup_process_coding_systems.
6814 (read_process_output): If the process has a filter, decide the
6815 multibyteness of a string to given to the filter by
6816 `filter_multibyte' member of the process. If the process doesn't
6817 have a filter and the result of conversion is unibyte, use
6818 Fstring_to_multibyte (not Fstring_make_multibyte) to get the
6819 multibyte form.
6820 (Fset_process_coding_system): Call setup_process_coding_systems.
6821 (Fset_process_filter_multibyte): New function.
6822 (Fprocess_filter_multibyte_p): New function.
6823 (syms_of_process): Intern and staticpro QCfilter_multibyte.
6824 Defsubr Sset_process_filter_multibyte and
6825 Sprocess_filter_multibyte_p.
6826
6827 * process.h (struct Lisp_Process): New member filter_multibyte.
6828
6829 * lisp.h (setup_process_coding_systems): Add prototype.
6830
6831 * buffer.c (Fset_buffer_multibyte): If the current buffer has a
6832 process, update coding systems for the process.
6833
6834 2003-02-09 Kenichi Handa <handa@m17n.org>
6835
6836 * fns.c (string_to_multibyte): New function.
6837 (Fstring_to_multibyte): New function.
6838 (syms_of_fns): Defsubr it.
6839
6840 2003-02-08 Andreas Schwab <schwab@suse.de>
6841
6842 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
6843 instead of the substitution.
6844
6845 2003-02-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6846
6847 * xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
6848
6849 * xmenu.c (menu_position_func): Adjust menu popup position so that
6850 the menu is fully visible.
6851
6852 2003-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6853
6854 * xterm.c (x_text_icon, x_raise_frame, x_lower_frame)
6855 (x_make_frame_invisible, x_wm_set_icon_position):
6856 Use FRAME_OUTER_WINDOW instead of ifdef X_TOOLKIT/else/endif.
6857
6858 * xfns.c (x_set_name, x_set_title): Ditto.
6859
6860 2003-02-04 Richard M. Stallman <rms@gnu.org>
6861
6862 * keyboard.c (echo_now): Update before_command_echo_length.
6863 (Freset_this_command_lengths): Reset this_command_key_count etc.
6864 immediately rather than arranging to do it later.
6865 (before_command_key_count_1, before_command_echo_length_1)
6866 (before_command_restore_flag): Vars deleted.
6867 (add_command_key): Don't handle before_command_restore_flag.
6868 (read_char, record_menu_key): Don't update before_command_key_count or
6869 before_command_echo_length.
6870 (read_char): Don't handle before_command_restore_flag.
6871
6872 * keyboard.c (command_loop_1): Don't call adjust_point_for_property
6873 in direct-output clauses if it wouldn't be called in the ordinary case.
6874
6875 2003-02-04 Kim F. Storm <storm@cua.dk>
6876
6877 * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix.
6878
6879 2003-02-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6880
6881 * gtkutil.c (remove_from_container): Copying list is not needed.
6882 (xg_update_menubar, xg_update_menu_item, xg_update_submenu)
6883 (xg_modify_menubar_widgets, update_frame_tool_bar): Call g_list_free
6884 on list returned from gtk_container_get_children to avoid memory leak.
6885
6886 2003-02-01 Jason Rumney <jasonr@gnu.org>
6887
6888 * w32fns.c (w32_create_pixmap_from_bitmap_data): Use alloca for
6889 local malloc.
6890 [HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
6891 definitions in xpm.h.
6892 (init_xpm_functions): New function.
6893 (xpm_load): Sync with xfns.c. Adapt for Windows version of libXpm.
6894 (init_external_image_libraries): Try to load libXpm.dll.
6895
6896 * fileio.c (Fcopy_file) [WINDOWSNT]: Reverse logic for setting
6897 timestamp.
6898
6899 2003-01-31 Dave Love <fx@gnu.org>
6900
6901 * syntax.c (Fskip_chars_forward)
6902 (open-paren-in-column-0-is-defun-start): Doc fix.
6903
6904 2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
6905
6906 * fileio.c: Support // at start of name for Cygwin (just added proper
6907 preprocessor tests).
6908
6909 * keyboard.c: Port to Cygwin (just added proper preprocessor tests).
6910
6911 * Makefile.in: Use @EXEEXT@ for Cygwin.
6912
6913 * mem-limits.h: Added ifdef to define BSD4_2 for Cygwin.
6914
6915 * s/cygwin.h: Added for Cygwin port.
6916
6917 2003-01-31 Juanma Barranquero <lektu@terra.es>
6918
6919 * w32fns.c (DrawText): Kludge to avoid a redefinition on Windows
6920 when including gif_lib.h.
6921 (init_gif_functions, init_tiff_functions): New functions.
6922 (gif_load, tiff_load): Sync with xfns.c version. Adjust colors for
6923 Windows. Disable color table lookups. Call library functions
6924 through pointers determined at runtime.
6925 (init_external_image_libraries): Try to load libungif.dll and
6926 libtiff.dll.
6927
6928 2003-01-31 Kenichi Handa <handa@m17n.org>
6929
6930 * xdisp.c (SKIP_GLYPHS): New macro.
6931 (set_cursor_from_row): Skip all glyphs that comes from overlay string.
6932
6933 2003-01-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6934
6935 * gtkutil.c (free_frame_tool_bar): Remove debug printf.
6936
6937 2003-01-30 Dave Love <fx@gnu.org>
6938
6939 * alloc.c (Vgc_elapsed, gcs_done): New variables.
6940 (Fgarbage_collect): Use them.
6941 (init_alloc, syms_of_alloc): Set them up.
6942
6943 2003-01-30 Juanma Barranquero <lektu@terra.es>
6944
6945 * w32fns.c (init_external_image_libraries): Add missing operator.
6946
6947 2003-01-29 Jason Rumney <jasonr@gnu.org>
6948
6949 * w32fns.c (init_external_image_libraries): Allow jpeg-62.dll as
6950 an alternative name for jpeg.dll.
6951
6952 2003-01-29 Kenichi Handa <handa@m17n.org>
6953
6954 * xdisp.c (set_cursor_from_row): Pay attention to string display
6955 properties.
6956
6957 2003-01-28 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
6958
6959 * macterm.c (keycode_to_xkeysym_table): Add <tab>, <backspace>,
6960 <escape>.
6961 (keycode_to_xkeysym_table): Reformat and add more comments.
6962 (XTread_socket): Drop special case for backspace.
6963
6964 2003-01-28 Andrew Choi <akochoi@shaw.ca>
6965
6966 * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
6967 values in old-style RGB specs.
6968
6969 2003-01-27 Juanma Barranquero <lektu@terra.es>
6970
6971 * w32fns.c (init_external_image_libraries): Try alternate names for the
6972 jpeg dll.
6973
6974 2003-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6975
6976 * gtkutil.c (create_dialog, xg_separator_p)
6977 (xg_item_label_same_p, xg_update_menu_item): Check for NULL string
6978 before calling strcmp or strlen.
6979
6980 2003-01-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6981
6982 * gtkutil.c (update_frame_tool_bar): Call prepare_image_for_display
6983 and handle image load failure.
6984
6985 2003-01-26 Jason Rumney <jasonr@gnu.org>
6986
6987 * w32fns.c (init_jpeg_functions, jpeg_resync_to_restart_wrapper):
6988 New functions.
6989 (jpeg_load): Sync with xfns.c version. Adjust colors for Windows.
6990 Disable color table lookups. Call jpeg library functions
6991 through pointers determined at runtime.
6992 (init_external_image_libraries): Try to load jpeg.dll.
6993
6994 2003-01-25 Richard M. Stallman <rms@gnu.org>
6995
6996 * lisp.h: Declare format2 instead of format1.
6997
6998 * fileio.c (barf_or_query_if_file_exists):
6999 Call format2 instead of format1.
7000
7001 * editfns.c (format2): New function, replaces format1
7002 but takes exactly two Lisp Objects as format args.
7003
7004 * buffer.c (Fkill_buffer): Call format2 instead of format1.
7005
7006 2003-01-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7007
7008 * xterm.h: Change to return value of x_dispatch_event to int.
7009
7010 * xterm.c (x_filter_event): New function.
7011 (event_handler_gdk, XTread_socket): Call x_filter_event.
7012 (x_dispatch_event): Change to return value of finish.
7013 (event_handler_gdk): Use return value from x_dispatch_event.
7014
7015 * xfns.c (x_window): Call create_frame_xic for GTK version to
7016 initialize input methods.
7017
7018 * gtkutil.h: Add (void) prototypes.
7019
7020 * gtkutil.c (create_menus): Remove code that puts the help menu to
7021 the right.
7022
7023 2003-01-25 Jason Rumney <jasonr@gnu.org>
7024
7025 * w32fns.c (XPutPixel): Handle monochrome images; used for masks.
7026 [HAVE_PNG]: Sync with xfns.c version.
7027 (png_load): Adjust colors for Windows. Use Windows
7028 bitmaps. Disable color table lookups.
7029 (DEF_IMGLIB_FN, LOAD_IMGLIB_FN): New macros.
7030 (init_png_functions): New function.
7031 (png_read_from_memory, png_load): Call png library functions
7032 through pointers determined at runtime.
7033 (QCloader, QCbounding_box, QCpt_width, QCpt_height): Declare.
7034 (init_external_image_libraries): New function.
7035 (init_xfns): Call it.
7036
7037 2003-01-24 Andreas Schwab <schwab@suse.de>
7038
7039 * minibuf.c (Fminibuffer_message): Verify type of parameter.
7040
7041 2003-01-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7042
7043 * gtkutil.c (xg_initialize): Initialize id_to_widget here instead
7044 of static initializer.
7045
7046 2003-01-24 Dave Love <fx@gnu.org>
7047
7048 * s/gnu-linux.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define for more
7049 architectures.
7050
7051 * alloc.c (mark_stack) [!GC_LISP_OBJECT_ALIGNMENT && __GNUC__]:
7052 Use __alignof__.
7053
7054 2003-01-24 Kenichi Handa <handa@m17n.org>
7055
7056 * keyboard.c (adjust_point_for_property): New second arg MODIFIED.
7057 It it is nonzero, don't pretend that an invisible area doesn't exist.
7058 (command_loop_1): Call adjust_point_for_property with proper
7059 second arg.
7060
7061 2003-01-22 Jason Rumney <jasonr@gnu.org>
7062
7063 Sync changes with xterm.c and xfns.c.
7064
7065 * w32term.c (x_draw_glyph_string_foreground)
7066 (x_draw_composite_glyph_string_foreground): Implement overstriking.
7067
7068 * w32term.c (x_write_glyphs): Clear phys_cursor_on_p if current
7069 phys_cursor's hpos is overwritten. This is still not completely
7070 correct, as it doesn't really make sense to use hpos at all to
7071 get the cursor glyph (as that is relative to the width of the
7072 characters on the line, which may have changed during the update).
7073
7074 * w32term.c (notice_overwritten_cursor): Handle the special case
7075 of the cursor being in the first blank non-text line at the
7076 end of a window.
7077
7078 * w32term.c (x_draw_hollow_cursor, x_draw_bar_cursor)
7079 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
7080 Compute from the x position returned by x_draw_glyphs.
7081
7082 (x_display_and_set_cursor): Don't set phys_cursor_width here,
7083 except for NO_CURSOR and system caret, to make phys_cursor_width
7084 contain what its name suggests.
7085 (notice_overwritten_cursor): Consider the cursor image erased if
7086 the output area intersects the cursor image in y-direction.
7087
7088 * w32term.c (note_mode_line_or_margin_highlight): Rename from
7089 note_mode_line_highlight and extend.
7090
7091 * w32term.c (last_window): New variable.
7092 (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs.
7093 (note_mouse_movement): Remove reimplemented code in #if 0.
7094
7095 * w32fns.c (x_set_cursor_type): Set cursor_type_changed,
7096 not update_mode_lines, and always set it to 1.
7097
7098 2003-01-21 Jason Rumney <jasonr@gnu.org>
7099
7100 * w32fns.c (IDC_HAND): Define it if system headers don't.
7101
7102 2003-01-21 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
7103
7104 * w32term.h (struct w32_output): New member hand_cursor.
7105 (WM_EMACS_SETCURSOR): New message definition.
7106
7107 * w32term.c (note_mode_line_highlight): Delete #if 0 to enable
7108 function w32_define_cursor.
7109 (note_mouse_highlight): Initialize, setup cursor accoding to mouse
7110 position, change member name output_data.x to output_data.w32 and
7111 add function w32_define_cursor.
7112 (show_mouse_face): Delete #if 0 to enable function w32_define_cursor
7113 and change member name output_data.x to output_data.w32.
7114 (w32_initialize_display_info):
7115 Setup dpyinfo->vertical_scroll_bar_cursor.
7116
7117 * w32fns.c (Vx_hand_shape): New variable.
7118 (w32_wnd_proc): Add message entries for WM_SETCURSOR and
7119 WM_EMACS_SETCURSOR.
7120 (x-create-frame): Setup Cursor types.
7121
7122 2003-01-21 David Ponce <david@dponce.com>
7123
7124 * w32term.c (w32_encode_char): For DIM=1 charset, set
7125 ccl->reg[2] to -1 before calling ccl_driver. (Sync. with xterm.c
7126 x_encode_char change by Kenichi Handa <handa@m17n.org> on
7127 2002-09-30.)
7128 (w32_draw_relief_rect): Declare all args.
7129 (w32_define_cursor): New.
7130
7131 * w32fns.c (w32_load_cursor): New function.
7132 (w32_init_class): Use it.
7133 (x_put_x_image): Declare all args.
7134
7135 2003-01-21 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change)
7136
7137 * Makefile.in (ALL_CFLAGS): Include MYCPPFLAGS, not MYCPPFLAG.
7138
7139 2003-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7140
7141 * gtkutil.c: Must include stdio.h before termhooks.h
7142
7143 2003-01-21 Dave Love <fx@gnu.org>
7144
7145 * alloc.c (Fgc_status): Print zombie list.
7146 (mark_maybe_object) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
7147 Fix assignment of zombies.
7148 (Fgarbage_collect) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
7149 Don't take car of non-cons.
7150
7151 * s/sol2-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
7152
7153 * s/sunos4-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
7154
7155 2003-01-20 David Ponce <david@dponce.com>
7156
7157 * w32menu.c (digest_single_submenu): Declare all args.
7158
7159 Sync with 2002-12-23 Richard M. Stallman <rms@gnu.org>
7160 changes in xmenu.c:
7161
7162 (parse_single_submenu): Use individual keymap's prompt
7163 string as pane name, if there is one.
7164 (set_frame_menubar): Save menu_items_n_panes from each call to
7165 parse_single_submenu and use it when calling digest_single_submenu.
7166
7167 2003-01-20 Steven Tamm <steventamm@mac.com>
7168
7169 * macterm.c (XTread_socket): Checks for valid, visible window
7170 before sending a scroll-wheel event.
7171
7172 2003-01-20 Richard M. Stallman <rms@gnu.org>
7173
7174 * xdisp.c (redisplay_window): If mini window's buffer is not
7175 a minibuffer, then redisplay it like other windows.
7176
7177 2003-01-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7178
7179 * gtkutil.c (xg_create_frame_widgets): Check if there is an
7180 external tool bar before setting tool bar height.
7181
7182 2003-01-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7183
7184 * xterm.c (handle_one_xevent): Surround popup_activated
7185 with #ifdef:s for non-toolkit version.
7186
7187 * Makefile.in (XOBJ): Add gtkutil.o if USE_GTK
7188 (gtkutil.o): New file.
7189 (TOOLKIT_DEFINES): Set to -DUSE_GTK if HAVE_GTK.
7190 (LIBW): Set to @GTK_LIBS@ if USE_GTK.
7191
7192 * gtkutil.c: New file for GTK version.
7193
7194 * gtkutil.h: New file for GTK version.
7195
7196 * xterm.h: Add xt_or_gtk_widget.
7197 Include gtk files for USE_GTK.
7198 (struct x_output): Add toolbar_height.
7199 (struct x_output): Add GTK widgets and Gdk size_hints.
7200 (GTK_WIDGET_TO_X_WIN, FRAME_GTK_OUTER_WIDGET, FRAME_GTK_WIDGET)
7201 (FRAME_OUTER_WINDOW): New macros for USE_GTK.
7202 (FRAME_OUTER_TO_INNER_DIFF_Y): Add FRAME_TOOLBAR_HEIGHT to calculation.
7203
7204 * xterm.c: Include gtkutil.h for USE_GTK.
7205 Declare extern void free_frame_menubar for USE_GTK.
7206 (note_mouse_highlight): Check popup_activated for USE_GTK.
7207 (xt_action_hook): Don't compile if USE_GTK.
7208 (x_scroll_bar_to_input_event): Use CurrentTime for USE_GTK.
7209 (xg_scroll_callback): New function.
7210 (x_create_toolkit_scroll_bar): Call xg_create_scroll_bar for USE_GTK.
7211 (x_set_toolkit_scroll_bar_thumb): Call xg_set_toolkit_scroll_bar_thumb
7212 for USE_GTK.
7213 (x_scroll_bar_create): Call xg_update_scrollbar_pos and
7214 xg_show_scroll_bar for USE_GTK.
7215 (x_scroll_bar_remove): Call xg_remove_scroll_bar for USE_GTK.
7216 (XTset_vertical_scroll_bar): Call xg_update_scrollbar_pos for USE_GTK.
7217 (event_handler_gdk): New function for USE_GTK.
7218 (handle_one_xevent): Call xg_resize_widgets for USE_GTK.
7219 (handle_one_xevent): Make sure widget is mapped before
7220 calling x_real_positions for USE_GTK.
7221 (XTread_socket): Add GTK event loop for USE_GTK.
7222 (x_set_window_size): Call xg_frame_set_char_size for USE_GTK.
7223 (x_make_frame_visible): Call gtk_widget_show_all for USE_GTK.
7224 (x_make_frame_invisible): Call gtk_widget_hide for USE_GTK.
7225 (x_iconify_frame): Add code for USE_GTK.
7226 (x_free_frame_resources): Call gtk_widget_destroy for USE_GTK.
7227 (x_wm_set_size_hint): Only compile if not USE_GTK. GTK version
7228 is in gtkutil.c.
7229 (x_term_init): Add initialization for GTK.
7230 (syms_of_xterm): Set Vx_toolkit_scroll_bars for USE_GTK.
7231
7232 * xmenu.c: Include gtkutil.h for USE_GTK.
7233 (Fx_popup_menu): Use current position if x and y is NIL.
7234 (single_menu_item, single_menu_item, Fx_popup_dialog):
7235 Check for USE_GTK.
7236 (popup_widget_loop): New function for USE_GTK.
7237 (x_activate_menubar): Add code for USE_GTK.
7238 (popup_activate_callback, popup_deactivate_callback)
7239 (menu_highlight_callback, menubar_selection_callback):
7240 Add USE_GTK versions.
7241 (update_frame_menubar): Call xg_update_frame_menubar for USE_GTK.
7242 (set_frame_menubar): Call xg_modify_menubar_widgets for USE_GTK.
7243 (free_frame_menubar): Only compile if not USE_GTK. GTK version
7244 is in gtkutil.c.
7245 (popup_selection_callback): New version for USE_GTK.
7246 (create_and_show_popup_menu): New fuction, one USE_GTK version and
7247 one USE_X_TOOLKIT version.
7248 (xmenu_show): Call create_and_show_popup_menu.
7249 (dialog_selection_callback): New version for USE_GTK.
7250 (create_and_show_dialog): New fuction, one USE_GTK version and
7251 one USE_X_TOOLKIT version.
7252 (xdialog_show): Call create_and_show_dialog.
7253
7254 * xfns.c: Include gtkutil for USE_GTK.
7255 (x_window_to_frame, x_any_window_to_frame)
7256 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
7257 (x_top_window_to_frame): Add code for USE_GTK.
7258 (x_set_background_color): Call xg_set_background_color for GTK.
7259 (x_set_menu_bar_lines): Check for USE_GTK.
7260 (x_set_tool_bar_lines): Call update_frame_tool_bar for USE_GTK.
7261 (x_set_name, x_set_title): Call gtk_window_set_title for USE_GTK.
7262 (x_window): Call xg_create_frame_widgets for USE_GTK.
7263 (Fx_create_frame): Check for USE_GTK
7264 (Fx_file_dialog): New implementation for USE_GTK.
7265
7266 * xdisp.c: Add check for USE_GTK for extern void set_frame_menubar.
7267 (update_menu_bar): Add check for USE_GTK.
7268 (update_tool_bar): Add check for USE_GTK and external tool bar.
7269 (redisplay_tool_bar): Add check for USE_GTK and external tool bar.
7270 (redisplay_internal): Add check for USE_GTK and popup_activated.
7271 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_MENU_BAR.
7272 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_TOOL_BAR.
7273 (display_menu_bar): Add check for USE_GTK
7274
7275 * lisp.h: Declare Vx_resource_name extern.
7276
7277 * keyboard.c (kbd_buffer_get_event): Check MENU_BAR_ACTIVATE_EVENT
7278 for USE_GTK.
7279 (make_lispy_event): Check MENU_BAR_EVENT for USE_GTK.
7280
7281 * frame.h (struct frame): Add external_tool_bar. Check for USE_GTK.
7282 (FRAME_EXTERNAL_TOOL_BAR): New macro.
7283 (FRAME_EXTERNAL_MENU_BAR): Check for USE_GTK.
7284
7285 * fileio.c (Fread_file_name): Add check for USE_GTK.
7286
7287 * dispnew.c (adjust_frame_glyphs_for_window_redisplay):
7288 Add check for USE_GTK.
7289
7290 * config.in: Added HAVE_GTK
7291
7292 * alloc.c (Fgarbage_collect): Call xg_mark_data for GTK.
7293
7294 2003-01-18 Stefan Monnier <monnier@cs.yale.edu>
7295
7296 * charset.h (Funibyte_char_to_multibyte): Export.
7297
7298 2003-01-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7299
7300 * xmenu.c (mouse_position_for_popup): New function.
7301 (Fx_popup_menu): Call mouse_position_for_popup for X and
7302 mouse_position_hook for others.
7303
7304 2003-01-17 Kim F. Storm <storm@cua.dk>
7305
7306 * editfns.c (Finsert): Mention `string-make-multibyte' and
7307 `string-as-multibyte' in doc string.
7308
7309 2003-01-17 Kenichi Handa <handa@m17n.org>
7310
7311 * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here.
7312
7313 * editfns.c (Fformat): Convert an unibyte char argument that is
7314 formatted by "%c" to multibyte if the total result must be a
7315 multibyte string.
7316
7317 2003-01-16 Kim F. Storm <storm@cua.dk>
7318
7319 * process.c (set-process-filter): Document unibyte/multibyte-ness
7320 of string argument.
7321
7322 2003-01-16 Kenichi Handa <handa@m17n.org>
7323
7324 * charset.h (NEXT_CHAR_BOUNDARY, PREV_CHAR_BOUNDARY): New macros.
7325
7326 * regex.c (GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
7327 (re_search_2): Likewise.
7328
7329 2003-01-15 Kenichi Handa <handa@m17n.org>
7330
7331 * xdisp.c (message_dolog): Fix bug of the case that *Message*
7332 buffer is unibyte.
7333
7334 2003-01-15 Francesco Potort\e,Al\e(B <pot@gnu.org>
7335
7336 * fns.c (Fsubstring): Clarify doc string.
7337
7338 * textprop.c (Ftext_properties_at, Fnext_char_property_change)
7339 (Fprevious_char_property_change)
7340 (Fnext_single_char_property_change)
7341 (Fprevious_single_char_property_change, Fnext_property_change)
7342 (Fnext_single_property_change, Fprevious_property_change)
7343 (Fprevious_single_property_change, Fadd_text_properties)
7344 (Fput_text_property, Fset_text_properties)
7345 (Fremove_text_properties, Fremove_list_of_text_properties)
7346 (Ftext_property_any, Ftext_property_not_all): Clarify doc strings.
7347
7348 2003-01-14 Kim F. Storm <storm@cua.dk>
7349
7350 * process.h (struct Lisp_Process): New member plist replaces old
7351 member private_vars. All uses changed.
7352
7353 * process.c: Reworked 2003-01-12 change -- call a plist a plist!
7354 (QCplist): Rename from QCvars. Change all uses.
7355 (Fprocess_plist): Replaces Fprocess_variable. Simplified.
7356 (Fset_process_plist): Replaces Fset_process_variable. Simplify.
7357 (syms_of_process): Intern, staticpro, defsubr these.
7358 (Fmake_network_process): Describe :plist arg. Remove :vars arg.
7359
7360 2003-01-14 Francesco Potort\e,Al\e(B <pot@gnu.org>
7361
7362 * m/delta.h: Remove (obsolete).
7363
7364 2003-01-13 Francesco Potort\e,Al\e(B <pot@gnu.org>
7365
7366 * fileio.c (Fdelete_directory, Fdelete_file): Document the
7367 behaviour in front of symlinks.
7368 (Fdelete_file): Raise an error on directories.
7369
7370 2003-01-13 Dave Love <fx@gnu.org>
7371
7372 * fns.c (Freverse): Use QUIT.
7373
7374 2003-01-13 Richard M. Stallman <rms@gnu.org>
7375
7376 * minibuf.c (minibuffer_completion_contents):
7377 Error if point is inside prompt.
7378
7379 * keyboard.c (command_loop_1): Don't redisplay directly
7380 if there's a post-command-hook.
7381
7382 * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix.
7383 (Fdo_auto_save): Add gcpros around Ffile_name_directory.
7384
7385 2003-01-12 Kim F. Storm <storm@cua.dk>
7386
7387 * process.h (struct Lisp_Process): New member private_vars.
7388
7389 * process.c (QCvars): New variable.
7390 (syms_of_process): Intern and staticpro it.
7391 (Fset_process_contact): Removed function.
7392 (Fprocess_variable, Fset_process_variable): New functions.
7393 (syms_of_process): Defsubr them.
7394 (Fstart_process): Initialize private_vars plist to nil.
7395 (Fmake_network_process): New arg :vars to setup the private
7396 variables for new network process.
7397 (server_accept_connection): Copy server's private variables to
7398 client process.
7399
7400 * alloc.c (pure_alloc): Fixed 2003-01-10 changed (caused spurious
7401 crashes). Code rewritten and simplified. Now directly aligns the
7402 pointer and recalculates pure_bytes_used, rather than aligning the
7403 size and adjusting the pointer.
7404
7405 2003-01-11 Kim F. Storm <storm@cua.dk>
7406
7407 * process.c (Fset_process_contact): New function.
7408 (syms_of_process): defsubr it.
7409 (make-network-process): Update doc.
7410
7411 2003-01-10 Andreas Schwab <schwab@suse.de>
7412
7413 * alloc.c (pure_alloc): Correct alignment for Lisp_Floats.
7414 Reported by Berthold Gunreben <b.gunreben@web.de>.
7415
7416 2003-01-10 Dave Love <fx@gnu.org>
7417
7418 * composite.c (syms_of_composite): Make composition_hash_table weak.
7419
7420 2003-01-09 Kim F. Storm <storm@cua.dk>
7421
7422 * process.c (Fmake_network_process): Convert new port number
7423 to host byte order for `:service t' case. From Mario Lang.
7424
7425 2003-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7426
7427 * xfns.c (Fx_file_dialog): Call XtAppNextEvent and x_dispatch_event
7428 instead of XtAppProcessEvent.
7429
7430 * xterm.c (handle_one_xevent): New function.
7431 (x_dispatch_event): New function.
7432 (XTread_socket): Call handle_one_xevent.
7433
7434 * xterm.h (FRAME_OUTER_TO_INNER_DIFF_X/Y): New.
7435
7436 * xmenu.c (Fx_popup_menu): If popping up at mouse position,
7437 call XQueryPointer to get coordinates.
7438 (popup_get_selection): Do not set popup_activated_flag to zero,
7439 let popup_deactivate_callback do that. Needed for Motif.
7440 Call x_dispatch_event instead of XtDispatchEvent.
7441 (xmenu_show): Calculate root coordinate from frame top/left position.
7442
7443 2003-01-08 Kim F. Storm <storm@cua.dk>
7444
7445 * process.c (server_accept_connection): Fix recording of new
7446 connection's local address in :local property of contact info.
7447 (Fmake_network_process): Record local network address for new
7448 client processes in :local property of contact info.
7449 (format-network-address): Add arg OMIT-PORT. Change callers.
7450
7451 2003-01-07 Dave Love <fx@gnu.org>
7452
7453 * Makefile.in (fns.o): Depend on coding.h.
7454
7455 2003-01-07 Markus Rost <rost@math.ohio-state.edu>
7456
7457 * minibuf.c (Fread_variable): Doc fix.
7458
7459 * eval.c (Fuser_variable_p): Doc change. For custom variables,
7460 use the same test as for custom-variable-p.
7461
7462 2003-01-05 Richard M. Stallman <rms@gnu.org>
7463
7464 * xdisp.c (try_scrolling): New arg LAST_LINE_MISFIT.
7465 Count LAST_LINE_MISFIT in scroll margin for end of window.
7466 Move label too_near_end before setting SCROLL_MARGIN_POS.
7467 Set LAST_LINE_MISFIT before jumping there.
7468
7469 * xdisp.c (try_scrolling): Calculate amount_to_scroll better in
7470 scroll_conservatively case. If scrolling that much doesn't change
7471 STARTP, move it down one line.
7472
7473 * xdisp.c (redisplay_window): Pass last_line_misfit arg to
7474 try_scrolling. Make it 1 after make_cursor_line_fully_visible fails.
7475
7476 * xdisp.c (setup_echo_area_for_printing): Kill Emacs if no
7477 selected frame.
7478
7479 * keymap.c (apropos_predicate, apropos_accumulate): Make them static.
7480 (syms_of_keymap): staticpro them.
7481 (Fapropos_internal): Initialize them and clear them out.
7482 Don't GCPRO them.
7483
7484 * buffer.c (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>:
7485 Doc fixes.
7486
7487 * lisp.h: New misc type Lisp_Save_Value.
7488 (enum Lisp_Misc_Type): Add Lisp_Misc_Save_Value.
7489 (XSAVE_VALUE): New macro.
7490 (struct Lisp_Save_Value): New data type.
7491 (union Lisp_Misc): Add u_save_value alternative.
7492 (make_save_value): Declared.
7493
7494 * alloc.c (make_save_value): New function.
7495
7496 * xterm.c (x_catch_errors): Save dpy using make_save_value.
7497 (x_catch_errors_unwind): Call XSync.
7498
7499 2003-01-01 Richard M. Stallman <rms@gnu.org>
7500
7501 * window.c (window_scroll_pixel_based): Partially undo last change.
7502
7503 * keyboard.c (command_loop_1): Call adjust_point_for_property
7504 in direct action cases for Qforward_char and Qbackward_char.
7505 Set already_adjusted so it won't be done twice.
7506
7507 2002-12-30 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change)
7508
7509 * src/config.in (!HAVE_SIZE_T): Fix order of arguments in
7510 type definition of size_t.
7511
7512 2003-01-02 Steven Tamm <steventamm@mac.com>
7513
7514 * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to
7515 distinguish Carbon GUI builds from X11 builds on darwin.
7516
7517 2002-12-30 Steven Tamm <steventamm@mac.com>
7518
7519 * macterm.c (syms_of_macterm): Set mac-wheel-button-is-mouse-2
7520 to default to t.
7521
7522 2002-12-29 Francesco Potort\e,Al\e(B <pot@gnu.org>
7523
7524 * data.c (Fstring_to_number, Fminus): Better English in doc strings.
7525
7526 2002-12-28 Steven Tamm <steventamm@mac.com>
7527
7528 * Makefile.in (macosx-bundle): Fixes to Mac OS X/Carbon port to
7529 allow building in a different directory than source. Uses some
7530 GNU Make extensions, but there is no other make on Mac OS X.
7531
7532 2002-12-26 Francesco Potort\e,Al\e(B <pot@gnu.org>
7533
7534 * data.c (Fmakunbound, Ffmakunbound, Fmake_variable_buffer_local)
7535 (Fsetq_default, Fmake_local_variable, Fkill_local_variable)
7536 (Fmake_variable_frame_local, Faset, Fnumber_to_string, Fminus)
7537 (Fstring_to_number): Mention the returned value in the doc strings.
7538
7539 2002-12-23 Richard M. Stallman <rms@gnu.org>
7540
7541 * buffer.c (syms_of_buffer) <scroll-up-aggressively>
7542 <scroll-down-aggressively>: Doc fix.
7543
7544 * xmenu.c (parse_single_submenu): Use individual keymap's prompt
7545 string as pane name, if there is one.
7546 (set_frame_menubar): Save menu_items_n_panes from each call to
7547 parse_single_submenu and use it when calling digest_single_submenu.
7548
7549 * window.c (window_scroll_pixel_based): Fix check for reaching BEGV.
7550 Don't try to make last line fully visible if it is past end of window.
7551
7552 2002-12-22 Steven Tamm <steventamm@mac.com>
7553
7554 * macmenu.c (MIN_POPUP_SUBMENU_ID): Add.
7555 (mac_menu_show): Add support for hierarchical popup menus.
7556 (add_menu_item): Remove indentation support.
7557 (fill_submenu, fill_menu): Create hierarchical menus
7558 instead of using indentation.
7559
7560 2002-12-22 Richard M. Stallman <rms@gnu.org>
7561
7562 * xdisp.c (try_cursor_movement): Don't call try_window here.
7563 (redisplay_window): Never redisplay minibuffer when inactive.
7564
7565 * window.c (select_window_1): Undo 9/21 change.
7566
7567 2002-12-22 Steven Tamm <steventamm@mac.com>
7568
7569 * macterm.c (XTread_socket): Call KeyTranslate for control and
7570 meta to deal correctly shifted non-alpha characters, like C-S-5
7571 being treated like C-%. Does not look for shift key to deal
7572 with masking off control-key with mac-reverse-ctrl-meta.
7573
7574 2002-12-21 Richard M. Stallman <rms@gnu.org>
7575
7576 * xmenu.c (popup_get_selection): Now static. New arg DO_TIMERS.
7577 If it is non-nil, run timers. Use an unwind-protect to requeue
7578 the events that were read ahead.
7579 (popup_get_selection_unwind): New subroutine.
7580 (popup_get_selection_queue): File-scope variable now holds that queue.
7581 (xmenu_show): Pass 0 for DO_TIMERS to popup_get_selection.
7582 (xdialog_show): Pass 1 for DO_TIMERS to popup_get_selection.
7583 Use an unwind-protect to pop down the dialog box.
7584 (xdialog_show_unwind): New subroutine implements that.
7585
7586 * xdisp.c (row_containing_pos): Change exit test using last_y.
7587 (try_window_id): Abort if row_containing_pos returns null.
7588
7589 * lread.c (load_error_handler): New function.
7590 (Fload): Handle errors in Fsubstitute_in_file_name.
7591 Don't expect Fsignal to return.
7592
7593 * eval.c: Errors and throws work right with interrupt blocking.
7594 (struct catchtag): New elt interrupt_input_blocked.
7595 (unwind_to_catch): Restore interrupt_input_blocked from saved value.
7596 (internal_catch, Fcondition_case, internal_condition_case)
7597 (internal_condition_case_1, internal_condition_case_2): Save it.
7598 (Fsignal): Don't do TOTALLY_UNBLOCK_INPUT.
7599
7600 * editfns.c (Fformat): Add parens.
7601
7602 * dired.c (file_name_completion): Fix that change.
7603 Delete special quit-handling code; just use QUIT.
7604
7605 2002-12-21 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
7606
7607 * dired.c (file_name_completion): Close directory on error
7608 just as in directory_files_internal.
7609
7610 2002-12-19 David Kastrup <David.Kastrup@t-online.de>
7611
7612 * window.c (Fset_window_configuration): Set old_point to correct
7613 value when new_current_buffer == current_buffer.
7614
7615 2002-12-17 Ben Key <bkey1@tampabay.rr.com>
7616
7617 Revisited my earlier fix for the following entry in etc/PROBLEMS:
7618 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
7619 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
7620
7621 These changes were in part based upon suggestions made by Peter
7622 'Luna' Runestig [peter@runestig.com].
7623
7624 * w32.c (g_b_init_is_windows_9x, g_b_init_open_process_token,
7625 g_b_init_get_token_information, g_b_init_lookup_account_sid,
7626 g_b_init_get_sid_identifier_authority ): Add several static
7627 global variables.
7628
7629 * w32.c (globals_of_w32): New function. Used to initialize those
7630 global variables that must always be initialized on startup even
7631 when the global variable initialized is non zero. Its primary
7632 purpose at this time is to set the global variables
7633 g_b_init_is_windows_9x, g_b_init_open_process_token,
7634 g_b_init_get_token_information, g_b_init_lookup_account_sid, and
7635 g_b_init_get_sid_identifier_authority to 0 on startup.
7636 Called from main.
7637
7638 * w32.c (is_windows_9x): Perform initialization only if
7639 g_b_init_is_windows_9x is equal to 0. On initialization set
7640 g_b_init_is_windows_9x equal to 1.
7641
7642 * w32.c (open_process_token): Perform initialization only if
7643 g_b_init_open_process_token is equal to 0. On initialization set
7644 g_b_init_open_process_token equal to 1.
7645
7646 * w32.c (get_token_information): Perform initialization only if
7647 g_b_init_get_token_information is equal to 0. On initialization
7648 set g_b_init_get_token_information equal to 1.
7649
7650 * w32.c (lookup_account_sid): Perform initialization only if
7651 g_b_init_lookup_account_sid is equal to 0. On initialization
7652 set g_b_init_lookup_account_sid equal to 1.
7653
7654 * w32.c (get_sid_identifier_authority): Perform initialization
7655 only if g_b_init_get_sid_identifier_authority is equal to 0.
7656 On initialization set g_b_init_get_sid_identifier_authority equal to 1.
7657
7658 * w32fns.c (globals_of_w32fns): New function. Used to initialize
7659 those global variables that must always be initialized on startup
7660 even when the global variable initialized is non zero.
7661 Its primary purpose at this time is to initialize the global variable
7662 track_mouse_event_fn.
7663
7664 * w32fns.c (w32_wnd_proc): Remove initialization of
7665 track_mouse_event_fn from the handler for the WM_SETFOCUS message.
7666
7667 * w32fns.c (syms_of_w32fns): Call globals_of_w32fns.
7668
7669 * w32menu.c (globals_of_w32menu): New function. Used to
7670 initialize those global variables that must always be initialized
7671 on startup even when the global variable initialized is non zero.
7672 Its primary purpose at this time is to initialize the global
7673 variables get_menu_item_info and set_menu_item_info.
7674
7675 * w32menu.c (initialize_frame_menubar): Remove initialization of
7676 get_menu_item_info and set_menu_item_info.
7677
7678 * w32menu.c (syms_of_w32menu): Call globals_of_w32menu.
7679
7680 * w32.h (globals_of_w32, globals_of_w32fns, globals_of_w32menu):
7681 Declare them.
7682
7683 * emacs.c (main): Call globals_of_w32 prior to calling
7684 init_environment if WINDOWSNT is defined. Call globals_of_w32fns
7685 and globals_of_w32menu if initialized is non zero and HAVE_NTGUI
7686 is defined.
7687
7688 * w32term.c (x_update_window_begin): Fix Windows API error
7689 detected by BoundsChecker. Test to determine if
7690 w32_system_caret_hwnd is NULL prior to attempting to use
7691 SendMessage to send the WM_EMACS_HIDE_CARET message to it.
7692
7693 * w32term.c (x_update_window_end): Fix Windows API error
7694 detected by BoundsChecker. Test to determine if
7695 w32_system_caret_hwnd is NULL prior to attempting to use
7696 SendMessage to send the WM_EMACS_SHOW_CARET message to it.
7697
7698 2002-12-17 Kenichi Handa <handa@m17n.org>
7699
7700 * coding.c (coding_system_require_warning): New variable.
7701 (syms_of_coding): DEFVAR it.
7702
7703 * coding.h (coding_system_require_warning): Extern it.
7704
7705 * fileio.c (choose_write_coding_system): Even if
7706 Vcoding_system_for_write is non-nil, if
7707 coding_system_require_warning is nonzero, call
7708 Vselect_safe_coding_system_function.
7709
7710 2002-12-17 Markus Rost <rost@math.ohio-state.edu>
7711
7712 * Makefile.in (lisp, shortlisp): Add cus-face and timer.
7713 (lisp): Add font-core.
7714
7715 2002-12-13 Stefan Monnier <monnier@cs.yale.edu>
7716
7717 * textprop.c (text_read_only): New arg `propval'.
7718 (get_char_property_and_overlay): Remove unused var `next_overlay'.
7719 (verify_interval_modification): Use text_read_only's new arg.
7720
7721 2002-12-13 Kenichi Handa <handa@m17n.org>
7722
7723 * coding.c (Funencodable_char_position): Set pend correctly.
7724
7725 2002-12-12 Jason Rumney <jasonr@gnu.org>
7726
7727 * w32term.c (last_mousemove_x, last_mousemove_y): New variables.
7728 (w32_read_socket) <WM_MOUSEMOVE>: Use them to detect non-movement.
7729 Be more careful about when help_events are generated.
7730
7731 2002-12-12 Steven Tamm <steventamm@mac.com>
7732
7733 * macterm.c (mac_check_for_quit_char): Correctly set the
7734 modifiers of the event to 0.
7735 * mac.c (sys_select): Duplicate rfds before calling select to
7736 ensure that rfds survive the while loop.
7737
7738 2002-12-11 Kim F. Storm <storm@cua.dk>
7739
7740 * xdisp.c (try_window_id): Don't call set_cursor_from_row if
7741 row_containing_pos returned NULL.
7742
7743 2002-12-10 Steven Tamm <steventamm@mac.com>
7744
7745 * mac.c (sys_read): Fix sys_read to not call select if IO is
7746 non-blocking.
7747 (sys_select): Fix sys_select to not use a timeout larger than
7748 the one given.
7749
7750 2002-12-10 Juanma Barranquero <lektu@terra.es>
7751
7752 * editfns.c (Fformat): Use alloca, not _alloca.
7753
7754 2002-12-09 Richard M. Stallman <rms@gnu.org>
7755
7756 * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input
7757 as the last thing.
7758
7759 2002-12-09 Dave Love <fx@gnu.org>
7760
7761 * s/sol2-8.h: Removed. (Not necessary.)
7762
7763 2002-12-09 Matthew Swift <swift@alum.mit.edu>
7764
7765 * editfns.c (Fformat): Handle precision in string conversion
7766 specifiers like libc functions do (ie, print at most that many
7767 characters).
7768
7769 2002-12-08 Richard M. Stallman <rms@gnu.org>
7770
7771 * xdisp.c (row_containing_pos): Check more carefully
7772 whether charpos is really in the row before returning it.
7773
7774 2002-12-07 Steven Tamm <steventamm@mac.com>
7775
7776 * sysdep.c (emacs_read) [HAVE_CARBON]: Have emacs_read use sys_read.
7777
7778 * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at
7779 each stack frame. This may change as it could be time consuming.
7780
7781 * macterm.c (mac_check_for_quit_char, quit_char_comp)
7782 (init_quit_char_handler, mac_determine_quit_char_modifiers)
7783 (mac_initialize): Add code to check for pressing of quit_char
7784 in the OS event queue.
7785
7786 * mac.c (sys_select): Call mac_check_for_quit_char every second
7787 while blocking on select.
7788
7789 * mac.c (sys_read): Use sys_select to test for input first
7790 before calling read, to allow C-g to break.
7791
7792 2002-12-07 Richard M. Stallman <rms@gnu.org>
7793
7794 * minibuf.c (Fcompleting_read): Doc fix.
7795
7796 * lread.c (syms_of_lread) <load-history>: Doc fix.
7797
7798 * fileio.c (Fcopy_file): Set immediate_quit around emacs_open call.
7799
7800 * eval.c (Fdefun, Fdefmacro): Record in load-history redefining an
7801 autoload.
7802
7803 * data.c (Fdefalias): Record in load-history redefining an autoload.
7804
7805 * alloca.c: Undo ifdef change accidentally made on 12-04.
7806
7807 2002-12-06 Francesco Potorti` <pot@gnu.org>
7808
7809 * xfns.c (png_load): Avoid double gamma correction for PNG images.
7810
7811 2002-12-04 Richard M. Stallman <rms@gnu.org>
7812
7813 * sysdep.c (fcntl.h): Test only HAVE_FCNTL_H.
7814
7815 * fileio.c (fcntl.h): Test only HAVE_FCNTL_H.
7816
7817 * alloca.c: Don't use #error.
7818
7819 2002-12-03 Dave Love <fx@gnu.org>
7820
7821 * buffer.c (Qucs_set_table_for_input): New.
7822 (Fget_buffer_create): Use it.
7823 (Qset_buffer_major_mode_hook): Deleted.
7824 (Fset_buffer_major_mode): Revert previous change.
7825 (init_buffer_once): Intern ucs-set-table-for-input.
7826 (syms_of_buffer): Delete Qset_buffer_major_mode_hook.
7827 Add &Qucs_set_table_for_input.
7828
7829 2002-12-03 Andreas Schwab <schwab@suse.de>
7830
7831 * callint.c (Fcall_interactively): Use next_event only if less
7832 than key_count.
7833
7834 2002-12-02 Andrew Choi <akochoi@shaw.ca>
7835
7836 * macmenu.c (add_menu_item, fill_menubar): Truncate menu item
7837 names to 255 characters.
7838
7839 * macterm.c (XTread_socket): If all frames have been collapsed,
7840 expand the first one before handling drag-and-drop events.
7841
7842 * s/darwin.h (GETPGRP_NO_ARG): Delete. Replaced by GETPGRP_VOID,
7843 which is detected by autoconf.
7844
7845 2002-12-01 Steven Tamm <steventamm@mac.com>
7846
7847 * unexmacosx.c (copy_twolevelhints, dump_it): Now corrects the
7848 offset in two hints table to allow prebinding to be redone and
7849 allow the executable to be stripped.
7850
7851 2002-11-29 Dave Love <fx@gnu.org>
7852
7853 * fns.c (Frequire): Don't call LOADHIST_ATTACH if feature was
7854 already provided.
7855
7856 2002-11-29 Richard M. Stallman <rms@gnu.org>
7857
7858 * xdisp.c (start_display): Check more intelligently for
7859 whether the line is continued.
7860 (move_it_vertically_backward): Clear it->continuation_lines_width.
7861
7862 2002-11-28 Dave Love <fx@gnu.org>
7863
7864 * s/amdahl.h, s/unipl5-0.h, m/sgi3000.h, s/3700.h, s/alliant-2800.h:
7865 * s/alliant.h, s/altos.h: Deleted. (Unused/empty.)
7866
7867 2002-11-27 Steven Tamm <steventamm@mac.com>
7868
7869 * fns.c (Frequire): Change nesting allowance from 2 to 3 to cause
7870 more descriptive error output from lread.c:Fload upon most require
7871 cycles during boostrapping.
7872
7873 2002-11-27 Jason Rumney <jasonr@gnu.org>
7874
7875 * fileio.c (Finsert_file_contents): Give a more appropriate error
7876 for files bigger than 2Gb when off_t is 32 bit.
7877
7878 * dired.c (Ffile_attributes): Don't return negative file sizes for
7879 files bigger than 2Gb when off_t is 32 bit.
7880
7881 2002-11-27 Dave Love <fx@gnu.org>
7882
7883 * s/irix6-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
7884
7885 * systty.h: Don't conditionally define GETPGRP_NO_ARG.
7886 Test GETPGRP_VOID instead.
7887 [BSD_TERMIOS]: Remove definitions (never used).
7888
7889 * s/osf5-0.h (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist):
7890 Don't define.
7891 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
7892
7893 * m/mips.h (WORDS_BIG_ENDIAN): Define conditionally.
7894
7895 2002-11-25 Jason Rumney <jasonr@gnu.org>
7896
7897 * w32.c (sys_write): Avoid non-blocking mode, which is not fully
7898 supported.
7899
7900 2002-11-25 Dave Love <fx@gnu.org>
7901
7902 * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec.
7903
7904 * Makefile.in (TEMACS_LDFLAGS): Update last change.
7905
7906 2002-11-25 Andreas Schwab <schwab@suse.de>
7907
7908 * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change.
7909
7910 2002-11-24 Steven Tamm <steventamm@mac.com>
7911
7912 * unexmacosx.c (unexec_realloc): Use malloc_default_zone to
7913 determine the size of pointers alloced in unexed space instead
7914 of using possibly invalid emacs_zone pointers. This fixes the
7915 binary incompatibility problems caused by updates to libSystem.B.
7916
7917 2002-11-24 Richard M. Stallman <rms@gnu.org>
7918
7919 * search.c (Fstring_match): Doc fix.
7920
7921 * callint.c (Fcall_interactively): If a command fails because
7922 `*' detects a read-only buffer, but RECORD_FLAG is set,
7923 record it anyway if the args don't actually do tty input.
7924
7925 2002-11-22 Dave Love <fx@gnu.org>
7926
7927 * sysdep.c (stuff_char) [PROTOTYPES]: Provide ISO C arglist.
7928
7929 * keyboard.c (interrupt_signal): Provide forward declaration.
7930 (kbd_buffer_store_event): Don't declare interrupt_signal.
7931
7932 * xdisp.c (store_frame_title_char) [PROTOTYPES]: Provide ISO C arglist.
7933
7934 2002-11-21 Richard M. Stallman <rms@gnu.org>
7935
7936 * eval.c (interactive_p): Skip any number of bytecode
7937 and special form frames, in any order.
7938
7939 2002-11-20 Jason Rumney <jasonr@gnu.org>
7940
7941 * w32fns.c (convert_mono_to_color_image): New function.
7942 (xbm_load, xbm_load_image): Use it when foreground or background
7943 is explicitly set.
7944
7945 2002-11-19 Dave Love <fx@gnu.org>
7946
7947 * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
7948
7949 2002-11-18 Jason Rumney <jasonr@gnu.org>
7950
7951 * w32fns.c (x_build_heuristic_mask): Filter palette info from color.
7952 (XPutPixel): Swap blue and red.
7953 (xpm_format, pbm_format, png_format, jpeg_format, tiff_format)
7954 (gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
7955 (xpm_image_p, pbm_image_p, png_image_p, jpeg_image_p)
7956 (tiff_image_p, gif_image_p, gs_image_p): Don't check ascent.
7957
7958 2002-11-18 Dave Love <fx@gnu.org>
7959
7960 * m/orion105.h (HAVE_ALLOCA): Don't define.
7961
7962 * m/m68k.h, m/arm.h, mtekxd88.h, m/tower32v3.h: Don't define alloca.
7963
7964 * m/intel386.h: Don't include alloca.h or define alloca.
7965
7966 * m/ia64.h: Don't include alloca.h, stdlib.h. Don't declare
7967 malloc, realloc, calloc.
7968
7969 * m/hp800.h, m/sr2k.h, m/ns16000.h, m/wicat.h (bcopy, bzero)
7970 (bcmp): Don't define.
7971
7972 * m/delta.h (bcopy, bzero, bcmp, alloca): Don't define.
7973
7974 * m/amdahl.h: Don't define LIB_STANDARD.
7975
7976 * m/alpha.h: Move OSF1 stuff from here to s/osf1.h.
7977
7978 * s/osf1.h: Move OSF1 stuff from m/alpha.h to here.
7979
7980 * s/irix4-0.h, s/irix5-0.h, m/powerpcle.h, m/sparc.h:
7981 Don't include alloca.h.
7982
7983 * s/aix3-2.h (HAVE_FSYNC): Don't define.
7984
7985 * regex.c (_GNU_SOURCE): Don't define.
7986
7987 * process.c (_GNU_SOURCE): Don't define.
7988
7989 * fileio.c (_GNU_SOURCE, HAVE_FSYNC): Don't define.
7990
7991 2002-11-18 Markus Rost <rost@math.ohio-state.edu>
7992
7993 * s/sol2-8.h: Include sol2-6.h.
7994
7995 2002-11-18 Miles Bader <miles@gnu.org>
7996
7997 * dispextern.h (struct face): Add `overstrike' field.
7998 * xterm.c (x_draw_glyph_string_foreground)
7999 (x_draw_composite_glyph_string_foreground): Implement overstriking.
8000 * xfaces.c (load_face_font): Set `face->overstrike' based on
8001 result from choose_face_font.
8002 (best_matching_font, choose_face_font): Add `needs_overstrike'
8003 argument, and use it to return whether overstriking is desirable
8004 for this face/font combo.
8005 (set_font_frame_param: Pass new argument to choose_face_font.
8006
8007 2002-11-17 Ben Key <BKey1@tampabay.rr.com>
8008
8009 This change is my fix for the following entry in etc/PROBLEMS:
8010 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
8011 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
8012
8013 * w32.c: Added wrapper functions around the win32 API functions
8014 OpenProcessToken, GetTokenInformation, LookupAccountSid, and
8015 GetSidIdentifierAuthority. These wrapper functions serve two
8016 purposes:
8017 1. They ensure that the wrapped function can never be called
8018 when Emacs is running on an operating system on which they are
8019 not supported (Microsoft Windows 95 / 98 / ME).
8020 2. They call the wrapped functions via function pointers rather
8021 than calling them directly. This avoids taking advantage of the
8022 undocumented fact that although these functions are not supported
8023 in the 9x branch of Microsoft Windows, the functions do exist in
8024 the version of advapi32.dll that is found in the 9x branch of
8025 Microsoft Windows.
8026
8027 * w32.c (init_user_info): Replace the calls to the win32 API
8028 functions OpenProcessToken, GetTokenInformation, LookupAccountSid,
8029 and GetSidIdentifierAuthority with calls to the newly added
8030 wrapper functions.
8031
8032 * w32.h: Added extern declarations for the following functions:
8033 syms_of_w32term, syms_of_w32fns, syms_of_w32select,
8034 syms_of_w32menu, and void syms_of_fontset.
8035
8036 * w32fns.c (w32_wnd_proc): Add code to reinitialize the
8037 function pointer track_mouse_event_fn in the handler for the
8038 WM_SETFOCUS message.
8039
8040 * w32menu.c (initialize_frame_menubar): Add code to
8041 reinitialize the function pointers set_menu_item_info and
8042 get_menu_item_info.
8043
8044 2002-11-17 Ben Key <BKey1@tampabay.rr.com>
8045
8046 * sound.c: Added a partial implementation of play-sound-internal
8047 for Microsoft Windows. Added various #ifdef / #else / #endif
8048 code blocks to separate the code that will compile under
8049 Microsoft Windows from the code that is specific to Gnu/Linux.
8050 Moved several blocks of code around to make this separation of code
8051 into Windows compatible and Gnu/Linux compatible code blocks easier.
8052
8053 * makefile.w32-in: Include sound.c and link with WinMM.lib.
8054
8055 * s/ms-w32.h: Defined the symbol HAVE_SOUND so that the newly
8056 added support for play-sound-internal under Windows would be
8057 included in the build of Emacs.
8058
8059 2002-11-16 Jason Rumney <jasonr@gnu.org>
8060
8061 * w32fns.c (w32_load_system_font): Don't disable Cleartype.
8062
8063 * w32term.c (w32_get_glyph_string_clip_rect): Clip cursor tightly.
8064
8065 2002-11-15 Stefan Monnier <monnier@cs.yale.edu>
8066
8067 * keyboard.c (command_loop_1): Fix int/Lisp_Object mixup.
8068 (adjust_point_for_property): Move out of display and invisible even if
8069 we were already inside before (in case a property was added while
8070 we weren't looking). Be more careful when handling invisible props.
8071 Skip invisible text as if it really wasn't there at all.
8072
8073 2002-11-15 Jason Rumney <jasonr@gnu.org>
8074
8075 * w32term.c (x_draw_image_foreground)
8076 (w32_draw_image_foreground_1): Use standard copy and invert
8077 operations to draw images.
8078
8079 * w32fns.c (x_create_x_image_and_pixmap): Fill in palette for
8080 depth of 1.
8081 (xbm_read_bitmap_data): Invert bits as xbm is read in.
8082 (XPutPixel): Don't invert bits here.
8083
8084 2002-11-15 Jason Rumney <jasonr@gnu.org>
8085
8086 * w32term.c (x_draw_image_foreground, x_draw_image_glyph_string)
8087 (w32_draw_image_foreground_1): Handle image masks.
8088 (x_draw_image_glyph_string): Don't BitBlt transparently.
8089
8090 * w32fns.c (w32_defined_color): Adjust RGB values for Emacs.
8091 (x_from_xcolors): Adjust RGB values for W32.
8092 (image_background, image_background_transparent)
8093 (postprocess_image, x_to_xcolors, x_disable_image)
8094 (x_build_heuristic_mask): Adapt for W32 and enable.
8095 (x_create_x_image_and_pixmap): Mark images with palettes as such.
8096 (xbm_load): Remove unused variable.
8097
8098 2002-11-14 Richard M. Stallman <rms@gnu.org>
8099
8100 * buffer.c (syms_of_buffer): Doc fix.
8101
8102 2002-11-14 Dave Love <fx@gnu.org>
8103
8104 * alloc.c (SETJMP_WILL_NOT_WORK): Add note.
8105
8106 * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
8107 * xmenu.c (unuse_menu_items, digest_single_submenu):
8108 * xfns.c (x_put_x_image):
8109 * xdisp.c (message2_nolog, set_message):
8110 * undo.c (record_point):
8111 * terminfo.c (tparam):
8112 * syntax.c (scan_sexps_forward):
8113 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
8114 * composite.c (update_compositions):
8115 * cm.c (calccost, cmgoto):
8116 * charset.c (c_string_width): Declare all args (per C99).
8117
8118 * frame.h (get_specified_cursor_type, get_window_cursor_type): Declare.
8119
8120 * lisp.h (get_specified_cursor_type, get_window_cursor_type):
8121 Don't declare.
8122
8123 * emacs.c (main) [!VMS]: Avoid third arg.
8124
8125 * fns.c (Fcopy_sequence): Doc fix.
8126 (Fmap_char_table): Cast `call2'.
8127
8128 2002-11-14 Francesco Potorti` <pot@gnu.org>
8129
8130 * s/sol2-8.h: New file.
8131
8132 2002-11-14 Kim F. Storm <storm@cua.dk>
8133
8134 * buffer.c (syms_of_buffer) <mode-line-format>: Document symbol
8135 dependency on `risky-local-variable' and the :propertize form.
8136
8137 2002-11-12 Stefan Monnier <monnier@cs.yale.edu>
8138
8139 * fns.c (Fmap_char_table): Don't use map_char_table's function arg.
8140
8141 * syntax.c (scan_sexps_forward): Undo last patch.
8142 Use a more obvious fix: check eob before updating the syntax table.
8143
8144 2002-11-09 Stefan Monnier <monnier@cs.yale.edu>
8145
8146 * syntax.c (scan_sexps_forward): Update syntax table before reading
8147 a char rather than after so we don't update the table past eob.
8148
8149 2002-11-09 Dave Love <fx@gnu.org>
8150
8151 * buffer.c (Fset_buffer_major_mode): Fix last change.
8152
8153 * regex.c (regexec): Fix pmatch declaration.
8154
8155 * cmds.c (Fself_insert_command): Apply Vtranslation_table_for_input.
8156
8157 * keyboard.c (command_loop_1): Apply Vtranslation_table_for_input
8158 to self-inserting characters.
8159 (syms_of_keyboard) <keyboard-translate-table>: Doc fix.
8160
8161 * coding.c (Vtranslation_table_for_input): New.
8162 (syms_of_coding): DEFVAR it.
8163
8164 2002-11-08 Juanma Barranquero <lektu@terra.es>
8165
8166 * w32term.c (w32_draw_fringe_bitmap): Remove unused local variable
8167 window.
8168
8169 2002-11-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8170
8171 * process.c (Fformat_network_address): Remove unused locals p,
8172 cp, and i.
8173
8174 2002-11-06 Dave Love <fx@gnu.org>
8175
8176 * buffer.c (Qset_buffer_major_mode_hook): New.
8177 (Fset_buffer_major_mode): Use it.
8178
8179 2002-11-06 Richard M. Stallman <rms@gnu.org>
8180
8181 * xterm.c (x_term_init): Use turn_on_atimers, not start_polling
8182 and stop_polling.
8183
8184 * process.c (wait_reading_process_input):
8185 Test POLLING_PROBLEM_IN_SELECT, not hpux.
8186 Avoid initialization for auto Lisp_Object var.
8187
8188 * s/hpux11.h (POLLING_PROBLEM_IN_SELECT): Add #undef.
8189
8190 * s/hpux10.h (POLLING_PROBLEM_IN_SELECT): Defined.
8191
8192 2002-11-05 Richard M. Stallman <rms@gnu.org>
8193
8194 * s/sol2-5.h (BROKEN_SIGIO): Turn off the #undef.
8195
8196 * callint.c (Fcall_interactively): New local filter_specs.
8197 (Fcall_interactively): Check for progn as well as let.
8198 Add a gcpro.
8199 (Qprogn): New variable.
8200 (syms_of_callint): Staticpro and init Qprogn.
8201
8202 2002-11-04 John Paul Wallington <jpw@shootybangbang.com>
8203
8204 * lread.c (Feval_buffer): Doc fix.
8205
8206 2002-11-04 Dave Love <fx@gnu.org>
8207
8208 * keyboard.c (read_char): Always translate iff
8209 Vkeyboard_translate_table is a char table and c is valid.
8210
8211 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
8212 and fix C types.
8213
8214 2002-11-03 Stefan Monnier <monnier@cs.yale.edu>
8215
8216 * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
8217
8218 * editfns.c (get_pos_property): Don't hardcode Qfield.
8219
8220 * keyboard.c (adjust_point_for_property): Handle `display' prop on
8221 overlays. Also handle `invisible' prop.
8222
8223 2002-11-02 Stefan Monnier <monnier@cs.yale.edu>
8224
8225 * coding.c (decode_coding_emacs_mule, decode_coding_iso2022)
8226 (decode_coding_sjis_big5, decode_eol): Allow lone \r in DOS EOL.
8227
8228 2002-11-01 Andreas Schwab <schwab@suse.de>
8229
8230 * editfns.c (Fmessage): Revert last change to properly handle %%.
8231
8232 2002-11-01 Stefan Monnier <monnier@cs.yale.edu>
8233
8234 * xmenu.c (unuse_menu_items): New fun.
8235 (menu_items_inuse): New var.
8236 (syms_of_xmenu): Initialize it.
8237 (init_menu_items): Use it to detect re-entrance.
8238 (Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset when done.
8239 (Fx_popup_menu): Remove spurious XSETFRAME.
8240
8241 * editfns.c (find_field): Make an exception for nil fields.
8242
8243 2002-11-01 Dave Love <fx@gnu.org>
8244
8245 * m/gec63.h: Deleted.
8246
8247 2002-10-31 Dave Love <fx@gnu.org>
8248
8249 * xterm.c (XTread_socket): Fix last change.
8250 (xaw_scroll_callback): Cast call_data to long to avoid warning.
8251
8252 2002-10-31 Stefan Monnier <monnier@cs.yale.edu>
8253
8254 * process.c (Fformat_network_address): Fix int/Lisp_Object mixup.
8255
8256 2002-10-30 Stefan Monnier <monnier@cs.yale.edu>
8257
8258 * editfns.c (overlays_around, get_pos_property): New funs.
8259 (find_field): Use them.
8260 Also be careful not to modify POS before its last use.
8261 (Fmessage): Don't Fformat if there's nothing to format.
8262
8263 2002-10-30 Dave Love <fx@gnu.org>
8264
8265 * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
8266 [HAVE_PTY_H]; Include pty.h.
8267
8268 * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
8269
8270 * xterm.c (Qeql): Declare.
8271 (Vx_keysym_table): New.
8272 (syms_of_xterm): Initialize it.
8273 (XTread_socket): Use it. Deal with ASCII keysyms.
8274 (XSetIMValues) [HAVE_X11R6]: Prototype.
8275
8276 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
8277 (lispy_kana_keys): Comment out.
8278 (make_lispy_event) [XK_kana_A]: Comment out.
8279 (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>:
8280 Fix sprintf call.
8281
8282 * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
8283 regexp.h change).
8284 (TERMINFO, LIBS_TERMCAP): Define.
8285
8286 * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
8287 (bcmp): Define conditional on HAVE_BCMP.
8288 (NO_SIOCTL_H): Don't define.
8289 (TIOCSIGSEND): Don't make conditional on IRIX6.
8290
8291 * s/sol2-5.h: Don't include strings.h.
8292 (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
8293
8294 * s/irix6-0.h (IRIX6): Don't define.
8295 (bcopy, bcmp, bzero): Don't undef.
8296
8297 * s/irix6-5.h: Don't include strings.h.
8298 (IRIX6): Don't define.
8299 (bcopy, bcmp, bzero): Don't undef.
8300
8301 * syntax.c (Fforward_comment): Doc fix.
8302
8303 2002-10-29 Kim F. Storm <storm@cua.dk>
8304
8305 * process.c (Fsignal_process): Allow PROCESS to be specified by
8306 name in addition to pid (as integer or string).
8307
8308 2002-10-28 Harald Maier <Harald.Maier.BW@t-online.de> (tiny change)
8309
8310 * w32heap.c: Don't redefine _heap_init and _heap_term on MSVC 7 build
8311 environments.
8312
8313 2002-10-27 Kim F. Storm <storm@cua.dk>
8314
8315 * xterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
8316
8317 * w32term.c (note_mouse_highlight): Don't use mouse-face if hidden.
8318
8319 * msdos.c (IT_note_mouse_highlight): Don't use mouse-face if hidden.
8320
8321 * macterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
8322
8323 2002-10-26 Richard M. Stallman <rms@gnu.org>
8324
8325 * editfns.c (Fformat): Detect invalid format letters for floats.
8326
8327 2002-10-25 Kenichi Handa <handa@m17n.org>
8328
8329 * xfns.c (x_set_name): Encode by Qcompound_text unconditionally.
8330 (x_set_title): Likewise.
8331
8332 2002-10-25 Juanma Barranquero <lektu@terra.es>
8333
8334 * macgui.h:
8335 * w32gui.h: Remove definition of XColor.
8336
8337 * dispextern.h [!HAVE_X_WINDOWS]: Define XColor.
8338
8339 2002-10-24 Kim F. Storm <storm@cua.dk>
8340
8341 * xdisp.c (get_window_cursor_type): New arg ACTIVE_CURSOR.
8342 Callers changed (supply dummy arg).
8343
8344 * lisp.h (get_window_cursor_type): Update prototype.
8345
8346 * w32term.c (x_display_and_set_cursor): Get active_cursor from
8347 get_window_cursor_type to track system caret.
8348
8349 2002-10-24 Kim F. Storm <storm@cua.dk>
8350
8351 * process.c (Fformat_network_address): New function.
8352 (syms_of_process): Defsubr it.
8353 (list_processes_1): Use it to format :local/:remote address if
8354 service/host is not set; before Emacs would crash in that case.
8355 (Fmake_network_process): Don't use Ffind_operation_coding_system
8356 to setup coding system if host or service is not set.
8357
8358 2002-10-23 Juanma Barranquero <lektu@terra.es>
8359
8360 Patch suggested by Jay Finger <jay_finger@hotmail.com>.
8361
8362 * w32term.c (w32_term_init): Pass XColor to w32_define_color, not
8363 COLORREF.
8364
8365 * macgui.h:
8366 * w32gui.h: Add definition of XColor.
8367
8368 * macfns.c:
8369 * w32fns.c:
8370 * xfaces.c: Remove definition of XColor.
8371
8372 2002-10-22 Stefan Monnier <monnier@cs.yale.edu>
8373
8374 * xfns.c (x_set_name, x_set_title): `icon.value' has unsigned char.
8375
8376 * window.c (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
8377 Only ignore truly dedicated windows. For UNSHOW_BUFFER, delete the
8378 window if it is dedicated.
8379 (Fshrink_window): Add preserve_before as was done for enlarge_window.
8380 (Vspecial_display_function): Update docstring.
8381
8382 * buffer.c (assoc_ignore_text_properties, Fother_buffer, Fkill_buffer)
8383 (call_overlay_mod_hooks): Use CONSP and XCAR/XCDR.
8384 (Fget_buffer_create, advance_to_char_boundary): Use BEG and BEG_BYTE;
8385
8386 2002-10-21 Stefan Monnier <monnier@cs.yale.edu>
8387
8388 * casefiddle.c (casify_region): Don't treat a prefix char as part
8389 of a word when at the beginning.
8390
8391 2002-10-17 Juanma Barranquero <lektu@terra.es>
8392
8393 * lread.c (syms_of_lread): Fix typos.
8394
8395 2002-10-17 Dave Love <fx@gnu.org>
8396
8397 * Makefile.in (TEMACS_LDFLAGS): Add trailing comment.
8398
8399 2002-10-16 Richard M. Stallman <rms@gnu.org>
8400
8401 * fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
8402
8403 2002-10-14 Juanma Barranquero <lektu@terra.es>
8404
8405 * w16select.c (syms_of_win16select): Fix docstring for
8406 `selection-coding-system'.
8407
8408 * w32select.c (syms_of_w32select): Likewise.
8409
8410 2002-10-14 Stefan Monnier <monnier@cs.yale.edu>
8411
8412 * syntax.c (scan_lists): Don't get fooled by a symbol ending with
8413 a backslash-quoted char.
8414 (scan_lists, scan_sexps_forward): Pacify the compiler.
8415
8416 2002-10-13 Richard M. Stallman <rms@gnu.org>
8417
8418 * window.c (window_scroll): Set immediate_quit.
8419
8420 * print.c (print): When backquote form is the car of a list,
8421 output in old style. Use old_backquote_output to output all
8422 comma forms inside it in old style too.
8423
8424 * buffer.h (struct buffer): Move `undo_list' down below `name'.
8425
8426 2002-10-11 Markus Rost <rost@math.ohio-state.edu>
8427
8428 * emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in
8429 batch mode).
8430
8431 * lread.c (Fload): Doc fix (load-suffixes).
8432
8433 2002-10-10 Steven Tamm <steventamm@mac.com>
8434
8435 * macterm.c (syms_of_macterm, mac_get_mouse_btn):
8436 Reverse functionality of mac-wheel-button-is-mouse-2 to be correct.
8437 Also switch the default to Qnil from Qt.
8438
8439 2002-10-08 Kenichi Handa <handa@m17n.org>
8440
8441 * coding.c (code_convert_region): When we need more GAP for
8442 conversion, pay attention to the case that coding->produced is not
8443 greater than coding->consumed.
8444
8445 2002-10-07 Richard M. Stallman <rms@gnu.org>
8446
8447 * unexelf.c (unexec): Redo 9/16 change, but only if IRIX6_5.
8448
8449 2002-10-06 Andrew Choi <akochoi@shaw.ca>
8450
8451 * macmenu.c (mac_menu_show): Add j to count menu items; match
8452 menu_item_selection to it to find selected item.
8453
8454 2002-10-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8455
8456 * xterm.c (XTread_socket): Fix from 2002-10-03 didn't cover all
8457 cases. The correct fix is to pass ReparentNotify to Xt.
8458 The shell widget interprets ConfigureNotify differently depending
8459 on if it has been reparented or not.
8460
8461 2002-10-05 Markus Rost <rost@math.ohio-state.edu>
8462
8463 * editfns.c (Fformat_time_string): Doc fix.
8464
8465 2002-10-05 John Paul Wallington <jpw@shootybangbang.com>
8466
8467 * fns.c (Flength): Doc fix.
8468
8469 2002-10-04 Stefan Monnier <monnier@cs.yale.edu>
8470
8471 * keyboard.c (keyremap): New struct.
8472 (read_key_sequence): Use it: globally replace keytran_foo with
8473 keytran.foo and fkey_foo with fkey.foo. Rename temp vars
8474 keytran_next and fkey_next to just `next'.
8475
8476 2002-10-04 Steven Tamm <steventamm@mac.com>
8477
8478 * macterm.c (keycode_to_xkeysym_table): Change return to be
8479 treated like an X keysym.
8480
8481 2002-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8482
8483 * xterm.c (XTread_socket): For ConfigureNotify, with x and y == 0,
8484 and USE_MOTIF, call XTranslateCoordinates to get the real x and y.
8485 This is to also handle x/y changes that occur because of a resize.
8486
8487 2002-10-02 John Paul Wallington <jpw@shootybangbang.com>
8488
8489 * frame.c (Vdelete_frame_functions): New variable.
8490 (syms_of_frame): Initialize and defvar it.
8491 (Fdelete_frame): Use it instead of delete-frame-hook. Don't run
8492 it when frame's `tooltip' parameter is non-nil.
8493
8494 * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t.
8495
8496 * w32fns.c (x_create_tip_frame): Likewise.
8497
8498 * macfns.c (x_create_tip_frame): Likewise.
8499
8500 2002-09-30 Kenichi Handa <handa@m17n.org>
8501
8502 * xterm.c (x_encode_char): For DIM=1 charset, set ccl->reg[2] to
8503 -1 before calling ccl_driver.
8504
8505 * coding.c (decode_coding_emacs_mule): Check coding->cmp_data.
8506 Only when it is non-nil, handle composition sequence.
8507 (setup_coding_system) <0>: Don't force composition handling.
8508
8509 * Makefile.in (lisp, shortlisp): Add utf-16.elc
8510
8511 2002-09-29 Richard M. Stallman <rms@gnu.org>
8512
8513 * search.c (Freplace_match): Adjust match data for the substitution
8514 just made in the buffer.
8515
8516 * xdisp.c (STOP_POLLING, RESUME_POLLING): New macros.
8517 (redisplay_internal): Use them. Do RESUME_POLLING at end of function.
8518
8519 2002-09-27 Richard M. Stallman <rms@gnu.org>
8520
8521 * keyboard.c (STOP_POLLING, RESUME_POLLING): New macros.
8522 (read_char): Use them. Do all exits thru the end of the function.
8523
8524 2002-09-27 Kenichi Handa <handa@etl.go.jp>
8525
8526 * xfaces.c (try_font_list): Pay attention to the case that FAMILY
8527 is nil.
8528
8529 2002-09-26 Richard M. Stallman <rms@gnu.org>
8530
8531 * regex.h (__restrict_arr): Don't define if already defined.
8532
8533 * coding.c (run_pre_post_conversion_on_str):
8534 Save and restore Vdeactivate_mark.
8535
8536 2002-09-26 John Paul Wallington <jpw@shootybangbang.com>
8537
8538 * minibuf.c (Fminibufferp): Add an optional `buffer' argument.
8539
8540 2002-09-26 Kenichi Handa <handa@etl.go.jp>
8541
8542 * xfaces.c (try_font_list): New arg PREFER_FACE_FAMILY. If it is
8543 nonzero, try face's family at first. Otherwise try FAMILY at first.
8544 (choose_face_font): If C is a single byte char or latin-1, call
8545 try_font_list with PREFER_FACE_FAMILY 1.
8546
8547 2002-09-21 Richard M. Stallman <rms@gnu.org>
8548
8549 * window.c (select_window_1): Don't select frame.
8550 Set frame's selected window only when frame itself is selected.
8551 (Fselect_window): Doc fix.
8552
8553 2002-09-18 Kim F. Storm <storm@cua.dk>
8554
8555 * process.c (make-network-process): Doc fix (there is no
8556 network-server-log-function hook).
8557
8558 2002-09-18 Richard M. Stallman <rms@gnu.org>
8559
8560 * print.c (print): Clear out the unused parts of Vprint_number_table.
8561 (syms_of_print): Doc fix for `print-number-table'.
8562
8563 * unexelf.c (unexec): Undo previous change.
8564
8565 2002-09-17 Andreas Schwab <schwab@suse.de>
8566
8567 * m/alpha.h [LINUX]: Don't define DATA_START.
8568
8569 2002-09-16 Dave Love <fx@gnu.org>
8570
8571 * unexelf.c (unexec): Deal with .got, reinstating change from
8572 25-08-1999.
8573
8574 2002-09-13 Richard M. Stallman <rms@gnu.org>
8575
8576 * s/sol2-6.h (UNEXEC): Comment out definition.
8577
8578 * unexsol.c (unexec): Don't downcase first letter of error msg.
8579
8580 * xfaces.c (Fcolor_supported_p): Just one arg is required.
8581
8582 2002-09-12 Markus Rost <rost@math.ohio-state.edu>
8583
8584 * unexsol.c: Include buffer.h, charset.h, coding.h.
8585
8586 2002-09-11 Richard M. Stallman <rms@gnu.org>
8587
8588 * unexsol.c: Don't use report_file_error; do it by hand
8589 using dlerror.
8590
8591 * process.c (wait_reading_process_input, both versions):
8592 Before calling turn_on_atimers, call stop_polling.
8593
8594 * emacs.c (syms_of_emacs) <command-line-args>: Doc fix.
8595
8596 * xdisp.c (try_scrolling): If after make_cursor_line_fully_visible
8597 we go to too_near_end, call clear_glyph_matrix.
8598 (redisplay_window): After make_cursor_line_fully_visible,
8599 call clear_glyph_matrix and bypass `goto done'.
8600
8601 * xfns.c (x_report_frame_params): If FRAME_SCROLL_BAR_PIXEL_WIDTH is 0
8602 and we have non-toolkit scroll bars, return nil for scroll-bar-width.
8603
8604 2002-09-10 Richard M. Stallman <rms@gnu.org>
8605
8606 * fileio.c (Fdo_auto_save): Catch error making directory.
8607 Only call push_message if we need to.
8608 At the same time, make an unwind-protect to pop it.
8609 Rename local message_p to old_message_p.
8610 (do_auto_save_make_dir, do_auto_save_eh): New functions.
8611 (do_auto_save_unwind): Don't call pop_message.
8612
8613 * lisp.h (pop_message_unwind): Renamed from push_message_unwind.
8614
8615 * keyboard.c (Fexecute_extended_command): Use pop_message_unwind.
8616
8617 * alloc.c (Fgarbage_collect): Use pop_message_unwind.
8618
8619 * xdisp.c (pop_message_unwind): Renamed from push_message_unwind.
8620
8621 2002-09-10 Stefan Monnier <monnier@cs.yale.edu>
8622
8623 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete.
8624 (CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1.
8625 (re_match_2_internal): Be more careful with infinite loops.
8626
8627 2002-09-10 Kim F. Storm <storm@cua.dk>
8628
8629 * macros.c (end_kbd_macro): New function.
8630 (Fend_kbd_macro): Use it.
8631
8632 * macros.h (end_kbd_macro): Declare extern.
8633
8634 * keyboard.c (Fdiscard_input): If defining keyboard macro,
8635 end and save it instead of discarding it.
8636
8637 2002-09-09 Markus Rost <rost@math.ohio-state.edu>
8638
8639 * s/sol2-6.h: Fix typo. Add comment.
8640
8641 2002-09-09 Richard M. Stallman <rms@gnu.org>
8642
8643 * regex.c (regnum_t): Use signed int, not unsigned int.
8644
8645 * s/sol2-6.h: New file.
8646
8647 * s/sol2-5.h (UNEXEC): Definition deleted.
8648
8649 2002-09-08 Kim F. Storm <storm@cua.dk>
8650
8651 * macros.c (executing_macro_index): Change type to EMACS_INT.
8652 (syms_of_macros): DEFVAR_INT it (needed by kmacro).
8653
8654 * macros.h (executing_macro_index): Change type to EMACS_INT.
8655
8656 2002-09-06 Richard M. Stallman <rms@gnu.org>
8657
8658 * casetab.c (set_case_table): Make canon table point to eqv table.
8659
8660 2002-09-06 Juanma Barranquero <lektu@terra.es>
8661
8662 * coding.c (syms_of_coding): Fix spacing.
8663
8664 * composite.c (Fcompose_region_internal)
8665 (Fcompose_string_internal): Likewise.
8666
8667 * data.c (Flsh): Likewise.
8668
8669 * fontset.c (Fset_fontset_font): Likewise.
8670
8671 * macfns.c (Fx_server_max_request_size): Likewise.
8672
8673 * w16select.c (syms_of_win16select): Likewise.
8674
8675 * w32select.c (syms_of_w32select): Likewise.
8676
8677 * xselect.c (syms_of_xselect): Likewise.
8678
8679 2002-09-05 Richard M. Stallman <rms@gnu.org>
8680
8681 * regex.c (set_image_of_range_1): In no-TRANSLATE case,
8682 call EXTEND_RANGE_TABLE and return a proper value.
8683 (set_image_of_range): Don't call set_image_of_range_1
8684 if no TRANSLATE or if range includes all of Latin-1.
8685 Only call it for the Latin-1 part of the range.
8686 For other cases, make two separate ranges,
8687 one for the original specified characters and one for
8688 their case-conversions.
8689
8690 2002-09-04 Richard M. Stallman <rms@gnu.org>
8691
8692 * s/sol2-5.h (UNEXEC): Use unexsol.o.
8693
8694 * window.c (displayed_window_lines): Correct for one-off bug
8695 in HEIGHT on non-window displays.
8696
8697 * regex.c (set_image_of_range_1): New function.
8698 (set_image_of_range): Use set_image_of_range_1 for Latin-1.
8699 Return a value to indicate running out of memory.
8700 (SET_RANGE_TABLE_WORK_AREA): Check value from set_image_of_range.
8701 (extend_range_table_work_area): New subroutine.
8702 (EXTEND_RANGE_TABLE): Replaces EXTEND_RANGE_TABLE_WORK_AREA.
8703 Different calling conventions, and used from set_image_of_range{,_1}.
8704 (IMMEDIATE_QUIT_CHECK): Definitions moved.
8705
8706 2002-09-04 Juanma Barranquero <lektu@terra.es>
8707
8708 * makefile.w32-in: All dependencies updated.
8709
8710 2002-09-01 Richard M. Stallman <rms@gnu.org>
8711
8712 * unexsol.c: New file.
8713
8714 * xfns.c (Qbox): Declare external, don't define.
8715
8716 * xdisp.c (redisplay_window) <force-start case>:
8717 If point is on semi-visible last line, reposition
8718 it at previous line.
8719
8720 * alloc.c (display_malloc_warning): Use display-warning.
8721 (malloc_warning_1): Function deleted.
8722
8723 * alloc.c [ALLOC_DEBUG]: #undef INLINE.
8724
8725 * lread.c (read1): Handle #! by skipping the line.
8726
8727 2002-08-31 Richard M. Stallman <rms@gnu.org>
8728
8729 * Makefile.in (TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS.
8730 Don't include LDFLAGS.
8731 (temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
8732
8733 2002-08-31 Eli Zaretskii <eliz@is.elta.co.il>
8734
8735 * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame
8736 member of x_display_info unless we compile for some window system.
8737
8738 2002-08-31 Kim F. Storm <storm@cua.dk>
8739
8740 * xdisp.c (Valternate_cursor_type, Qalternate_cursor_type): Removed.
8741 (get_window_cursor_type): Don't use them.
8742 (syms_of_xdisp): Remove intern, staticpro, and defvar for them.
8743
8744 2002-08-30 Kenichi Handa <handa@etl.go.jp>
8745
8746 * xdisp.c (get_next_display_element): Fix previous change.
8747
8748 2002-08-30 Andrew Choi <akochoi@shaw.ca>
8749
8750 * macterm.c (expose_overlaps): New function (merge code from xterm.c).
8751 (expose_window): Use it to fix the display of overlapping
8752 rows (merge code from xterm.c).
8753
8754 * macfns.c (Qbox): Add extern declaration.
8755
8756 2002-08-30 Juanma Barranquero <lektu@terra.es>
8757
8758 * w32fns.c (Qbox): Make extern.
8759 (syms_of_w32fns): Remove initialization of Qbox.
8760
8761 2002-08-30 Rune Kleveland <runekl@viewpoint.no> (tiny change)
8762
8763 * xfns.c (Fx_open_connection): Fix error message.
8764
8765 2002-08-30 Kim F. Storm <storm@cua.dk>
8766
8767 The following changes consolidates the handling of the cursor
8768 type in xdisp.c, moving duplicate code and functionality from
8769 xfns.c, xterm.c, w32fns.c, w32term.c, macfns.c, and macterm.c.
8770
8771 * frame.h (enum text_cursor_kinds): Consolidated here.
8772 Added DEFAULT_CURSOR value.
8773 (struct frame) <desired_cursor, cursor_width>
8774 <blink_off_cursor, blink_off_cursor_width>: New fields.
8775 Consolidated from output_x, output_w32 and output_mac structs.
8776 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
8777 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros consolidated here.
8778
8779 * xdisp.c (Qbar, Qhbar, Qbox, Qhollow, Vblink_cursor_alist):
8780 Variables consolidated here.
8781 (Valternate_cursor_type, Qalternate_cursor_type): New variables.
8782 (Vcursor_in_non_selected_windows): Renamed from
8783 cursor_in_non_selected_windows and changed to Lisp_Object.
8784 (syms_of_xdisp): Define and staticpro new and moved variables.
8785 (get_specified_cursor_type): Renamed from x_specified_cursor_type;
8786 consolidated here. Recognize Qhollow setting.
8787 (set_frame_cursor_types): New function to set frame cursor types
8788 based on the frame parameters.
8789 (get_window_cursor_type): New function to calculate new cursor
8790 type and width for the specified window. Based on duplicated
8791 code consolidated here.
8792 Enhancements: cursor-in-non-selected-windows may be a cursor type,
8793 check buffer-local alternate-cursor-type and blink-cursor-alist
8794 before using built-in blink off methods.
8795
8796 * dispextern.h (cursor_in_non_selected_windows): Extern removed.
8797
8798 * lisp.h (Qcursor_in_non_selected_windows): Extern removed.
8799 (get_specified_cursor_type, get_window_cursor_type)
8800 (set_frame_cursor_types): Added prototypes.
8801
8802 * macfns.c (x_specified_cursor_type): Removed.
8803 (x_set_cursor_type): Use set_frame_cursor_types.
8804 (Qbar, Qbox): Removed.
8805 (syms_of_macfns): Don't intern or staticpro them.
8806
8807 * macterm.c (x_specified_cursor_type): Remove prototype.
8808 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
8809 (x_display_and_set_cursor): Use get_window_cursor_type.
8810 Remove unused local variables cursor_non_selected, active_cursor.
8811 Redraw cursor if hbar cursor width changes.
8812 (make_mac_frame): Set FRAME_DESIRED_CURSOR.
8813
8814 * macterm.h (enum text_cursor_kinds): Removed.
8815 (struct output_mac) <current_cursor, desired_cursor, cursor_width>
8816 <blink_off_cursor, blink_off_cursor_width>: Members removed.
8817 (FRAME_DESIRED_CURSOR): Macro removed.
8818
8819 * w32fns.c (Vblink_cursor_alist): Removed.
8820 (Qbar, Qhbar, Qbox, Qhollow): Removed.
8821 (syms_of_w32fns): Don't intern, staticpro, or define them.
8822 (x_specified_cursor_type): Removed.
8823 (x_set_cursor_type): Use set_frame_cursor_types.
8824
8825 * w32term.c (x_specified_cursor_type): Remove prototype.
8826 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
8827 (x_display_and_set_cursor): Use get_window_cursor_type.
8828 Remove unused local variables cursor_off_state.
8829 Redraw cursor if hbar cursor width changes.
8830 Changed all occurrences of w32_highlight_frame to x_highlight_frame.
8831
8832 * w32term.h (enum text_cursor_kinds): Removed.
8833 (struct output_w32) <current_cursor, desired_cursor, cursor_width>
8834 <blink_off_cursor, blink_off_cursor_width>: Members removed.
8835 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
8836 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
8837 (struct w32_display_info) <x_highlight_frame>: Renamed member from
8838 w32_highlight_frame.
8839
8840 * xfns.c (Vblink_cursor_alist): Removed.
8841 (Qbar, Qhbar, Qbox, Qhollow): Removed.
8842 (syms_of_xfns): Don't intern, staticpro, or define them.
8843 (x_specified_cursor_type): Removed.
8844 (x_set_cursor_type): Use set_frame_cursor_types.
8845
8846 * xterm.c (x_specified_cursor_type): Remove prototype.
8847 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
8848 (x_display_and_set_cursor): Use get_window_cursor_type.
8849 Remove unused local variables cursor_off_state.
8850 Redraw cursor if hbar cursor width changes.
8851
8852 * xterm.h (enum text_cursor_kinds): Removed.
8853 (struct output_x) <current_cursor, desired_cursor, cursor_width>
8854 <blink_off_cursor, blink_off_cursor_width>: Members removed.
8855 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
8856 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
8857 (x_specified_cursor_type): Remove prototype.
8858
8859 2002-08-28 Richard M. Stallman <rms@gnu.org>
8860
8861 * w32fns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
8862 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
8863 (Vblink_cursor_alist): New variable.
8864 (syms_of_w32fns): Initialize and defvar it.
8865 (x_specified_cursor_type): Recognize Qbox for filled box.
8866 Exceptions are hollow boxes.
8867 (Qbox, Qhollow): New variables.
8868 (syms_of_w32fns): Initialize and staticpro them.
8869
8870 * w32term.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
8871 New macros.
8872 (struct w32_output): New fields blink_off_cursor,
8873 blink_off_cursor_width.
8874 (FRAME_CURSOR_WIDTH): New macro.
8875
8876 * w32term.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
8877 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
8878
8879 * w32term.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
8880 for bar cursor.
8881
8882 * w32term.c (expose_overlaps): New function.
8883 (expose_window): Use it to fix the display of overlapping rows.
8884
8885 2002-08-28 Simon Josefsson <jas@extundo.com>
8886
8887 * xfns.c (Fx_open_connection): Improve help when X connection
8888 fails, xhost is insecure and xauth is better.
8889
8890 2002-08-28 Juanma Barranquero <lektu@terra.es>
8891
8892 * makefile.w32-in: Add missing dependencies on w32term.h and
8893 composite.h.
8894
8895 * emacs.c (USAGE1): Add missing newline.
8896
8897 2002-08-27 Andrew Choi <akochoi@shaw.ca>
8898
8899 * s/darwin.h [HAVE_LIBNCURSES]: Define HAVE_TERMINFO.
8900
8901 2002-08-27 Richard M. Stallman <rms@gnu.org>
8902
8903 * xfns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
8904 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
8905 (Vblink_cursor_alist): New variable.
8906 (syms_of_xfns): Initialize and defvar it.
8907 (x_specified_cursor_type): Recognize Qbox for filled box.
8908 Exceptions are hollow boxes.
8909 (Qbox, Qhollow): New variables.
8910 (syms_of_xfns): Initialize and staticpro them.
8911
8912 * xterm.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
8913 New macros.
8914 (struct x_output): New fields blink_off_cursor, blink_off_cursor_width.
8915
8916 * xterm.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
8917 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
8918
8919 * emacs.c (main): Handle --script.
8920 (USAGE1): Mention --script.
8921 (standard_args): Define sort order for --script.
8922
8923 2002-08-27 Gerd Moellmann <gerd.moellmann@t-online.de>
8924
8925 * xdisp.c (redisplay_updating_p): Variable removed.
8926 (inhibit_free_realized_faces, Qinhibit_free_realized_faces):
8927 New variables.
8928 (init_iterator): Don't free realized faces if
8929 inhibit_free_realized_faces is set.
8930 (redisplay_internal): Bind Qinhibit_free_realized_faces to nil.
8931 (syms_of_xdisp): DEFVAR_BOOL inhibit-free-realized-faces,
8932 initialize Qinhibit_free_realized_faces.
8933
8934 * dispextern.h (PRODUCE_GLYPHS): Set inhibit_free_realized_faces
8935 when iterator is adding glyphs to a glyph matrix.
8936
8937 2002-08-27 Kenichi Handa <handa@etl.go.jp>
8938
8939 * xdisp.c (get_next_display_element): In unibyte case, don't use
8940 octal form for such eight-bit characters that can be converted to
8941 multibyte char.
8942
8943 2002-08-26 Kim F. Storm <storm@cua.dk>
8944
8945 * frame.c (make_terminal_frame) [CANNOT_DUMP]: Initialize foreground
8946 and background colors. From Joe Buehler (tiny change).
8947
8948 2002-08-26 Miles Bader <miles@gnu.org>
8949
8950 * bytecode.c (Fbyte_code): Fsub1 can GC, so protect it.
8951
8952 2002-08-25 Andrew Choi <akochoi@shaw.ca>
8953
8954 * emacs.c (main): Call init_mac_osx_environment if HAVE_CARBON is
8955 defined instead of MAC_OSX.
8956
8957 * s/darwin.h (select): Define select to sys_select only if
8958 HAVE_CARBON is defined.
8959 (HAVE_WORKING_VFORK): #undef it. Define vfork to fork.
8960 (DONT_REOPEN_PTY): #def it.
8961
8962 * macterm.c (XTread_socket): Remove code to call
8963 SendEventToEventTarget for keys with command modifiers when
8964 mac_command_key_is_meta is nil.
8965
8966 2002-08-24 Andreas Schwab <schwab@suse.de>
8967
8968 * eval.c (Fdefvar): Fix last change.
8969
8970 2002-08-23 Richard M. Stallman <rms@gnu.org>
8971
8972 * eval.c (Fdefvar, Fdefconst, Fdefvaralias):
8973 Record variables in load history as (defvar . VAR).
8974 (Fdefvar): Don't record in load history if no initial value.
8975 (Qdefvar): New variable.
8976 (syms_of_eval): Init and staticpro it.
8977
8978 * lread.c (syms_of_lread): Doc fix.
8979 (build_load_history): Use Fmember to see if a definition
8980 is already in the Vload_history element.
8981
8982 * process.c (Fstart_process): Remove /: from program name.
8983
8984 * emacs.c (decode_env_path): Don't add /: if file name handler
8985 has a `safe-magic' property.
8986
8987 * callproc.c (Fcall_process): Remove /: from program name.
8988
8989 2002-08-23 Stefan Monnier <monnier@cs.yale.edu>
8990
8991 * regex.c (PATFETCH): Remove the translating fetch.
8992 (PATFETCH_RAW): Rename to PATFETCH.
8993 (set_image_of_range): New fun.
8994 (SET_RANGE_TABLE_WORK_AREA): Use it.
8995 (regex_compile): Don't translate the pattern chars so eagerly.
8996 Only do it when inserting an `exactn' bytecode or when handling
8997 a char-range.
8998 (mutually_exclusive_p): Avoid empty statement.
8999
9000 2002-08-22 Kim F. Storm <storm@cua.dk>
9001
9002 * xdisp.c (redisplay_window): Do not `goto try_to_scroll' when we
9003 end up on a partially visible line; this reverts a specific part
9004 of the 2002-07-07 change by Richard M. Stallman to "fix" a nasty
9005 display error which has been reported several times now.
9006 However it introduces the problem that changes was supposed to fix.
9007 See my comments in the source if you want to debug this further.
9008
9009 2002-08-20 Kenichi Handa <handa@etl.go.jp>
9010
9011 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
9012
9013 2002-08-19 Eli Zaretskii <eliz@is.elta.co.il>
9014
9015 * msdos.c (croak): Add `void' to definition.
9016
9017 * sysdep.c (request_sigio, unrequest_sigio) [MSDOS]:
9018 Don't define them, they are defined in msdos.c.
9019
9020 * mem-limits.h [MSDOS]: Declare etext.
9021
9022 * fileio.c (Ffile_name_directory) [DOS_NT]: Don't declare `beg'
9023 `const' since CORRECT_DIR_SEPS modifies its target.
9024
9025 2002-08-19 Kim F. Storm <storm@cua.dk>
9026
9027 * keyboard.c (Fclear_this_command_keys): Add optional arg
9028 KEEP-RECORD to avoid clearing lossage when we just want to clear
9029 the current key sequence (kmacro needs this).
9030
9031 2002-08-19 Kenichi Handa <handa@localhost>
9032
9033 * composite.c (run_composition_function): Call FUNC if it is fboundp.
9034
9035 * composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
9036 cons, return Qnil.
9037
9038 2002-08-17 Richard M. Stallman <rms@gnu.org>
9039
9040 * s/sol2-5.h (BROKEN_SIGIO): Add #undef.
9041
9042 * sysdep.c [!VMS]: Include sys/files.h.
9043
9044 * editfns.c (save_restriction_restore): Defend from unchained marker.
9045
9046 * buffer.c (overlays_at): Handle extending vec uniformly.
9047 (overlays_in): Handle extending vec from length 0 as in overlays_at.
9048
9049 2002-08-15 Andrew Choi <akochoi@shaw.ca>
9050
9051 * mac.c (init_mac_osx_environment): New function.
9052
9053 * emacs.c (main) [MAC_OSX]: Call init_mac_osx_environment.
9054
9055 2002-08-14 Kim F. Storm <storm@cua.dk>
9056
9057 * macros.c (Fstart_kbd_macro): Added NO-EXEC argument to inhibit
9058 executing macro before appending to it (when used from Lisp).
9059 (Fexecute_kbd_macro): Added LOOPFUNC argument to supply function
9060 which is called prior to each iteration of macro (for kmacro.el).
9061 (Fend_kbd_macro, Fcall_last_kbd_macro): Likewise.
9062
9063 * lisp.h (Fexecute_kbd_macro): Update prototype.
9064
9065 * keyboard.c (Fcommand_execute): Update call to Fexecute_kbd_macro.
9066
9067 2002-08-14 Kenichi Handa <handa@etl.go.jp>
9068
9069 * xselect.c (QUTF8_STRING): New variable.
9070 (symbol_to_x_atom): Pay attention to QUTF8_STRING.
9071 (x_atom_to_symbol): Likewise.
9072 (x_get_local_selection): New argument local_request. If it is
9073 nonzero, call handler_fn with the second arg nil.
9074 (x_handle_selection_request): Call x_get_local_selection with
9075 local_request 0.
9076 (lisp_data_to_selection_data): Don't encode the string here.
9077 (Fx_get_selection_internal): Call x_get_local_selection with
9078 local_request 1.
9079 (syms_of_xselect): Intern and staticpro QUTF8_STRING.
9080
9081 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
9082
9083 * xterm.h (struct x_display_info): New member Xatom_UTF8_STRING.
9084
9085 2002-08-13 Richard M. Stallman <rms@gnu.org>
9086
9087 * minibuf.c (Fminibufferp): New function.
9088 (syms_of_minibuf): Defsubr it.
9089 (Fminibuffer_prompt_end): Handle non-minibuffers specially.
9090
9091 2002-08-13 Gerd Moellmann <gerd.moellmann@t-online.de>
9092
9093 * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
9094
9095 2002-08-12 Richard M. Stallman <rms@gnu.org>
9096
9097 * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
9098 [!VMS] (WCOREDUMP, WEXITSTATUS, WIFEXITED, WIFSTOPPED, WIFSIGNALED)
9099 (WSTOPSIG, WTERMSIG): Define each one independently if not defined
9100 already.
9101
9102 * buffer.c (syms_of_buffer) <fill-column>: Doc fix.
9103
9104 2002-08-11 Andrew Choi <akochoi@shaw.ca>
9105
9106 * macterm.c (XTmouse_position): Check wp with is_emacs_window.
9107 (Vmac_pass_command_to_system): New variable.
9108 (Vmac_pass_control_to_system): New variable.
9109 (do_mouse_moved): Check wp with is_emacs_window.
9110 (XTread_socket): Check window_ptr with is_emacs_window.
9111 Call FrontNonFloatingWindow instead of FrontWindow. Send keydown
9112 events back to Mac Toolbox for processing, depending on values of
9113 Vmac_pass_command_to_system and Vmac_pass_control_to_system.
9114 (syms_of_macterm): DEFVAR_LISP Vmac_pass_command_to_system and
9115 Vmac_pass_control_to_system.
9116
9117 2002-08-10 Kenichi Handa <handa@etl.go.jp>
9118
9119 * coding.c (unencodable_char_position): New function.
9120 (Funencodable_char_position): New function.
9121 (syms_of_coding): Defsubr Funencodable_char_position.
9122
9123 2002-08-10 Andrew Choi <akochoi@shaw.ca>
9124
9125 * mac.c (sys_select) [MAC_OSX]: New function.
9126
9127 * macterm.c (MakeMeTheFrontProcess): New function.
9128 (mac_initialize): Call MakeMeTheFrontProcess.
9129
9130 * s/darwin.h: Define select to sys_select.
9131
9132 2002-08-09 Richard M. Stallman <rms@gnu.org>
9133
9134 * keyboard.c (make_lispy_event): Test WINDOWSNT, not WINDOWS_NT.
9135
9136 2002-08-09 Gerd Moellmann <gerd.moellmann@t-online.de>
9137
9138 * xdisp.c (forward_to_next_line_start): Return 0 when reaching the
9139 end of the buffer.
9140
9141 2002-08-08 Ken Raeburn <raeburn@mit.edu>
9142
9143 * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
9144
9145 * puresize.h (BASE_PURESIZE): Increase to 910000.
9146
9147 2002-08-08 Kenichi Handa <handa@etl.go.jp>
9148
9149 * coding.c (Ffind_operation_coding_system): For write-region, if
9150 VISIT is a filename, make it the target.
9151
9152 2002-08-07 Richard M. Stallman <rms@gnu.org>
9153
9154 * alloc.c (mark_object): Detect long lists for debugging.
9155 (mark_object_loop_halt): New variable.
9156
9157 * s/hpux10.h (C_SWITCH_SYSTEM): #undef it.
9158
9159 * data.c (Fmake_variable_frame_local): Doc fix.
9160
9161 2002-08-01 David Ponce <david@dponce.com>
9162
9163 * w32menu.c (local_heap, local_alloc, local_free): New macros.
9164 (malloc_widget_value, free_widget_value)
9165 (w32_free_submenu_strings): Use them.
9166
9167 (push_submenu_start, push_submenu_end, push_left_right_boundary)
9168 (push_menu_pane, push_menu_item, single_keymap_panes)
9169 (single_menu_item, Fx_popup_menu, menubar_selection_callback)
9170 (single_submenu, set_frame_menubar)
9171 (w32_menu_show, w32_dialog_show): Use AREF, ASET, ASIZE.
9172
9173 (Fx_popup_menu): Don't show pop up menu until preceding one is
9174 actually cleaned up. Moved UNGCPRO outside #ifdef HAVE_MENUS block.
9175
9176 * w32menu.c: Changes adapted from xmenu.c
9177 (set_frame_menubar): First parse all submenus,
9178 then make widget_value trees from them.
9179 Don't allocate any widget_value objects
9180 until we are done with the parsing.
9181 (parse_single_submenu): New function.
9182 (digest_single_submenu): New function.
9183 (single_submenu): Function deleted, replaced by those two.
9184
9185 2002-08-04 Andrew Choi <akochoi@shaw.ca>
9186
9187 * macterm.c (XTread_socket): Check that FrontNonFloatingWindow
9188 returns a valid window pointer before proceeding for keyDown and
9189 autoKey events.
9190
9191 2002-08-03 Andrew Choi <akochoi@shaw.ca>
9192
9193 * macterm.c (USE_CARBON_EVENTS): New macro.
9194 (macCtrlKey, macShiftKey, macMetaKey, macAltKey): New macros.
9195 (x_iconify_frame): Call CollapseWindow.
9196 (Vmac_reverse_ctrl_meta): New variable.
9197 (Vmac_wheel_button_is_mouse_2): New variable.
9198 (init_mac_drag_n_drop): New function.
9199 (mac_do_receive_drag): New function.
9200 (mac_handle_service_event): New function.
9201 (init_service_handler): New function.
9202 (mac_to_emacs_modifiers): New function.
9203 (mac_event_to_emacs_modifiers): New function.
9204 (mac_get_mouse_btn): New function.
9205 (mac_convert_event_ref): New function.
9206 (XTread_socket) [USE_CARBON_EVENTS]: Call ReceiveNextEvent,
9207 SendEventToEventTarget, mac_event_to_emacs_modifiers, and
9208 mac_get_mouse_btn.
9209 (mac_initialize): Call init_mac_drag_n_drop and init_service_handler.
9210
9211 * keyboard.c: Define Qmouse_wheel, mouse_wheel_syms, and
9212 lispy_mouse_wheel_names for MAC_OSX as well as for WINDOWS_NT.
9213 (kbd_buffer_get_event): Set used_mouse_menu for MENU_BAR_EVENT and
9214 TOOL_BAR_EVENT for MAC_OS as well.
9215 (make_lispy_event): Handle MOUSE_WHEEL_EVENT for MAC_OSX as well
9216 as for WINDOWS_NT.
9217 (syms_of_keyboard): Initialize Qmouse_wheel for MAC_OSX.
9218
9219 * termhooks.h (event_kind): Define MOUSE_WHEEL_EVENT also for MAC_OSX.
9220
9221 2002-08-03 Gerd Moellmann <gerd.moellmann@t-online.de>
9222
9223 * xdisp.c (forward_to_next_line_start): Fix a condition that
9224 lead to a newline being skipped.
9225
9226 2002-08-02 Andrew Choi <akochoi@shaw.ca>
9227
9228 * mac.c (syms_of_mac): Defsubr Sx_selection_exists_p.
9229
9230 2002-08-01 Richard M. Stallman <rms@gnu.org>
9231
9232 * Makefile.in (SOME_MACHINE_OBJECTS): Add fontset.o.
9233
9234 2002-07-31 Andrew Choi <akochoi@shaw.ca>
9235
9236 * macfns.c: #undef init_process before #define-ing it.
9237
9238 * s/darwin.h: Define MAC_OS, SYMS_SYSTEM, and OTHER_FILES only if
9239 HAVE_CARBON is defined.
9240
9241 2002-07-31 Richard M. Stallman <rms@gnu.org>
9242
9243 * xmenu.c (set_frame_menubar): First parse all submenus,
9244 then make widget_value trees from them.
9245 Don't allocate any widget_value objects
9246 until we are done with the parsing.
9247 (parse_single_submenu): New function.
9248 (digest_single_submenu): New function.
9249 (single_submenu): Function deleted, replaced by those two.
9250
9251 2002-07-30 Juanma Barranquero <lektu@terra.es>
9252
9253 * w32proc.c (syms_of_ntproc): Fix docstring of
9254 `w32-get-true-file-attributes'.
9255
9256 2002-07-28 Richard M. Stallman <rms@gnu.org>
9257
9258 * s/hpux8.h (HPUX8): Define this before including hpux.h.
9259 (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide.
9260
9261 * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8.
9262
9263 * keyboard.c (make_lispy_event):
9264 Use #ifdef to test USE_TOOLKIT_SCROLL_BARS.
9265 Explicitly clear up_modifier in event->modifiers.
9266
9267 2002-07-27 Richard M. Stallman <rms@gnu.org>
9268
9269 * xterm.h (FRAME_CURSOR_WIDTH): New macro.
9270
9271 * xterm.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
9272 for bar cursor.
9273
9274 2002-07-26 Kenichi Handa <handa@etl.go.jp>
9275
9276 * coding.c (detect_coding_iso2022): While checking a byte sequence
9277 for CODING_CATEGORY_MASK_ISO_8_2, if we read one extra byte, check
9278 it in the normal loop.
9279
9280 2002-07-24 Gerd Moellmann <gerd.moellmann@t-online.de>
9281
9282 * xterm.c (expose_overlaps): New function.
9283 (expose_window): Use it to fix the display of overlapping rows.
9284
9285 * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
9286
9287 2002-07-23 Ken Raeburn <raeburn@gnu.org>
9288
9289 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
9290 since it only depends on XUINT.
9291
9292 * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
9293 EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
9294 PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
9295 Macros deleted.
9296
9297 * mem-limits.h (start_of_data): If DATA_START is defined, prefer
9298 its value over other approaches.
9299 * sysdep.c (start_of_data): Don't define the function if a macro
9300 form has been defined.
9301
9302 2002-07-23 Gerd Moellmann <gerd.moellmann@t-online.de>
9303
9304 * xdisp.c (redisplay_updating_p): New variable.
9305 (init_iterator): Don't free realized faces when
9306 redisplay_updating_p is set.
9307 (redisplay_internal): Set redisplay_updating_p while updating
9308 the display.
9309
9310 2002-07-23 Richard M. Stallman <rms@gnu.org>
9311
9312 * editfns.c (Fmessage): Treat "" like nil.
9313
9314 2002-07-23 Kenichi Handa <handa@etl.go.jp>
9315
9316 * xdisp.c (face_before_or_after_it_pos):
9317 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
9318
9319 2002-07-22 Juanma Barranquero <lektu@terra.es>
9320
9321 * callproc.c (init_callproc) [DOS_NT]:
9322 Initialize Vshared_game_score_directory to nil.
9323 (syms_of_callproc) [DOS_NT]: Likewise.
9324
9325 2002-07-22 Gerd Moellmann <gerd.moellmann@t-online.de>
9326
9327 * xdisp.c (display_line): Replace an abort with xassert.
9328
9329 2002-07-21 Richard M. Stallman <rms@gnu.org>
9330
9331 * xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
9332 and END_UNCHANGED when setting buffer_unchanged_p.
9333 Use current_matrix_up_to_date_p to decide whether to use
9334 try_cursor_movement.
9335
9336 * config.in (HAVE_SHARED_GAME_DIR): Undef deleted.
9337
9338 * epaths.in (PATH_GAME): New macro, edited by ../Makefile.in.
9339
9340 * callproc.c (init_callproc): Set up Vshared_game_score_directory.
9341 Set to nil if dir does not exist.
9342 (syms_of_callproc): Init unconditionally and simply.
9343
9344 * buffer.c (Fbuffer_list): Doc fix.
9345
9346 2002-07-21 Ken Raeburn <raeburn@gnu.org>
9347
9348 * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
9349
9350 * buffer.c (mmap_realloc): When shrinking, make sure number of
9351 pages to unmap is rounded towards zero.
9352
9353 * m/mips-siemens.h (XSETUINT, XSETPNTR): Unused macros deleted.
9354 (XSETINT): Deleted.
9355
9356 * m/att3b.h (XINT): Don't define.
9357 (VALBITS, VALMASK, XTYPE): Deleted.
9358 (DATA_SEG_BITS): Define.
9359 * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET,
9360 ARRAY_MARK_FLAG): Deleted.
9361 (DATA_SEG_BITS): Define.
9362 * m/pfa50.h (VALBITS, VALMASK, XTYPE): Deleted.
9363 (DATA_SEG_BITS): Define.
9364
9365 2002-07-20 Richard M. Stallman <rms@gnu.org>
9366
9367 * print.c (print_error_message): New args CONTEXT and CALLER.
9368 Calls changed.
9369
9370 * lisp.h (print_error_message): Declare new args.
9371
9372 * keyboard.c (cmd_error_internal): Pass Vsignaling_function
9373 and CONTEXT to print_error_message, don't print them here.
9374 For a Quit, don't use Vsignaling_function.
9375 Call message_log_maybe_newline.
9376
9377 * Makefile.in (xsmfns.o): Don't depend on lisp.h.
9378
9379 2002-07-20 Kim F. Storm <storm@cua.dk>
9380
9381 * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p.
9382
9383 2002-07-19 Ken Raeburn <raeburn@gnu.org>
9384
9385 * bytecode.c (struct byte_stack): Pointers into byte string now
9386 point to const.
9387 * callproc.c (Fcall_process): Make NEW_ARGV array hold pointer to
9388 const.
9389 * charset.h (BCOPY_SHORT): Source pointer now points to const.
9390 * coding.c (encode_eol, detect_coding, detect_eol):
9391 (decode_coding, encode_coding, detect_coding_system):
9392 Source strings now treated as const.
9393 (decode_coding_string, encode_coding_string): Use STRING_COPYIN to
9394 modify Lisp string contents.
9395 * coding.h (decode_coding, encode_coding, detect_coding,
9396 detect_eol): Declarations updated.
9397 * composite.c (compose_chars_in_text): Treat Lisp string contents
9398 as const.
9399 * dispnew.c (safe_bcopy): Source pointer now points to const.
9400 * lisp.h (STRING_COPYIN): New macro.
9401 (detect_coding_system, safe_bcopy, temp_output_buffer_setup):
9402 (internal_with_output_to_temp_buffer): Declarations updated.
9403 * print.c (temp_output_buffer_setup):
9404 (internal_with_output_to_temp_buffer): Buffer name argument is now
9405 pointer to const.
9406 * sound.c (struct sound_device): Function pointer field "write"
9407 buffer argument now points to const.
9408 (vox_write): Buffer argument points to const.
9409 * syntax.c (Fstring_to_syntax, skip_chars): Treat Lisp string
9410 contents as const.
9411 * sysdep.c (emacs_write): Buffer pointer now const.
9412 * term.c (encode_terminal_code): Buffer pointer now const.
9413 * xfaces.c (may_use_scalable_font_p): Argument now points to const.
9414 (x_face_list_fonts, x_update_menu_appearance):
9415 (hash_string_case_insensitive): Treat Lisp string contents as const.
9416
9417 2002-07-19 Juanma Barranquero <lektu@terra.es>
9418
9419 * xdisp.c (syms_of_xdisp): Remove redundant deprecation info.
9420
9421 * fileio.c (syms_of_fileio): Likewise.
9422 (Ffile_name_as_directory): Fix argument name in docstring.
9423 (file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
9424
9425 2002-07-18 Richard M. Stallman <rms@gnu.org>
9426
9427 * data.c (Fdefalias): Doc fix.
9428
9429 2002-07-17 Dave Love <fx@gnu.org>
9430
9431 * intervals.h (text_property_stickiness): Use P_.
9432
9433 * ccl.c: Remove `emacs' conditionals.
9434 (ccl_backtrace_table): Fix size spec.
9435 (ccl_driver): Fix type errors.
9436
9437 2002-07-16 Ken Raeburn <raeburn@gnu.org>
9438
9439 * alloc.c (xstrdup, make_string, make_unibyte_string)
9440 (make_multibyte_string, build_string): String pointer args now
9441 point to const.
9442 * charset.c (find_charset_in_text, c_string_width):
9443 (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
9444 * fileio.c (report_file_error):
9445 * insdel.c (copy_text, count_size_as_multibyte, insert_1):
9446 (count_combining_before, count_combining_after, insert_1_both):
9447 (insert, insert_and_inherit, insert_string):
9448 (insert_before_markers, insert_before_markers_and_inherit):
9449 * lread.c (intern, oblookup, hash_string):
9450 * minibuf.c (temp_echo_area_glyphs):
9451 * search.c (fast_c_string_match_ignore_case):
9452 * sysdep.c (emacs_open, set_file_times):
9453 * xfaces.c (xstricmp):
9454 * xdisp.c (store_frame_title, string_char_and_length):
9455 (message_dolog, message2, message2_nolog, set_message): Likewise.
9456 (set_message_1): Cast message string argument to const pointer.
9457 * editfns.c (general_insert_function): Insertion function now
9458 takes pointer to const for input data.
9459 * charset.h (find_charset_in_text, c_string_width):
9460 (parse_str_as_multibyte): Declarations updated.
9461 * dispextern.h (xstricmp): Declaration updated.
9462 * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text):
9463 (count_size_as_multibyte, count_combining_before):
9464 (count_combining_after, insert_1, insert_1_both, message_dolog):
9465 (insert, insert_and_inherit, insert_before_markers)
9466 (insert_before_markers_and_inherit, set_message, message2):
9467 (message2_dolog, build_string, make_string, make_unibyte_string):
9468 (make_multibyte_string, intern, oblookup, report_file_error):
9469 (fast_c_string_match_ignore_case, temp_echo_area_glyphs):
9470 (emacs_open, xstrdup): Declarations updated.
9471 * systime.h (set_file_times): Declaration updated.
9472
9473 * charset.c (find_charset_in_text, lisp_string_width): Use const
9474 for pointer to lisp string data.
9475 * charset.h (FETCH_STRING_CHAR_ADVANCE):
9476 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK):
9477 * coding.c (Ffind_coding_systems_region_interval):
9478 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory):
9479 (Fmake_directory_internal, Fdelete_directory):
9480 (Ffile_name_absolute_p, Fwrite_region, double_dollars):
9481 * fontset.c (font_family_registry, fs_query_fontset):
9482 (list_fontsets):
9483 * frame.c (Fframe_parameter):
9484 * keyboard.c (cmd_error_internal):
9485 * keymap.c (Fdescribe_buffer_bindings):
9486 * lread.c (complete_filename_p, openp):
9487 * minibuf.c (Fminibuffer_complete_word):
9488 * xdisp.c (string_pos_nchars_ahead, init_from_display_pos):
9489 (face_before_or_after_it_pos, next_element_from_string):
9490 (get_overlay_arrow_glyph_row, display_mode_element):
9491 (decode_mode_spec_coding):
9492 * xterm.c (same_x_server): Likewise.
9493
9494 * buffer.c (reset_buffer_local_variables): Delete "#if 0"
9495 settings of non-existent fields.
9496
9497 * editfns.c (Fstring_to_char): Don't use XSTRING/XSETSTRING to
9498 copy a lisp value.
9499
9500 * lread.c (Fintern_soft): Use string macros instead of
9501 Lisp_String fields.
9502 * keyboard.c (echo_char, parse_modifiers_uncached):
9503 (parse_solitary_modifier, Fexecute_extended_command): Likewise.
9504 * textprop.c (validate_interval_range, interval_of): Likewise.
9505
9506 * fontset.c (Fset_fontset_font): Use SDATA instead of XSTRING()->data.
9507
9508 * charset.h (FETCH_STRING_CHAR_ADVANCE)
9509 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SBYTES instead of
9510 XSTRING()->size_byte.
9511
9512 * lisp.h (SDATA, SREF): Produce rvalue.
9513 (SSET): New macro.
9514 * alloc.c (make_event_array): Use SSET for storing into a string.
9515 * buffer.c (Fother_buffer): Use SREF when retrieving a byte from
9516 a string.
9517 * casefiddle.c (casify_object): Use SSET.
9518 * charset.h (FETCH_STRING_CHAR_ADVANCE)
9519 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA when getting
9520 address of string contents.
9521 * data.c (Faref): Use SDATA.
9522 (Faset): Use SDATA, SSET.
9523 * dired.c (directory_files_internal): Use SSET.
9524 * fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
9525 (Fread_file_name): Use SREF, SSET.
9526 * fns.c (concat): Use SSET.
9527 (concat, Fdelete): Use SDATA.
9528 * insdel.c (insert_from_string_1): Use SDATA.
9529 * keyboard.c (Fevent_convert_list): Use SREF.
9530 * lread.c (Fload): Use SDATA, SSET.
9531 * macfns.c (validate_x_resource_name): Use SSET.
9532 * process.c (status_message): Use SSET.
9533 * search.c (wordify): Use SDATA.
9534 (Freplace_match): Use SREF.
9535 * w32fns.c (validate_x_resource_name): Use SSET.
9536 * xfns.c (validate_x_resource_name): Use SSET.
9537 * xterm.c (x_catch_errors, x_clear_errors): Use SSET.
9538
9539 2002-07-16 Richard M. Stallman <rms@gnu.org>
9540
9541 * s/hpux11.h (USG_SUBTTY_WORKS): Defined.
9542
9543 * xdisp.c (reconsider_clip_changes):
9544 Don't test prevent_redisplay_optimizations_p.
9545 (redisplay_internal): Test prevent_redisplay_optimizations_p
9546 along with clip_changed in some cases.
9547 (try_window_id): Likewise.
9548 (redisplay_window): New local var buffer_unchanged_p.
9549
9550 * keyboard.c (cmd_error) [HAVE_X_WINDOWS]: Maybe call cancel_houglass.
9551
9552 * process.c (create_process): Test USG_SUBTTY_WORKS.
9553 (process_send_signal): Clean up handling of GID.
9554 Detect errors in ioctls meant to set GID.
9555
9556 * window.c (temp_output_buffer_show):
9557 Don't set prevent_redisplay_optimizations_p.
9558
9559 2002-07-15 Juanma Barranquero <lektu@terra.es>
9560
9561 * eval.c (Fdefvaralias): Add docstring argument.
9562
9563 2002-07-15 Ken Raeburn <raeburn@gnu.org>
9564
9565 * lisp.h (STRING_INTERVALS): Produce rvalue.
9566 (STRING_SET_INTERVALS): New macro.
9567 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.
9568 * fns.c (Fstring_as_multibyte): Likewise.
9569 * intervals.c (balance_possible_root_interval, delete_interval)
9570 (create_root_interval, copy_intervals_to_string): Likewise.
9571 * textprop.c (set_text_properties): Likewise. Use NULL_INTERVAL
9572 instead of 0.
9573
9574 2002-07-14 Ken Raeburn <raeburn@gnu.org>
9575
9576 * lisp.h (STRING_SET_CHARS): New macro.
9577 (SCHARS, SBYTES): Produce rvalues.
9578 * dired.c (directory_files_internal): Use STRING_SET_CHARS.
9579 * fns.c (concat): Likewise.
9580 * lread.c (read_vector): Likewise.
9581
9582 * lisp.h (SMBP): Deleted. All uses changed to STRING_MULTIBYTE.
9583 (STRING_SET_UNIBYTE): New macro.
9584 (SET_STRING_BYTES): Deleted. Callers (all of which supplied a
9585 length of -1) changed to use STRING_SET_UNIBYTE.
9586 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
9587 casefiddle.c, category.c, ccl.c, charset.c, charset.h, coding.c,
9588 composite.c, data.c, dired.c, dispnew.c, disptab.h, doc.c,
9589 dosfns.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fn.c,
9590 fontset.c, frame.c, indent.c, insdel.c, intervals.c, keyboard.c,
9591 keymap.c, lread.c, mac.c, macfns.c, macmenu.c, macterm.c,
9592 minibuf.c, msdos.c, print.c, process.c, search.c, sound.c,
9593 sunfns.c, syntax.c, syntax.h, sysdep.c, textprop.c, undo.c,
9594 w16select.c, w32.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
9595 w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c,
9596 xselect.c, xsmfns.c, xterm.c: Most uses of XSTRING combined with
9597 STRING_BYTES or indirection changed to SCHARS, SBYTES,
9598 STRING_INTERVALS, SREF, SDATA; explicit size_byte references left
9599 unchanged for now.
9600
9601 2002-07-13 Kim F. Storm <storm@cua.dk>
9602
9603 * keyboard.c (command_loop_1): Invert check on Vmemory_full.
9604
9605 2002-07-12 Richard M. Stallman <rms@gnu.org>
9606
9607 * fileio.c (Fwrite_region): Doc fix.
9608
9609 * print.c (print_error_message): Don't handle Vsignaling_function here.
9610
9611 * keyboard.c (cmd_error_internal): Handle Vsignaling_function here.
9612 (command_loop_1): Avoid certain actions after memory-full error.
9613
9614 * eval.c (Fsignal): Don't call cancel_hourglass.
9615 For a memory-full error, don't call Vsignal_hook_function
9616 and don't set Vsignaling_function.
9617
9618 * process.c (process_send_signal): Add abort call.
9619
9620 2002-07-11 Markus Rost <rost@math.ohio-state.edu>
9621
9622 * keymap.c (Fkey_binding): Fix typo.
9623
9624 2002-07-11 Richard M. Stallman <rms@gnu.org>
9625
9626 * alloc.c (Vmemory_full): New variable.
9627 (Vmemory_signal_data): Renamed from memory_signal_data.
9628 Uses changed.
9629 (syms_of_alloc): Defvar them.
9630 (memory_full, buffer_memory_full): Set Vmemory_full.
9631
9632 * lisp.h (Vmemory_full): Add declaration.
9633 (current_column, indented_beyond_p): Change declaration.
9634
9635 * indent.c (last_known_column): Declare as double, not float.
9636 (current_column, current_column_1, string_display_width)
9637 (position_indentation): Return `double'.
9638 (indented_beyond_p): Arg `column' is `double'. Callers changed.
9639
9640 * xdisp.c (message_dolog): Do nothing if Vmemory_full is non-nil.
9641 (back_to_previous_visible_line_start)
9642 (reseat_at_next_visible_line_start, next_element_from_buffer):
9643 Use `double', not `float', when calling indented_beyond_p.
9644
9645 * s/hpux11.h (BROKEN_SA_RESTART): Defined.
9646
9647 * sysdep.c (sys_signal): Test BROKEN_SA_RESTART.
9648
9649 2002-07-11 Juanma Barranquero <lektu@terra.es>
9650
9651 * alloc.c, buffer.c, bytecode.c, callint.c, callproc.c, coding.c,
9652 * composite.c, dired.c, dispnew.c, editfns.c, emacs.c, eval.c,
9653 * fileio.c, fns.c, insdel.c, keyboard.c, keymap.c, lread.c, macfns.c,
9654 * macmenu.c, macros.c, minibuf.c, print.c, process.c, sound.c,
9655 * textprop.c, w32fns.c, w32menu.c, window.c, xfaces.c, xfns.c,
9656 * xmenu.c, xselect.c, xterm.c: Use SPECPDL_INDEX wherever makes sense.
9657
9658 2002-07-10 Juanma Barranquero <lektu@terra.es>
9659
9660 * lisp.h (SPECPDL_INDEX): Rename from BINDING_STACK_SIZE.
9661 All callers changed.
9662
9663 2002-07-09 Stefan Monnier <monnier@cs.yale.edu>
9664
9665 * data.c (Fdefalias): Add an optional `docstring' argument.
9666 (set_internal, Fsetq_default): Use XCAR/XCDR.
9667
9668 * composite.c (HASH_VALUE, HASH_KEY):
9669 * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
9670
9671 2002-07-09 Kenichi Handa <handa@etl.go.jp>
9672
9673 * callproc.c (Fcall_process): Fix previous change.
9674
9675 2002-07-07 Stefan Monnier <monnier@cs.yale.edu>
9676
9677 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
9678 Add support for hash-tables.
9679 (Ftry_completion): Return t even if the string appears multiple times.
9680
9681 * fns.c (Fnconc): Use XCDR.
9682 (Fprovide): Use CONSP and XCDR.
9683 (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
9684 (HASH_TABLE_SIZE): Delete: moved to lisp.h.
9685 (Fmake_hash_table): Accept `:size nil'.
9686 (Fmakehash): Delete: moved to subr.el.
9687 (syms_of_fns): Don't defsubr makehash.
9688
9689 * lisp.h (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
9690 (HASH_TABLE_SIZE): Move from fns.c.
9691
9692 2002-07-07 Richard M. Stallman <rms@gnu.org>
9693
9694 * xdisp.c (make_cursor_line_fully_visible): Don't try short scrolls.
9695 Instead just return 0 when there is something to be done.
9696 (try_scrolling): If make_cursor_line_fully_visible returns 0,
9697 retry scrolling as if cursor were off the bottom.
9698 (try_cursor_movement): If make_cursor_line_fully_visible returns 0,
9699 return CURSOR_MOVEMENT_MUST_SCROLL.
9700 (redisplay_window): If make_cursor_line_fully_visible returns 0,
9701 go to try_to_scroll.
9702
9703 * buffer.c (Fbuffer_local_value): Store current value into its binding
9704 so we get the up-to-date value for the binding that is loaded.
9705
9706 * eval.c (Fdefmacro): Doc fix.
9707
9708 2002-07-05 Dave Love <fx@gnu.org>
9709
9710 * keyboard.c (read_key_sequence): Set initial_idleness_start_time
9711 correctly.
9712
9713 * ccl.c (Vtranslation_hash_table_vector, GET_HASH_TABLE)
9714 (HASH_VALUE, CCL_LookupIntConstTbl, CCL_LookupCharConstTbl): New.
9715 (ccl_driver): Add cases for CCL_LookupIntConstTbl,
9716 CCL_LookupCharConstTbl.
9717 (syms_of_ccl): Defvar translation-hash-table-vector.
9718
9719 2002-07-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9720
9721 * xdisp.c: Remove unused variable `face'.
9722
9723 2002-07-04 Juanma Barranquero <lektu@terra.es>
9724
9725 * keyboard.c (post_command_idle_hook): Remove redundant (and inexact)
9726 obsolescence information.
9727
9728 2002-07-03 Andrew Choi <akochoi@shaw.ca>
9729
9730 * macterm.c (x_list_fonts): Fix comment. Cache fonts matching
9731 pattern. Search cache first.
9732 (init_font_name_table): Also add entry for jisx0201.1976-0 coding
9733 for Japanese font.
9734 (XLoadQueryFont): Use it.
9735
9736 2002-07-02 Richard M. Stallman <rms@gnu.org>
9737
9738 * keymap.c (Fdefine_key): Doc fix.
9739
9740 * xterm.c (x_term_init): Turn off polling around XtOpenDisplay.
9741
9742 2002-07-02 Juanma Barranquero <lektu@terra.es>
9743
9744 * keymap.c (syms_of_keymap): Fix typo.
9745
9746 2002-07-01 Andrew Choi <akochoi@shaw.ca>
9747
9748 * s/darwin.h: Define POSIX_SIGNALS.
9749
9750 * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef
9751 and FSRefMakePath to convert FSSpec returned with Apple Event to
9752 Posix pathname.
9753 (mac_initialize) [TARGET_API_MAC_CARBON]:
9754 Call init_required_apple_events and disable the `Quit' menu item
9755 provided automatically by the Carbon Toolbox.
9756
9757 2002-07-01 Dave Love <fx@gnu.org>
9758
9759 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
9760 for K&R.
9761
9762 * xterm.c: Fix prototype for K&R.
9763
9764 * term.c (costs_set): Declare static, non-initialized for pcc.
9765
9766 2002-07-01 Richard M. Stallman <rms@gnu.org>
9767
9768 * keyboard.c (timer_last_idleness_start_time): New variable.
9769 (timer_start_idle): Set that.
9770 (read_key_sequence): Use that to reset timer_idleness_start_time
9771 to previous value.
9772
9773 * window.c (Frecenter): With arg, set optional_new_start.
9774
9775 * xdisp.c (redisplay_internal): Make optional_new_start really work.
9776
9777 * minibuf.c (Fminibuffer_complete_and_exit): Move to end of
9778 buffer for completion.
9779
9780 2002-06-29 Ken Raeburn <raeburn@gnu.org>
9781
9782 * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
9783
9784 2002-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9785
9786 * keyboard.c (readable_filtered_events): New function that filters
9787 FOCUS_IN_EVENT depending on parameter.
9788 (readable_events): Calls readable_filtered_events, not filtering
9789 FOCUS_IN_EVENT.
9790 (get_filtered_input_pending): New function, filtering parameter passed
9791 to readable_filtered_events.
9792 (get_input_pending): Calls get_filtered_input_pending, not filtering
9793 FOCUS_IN_EVENT.
9794 (Finput_pending_p): Calls get_filtered_input_pending, DO filter
9795 FOCUS_IN_EVENT.
9796
9797 * xterm.h (struct x_output): Add focus_state.
9798
9799 * xterm.c (x_focus_changed): New function.
9800 (x_detect_focus_change): New function.
9801 (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
9802 EnterNotify and LeaveNotify to track X focus changes.
9803
9804 2002-06-28 Andreas Schwab <schwab@suse.de>
9805
9806 * lisp.h: Remove duplicate declaration of code_convert_string_norecord.
9807
9808 2002-06-27 Kim F. Storm <storm@cua.dk>
9809
9810 * xdisp.c: (mode_line_string_list, mode_line_string_face)
9811 (mode_line_string_face_prop): New variables.
9812 (store_mode_line_string): New function.
9813 (display_mode_element): Use store_mode_line_string to
9814 add mode-line string elements to mode_line_string_list
9815 when mode_line_string_list is non-nil.
9816 (Fformat_mode_line): Now returns propertized string by
9817 default. New arg NO-PROPS to ignore properties.
9818 (decode_mode_spec): Only add two dashes for %- in propertized
9819 mode-line string.
9820 (syms_of_xdisp): Init and staticpro mode_line_string_list.
9821
9822 2002-06-27 Stefan Monnier <monnier@cs.yale.edu>
9823
9824 * minibuf.c (minibuffer_completion_contents): Add return type.
9825
9826 2002-06-27 Juanma Barranquero <lektu@terra.es>
9827
9828 * charset.c (Fchar_bytes): Remove obsolescence info from docstring.
9829
9830 2002-06-26 Juanma Barranquero <lektu@terra.es>
9831
9832 * fileio.c (read_file_name_cleanup): Add missing return.
9833
9834 2002-06-26 Richard M. Stallman <rms@gnu.org>
9835
9836 * window.c (Frecenter): Don't set force_start flag.
9837
9838 * minibuf.c (do_completion, Fminibuffer_complete_word)
9839 (Fminibuffer_completion_help): Complete just the text before point.
9840 (minibuffer_completion_contents): New function.
9841
9842 * buffer.c (Fbury_buffer): Use frames_discard_buffer.
9843
9844 * frame.c (frames_bury_buffer): Function deleted.
9845
9846 2002-06-25 Miles Bader <miles@gnu.org>
9847
9848 * callint.c (Fcall_interactively): When checking to see if doprnt hit
9849 the end of callint_message, allow for a terminating '\0'.
9850
9851 2002-06-24 Juanma Barranquero <lektu@terra.es>
9852
9853 * w32select.c: Include composite.h
9854
9855 * w16select.c: Likewise.
9856
9857 2002-06-24 Kenichi Handa <handa@etl.go.jp>
9858
9859 * callproc.c (Fcall_process): If code detection is necessary,
9860 call detect_coding directly here.
9861
9862 * coding.c (detect_eol): Preserve coding->cmp_data.
9863
9864 * w16select.c (Fw16_get_clipboard_data):
9865 * w32fns.c (w32_to_x_font):
9866 * w32select.c (Fw32_get_clipboard_data):
9867 * xselect.c (selection_data_to_lisp_data):
9868 * xterm.c (XTread_socket): Disable composition handling.
9869
9870 2002-06-24 Stefan Monnier <monnier@cs.yale.edu>
9871
9872 * print.c (temp_output_buffer_setup): Kill all local variables.
9873
9874 2002-06-22 Stefan Monnier <monnier@cs.yale.edu>
9875
9876 * lread.c (Fread): Remove redundant and imprecise declaration.
9877
9878 * xfns.c (check_x_display_info): Use check_x_frame.
9879
9880 * .gdbinit (xprintsym): Use the new `xname' field.
9881 (xsymbol): Use it.
9882
9883 2002-06-22 Jason Rumney <jasonr@gnu.org>
9884
9885 * w32fns.c (file_dialog_callback): New function.
9886 (Fx_file_dialog): Allow selecting directories as well as files.
9887
9888 2002-06-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9889
9890 * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
9891 OpenBSD. Add support for mipseb-*-netbsd* machines.
9892
9893 2002-06-17 Andrew Choi <akochoi@shaw.ca>
9894
9895 * macterm.c (mac_scroll_area): Set foreground and backcolor to
9896 black and white before scrolling. Restore frame background and
9897 foreground color after scrolling.
9898 (do_window_update): Call XClearWindow before calling expose_frame.
9899 (make_mac_frame): Don't set FRAME_BACKGROUND_PIXEL and
9900 FRAME_FOREGROUND_PIXEL of frame.
9901
9902 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
9903 test Mac command key as <ALT> key.
9904
9905 2002-06-17 Stefan Monnier <monnier@cs.yale.edu>
9906
9907 * window.c (Fset_window_configuration): Lisp_Object/int mixup.
9908
9909 * keyboard.c (read_key_sequence): Be more careful with first_unbound.
9910 Lookup keys in function-key-map immediately so that key-translation-map
9911 can be applied earlier.
9912 Remove function_key_possible and key_translation_possible, replaced
9913 by checking `keytran_start < t'.
9914
9915 * .gdbinit (xsymbol): Use the new `xname' field.
9916
9917 2002-06-17 Andrew Choi <akochoi@shaw.ca>
9918
9919 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
9920 test Mac command key as <ALT> key.
9921
9922 * mac.c (do_applescript): Call initialize_applescript if necessary
9923 when first called. Dispose of result_desc only when there is no error.
9924 (Fdo_applescript): Use %d format specifier instead of %ld.
9925
9926 2002-06-16 Andrew Choi <akochoi@shaw.ca>
9927
9928 * macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
9929 of FrontWindow for cases keyDown and autoKey.
9930
9931 * fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
9932 Vdefault_fontset to Monaco with mac-roman coding.
9933
9934 * mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
9935 init_process before and after inclusion of Carbon/Carbon.h, resp.
9936
9937 * macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
9938 cursor_gc.
9939 (add_font_name_table_entry): New function.
9940 (init_font_name_table): Use add_font_name_table_entry; add italic,
9941 bold, and bold-italic entries for truetype fonts.
9942
9943 * xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
9944 for Mac too.
9945 (try_font_list) [MAC_OS]: If no font matches given registry, try
9946 fonts with any registry matching face_family.
9947 (realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font here.
9948
9949 * s/darwin.h: If autoconf detects the Ncurses library, define
9950 LIBS_TERMCAP to -lncurses to use it.
9951
9952 2002-06-16 Eli Zaretskii <eliz@is.elta.co.il>
9953
9954 * strftime.c [__hpux]: Include sys/_mbstate_t.h.
9955
9956 2002-06-15 Richard M. Stallman <rms@gnu.org>
9957
9958 * window.c (Fset_window_configuration): Explicitly preserve
9959 the point value that new_current_buffer had at the start.
9960
9961 2002-06-14 Juanma Barranquero <lektu@terra.es>
9962
9963 * composite.c (Fcompose_region_internal, Fcompose_string_internal):
9964 Fix typos.
9965
9966 2002-06-14 Kim F. Storm <storm@cua.dk>
9967
9968 * insdel.c (insert_1_both, insert_from_string_1)
9969 (insert_from_buffer_1): Recalculate END_UNCHANGED in case the
9970 insert happened in the end_unchanged region. Otherwise, the
9971 redisplay may be confused and duplicate the last line in the
9972 buffer [seen after save-buffer when require-final-newline==t].
9973
9974 2002-06-13 Jason Rumney <jasonr@gnu.org>
9975
9976 * w32.c (init_environment): Remove EMACSLOCKDIR.
9977 (stat): Swap _S_IFDIR and _S_IFREG.
9978
9979 2002-06-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9980
9981 * keyboard.c, macterm.c, macmenu.c, msdos.c, sysdep.c
9982 * termhooks.h, xmenu.c, xsmfns.c, xterm.h, xterm.c, w32term.c,
9983 * w32menu.c, w32inevt.c: Rename enum event_kind as follows:
9984 ascii_keystroke to ASCII_KEYSTROKE_EVENT, multibyte_char_keystroke
9985 to MULTIBYTE_CHAR_KEYSTROKE_EVENT, non_ascii_keystroke to
9986 NON_ASCII_KEYSTROKE_EVENT, timer_event to TIMER_EVENT, mouse_click
9987 to MOUSE_CLICK_EVENT, mouse_wheel to MOUSE_WHEEL_EVENT,
9988 language_change_event to LANGUAGE_CHANGE_EVENT, scroll_bar_click
9989 to SCROLL_BAR_CLICK_EVENT, w32_scroll_bar_click to
9990 W32_SCROLL_BAR_CLICK_EVENT, selection_request_event to
9991 SELECTION_REQUEST_EVENT, selection_clear_event to
9992 SELECTION_CLEAR_EVENT, buffer_switch_event to BUFFER_SWITCH_EVENT,
9993 delete_window_event to DELETE_WINDOW_EVENT, iconify_event to
9994 ICONIFY_EVENT, deiconify_event to DEICONIFY_EVENT,
9995 menu_bar_activate_event to MENU_BAR_ACTIVATE_EVENT, drag_n_drop to
9996 DRAG_N_DROP_EVENT, save_session_event to SAVE_SESSION_EVENT and
9997 no_event to NO_EVENT.
9998
9999 2002-06-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10000
10001 * macmenu.c: Remove declaration of Qmouse_click and Qevent_kind.
10002
10003 2002-06-12 Stefan Monnier <monnier@cs.yale.edu>
10004
10005 * intervals.c (textget): Don't forget to `return'.
10006 (lookup_char_property): Use XCAR/XCDR.
10007
10008 2002-06-12 Juanma Barranquero <lektu@terra.es>
10009
10010 * xdisp.c (Fformat_mode_line): Fix typo.
10011
10012 2002-06-12 Kim F. Storm <storm@cua.dk>
10013
10014 * xdisp.c (Fformat_mode_line): New function.
10015 (frame_title_buf, frame_title_buf_end, frame_title_ptr)
10016 (store_frame_title_char, store_frame_title): Use unconditionally.
10017 (init_xdisp): Defsubr Fformat_mode_line.
10018 Initialize frame_title_buf etc. unconditionally.
10019
10020 2002-06-11 Stefan Monnier <monnier@cs.yale.edu>
10021
10022 * keyboard.c (read_key_sequence):
10023 Remove prev_(fkey|keytran}_(map|start|end) since we don't want to pass
10024 things through those maps after downcasing events.
10025 Enforce that keytran_end <= fkey_start, i.e. that key-translation-map
10026 applies after function-key-map.
10027 Make sure that keytran can be done in the middle in the sequence.
10028 Be careful not to throw away events past the one we downcase.
10029
10030 * lread.c (read_integer): Remove unused var `tem'.
10031 (read1): Fix int/Lisp_Object mixup.
10032
10033 * xfaces.c (tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
10034
10035 2002-06-11 Richard M. Stallman <rms@gnu.org>
10036
10037 * keyboard.c (readable_events): Ignore any number of
10038 FOCUS_IN_EVENT events and return 0 if nothing else in buffer.
10039
10040 2002-06-09 Miles Bader <miles@gnu.org>
10041
10042 * xfaces.c (Ftty_supports_face_attributes_p): New function.
10043 (parse_rgb_list, tty_lookup_color): New functions.
10044 (tty_defined_color): Use `tty_lookup_color' to do all the work.
10045 (color_distance, Fcolor_distance): New functions.
10046 (TTY_SAME_COLOR_THRESHOLD): New macro.
10047 (Qtty_color_standard_values): New variable.
10048 (syms_of_xfaces): Initialize new vars & functions.
10049
10050 2002-06-08 Colin Walters <walters@verbum.org>
10051
10052 * textprop.c (Vchar_property_alias_alist): New variable.
10053 (syms_of_textprop) <Vchar_property_alias_alist>: DEFVAR_LISP.
10054
10055 * intervals.c (lookup_char_property): New function for looking up
10056 overlay and text properties, created from textget.
10057 (textget): Use it.
10058
10059 * intervals.h (lookup_char_property): Declare.
10060 (Vchar_property_alias_alist): Declare.
10061
10062 * buffer.c (Foverlay_get): Use lookup_char_property.
10063
10064 2002-06-07 Sam Steingold <sds@gnu.org>
10065
10066 * xselect.c (lisp_data_to_selection_data): Fix last change:
10067 *data_ret is not a Lisp string, while unibyte_string is.
10068
10069 2002-06-07 Eli Zaretskii <eliz@is.elta.co.il>
10070
10071 * xselect.c (lisp_data_to_selection_data): Fix last change:
10072 set size_ret.
10073
10074 2002-06-07 Andreas Schwab <schwab@suse.de>
10075
10076 * m/amdx86-64.h: New file.
10077
10078 2002-06-05 Eli Zaretskii <eliz@is.elta.co.il>
10079
10080 * fns.c (Fstring_make_unibyte): Doc fix.
10081
10082 * xselect.c (lisp_data_to_selection_data): If the requested type
10083 is STRING, call string_make_unibyte to encode the selected text
10084 as a string.
10085
10086 * window.c (Fset_window_hscroll): Doc fix.
10087
10088 2002-06-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10089
10090 * fileio.c (choose_write_coding_system):
10091 Call select-safe-coding-system properly.
10092
10093 2002-06-03 Richard M. Stallman <rms@gnu.org>
10094
10095 * xdisp.c (message_with_string): Error if STRING is not a string.
10096
10097 * fns.c (md5): Pass FILE arg to Vselect_safe_coding_system_function.
10098
10099 * fileio.c (choose_write_coding_system): Pass FILE arg to
10100 Vselect_safe_coding_system_function.
10101
10102 2002-06-03 Ken Raeburn <raeburn@gnu.org>
10103
10104 * buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
10105
10106 2002-06-02 Thien-Thi Nguyen <ttn@gnu.org>
10107
10108 * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
10109 * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
10110 * keymap.c (describe_command): Likewise.
10111 * minibuf.c (read_minibuf): Likewise.
10112
10113 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
10114 Cast `current_column' return value to int.
10115 (back_to_previous_visible_line_start)
10116 (reseat_at_next_visible_line_start, next_element_from_buffer):
10117 Cast `indented_beyond_p' 3rd arg to float.
10118
10119 * indent.c (last_known_column): Now a float.
10120 (current_column_1, position_indentation, current_column)
10121 (string_display_width): Return float.
10122 (Fcurrent_column): Cast `current_column' return value to int.
10123 (Fcurrent_indentation): Cast `position_indentation' retval to int.
10124 (indented_beyond_p): Third arg now a float.
10125 (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
10126
10127 * lisp.h (current_column): Now returns float.
10128 (indented_beyond_p): 3rd arg now a float.
10129
10130 2002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
10131
10132 * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
10133 is Qcompound_text_with_extensions.
10134
10135 * xselect.c (lisp_data_to_selection_data): Always set selection
10136 type as string if x_encode_text returns streingp non-NULL.
10137
10138 * s/netbsd.h: Include /usr/pkg in the run time shared library path.
10139
10140 2002-05-30 Richard M. Stallman <rms@gnu.org>
10141
10142 * window.c (Fset_window_configuration): Correct the handling
10143 of point in current buffer, to work with multiple windows.
10144
10145 2002-05-29 Colin Walters <walters@verbum.org>
10146
10147 * lread.c (Fread_from_string): Don't depend on order of evaluation
10148 for C function parameters.
10149
10150 2002-05-28 Richard M. Stallman <rms@gnu.org>
10151
10152 * xterm.c (x_display_and_set_cursor): Change the cursor in the same
10153 way for blinked-off state and for a nonselected window.
10154
10155 * window.c (window_scroll_pixel_based): Don't call Fbolp;
10156 instead, see if the new start pos is at beginning of line.
10157
10158 * fileio.c (Fwrite_region): If START is a string, don't
10159 make any annotations.
10160
10161 * eval.c (syms_of_eval): Doc fix.
10162
10163 2002-05-28 Colin Walters <walters@debian.org>
10164
10165 * emacs.c (USAGE1): Add --no-splash.
10166 (standard_args): Ditto.
10167
10168 2002-05-28 Colin Walters <walters@gnu.org>
10169
10170 * lread.c (readchar_count): New variable.
10171 (readchar): Increment it.
10172 (unreadchar): Decrement it.
10173 (read_multibyte): Decrement it.
10174 (Vread_with_symbol_positions): New variable.
10175 (Vread_symbol_positions_list): New variable.
10176 (read_internal_start): New function, created from Fread and
10177 Fread_from_string. Handle Vread_symbol_positions_list and
10178 Vread_with_symbol_positions.
10179 (readevalloop, Fread, Fread_from_string): Use it.
10180 (read1): Use readchar_count to add symbol positions to
10181 Vread_symbol_positions_list if Vread_with_symbol_positions is non-nil.
10182 (syms_of_lread): DEFVAR_LISP and initialize them.
10183
10184 * lread.c (read0, read1, read_list, read_vector, read_multibyte)
10185 (substitute_object_recurse, substitute_object_in_subtree)
10186 (substitute_in_interval): Prototype.
10187 (read_multibyte): Return c if it's less than zero.
10188
10189 2002-05-28 Kim F. Storm <storm@cua.dk>
10190
10191 * fileio.c (Fread_file_name_internal): Added brute-force
10192 speed up for using predicate file-directory-p.
10193
10194 2002-05-28 Kim F. Storm <storm@cua.dk>
10195
10196 * fileio.c (Vread_file_name_function, Vread_file_name_predicate):
10197 New variables.
10198 (syms_of_fileio): DEFVAR_LISP them.
10199 (read_file_name_cleanup): New unwind function.
10200 (Fread_file_name_internal): Only return completions satifying
10201 Vread_file_name_predicate. Temporarily unwind protect and rebind
10202 default-directory while checking completions against the predicate.
10203 (Fread_file_name): Added PREDICATE argument. Specbind it to
10204 Vread_file_name_predicate during completion.
10205 Call Vread_file_name_function to read the file name if non-nil.
10206
10207 * lisp.h (Fread_file_name): Now has 6 args.
10208
10209 * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
10210 predicate for Fread_file_name when reading directory name.
10211 Supply Qnil for predicate in other calls to Fread_file_name.
10212
10213 2002-05-26 Miles Bader <miles@gnu.org>
10214
10215 * term.c (tty_capable_p): New function.
10216 * dispextern.h (tty_capable_p): New function declaration.
10217 (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM)
10218 (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros.
10219
10220 2002-05-23 Stefan Monnier <monnier@cs.yale.edu>
10221
10222 * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
10223 (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
10224 (Vwrite_region_annotate_functions): Docstring fix.
10225
10226 2002-05-23 Kim F. Storm <storm@cua.dk>
10227
10228 * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
10229 phys_cursor's hpos is overwritten. This is still not completely
10230 correct, as it doesn't really make sense to use hpos at all to
10231 get the cursor glyph (as that is relative to the width of the
10232 characters on the line, which may have changed during the update).
10233
10234 2002-05-22 Jason Rumney <jasonr@gnu.org>
10235
10236 * w32fns.c (enumfont_t): Remove tail, make pattern a normal
10237 Lisp_Object.
10238 (enum_font_cb2, enum_font_maybe_add_to_list, w32_list_fonts):
10239 Use modified enumfont_t struct.
10240
10241 * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
10242
10243 * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
10244 Handle the `hbar' cursor type.
10245 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
10246
10247 * w32fns.c (Qhbar): New variable.
10248 (x_specified_cursor_type): Use it.
10249
10250 2002-05-21 Ken Raeburn <raeburn@gnu.org>
10251
10252 * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
10253 now, when the address is needed.
10254
10255 2002-05-21 Colin Walters <walters@gnu.org>
10256
10257 * Makefile.in (shortlisp): Add font-core.el.
10258
10259 2002-05-20 Richard M. Stallman <rms@gnu.org>
10260
10261 * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
10262
10263 * keyboard.c (read_char_minibuf_menu_prompt): Don't list
10264 equivalent key bindings here.
10265
10266 2002-05-20 Ken Raeburn <raeburn@gnu.org>
10267
10268 Change symbol structure to contain a lisp object for the symbol
10269 name:
10270 * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
10271 object field named "xname".
10272 (SYMBOL_NAME): New macro.
10273 * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
10274 name field.
10275 * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
10276 (mark_object, gc_sweep): Use symbol xname field and XSTRING
10277 instead of name field.
10278 * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
10279 SYMBOL_NAME instead of XSYMBOL and name field.
10280 * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
10281 instead of XSYMBOL and name field.
10282 * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
10283 and SYMBOL_NAME instead of XSYMBOL and name field.
10284 * coding.c (Fread_coding_system, code_convert_region1)
10285 (code_convert_string1, code_convert_string_norecord)
10286 (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
10287 XSYMBOL and name field.
10288 * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
10289 (Fmake_variable_buffer_local, Fmake_local_variable)
10290 (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
10291 of XSYMBOL and name field.
10292 * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
10293 XSYMBOL and name field.
10294 * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
10295 instead of XSYMBOL and name field.
10296 * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
10297 XSYMBOL and name field.
10298 * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
10299 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
10300 * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
10301 instead of XSYMBOL and name field.
10302 * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
10303 (parse_modifiers, apply_modifiers, Fevent_convert_list)
10304 (parse_solitary_modifier, Fexecute_extended_command):
10305 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
10306 * keymap.c (silly_event_symbol_error, Fsingle_key_description)
10307 (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
10308 of XSYMBOL and name field.
10309 (describe_command, describe_translation): Use SYMBOL_NAME and
10310 assignment instead of XSYMBOL and name field and XSETSTRING.
10311 * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
10312 instead of XSYMBOL and name field.
10313 (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
10314 name field and XSETSTRING.
10315 * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
10316 of XSYMBOL and name field.
10317 * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
10318 assignment instead of XSYMBOL and name field and XSETSTRING.
10319 * print.c (print_error_message, print_object): Use SYMBOL_NAME and
10320 XSTRING instead of XSYMBOL and name field.
10321 * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
10322 and XSTRING instead of XSYMBOL and name field.
10323 * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
10324 and XSTRING instead of XSYMBOL and name field.
10325 * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
10326 XSTRING instead of XSYMBOL and name field.
10327 * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
10328 of XSYMBOL and name field.
10329 * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
10330 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
10331
10332 2002-05-19 Ken Raeburn <raeburn@gnu.org>
10333
10334 * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
10335 and XCDR real rvalues in most configurations.
10336
10337 * buffer.c (fix_overlays_in_range, fix_overlays_before):
10338 Don't take the address of the cdr part of a cons cell; instead, track
10339 the parent cell and call XSETCDR, or set the variable for the head
10340 of the list if we haven't started down the list yet.
10341
10342 2002-05-19 Richard M. Stallman <rms@gnu.org>
10343
10344 * doc.c (reread_doc_file): Don't ask for confirmation.
10345
10346 2002-05-18 Jason Rumney <jasonr@gnu.org>
10347
10348 * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
10349 (xbm_load_image): Use it.
10350 (xbm_load): Ditto.
10351 (xbm_read_bitmap_data): Reverted to xfns.c version.
10352 From David Ponce <david@dponce.com>.
10353
10354 2002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
10355
10356 * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
10357 2.02 and later.
10358
10359 2002-05-16 Juanma Barranquero <lektu@terra.es>
10360
10361 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
10362
10363 2002-05-15 Stefan Monnier <monnier@cs.yale.edu>
10364
10365 * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
10366 meaningful test.
10367 (read_char_minibuf_menu_prompt): Fix typo.
10368
10369 2002-05-15 Eli Zaretskii <eliz@is.elta.co.il>
10370
10371 * eval.c (Fcommandp): Doc fix.
10372
10373 2002-05-13 Stefan Monnier <monnier@cs.yale.edu>
10374
10375 * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
10376 (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
10377 (Fset_keymap_parent): Gcpro a bit more.
10378 (access_keymap): Gcpro around meta_map call and around the main loop.
10379 (get_keyelt): Gcpro when following indirect references.
10380 (copy_keymap_item): New fun, extracted from Fcopy_keymap.
10381 (copy_keymap_1, Fcopy_keymap): Use it. Don't copy the parent map.
10382 (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
10383 Remove useless ad-hoc remap code.
10384
10385 2002-05-13 Richard M. Stallman <rms@gnu.org>
10386
10387 * search.c (search_buffer): Give up boyer moore search if inverse
10388 translation change charset_base.
10389
10390 2002-05-12 Eli Zaretskii <eliz@is.elta.co.il>
10391
10392 * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
10393 characters is carried over from the previous block of text, adjust
10394 coding->produced to account for the extra character.
10395
10396 2002-05-11 Andreas Schwab <schwab@suse.de>
10397
10398 * coding.c (intersection): Keep the elements of the returned list
10399 in the same order as in the first list.
10400
10401 2002-05-11 Kim F. Storm <storm@cua.dk>
10402
10403 * keymap.c (current_minor_maps): Fixed resizing of cmm_maps;
10404 only update cmm_size if realloc actually succeeds.
10405 Testing with initial size of 2 elements revealed that using
10406 realloc on GNU/Linux would cause a random trap in xmalloc
10407 later on, so I rewrote the code to use malloc/bcopy/free instead
10408 of realloc.
10409
10410 2002-05-10 Jason Rumney <jasonr@gnu.org>
10411
10412 * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
10413
10414 2002-05-10 Eli Zaretskii <eliz@is.elta.co.il>
10415
10416 * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
10417 parens, to ensure correct evaluation order.
10418
10419 2002-05-10 Kim F. Storm <storm@cua.dk>
10420
10421 * keymap.c (Vemulation_mode_map_alists): New variable.
10422 (syms_of_keymap): DEFVAR_LISP it.
10423 (current_minor_maps): Process keymap alists in that list before
10424 minor-mode-overriding-map-alist and minor-mode-map-alist.
10425
10426 2002-05-09 Richard M. Stallman <rms@gnu.org>
10427
10428 * search.c (Freplace_match): Doc fix.
10429
10430 2002-05-09 Kim F. Storm <storm@cua.dk>
10431
10432 * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
10433 Enlarge cursor rectangle drawn around image with non-zero relief.
10434
10435 * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
10436 Enlarge cursor rectangle drawn around image with non-zero relief.
10437
10438 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
10439 Enlarge cursor rectangle drawn around image with non-zero relief.
10440
10441 2002-05-07 Eli Zaretskii <eliz@is.elta.co.il>
10442
10443 * xselect.c (lisp_data_to_selection_data): Don't set selection
10444 type if comes from the Lisp object's car. If the selection
10445 contains a pure ASCII text, always return QSTRING as its type.
10446
10447 2002-05-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10448
10449 * mac.c (mac-cut-function): Doc fix.
10450
10451 2002-05-05 Richard M. Stallman <rms@gnu.org>
10452
10453 * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
10454
10455 2002-05-04 Jason Rumney <jasonr@gnu.org>
10456
10457 * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
10458 for event-click-count.
10459
10460 * process.c (init_process): Only add server subfeature if we can
10461 use non-blocking I/O.
10462
10463 2002-05-04 Andrew Choi <akochoi@shaw.ca>
10464
10465 * macterm.c (XTread_socket): Call WaitNextEvent once instead of
10466 repeatedly.
10467
10468 2002-05-03 Jason Rumney <jasonr@gnu.org>
10469
10470 * process.c (Fmake_network_process): Only support server sockets
10471 when we can make them non-blocking.
10472
10473 * s/ms-w32.h (HAVE_SELECT): Define.
10474
10475 * w32.h (FILE_NDELAY): New flag.
10476
10477 * w32.c (sys_getpeername, fcntl): New functions.
10478 (_sys_read_ahead): Temporarily block on non-blocking sockets.
10479
10480 * w32proc.c: include sys/file.h.
10481
10482 2002-05-03 Colin Walters <walters@verbum.org>
10483
10484 * callproc.c (Vgame_score_directory): Renamed to
10485 Vshared_game_score_directory.
10486
10487 2002-04-30 Richard M. Stallman <rms@gnu.org>
10488
10489 * s/gnu.h [emacs]: Include stdio.h.
10490 (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
10491
10492 * eval.c (do_autoload): Error if called while preparing to dump.
10493
10494 * fns.c (Frequire): Error if need to load while preparing to dump.
10495
10496 2002-04-28 Colin Walters <walters@verbum.org>
10497
10498 * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
10499 Default to "~/.emacs.d/games".
10500
10501 2002-04-29 Stefan Monnier <monnier@cs.yale.edu>
10502
10503 * lread.c (openp): Change arg exec_only to predicate.
10504 (build_load_history): Use XCAR/XCDR.
10505 (Flocate_file_internal): New fun.
10506 (syms_of_lread): Defsubr it.
10507 (Fload): Update call to openp.
10508
10509 * lisp.h (openp): Update prototype.
10510
10511 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
10512 * w32proc.c (sys_spawnve):
10513 * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
10514 * w32.c (check_windows_init_file):
10515 * sound.c (Fplay_sound_internal):
10516 * process.c (Fstart_process):
10517 * macfns.c (x_create_bitmap_from_file, x_find_image_file):
10518 * mac.c (run_mac_command):
10519 * emacs.c (init_cmdargs):
10520 * callproc.c (Fcall_process): Update call to openp.
10521
10522 * textprop.c (remove_properties): Don't use XCAR without CONSP.
10523
10524 * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
10525
10526 2002-04-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10527
10528 * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
10529 (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
10530
10531 2002-04-28 Richard M. Stallman <rms@gnu.org>
10532
10533 * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
10534
10535 * eval.c (Fcommandp): New arg for_call_interactively.
10536 * lisp.h (Fcommandp): Declare new arg.
10537
10538 2002-04-28 Jason Rumney <jasonr@gnu.org>
10539
10540 * w32proc.c (syms_of_w32proc): Get true file attributes by default.
10541
10542 * w32.c (stat, fstat): Use file index information to generate
10543 inodes for directories where available.
10544
10545 2002-04-26 Andrew Choi <akochoi@shaw.ca>
10546
10547 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
10548 [HAVE_CARBON]: Include Mac object files.
10549
10550 * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
10551 fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
10552 termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
10553 MAC_OSX, and MAC_OS instead of macintosh.
10554
10555 * editfns.c [MAC_OS8]: Include stdio.h.
10556
10557 * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
10558
10559 * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
10560 Apple Monaco.
10561
10562 * process.c: Declare QCfamily and QCfilter as extern.
10563 (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
10564 calling select.
10565
10566 * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
10567
10568 * tparam.c [MAC_OSX]: Don't define BC and UP.
10569
10570 * config.in [HAVE_CARBON]: Add.
10571
10572 * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
10573 Move here from mac/src and mac/inc.
10574
10575 * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
10576
10577 2002-04-26 Gerd Moellmann <gerd@gnu.org>
10578
10579 * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
10580 Compute phys_cursor_width from the x position returned
10581 by x_draw_glyhs, which is cheaper.
10582 (x_display_and_set_cursor): Compute the buffer-local value
10583 of `cursor-in-non-selected-windows' only when needed.
10584
10585 2002-04-25 Gerd Moellmann <gerd@gnu.org>
10586
10587 * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
10588 cursor on a stretch glyph has a width that depends on
10589 x_stretch_cursor_p.
10590
10591 2002-04-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10592
10593 * abbrev.c (abbrev-start-location): Doc fix.
10594
10595 * indent.c (Fvertical_motion): Fix last change.
10596
10597 2002-04-25 Gerd Moellmann <gerd@gnu.org>
10598
10599 * indent.c (Fvertical_motion): Move to the start of the line
10600 containing PT before moving up or down.
10601
10602 2002-04-24 Gerd Moellmann <gerd@gnu.org>
10603
10604 * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
10605 case of writing a whole row, more or less analogous to the case of
10606 writing only parts of a row.
10607
10608 * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
10609 0 for NO_CURSOR.
10610
10611 * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
10612
10613 2002-04-23 Colin Walters <walters@verbum.org>
10614
10615 * buffer.c (syms_of_buffer): Doc fix.
10616
10617 2002-04-23 Gerd Moellmann <gerd@gnu.org>
10618
10619 * xterm.c (notice_overwritten_cursor): Handle the special case
10620 of the cursor being in the first blank non-text line at the
10621 end of a window.
10622
10623 * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
10624 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
10625 (x_display_and_set_cursor): Don't set phys_cursor_width here, for
10626 bar cursors only, to make phys_cursor_width contain what its name
10627 suggests.
10628 (notice_overwritten_cursor): Consider the cursor image erased if
10629 the output area intersects the cursor image in y-direction.
10630
10631 2002-04-23 Simon Marshall <simon@gnu.org>
10632
10633 * xfns.c (x_set_mouse_color): Change default for cross_cursor
10634 to XC_hand2.
10635
10636 2002-04-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10637
10638 * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
10639
10640 2002-04-22 Kim F. Storm <storm@cua.dk>
10641
10642 * textprop.c (remove_properties): Fixed trap for malformed plist.
10643
10644 2002-04-22 Richard M. Stallman <rms@gnu.org>
10645
10646 * cmds.c (Fend_of_line): Handle intangible text in mid line.
10647
10648 * window.c (make_window): Initialize height_fixed_p,
10649 last_cursor_off_p, and p->cursor_off_p slots.
10650
10651 2002-04-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10652
10653 * fns.c (use-dialog-box): Doc fix.
10654
10655 2002-04-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10656
10657 * xterm.c (note_mode_line_or_margin_highlight): Remove unused
10658 variables `row', `i' and `area'.
10659 (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
10660 toolkit library.
10661
10662 2002-04-19 Stefan Monnier <monnier@cs.yale.edu>
10663
10664 * xfaces.c (clear_font_table): Don't free the default font of
10665 a frame even if it's on another display.
10666 (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
10667 that could be Qt.
10668
10669 2002-04-19 Juanma Barranquero <lektu@terra.es>
10670
10671 * indent.c (Fmove_to_column): Remove unused local variable
10672 `next_boundary_byte'.
10673 (current_column_1): Likewise.
10674
10675 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
10676
10677 * msdos.c (Qhbar): New variable.
10678 (syms_of_msdos): Intern and staticpro it.
10679 (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
10680 cursor type.
10681
10682 2002-04-19 Dave Lambert <dlambert@acm.org>
10683
10684 Theses change implement an underscore-like (`hbar') cursor.
10685
10686 * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
10687
10688 * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
10689 Handle the `hbar' cursor type.
10690 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
10691
10692 * xfns.c (Qhbar): New variable.
10693 (syms_of_xfns): Intern and staticpro it.
10694 (x_specified_cursor_type): Handle `hbar' cursor.
10695
10696 * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
10697 not defined.
10698
10699 2002-04-18 Richard M. Stallman <rms@gnu.org>
10700
10701 * textprop.c (remove_properties): New arg LIST allows scanning
10702 either a list or a plist.
10703 (interval_has_some_properties_list): New function, like
10704 interval_has_some_properties using list instead of plist.
10705 All callers changed.
10706 (Fremove_list_of_text_properties): New function.
10707 (syms_of_textprop): Defsubr it.
10708
10709 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
10710
10711 * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
10712
10713 2002-04-17 Juanma Barranquero <lektu@terra.es>
10714
10715 * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
10716
10717 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
10718
10719 * window.c (coordinates_in_window): Don't report on margin area
10720 if its width is zero.
10721
10722 2002-04-16 Jason Rumney <jasonr@gnu.org>
10723
10724 * w32fns.c (Fx_file_dialog): Decode file name before using.
10725
10726 * w32term.c (construct_drag_n_drop): Likewise.
10727
10728 2002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
10729
10730 * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
10731 store load-history in pure space.
10732
10733 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
10734
10735 2002-04-16 Stefan Monnier <monnier@cs.yale.edu>
10736
10737 * xterm.c (Qlatin_1, Qutf_8): New vars.
10738 (syms_of_xterm): Initialize them.
10739 (XTread_socket): Eliminate incorrect optimization that tried to avoid
10740 decoding the output of X*LookupString.
10741 Always use latin-1 to decode the output of XLookupString.
10742 Try Xutf8LookupString if XmbLookupString failed.
10743
10744 * region-cache.c (new_region_cache): Use BEG.
10745
10746 2002-04-16 Gerd Moellmann <gerd@gnu.org>
10747
10748 * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
10749 configuration files.
10750 (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
10751 returns 0.
10752
10753 2002-04-15 Andreas Schwab <schwab@suse.de>
10754
10755 * config.in: Regenerated using autoheader.
10756
10757 * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
10758 m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
10759 m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
10760 m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
10761 m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
10762 m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
10763 m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
10764 m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
10765 m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
10766 m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
10767 m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
10768 m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
10769 m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
10770 m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
10771 m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
10772 s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
10773 STACK_DIRECTION, now set by autoconf.
10774
10775 2002-04-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10776
10777 * dispnew.c (marginal_area_string): Sort arguments.
10778
10779 * dispextern.h (marginal_area_string): Add prototype.
10780
10781 2002-04-13 Richard M. Stallman <rms@gnu.org>
10782
10783 * fileio.c (Finsert_file_contents):
10784 Don't call temp_output_buffer_setup--do just part, by hand.
10785
10786 * coding.c (run_pre_post_conversion_on_str):
10787 Don't call temp_output_buffer_setup--do just part, by hand.
10788
10789 * keyboard.c (command_loop_1): Don't call start_hourglass
10790 or cancel_hourglass when executing a macro.
10791
10792 * marker.c (count_markers): New function.
10793
10794 * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
10795 grow without limit. Move recently used elements to the front.
10796
10797 2002-04-13 Eli Zaretskii <eliz@is.elta.co.il>
10798
10799 * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
10800
10801 2002-04-12 Gerd Moellmann <gerd@gnu.org>
10802
10803 * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
10804 rows marginal areas.
10805 (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
10806 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
10807
10808 * dispnew.c (marginal_area_string): Check that glyph row is enabled.
10809
10810 2002-04-12 Dave Love <fx@gnu.org>
10811
10812 * dispnew.c (marginal_area_string): New.
10813
10814 * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
10815 (Qleft_margin, Qright_margin): Declare.
10816 (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
10817
10818 * xterm.c (note_mode_line_or_margin_highlight): Renamed from
10819 note_mode_line_highlight and extended.
10820
10821 * keyboard.c (Qleft_margin, Qright_margin): Declare.
10822 (make_lispy_event): Deal with mouse events in margins.
10823
10824 2002-04-12 Stefan Monnier <monnier@cs.yale.edu>
10825
10826 * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
10827
10828 * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
10829 than deactivating the mark if tmm is set to `lambda'.
10830 (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
10831 Use a single event for HELP_EVENT.
10832 (Fexecute_extended_command): Save last_point_position.
10833
10834 2002-04-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10835
10836 * lisp.h (Fpropertize): Add prototype.
10837
10838 * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
10839
10840 2002-04-10 Colin Walters <walters@verbum.org>
10841
10842 * config.in: Add HAVE_SHARED_GAME_DIR.
10843
10844 * callproc.c: (Vgame_score_directory): New variable.
10845 (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
10846
10847 2002-04-10 Richard M. Stallman <rms@gnu.org>
10848
10849 * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
10850
10851 2002-04-09 Stefan Monnier <monnier@cs.yale.edu>
10852
10853 * minibuf.c (read_minibuf): Use empty_string.
10854 (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
10855 Short-circuit the search as soon as it "failed".
10856 (Fall_completions): Allow lambda forms and lists of strings for alist.
10857 (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
10858 when require_match is nil.
10859 (Ftest_completion): Rename from `test_completion' and export to elisp.
10860 Call the predicate also when alist is a list.
10861 Obey Vcompletion_regexp_list.
10862 (do_completion, Fminibuffer_complete_and_exit): Use it.
10863 (Fassoc_string): Rename from `assoc_for_completion'.
10864 Allow list of strings as well and export to elisp.
10865
10866 2002-04-08 Stefan Monnier <monnier@cs.yale.edu>
10867
10868 * puresize.h (BASE_PURESIZE): Increase to 900KB.
10869
10870 2002-04-08 Juanma Barranquero <lektu@terra.es>
10871
10872 * w32.c (sys_accept): Don't hide variable `s'.
10873
10874 2002-04-05 Gerd Moellmann <gerd@gnu.org>
10875
10876 * callint.c (Fcall_interactively): Use INTEGERP instead of
10877 NUMBERP for checking Vhistory_length.
10878
10879 2002-04-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10880
10881 * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
10882 Doc fix to reflect it.
10883
10884 2002-04-04 Richard M. Stallman <rms@gnu.org>
10885
10886 * xdisp.c (display_mode_element): New arg RISKY.
10887 Disregard text props found or specified within a variable
10888 that isn't marked risky-local-variable.
10889 (Qrisky_local_variable): New variable.
10890 (syms_of_xdisp): Init and staticpro it.
10891
10892 2002-04-04 Stefan Monnier <monnier@cs.yale.edu>
10893
10894 * undo.c (record_point): New fun.
10895 (record_delete, record_insert): Use it.
10896
10897 2002-04-03 Juanma Barranquero <lektu@terra.es>
10898
10899 * doc.c (Fdocumentation): Add missing parentheses.
10900 (Fdocumentation_property): Likewise.
10901
10902 2002-04-03 Stefan Monnier <monnier@cs.yale.edu>
10903
10904 * doc.c (Fdocumentation, Fdocumentation_property): When the doc
10905 data is 0, just return nil.
10906
10907 2002-04-03 Eli Zaretskii <eliz@is.elta.co.il>
10908
10909 * msdos.c (syms_of_msdos): Fix last change with
10910 mouse_autoselect_window.
10911
10912 2002-04-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10913
10914 * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
10915 mouse_autoselect_window.
10916
10917 2002-04-02 Stefan Monnier <monnier@cs.yale.edu>
10918
10919 * keyboard.c (make_lispy_event): Handle unknown keysyms together
10920 with system-specific keysyms. Use it also for unknown function keys.
10921
10922 * doc.c (reread_doc_file): Return whether reload was attempted.
10923 (Fdocumentation, Fdocumentation_property): Don't try to reload
10924 if the doc is 0 and only ask once.
10925
10926 * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
10927
10928 2002-04-02 Eli Zaretskii <eliz@is.elta.co.il>
10929
10930 * keyboard.c (read_char): If the event was Qselect_window,
10931 restore timer_idleness_start_time to its previous value.
10932
10933 * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
10934
10935 2002-04-01 Stefan Monnier <monnier@cs.yale.edu>
10936
10937 * region-cache.c (new_region_cache): Use BEG.
10938
10939 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
10940 Use BEG and BEG_BYTE.
10941
10942 * doc.c (get_doc_string): Return nil if the location is wrong.
10943 (reread_doc_file): New fun.
10944 (Fdocumentation, Fdocumentation_property):
10945 Call it if get_doc_string fails.
10946 (Fsnarf_documentation): Make it work for a dumped Emacs.
10947
10948 * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
10949 Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
10950
10951 * charset.c (Fstring): Allow 0 arguments.
10952
10953 * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
10954
10955 * process.c (DATAGRAM_CONN_P, list_processes_1)
10956 (Fprocess_datagram_address, Fset_process_datagram_address)
10957 (Fset_network_process_options, server_accept_connection):
10958 Fix some int/Lisp_Object confusions (thank you union types).
10959
10960 2002-04-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
10961
10962 * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
10963
10964 * w32term.c: Likewise.
10965 (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
10966
10967 * keyboard.c (Qselect_window): New symbol.
10968 (head_table): Use it.
10969 (keys_of_keyboard): Bound select-window event to handle-select-window.
10970 (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
10971
10972 * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
10973 (last_window): New variable.
10974 (XTread_socket): Generate SELECT_WINDOW_EVENTs.
10975 (note_mouse_movement): Remove reimplemented code in #if 0.
10976 (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
10977 Emacs windows.
10978
10979 * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
10980
10981 2002-03-31 Gerd Moellmann <gerd@gnu.org>
10982
10983 * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
10984 Callers changed.
10985
10986 2002-03-30 Richard M. Stallman <rms@gnu.org>
10987
10988 * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
10989 loop whenever it stops making progress.
10990
10991 * widget.c (set_frame_size): Don't call change_frame_size.
10992
10993 2002-03-30 Gerd Moellmann <gerd@gnu.org>
10994
10995 * dispnew.c (direct_output_for_insert):
10996 Call mark_window_display_accurate.
10997
10998 2002-03-29 Jason Rumney <jasonr@gnu.org>
10999
11000 * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
11001
11002 2002-03-29 Eli Zaretskii <eliz@is.elta.co.il>
11003
11004 * Makefile.in (lread.o): Depend on coding.h.
11005
11006 * lread.c (openp, Fload): Encode the file name before passing it
11007 to `stat', `access', and `emacs_open'.
11008 (openp): GCPRO the encoded file name. Don't recompute Lisp
11009 strings unnecessarily.
11010
11011 2002-03-29 Kim F. Storm <storm@cua.dk>
11012
11013 * fns.c (Flax_plist_put): Doc fix.
11014
11015 2002-03-28 Miles Bader <miles@gnu.org>
11016
11017 * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
11018
11019 2002-03-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11020
11021 * process.c (set-network-process-options): Add usage.
11022 (make-network-process): Doc fix.
11023
11024 2002-03-26 Eli Zaretskii <eliz@is.elta.co.il>
11025
11026 * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
11027
11028 2002-03-26 Richard M. Stallman <rms@gnu.org>
11029
11030 * fns.c (Fsubstring_no_properties): New function.
11031 (Flax_plist_get, Flax_plist_put): New functions.
11032 (syms_of_fns): defsubr them.
11033
11034 * xdisp.c (update_menu_bar): Test only update_mode_lines;
11035 don't test or alter w->update_mode_line.
11036
11037 * window.c (Fdisplay_buffer): Doc fix.
11038
11039 2002-03-24 Richard M. Stallman <rms@gnu.org>
11040
11041 * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
11042
11043 2002-03-24 Gerd Moellmann <gerd@gnu.org>
11044
11045 * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
11046 (Fdefmacro): Handle `(declare ...)'.
11047 (syms_of_eval) <Qdeclare>: Initialize and staticpro.
11048 (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
11049
11050 2002-03-24 Jason Rumney <jasonr@gnu.org>
11051
11052 * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
11053 (xbm_file_p): Add prototypes.
11054 (xbm_format, xbm_image_p): Sync with xfns.c.
11055 (reflect_byte): New function.
11056 (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
11057 (xbm_load_image): Create bitmaps with a depth of 1.
11058 (init_xfns): Enable XBM images.
11059
11060 2002-03-23 Jason Rumney <jasonr@gnu.org>
11061
11062 * w32term.c (w32_handle_tool_bar_click): Detect up and down events
11063 correctly. Do not pass up_modifier to keyboard buffer.
11064
11065 * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
11066
11067 2002-03-22 Stefan Monnier <monnier@cs.yale.edu>
11068
11069 * Makefile.in (bootstrapclean): New target.
11070 (bootstrap-temacs, bootstrap-doc): Remove.
11071 (bootstrap-emacs): Use a bog-standard `temacs'.
11072 Don't bother to build a DOC file.
11073
11074 * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
11075
11076 * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
11077 in temacs even if !CANNOT_DUMP.
11078 (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
11079
11080 * alloc.c (check_pure_size): Only output a warning.
11081
11082 2002-03-22 Jason Rumney <jasonr@gnu.org>
11083
11084 * w32fns.c (Fx_create_frame): Enable tool-bar when images are
11085 supported.
11086
11087 * w32term.c (zv_bits): Declare as short, for word alignment.
11088 (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
11089 (syms_of_w32term): Define x-use-underline-position-properties.
11090
11091 * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
11092 (clear_image_cache): Block input, fix logic, clear matrices in
11093 all frames that share this cache.
11094
11095 2002-03-22 Eli Zaretskii <eliz@is.elta.co.il>
11096
11097 * emacs.c (main): Update the Copyright year in the blurb printed
11098 by "emacs --version".
11099
11100 * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
11101
11102 * xterm.c (XTread_socket): If XK_ISO_Lock and
11103 XK_ISO_Last_Group_Lock are defined, handle keysyms between
11104 XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
11105
11106 2002-03-21 Kim F. Storm <storm@cua.dk>
11107
11108 * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
11109 menu-bar bindings in keymap and local-map properties _are_ used.
11110 But try keymap property first in accordance with 2002-01-03 patch.
11111 Added comment describing why this is not always reliable.
11112 (tool_bar_items): Ditto for tool-bar.
11113
11114 2002-03-21 Jason Rumney <jasonr@gnu.org>
11115
11116 * w32fns.c (x_clear_image_1): Disable color table code.
11117
11118 2002-03-21 Kim F. Storm <storm@cua.dk>
11119
11120 * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
11121 removed the wrong version of the DEFUN macro; fixed it.
11122
11123 * fns.c (Ffeaturep): Allow subfeature to be a list (test using
11124 Fmember rather than Fmemq).
11125 (Fprovide): Check that subfeatures is a list.
11126
11127 * process.c (QCfeature, QCdatagram): Removed variables.
11128 (QCtype, Qdatagram): New variables.
11129 (network_process_featurep): Removed function.
11130 (Fmake_network_process): Removed :feature check.
11131 Use :type 'datagram instead of :datagram t to create a datagram
11132 socket. This allows us to add other connection types (e.g. raw
11133 sockets) later in a consistent manner.
11134 (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
11135 supported subfeatures for feature make-network-process.
11136 (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
11137 Intern and staticpro QCtype and Qdatagram.
11138 (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
11139
11140 * xfns.c: (QCtype): Remove duplicate declaration and
11141 initialization (is now declared in process.c).
11142
11143 * w32fns.c: (QCtype): Remove duplicate declaration and
11144 initialization (is now declared in process.c).
11145
11146 2002-03-21 Richard M. Stallman <rms@gnu.org>
11147
11148 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
11149 (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
11150 when jumping to `fail' to avoid undoing reg changes in the
11151 last iteration of the loop.
11152 (GET_UNSIGNED_NUMBER): Skip spaces around the number.
11153
11154 * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
11155 Depend on process.h.
11156
11157 2002-03-20 Jason Rumney <jasonr@gnu.org>
11158
11159 Most of the following changes are still conditional on HAVE_IMAGES
11160 which is not set by default on Windows.
11161
11162 * emacs.c (main) [WINDOWSNT]: Call init_xfns.
11163
11164 * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
11165 (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
11166 (four_corners_best, x_clear_image_1, x_clear_image)
11167 (x_alloc_image_color, postprocess_image)
11168 (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
11169 (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
11170 (init_xfns, syms_of_w32fns): Initialize image functions and constants.
11171
11172 * w32gui.h (struct XImage): Define.
11173
11174 * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
11175 extract mouse co-ordinates.
11176
11177 2002-03-20 Jason Rumney <jasonr@gnu.org>
11178
11179 * w32.c (init_winsock): Dynamically load new server and UDP
11180 socket functions.
11181 (socket_to_fd): New function.
11182 (sys_socket): Use it.
11183 (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
11184 (sys_recvfrom, sys_sendto): New wrapper functions.
11185
11186 * process.c (QCfamily, QCfilter): Remove duplicate declaration
11187 and initialization.
11188
11189 * makefile.w32-in (LIBS): Remove $(WSOCK32).
11190
11191 2002-03-20 Eli Zaretskii <eliz@is.elta.co.il>
11192
11193 * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr):
11194 Don't use "sun" as a variable, it's a predefined constant on Sun
11195 machines.
11196
11197 2002-03-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11198
11199 * bytecode.c (Fbyte_code): Revert last change.
11200
11201 2002-03-19 Kim F. Storm <storm@cua.dk>
11202
11203 * makefile.w32-in (LIBS): Add $(WSOCK32).
11204 From David Ponce <dponce@voila.fr>.
11205
11206 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11207
11208 * process.c (wait_reading_process_input): Move variables `pname'
11209 and `pnamelen' down where they are used.
11210
11211 * bytecode.c (Fbyte_code): Discard unused computed value to
11212 prevent gcc warning.
11213
11214 * lisp.h (Fplist_member): Add prototype.
11215
11216 2002-03-18 Kim F. Storm <storm@cua.dk>
11217
11218 * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
11219 HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and HAVE_SYS_UN_H.
11220
11221 * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
11222 Remove explicit GNU_LINUX settings for datagram support.
11223
11224 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11225
11226 * process.c (Fmake_network_process): Remove unused variable `sa'.
11227 Doc fix. Add usage:.
11228 (set_socket_options): Remove unused variables `optnum' and `opttype'.
11229
11230 2002-03-17 Richard M. Stallman <rms@gnu.org>
11231
11232 * xdisp.c (cursor_type_changed): New variable.
11233 (redisplay_internal): Redisplay all windows if cursor_type_changed.
11234 Clear it when clearing windows_or_buffers_changed.
11235 (try_cursor_movement, redisplay_window, try_window_id)
11236 (try_window_reusing_current_matrix): Test cursor_type_changed
11237 along with windows_or_buffers_changed.
11238
11239 * window.h (cursor_type_changed): New variable.
11240
11241 * xfns.c (x_set_cursor_type): Set cursor_type_changed,
11242 not update_mode_lines, and always set it to 1.
11243
11244 * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
11245 if no frames needed redrawing.
11246
11247 2002-03-17 Kim F. Storm <storm@cua.dk>
11248
11249 The following changes add support for network server processes,
11250 datagram connections, and local (unix) sockets.
11251
11252 * process.h (struct Lisp_Process): New member log.
11253 Doc fix: Member command used to indicate stopped network process.
11254 Doc fix: Member childp contains plist for network process.
11255 Doc fix: Member kill_without_query is inverse of query-on-exit flag.
11256
11257 * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
11258 (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop)
11259 (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature):
11260 New variables.
11261 (NETCONN1_P): New macro.
11262 (DATAGRAM_SOCKETS): New conditional symbol.
11263 (datagram_address): New array.
11264 (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
11265 (status_message): Use concat3.
11266 (Fprocess_status): Add `listen' status to doc string. Return `stop'
11267 for a stopped network process.
11268 (Fset_process_buffer): Update contact plist for network process.
11269 (Fset_process_filter): Ditto. Don't enable input for stopped
11270 network processes. Server must listen, even if filter is t.
11271 (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
11272 New functions.
11273 (Fprocess_kill_without_query): Removed. Now defined in simple.el.
11274 (Fprocess_contact): Added KEY argument. Handle datagrams.
11275 (list_processes_1): Optionally show only processes with the query
11276 on exit flag set. Dynamically adjust column widths. Omit tty
11277 column if not needed. Report stopped network processes.
11278 Identify server and datagram network processes.
11279 (Flist_processes): New optional arg `query-only'.
11280 (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
11281 (conv_lisp_to_sockaddr, set_socket_options)
11282 (network_process_featurep, unwind_request_sigio): New helper functions.
11283 (Fprocess_datagram_address, Fset_process_datagram_address):
11284 (Fset_network_process_options): New lisp functions.
11285 (Fopen_network_stream): Removed. Now defined in simple.el.
11286 (Fmake_network_process): New lisp function. Code is based on previous
11287 Fopen_network_stream, but heavily reworked with new property list based
11288 argument list, support for datagrams, server processes, and local
11289 sockets in addition to old client-only functionality.
11290 (server_accept_connection): New function.
11291 (wait_reading_process_input): Use it to handle incoming connects.
11292 Do not enable input on a new connection if process is stopped.
11293 (read_process_output): Handle datagram sockets. Use 2k buffer for them.
11294 (send_process): Handle datagram sockets.
11295 (Fstop_process, Fcontinue_process): Apply to network processes. A stopped
11296 network process is indicated by setting command field to t .
11297 (Fprocess_send_eof): No-op if datagram connection.
11298 (Fstatus_notify): Don't read input for a stream server socket or a
11299 stopped network process.
11300 (init_process): Initialize datagram_address array.
11301 (syms_of_process): Intern and staticpro new variables, defsubr new
11302 functions.
11303
11304 2002-03-16 Jason Rumney <jasonr@gnu.org>
11305
11306 * w32fns.c (w32_to_all_x_charsets): Return correct type in
11307 startup case.
11308
11309 2002-03-16 Richard M. Stallman <rms@gnu.org>
11310
11311 * xdisp.c (redisplay_internal, redisplay_windows):
11312 Use list_of_error to call internal_condition_case_1.
11313 (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
11314 so as to catch all errors with no possibility of debugger redisplay.
11315 (list_of_error): New variable.
11316 (syms_of_xdisp): Init and staticpro it.
11317
11318 * print.c (print_object): Delete `\ ' from printed rep of frame.
11319
11320 2002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
11321
11322 * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
11323 until its implementation is fixed.
11324
11325 2002-03-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11326
11327 * xfns.c (png_load): Remove unused variable `gamma_str'.
11328
11329 2002-03-14 Richard M. Stallman <rms@gnu.org>
11330
11331 * xfns.c (x_real_positions): Handle failure in XQueryTree.
11332
11333 2002-03-14 Miles Bader <miles@gnu.org>
11334
11335 * intervals.c (adjust_for_invis_intang): New function.
11336 (set_point_both): Use `adjust_for_invis_intang' to do most of the
11337 work for dealing with invisible+intangible regions. Do so before
11338 and after both forward and backward movements, to handle both
11339 front-sticky and rear-sticky cases.
11340 * textprop.c (text_property_stickiness): Function moved here from
11341 `editfns.c'.
11342 * intervals.h (text_property_stickiness): New declaration.
11343 * editfns.c (char_property_eq): Function removed.
11344 (text_property_stickiness): Function moved to `textprop.c'.
11345
11346 2002-03-13 Jason Rumney <jasonr@gnu.org>
11347
11348 * config.in: Add STRFTIME_NO_POSIX2.
11349
11350 * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
11351 and %OX when underlying strftime does not.
11352
11353 2002-03-13 Stefan Monnier <monnier@cs.yale.edu>
11354
11355 * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
11356 Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
11357 line) to avoid annoying flicker.
11358 (xm_scroll_callback): Get rid of the now unnecessary kludge.
11359 (XTread_socket): Mark it static.
11360
11361 * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
11362
11363 2002-03-13 Kim F. Storm <storm@cua.dk>
11364
11365 * puresize.h (BASE_PURESIZE): Increase to 775000.
11366
11367 2002-03-12 Juanma Barranquero <lektu@terra.es>
11368
11369 * editfns.c (syms_of_editfns): Fix typo.
11370
11371 2002-03-12 Gerd Moellmann <gerd@gnu.org>
11372
11373 * xsmfns.c: Include stdio.h because termhooks.h needs it.
11374 Include termopt.h for interrupt_input.
11375
11376 2002-03-11 Andreas Schwab <schwab@suse.de>
11377
11378 * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
11379
11380 2002-03-11 Gerd Moellmann <gerd@gnu.org>
11381
11382 * xterm.c (note_mouse_movement): Put code for
11383 x_autoselect_window_p in #if 0.
11384
11385 * lread.c (Fload): Don't assume that message_with_string uses the
11386 string it is given like a C string.
11387
11388 2002-03-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11389
11390 * xterm.h (x_session_check_input, x_session_initialize): Declared.
11391
11392 * xterm.c: (XTread_socket): Add call to x_session_check_input and
11393 x_session_have_connection.
11394 (x_initialize): Add call to x_session_initialize.
11395
11396 * termhooks.h (enum event_kind): Add save_session_event.
11397
11398 * keyboard.c: Add Emacs event save_session_event.
11399
11400 * emacs.c (main): Add call to syms_of_xsmfns.
11401
11402 * lisp.h: Declare syms_of_xsmfns as extern.
11403
11404 * config.in: Add HAVE_X_SM.
11405
11406 * Makefile.in (LIBXT): Add -lSM -lICE
11407 if HAVE_X_SM and not USE_X_TOOLKIT.
11408 (XOBJ): New file xsmfns.c added.
11409
11410 * xsmfns.c: New file for X session management.
11411
11412 2002-03-09 Jason Rumney <jasonr@gnu.org>
11413
11414 * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
11415 read-only when setting modified time.
11416
11417 2002-03-08 Gerd Moellmann <gerd@gnu.org>
11418
11419 * xdisp.c (move_it_vertically_backward): At the end of the function,
11420 when moving forward by lines, treat terminal frames specially.
11421
11422 * keyboard.c (echo_char): Make sure to add a separator between
11423 keys even if echo_dash hasn't been called.
11424
11425 * xdisp.c: Use new string macros.
11426 (update_echo_area): Pass number of bytes to message3 instead of
11427 number of chars.
11428 (set_message_1): Don't access a string's size_byte directly.
11429 (decode_mode_spec_coding): Use number of bytes of eoltype string
11430 instead number of chars.
11431
11432 * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
11433
11434 2002-03-08 Juanma Barranquero <lektu@terra.es>
11435
11436 * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
11437 24-bit.
11438
11439 2002-03-06 Jason Rumney <jasonr@gnu.org>
11440
11441 * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
11442
11443 2002-03-06 Gerd Moellmann <gerd@gnu.org>
11444
11445 * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
11446 (cancel_echoing, echo_length, echo_truncate): Changed to
11447 work with new kboard definition.
11448 (echo_now): Use message3_nolog instead of message2_nolog.
11449
11450 * alloc.c (mark_kboards): Mark echo_string.
11451
11452 * keyboard.h (ECHOBUFSIZE): Removed.
11453 (struct kboard): Member echoptr removed, member echobuf renamed
11454 to echo_string.
11455
11456 * xdisp.c (message_with_string): Use Fformat instead of doprnt and
11457 message3 instead of message2 to display the message using STRING's
11458 text properties.
11459
11460 2002-03-05 Andreas Schwab <schwab@suse.de>
11461
11462 * xdisp.c (hscroll_margin): Change to EMACS_INT.
11463
11464 2002-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
11465
11466 * frame.c (default-frame-alist): Explain that setting it doesn't
11467 affect existing frames.
11468
11469 2002-03-05 Stefan Monnier <monnier@cs.yale.edu>
11470
11471 * indent.c (skip_invisible): Fix my brain fart.
11472
11473 * dispnew.c (sit_for): Don't wait if executing a kbd macro.
11474
11475 2002-03-04 Stefan Monnier <monnier@cs.yale.edu>
11476
11477 * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
11478 * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
11479 * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
11480 * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
11481 and variables to use EMACS_INT instead of just int.
11482
11483 * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
11484
11485 2002-03-04 Eli Zaretskii <eliz@is.elta.co.il>
11486
11487 * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
11488 environment, pass it down with corrected value.
11489
11490 2002-03-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11491
11492 * lread.c (read_filtered_event): Do not call start_hourglass
11493 before returning.
11494
11495 2002-03-04 Juanma Barranquero <lektu@terra.es>
11496
11497 * w32term.c (x_display_and_set_cursor): Fix typo.
11498
11499 2002-03-03 Richard M. Stallman <rms@gnu.org>
11500
11501 * fileio.c (Fmake_temp_name): Doc fix.
11502
11503 2002-03-03 Gary Wong <gtw@gnu.org>
11504
11505 * termcap.c [!emacs]: Replace ospeed for building standalone
11506 libtermcap, for binary compatibility.
11507
11508 * tparam.c [!emacs]: Move #define of bcopy to after string.h.
11509
11510 2002-03-03 Richard M. Stallman <rms@gnu.org>
11511
11512 * xrdb.c (file_p): Rename arg `path' to `filename'.
11513
11514 * abbrev.c (Fexpand_abbrev): Increment plist as use count
11515 only if it is an integer.
11516
11517 * xfns.c (png_load): Set screen_gamma based on f->gamma.
11518 If png_get_sRGB gives an answer, call png_set_gamma
11519 using the default image gamma value.
11520
11521 * lread.c (read1): When reading from a file, default string to
11522 multibyte only if it has some multibyte characters.
11523
11524 * print.c (print_object): Output multibyte chars 128...255
11525 using \x even if ! print_escape_multibyte.
11526
11527 * xdisp.c (display_mode_element): Move the places where
11528 bytepos, charpos, this, and lisp_string are set.
11529 Use lisp_string to set bytepos.
11530
11531 * xdisp.c (redisplay_internal):
11532 Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
11533
11534 * xdisp.c (display_mode_element): Merge properties specified with
11535 :propertize onto those that come with the string.
11536
11537 2002-03-03 Eli Zaretskii <eliz@is.elta.co.il>
11538
11539 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
11540 automatic-hscrolling. Users changed.
11541 <hscroll-margin>: Renamed from automatic-hscroll-margin.
11542 Users changed.
11543 <hscroll-step>: Renamed from automatic-hscroll-step. Users changed.
11544
11545 2002-03-02 Eli Zaretskii <eliz@is.elta.co.il>
11546
11547 * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
11548
11549 2002-03-02 Kim F. Storm <storm@cua.dk>
11550
11551 * window.c (Fminibuffer_selected_window): New function.
11552 (syms_of_window): Defsubr it.
11553
11554 2002-03-01 Kim F. Storm <storm@cua.dk>
11555
11556 * window.h (struct window): New member phys_cursor_width.
11557
11558 * window.c (make_window, replace_window): Init phys_cursor_width.
11559
11560 * xterm.c (x_display_and_set_cursor): Blink box cursor using
11561 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
11562
11563 * w32term.c (x_display_and_set_cursor): Blink box cursor using
11564 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
11565
11566 * lisp.h (GCPRO6): New macro.
11567
11568 * process.c (Fopen_network_stream): Use GCPRO6.
11569
11570 2002-03-01 Kim F. Storm <storm@cua.dk>
11571
11572 * process.c (Qconnect, Qfailed): New variables.
11573 (syms_of_process): Intern and staticpro them.
11574 (Fprocess_status): Document connect and failed return values.
11575 [NON_BLOCKING_CONNECT]: New conditional.
11576 (connect_wait_mask, num_pending_connects): New variables.
11577 (status_message): Convert Qfailed status.
11578 (Fopen_network_stream): Added support for non-blocking connect.
11579 New optional args: filter, sentinel, non_blocking. Doc updated.
11580 [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]: Merged common code.
11581 (deactivate_process): Handle pending non-blocking connect.
11582 (wait_reading_process_input): Poll for status of non-blocking
11583 connects. Exec sentinel directly when connect succeeds.
11584 (status_notify): Don't read process output if not yet connected.
11585
11586 2002-02-28 Kim F. Storm <storm@cua.dk>
11587
11588 * window.c: (minibuf_selected_window): Renamed from
11589 Vminibuf_selected_window. Users changed.
11590 (syms_of_window): Staticpro it.
11591
11592 2002-02-26 Kim F. Storm <storm@cua.dk>
11593
11594 The following changes add a new Vminibuf_selected_window variable
11595 which is similar to Vminibuf_scroll_window, but which is only set
11596 on entry to the minibuffer (from a non-minibuffer window):
11597
11598 * window.c: (Vminibuf_selected_window): New variable.
11599 (struct save_window_data): New member minibuf_selected_window.
11600 (Fset_window_configuration): Restore Vminibuf_selected_window.
11601 (Fcurrent_window_configuration): Save Vminibuf_selected_window.
11602 Set minibuf_scroll_window member to nil if minibuf_level is 0.
11603 (compare_window_configurations): Compare minibuf_selected_window.
11604
11605 * window.h: (Vminibuf_selected_window): Declare extern.
11606
11607 * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
11608 entry to minibuffer or on entry from a non-minibuffer window.
11609
11610 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
11611 Vminibuf_selected_window instead of Vminibuf_scroll_window.
11612
11613 * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
11614 instead of Vminibuf_scroll_window when deciding in which window
11615 the region should be highlighted. Consequently, the region remains
11616 highlighteded even when a completion buffer is also displayed.
11617
11618 2002-02-26 Eli Zaretskii <eliz@is.elta.co.il>
11619
11620 * fileio.c (Fsubstitute_in_file_name): Fix the change from 2002-02-08.
11621
11622 * xselect.c (Qcompound_text_with_extensions): Renamed from
11623 Qcompound_text_no_extensions.
11624 (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
11625
11626 2002-02-26 Juanma Barranquero <lektu@terra.es>
11627
11628 * w32proc.c (syms_of_ntproc): Doc fix.
11629
11630 2002-02-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11631
11632 * intervals.h: Include "dispextern.h" unconditionally.
11633
11634 2002-02-24 Jason Rumney <jasonr@gnu.org>
11635
11636 * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
11637 and disp-table.elc.
11638 (lisp): Add emacs-lisp/backquote.elc.
11639
11640 2002-02-24 Kim F. Storm <storm@cua.dk>
11641
11642 * keymap.c (Flookup_key): Fixed problem in 2001-12-28 patch:
11643 The validation of the event type was too strict as it didn't
11644 allow string events; buffer names are used in bindings for
11645 menu-bar-select-buffer (see `menu-bar-update-buffers').
11646
11647 2002-02-23 Kim F. Storm <storm@cua.dk>
11648
11649 The following changes rework my patch of 2002-02-06 which
11650 added command remapping by entering the commands directly into
11651 the keymaps. Now, command remapping uses an explicit `remap'
11652 prefix in the keymaps, i.e. [remap COMMAND].
11653
11654 * keymap.c (Qremap, remap_command_vector): New variables.
11655 (is_command_symbol): Removed function.
11656 (Fdefine_key): No longer accept a symbol for KEY.
11657 Added validation of [remap COMMAND] argument for KEY.
11658 The DEF is no longer required to be a symbol when remapping a command.
11659 (Fremap_command): New function to remap command through keymaps.
11660 (Flookup_key): Perform command remapping initiated by
11661 Fremap_command directly for speed.
11662 (Fkey_binding): Use Fremap_command for command remapping.
11663 (where_is_internal): Handle new command remapping representation.
11664 (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
11665 staticpro them. Defsubr Fremap_command.
11666
11667 * keymap.h (Fremap_command): Declare extern.
11668 (is_command_symbol): Remove extern.
11669
11670 * keyboard.c (command_loop_1): Use Fremap_command for command
11671 remapping; now try command remapping for all symbols.
11672
11673 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
11674
11675 * coding.h (run_pre_post_conversion_on_str): Add prototype.
11676
11677 2002-02-23 Jason Rumney <jasonr@gnu.org>
11678
11679 * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
11680 on the string before encoding it.
11681 (Fw32_get_clipboard_data): Run post-read-conversion on the string
11682 after decoding it.
11683
11684 * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
11685
11686 2002-02-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11687
11688 * w32term.c (enter_timestamp): Remove unused static variable to
11689 prevent warning.
11690
11691 * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
11692
11693 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
11694
11695 * w16select.c (Fw16_get_clipboard_data): Fix last change.
11696
11697 * xselect.c (selection_data_to_lisp_data): Fix last change.
11698
11699 2002-02-22 Jason Rumney <jasonr@gnu.org>
11700
11701 * w32term.h (struct w32_output): New member menu_command_in_progress.
11702
11703 * w32menu.c (menubar_selection_callback): Free the menu and
11704 clear the menu_command_in_progress flag.
11705
11706 * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
11707 (menu_free_timer): New variable.
11708 (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
11709 (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
11710 <WM_EXITMENULOOP>: Delay before freeing menu. Do nothing if a
11711 menu command is in progress.
11712 <WM_COMMAND>: Set the menu_command_in_progress flag.
11713 Kill any menu_free_timer that is running.
11714
11715 * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
11716 Call ExtTextOutA rather than ExtTextOut.
11717
11718 2002-02-22 Eli Zaretskii <eliz@gnu.org>
11719
11720 * puresize.h (BASE_PURESIZE): Increase to 755000.
11721
11722 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
11723
11724 * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
11725 on the string before encoding it.
11726 (Fw16_get_clipboard_data): Run post-read-conversion on the string
11727 after decoding it.
11728
11729 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
11730
11731 Support for ICCCM Extended Segments in X selections:
11732
11733 * xselect.c <Qcompound_text_no_extensions>: New variable.
11734 (syms_of_xselect): Intern and staticpro it.
11735 (selection_data_to_lisp_data): Run post-read-conversion on decoded
11736 selection text.
11737 (lisp_data_to_selection_data): If next-selection-coding-system is
11738 compound-text-no-extensions, set the type of selection to be
11739 compound-text.
11740
11741 * xterm.h (x_encode_text): Update prototype.
11742
11743 * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
11744 callers changed. If SELECTIONP is non-zero, run the
11745 pre-write-conversion function before encoding the selection text.
11746
11747 2002-02-21 Kim F. Storm <storm@cua.dk>
11748
11749 * frame.c (syms_of_frame): Change mouse-highlight default to t.
11750
11751 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
11752 Correct composing of language-change event.
11753
11754 2002-02-20 Kim F. Storm <storm@cua.dk>
11755
11756 * keyboard.c (menu_bar_items): Don't include keymap or local-map
11757 bindings at PT when building menu (the menu is not updated often
11758 enough for this to work reliable).
11759 (tool_bar_items): Likewise.
11760 (current_active_maps): Removed unused (and buggy) function.
11761
11762 2002-02-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11763
11764 * xfns.c (gif_load): Use correct width and height for GIF images.
11765
11766 2002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
11767
11768 * floatfns.c (Fatan): Accept an optional second arg and call
11769 atan2 if passed 2 args.
11770
11771 2002-02-18 Jason Rumney <jasonr@gnu.org>
11772
11773 * w32term.c (glyph_rect): Determine the row and glyph more precisely.
11774
11775 2002-02-17 Jason Rumney <jasonr@gnu.org>
11776
11777 * w32term.c (x_autoselect_window_p): New variable.
11778 (syms_of_w32term): DEFVAR_BOOL and initialize it.
11779 (note_mouse_movement): Use it.
11780
11781 * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
11782
11783 * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
11784
11785 * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
11786 New variables.
11787 (syms_of_w32fns): Intern and staticpro them.
11788 (x_frame_parms) <"fullscreen">: New parameter.
11789 (x_fullscreen_move, x_set_fullscreen): New functions.
11790 (x_set_frame_parameters): Support Qfullscreen.
11791 (x_real_positions): Save x/y_pixels_diff frame params.
11792 (x_figure_window_size): Support full-screen frames.
11793 (Fx_create_frame): Default the fullscreen parameter.
11794
11795 * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
11796 (x_fullscreen_adjust): New functions.
11797 (w32_read_socket) <WM_WINDOWPOSCHANGED>: Don't resize to
11798 fullscreen. Call x_check_fullscreen_move, and set the
11799 want_fullscreen member of output_data.w32
11800 <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
11801
11802 * w32term.h: New enum for FULLSCREEN_* constants.
11803 (struct w32_output): New members want_fullscreen, x_pixels_diff,
11804 y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
11805 (x-fullscreen-adjust): New prototype.
11806
11807 2002-02-17 Kim F. Storm <storm@cua.dk>
11808
11809 * frame.c: (Vmouse_highlight): New variable.
11810 (syms_of_frame): DEFVAR_LISP it.
11811
11812 * frame.h: (Vmouse_highlight): Declare extern.
11813
11814 * xterm.h (struct x_display_info): Add mouse_face_hidden.
11815
11816 * xterm.c (disable_mouse_highlight): Removed variable.
11817 (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
11818 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
11819 (XTread_socket): Turn mouse_face_hidden off after mouse movement,
11820 and on after keyboard input.
11821 (x_term_init): Initialize mouse_face_hidden.
11822
11823 * msdos.h (struct display_info): Add mouse_face_hidden.
11824
11825 * msdos.c (disable_mouse_highlight): Removed variable.
11826 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
11827 (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
11828 (internal_terminal_init): Initialize mouse_face_hidden.
11829 (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
11830 and on after keyboard input.
11831
11832 * w32term.h (struct w32_display_info): Add mouse_face_hidden.
11833
11834 * w32term.c (disable_mouse_highlight): Removed variable.
11835 (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
11836 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
11837 (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
11838 and on after keyboard input.
11839 (w32_initialize_display_info): Initialize mouse_face_hidden.
11840
11841 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
11842
11843 * msdos.c (last_mouse_window): New variable.
11844 (dos_rawgetc): Fix last change--if the mouse is in the same window
11845 as recorded in last_mouse_window, don't select this window.
11846
11847 * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
11848
11849 * msdos.c (x_autoselect_window_p): New variable.
11850 (syms_of_msdos): Defvar it.
11851 (dos_rawgetc): If x_autoselect_window_p is set, select the window in
11852 which the last mouse movement occured, unless it is already selected.
11853
11854 * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
11855 New variables.
11856 (syms_of_xdisp): DEVFAR them.
11857 (hscroll_window_tree): Use automatic_hscroll_margin and
11858 Vautomatic_hscroll_step to compute the amount of window scrolling.
11859
11860 2002-02-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11861
11862 * xterm.c (x-autoselect-window): New variable.
11863 (note_mouse_movement): Use it.
11864
11865 * keyboard.c: Do not include "systime.h" twice.
11866
11867 2002-02-15 Andreas Schwab <schwab@suse.de>
11868
11869 * puresize.h (BASE_PURESIZE): Increase to 9/5.
11870
11871 * alloc.c (NSTATICS): Increase to 1280.
11872
11873 2002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
11874
11875 * alloc.c (NSTATICS): Bump to 1026.
11876
11877 * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
11878 (Vx_super_keysym): New variables.
11879 (syms_of_xterm): DEFVAR_LISP them.
11880 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
11881 variables to determine which keys to use for the various modifiers.
11882
11883 2002-02-13 Kim F. Storm <storm@cua.dk>
11884
11885 * window.c: (Vmode_line_in_non_selected_windows): Removed.
11886 (mode_line_in_non_selected_windows): New variable.
11887 (syms_of_window): DEFVAR_BOOL it.
11888
11889 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
11890 Use mode_line_in_non_selected_windows.
11891 (mode_line_in_non_selected_windows): Declare extern.
11892 (Vmode_line_in_non_selected_windows): Removed extern.
11893
11894 2002-02-13 Richard M. Stallman <rms@gnu.org>
11895
11896 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
11897 (Fthis_single_command_keys, Fthis_single_command_raw_keys)
11898 (Fclear_this_command_keys): Doc fixes.
11899
11900 * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
11901 (update_face_from_frame_parameter): Increment face_change_count
11902 and windows_or_buffers_changed to force redisplay using changed faces.
11903
11904 * xdisp.c (QCpropertize): New variable.
11905 (mode_line_proptrans_alist): New variable.
11906 (display_mode_element): New arg PROPS; all calls changed.
11907 Implement this, for strings.
11908 Handle literal output of strings by sharing the
11909 main-line code for strings, using local var `literal'.
11910 Handle :propertize feature.
11911 (syms_of_xdisp): Initialze and staticpro QCpropertize and
11912 mode_line_proptrans_alist.
11913
11914 2002-02-11 Kim F. Storm <storm@cua.dk>
11915
11916 * window.c: (Vmode_line_in_non_selected_windows): New variable.
11917 (syms_of_window): DEFVAR_LISP it.
11918
11919 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
11920 (CURRENT_MODE_LINE_FACE_ID): Use it.
11921 (Vmode_line_in_non_selected_windows): Declare extern.
11922
11923 * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
11924 to get mode line face.
11925
11926 2002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
11927
11928 * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
11929 variables; cus-start.el doesn't need them anymore.
11930
11931 2002-02-09 Kim F. Storm <storm@cua.dk>
11932
11933 * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
11934 reduction. This fixes a display problem where stray newlines were
11935 inserted in the window (corrected by C-l). Clarified code (IMHO).
11936
11937 2002-02-09 Eli Zaretskii <eliz@is.elta.co.il>
11938
11939 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
11940
11941 * xdisp.c (display_mode_lines): Fix last change.
11942
11943 2002-02-09 Jason Rumney <jasonr@gnu.org>
11944
11945 * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
11946 match each other.
11947 (w32_load_system_font): Prevent Cleartype fonts from loading.
11948 (Fx_show_tip): Ensure tip frames are above other topmost windows.
11949
11950 2002-02-09 Kim F. Storm <storm@cua.dk>
11951
11952 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
11953 (CURRENT_MODE_LINE_HEIGHT): Use it.
11954 (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
11955
11956 * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
11957 (pos_visible_p, handle_face_prop): Likewise.
11958 (display_mode_lines): Likewise, but for the real selected window.
11959 (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
11960
11961 * xfaces.c (Qmode_line_inactive): New face variable for mode-line
11962 in non-selected windows.
11963 (realize_basic_faces): Realize it.
11964 (syms_of_term): Intern and staticpro it.
11965
11966 2002-02-08 Kim F. Storm <storm@cua.dk>
11967
11968 * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
11969 Changed mail addresses to emacs-devel@gnu.org.
11970
11971 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
11972
11973 * fileio.c (Fsubstitute_in_file_name): If the file name includes
11974 ~user, and there's no such user, don't discard everything before ~user.
11975
11976 * floatfns.c (Fround): Doc fix.
11977
11978 2002-02-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11979
11980 * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
11981
11982 2002-02-07 Stefan Monnier <monnier@cs.yale.edu>
11983
11984 * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
11985
11986 2002-02-07 Kim F. Storm <storm@cua.dk>
11987
11988 * keymap.c (where_is_internal): Only check whether definition is
11989 remapped if it fulfills is_command_symbol.
11990
11991 2002-02-07 Andreas Schwab <schwab@suse.de>
11992
11993 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
11994
11995 * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
11996
11997 2002-02-06 Kim F. Storm <storm@cua.dk>
11998
11999 * keymap.c (Fdefine_key): Allow symbol as KEY argument for
12000 defining command remapping. Doc updated.
12001 (Flookup_key): Remap command through keymap if KEY is a symbol.
12002 (is_command_symbol): New function.
12003 (Fkey_binding): Use it. New optional argument NO-REMAP.
12004 Doc updated. Callers changed. Perform command remapping via
12005 recursive call unless that arg is non-nil.
12006 (where_is_internal): New argument no_remap. Callers changed.
12007 Call recursively to find original key bindings for a remapped
12008 comand unless that arg is non-nil.
12009 (Fwhere_is_internal): New optional argument NO-REMAP.
12010 Doc updated. Callers changed. Pass arg to where_is_internal.
12011
12012 * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
12013 (is_command_symbol): Added prototype.
12014
12015 * keyboard.c (Vthis_original_command): New variable.
12016 (syms_of_keyboard): DEFVAR_LISP it.
12017 (command_loop_1): Set it, and perform command remapping.
12018
12019 2002-02-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12020
12021 * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
12022
12023 2002-02-06 Jason Rumney <jasonr@gnu.org>
12024
12025 * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
12026
12027 2002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
12028
12029 * charset.c (get_charset_id): Use if-else instead of ?:.
12030
12031 2002-02-06 Richard M. Stallman <rms@gnu.org>
12032
12033 * filelock.c (S_ISLNK): Define if not defined.
12034
12035 2002-02-03 Richard M. Stallman <rms@gnu.org>
12036
12037 * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
12038
12039 * lread.c (read1): Redesign strategy for force_multibyte and
12040 force_singlebyte. Now is_multibyte records whether read_buffer
12041 is multibyte. Encountering any multibyte character makes it so.
12042
12043 2002-02-02 Stefan Monnier <monnier@cs.yale.edu>
12044
12045 * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
12046 with the same sequence, map that sequence to f10 rather than f0.
12047
12048 2002-02-03 Andreas Schwab <schwab@suse.de>
12049
12050 * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
12051 latter never being defined on GNU/Linux.
12052
12053 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
12054
12055 * xfaces.c (realize_default_face): Don't set the weight and slant of
12056 the default face to Qnormal, unless these attributes are unspecified.
12057
12058 2002-02-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12059
12060 * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
12061 Call cancel_hourglass unconditionally.
12062
12063 * eval.c (Fsignal): Remove duplicated declaration of
12064 the variable `display_hourglass_p'.
12065
12066 2002-01-31 Richard M. Stallman <rms@gnu.org>
12067
12068 * editfns.c (region_limit): Nicer error message.
12069
12070 * coding.c (decode_composition_emacs_mule):
12071 Give up if NCOMPONENT gets too large to index `component'.
12072
12073 * callint.c (check_mark): New arg to specify clearer error message.
12074 Callers changed.
12075
12076 2002-01-27 Richard M. Stallman <rms@gnu.org>
12077
12078 * minibuf.c (Fcompleting_read): Doc fix.
12079
12080 2002-01-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12081
12082 * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
12083 (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
12084 Fix doc-strings.
12085
12086 2002-01-26 Richard M. Stallman <rms@gnu.org>
12087
12088 * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
12089
12090 * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
12091 and scroll_up_aggressively.
12092
12093 2002-01-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12094
12095 * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
12096
12097 2002-01-25 Stefan Monnier <monnier@cs.yale.edu>
12098
12099 * textprop.c (Fnext_property_change, Fnext_single_property_change)
12100 (Fprevious_property_change, Fprevious_single_property_change):
12101 Stay within the narrowed-buffer boundaries.
12102
12103 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
12104
12105 * term.c (Ftty_display_color_cells): New function.
12106 (syms_of_term): Defsubr it.
12107 (Ftty_display_color_cells, Ftty_display_color_p): Change the
12108 argument name to DISPLAY. Doc fix.
12109
12110 * dispextern.h: Add prototype for set_tty_color_mode and
12111 tty_setup_colors.
12112
12113 2002-01-24 Jason Rumney <jasonr@gnu.org>
12114
12115 * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
12116 If region left to draw is not what was expected, mark the frame as
12117 garbaged.
12118
12119 * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
12120 Combine the regions returned by BeginPaint and GetUpdateRect.
12121
12122 2002-01-23 Jason Rumney <jasonr@gnu.org>
12123
12124 * w32term.c (x_update_window_begin): Only hide caret if
12125 w32_use_visible_system_caret is set.
12126 (x_update_window_end): Only show caret if
12127 w32_use_visible_system_caret is set.
12128 (syms_of_w32term): Handle SystemParametersInfo call failing.
12129
12130 * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
12131
12132 2002-01-22 Richard M. Stallman <rms@gnu.org>
12133
12134 * unexelf.c (unexec): Define n so as to cause compilation error
12135 for the code where people have often written n instead of nn.
12136
12137 * .gdbinit (hookpost-run): Defined.
12138
12139 2002-01-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12140
12141 * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
12142
12143 2002-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12144
12145 * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
12146 if fullscreen is being set.
12147
12148 2002-01-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12149
12150 * minibuf.c (Fminibuffer_contents)
12151 (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
12152 (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
12153
12154 2002-01-21 Richard M. Stallman <rms@gnu.org>
12155
12156 * window.c (check_frame_size): Fix minimum height calculation.
12157
12158 2002-01-20 Ken Raeburn <raeburn@gnu.org>
12159
12160 * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
12161 height before comparison.
12162 (WINDOW_WANTS_HEADER_LINE_P): Likewise.
12163
12164 2002-01-20 Jason Rumney <jasonr@gnu.org>
12165
12166 * w32term.c (w32_system_caret_width): Remove.
12167 (w32_use_visible_system_caret): New user flag.
12168 (syms_of_w32term): DEFVAR_BOOL it. Initialize based on whether
12169 Windows reports a screen reader running.
12170 (x_update_window_begin): Hide the system caret.
12171 (x_update_window_end): Show the system caret.
12172 (x_display_and_set_cursor): Don't draw a cursor when
12173 w32_use_visible_system_caret is set. Do not adjust width.
12174
12175 * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
12176 (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
12177 <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
12178 the user requests it. Use system default width when creating.
12179 <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
12180
12181 * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
12182 New window messages.
12183
12184 2002-01-20 Richard M. Stallman <rms@gnu.org>
12185
12186 * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
12187
12188 2002-01-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12189
12190 * doprnt.c (doprnt1): Fix typos in error call.
12191
12192 2002-01-20 Eli Zaretskii <eliz@is.elta.co.il>
12193
12194 * unexelf.c (unexec) [__sgi]: Support the .got sections.
12195
12196 2002-01-20 Jason Rumney <jasonr@gnu.org>
12197
12198 * w32term.c (w32_native_per_char_metric): Don't trust the metrics
12199 that Windows returns. If a double check fails, try to guess how
12200 ExtTextOut is going to act.
12201
12202 * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
12203 in place of stricmp.
12204 (w32_list_synthesized_fonts): Removed.
12205 (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
12206 (struct enumfont_t): New element; list.
12207 (enum_font_cb2): List all style and charset variations of a font.
12208 (Fw32_select_font): New optional argument; include_proportional.
12209 Exclude vertical fonts. Exclude proportional fonts unless
12210 include_proportional is non-nil.
12211 (w32_enable_synthesized_fonts): Change to a boolean.
12212 (Fw32_send_sys_command): Doc fix.
12213
12214 2002-01-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12215
12216 * dispnew.c (update_frame): Move the variable `tem' to the block
12217 where it is used.
12218
12219 2002-01-19 Jason Rumney <jasonr@gnu.org>
12220
12221 * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
12222 call to face-set-after-frame-default.
12223
12224 2002-01-18 Richard M. Stallman <rms@gnu.org>
12225
12226 * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
12227 (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
12228
12229 2002-01-17 Richard M. Stallman <rms@gnu.org>
12230
12231 * window.c (enlarge_window): When exceeding size of parent,
12232 directly delete all the siblings instead of trying to resize it.
12233
12234 2002-01-17 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12235
12236 * term.c (set_tty_color_mode): Remove unused variable `tem'.
12237
12238 2002-01-16 Henrik Enberg <henrik@enberg.org>
12239
12240 * lread.c (init_lread): Move the installed-lisp dirs later in the path.
12241
12242 2002-01-16 Kim F. Storm <storm@cua.dk>
12243
12244 * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
12245 is invisible. This can happen if cursor is on top line of a
12246 window, and we switch to a buffer with a header line.
12247
12248 * w32term.c (x_erase_phys_cursor): Ditto.
12249
12250 2002-01-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12251
12252 * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
12253 `dont_resize' only when used.
12254
12255 * xdisp.c: Remove forgotten extern declaration of `Qimage'.
12256
12257 2002-01-15 Eli Zaretskii <eliz@is.elta.co.il>
12258
12259 * xdisp.c (display_mode_element): When computing charpos, depend
12260 on multibyteness of elt, not the text in field.
12261
12262 2002-01-15 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12263
12264 * buffer.c (Fkill_all_local_variables):
12265 Increment `update_mode_lines' only once.
12266
12267 2002-01-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12268
12269 * lisp.h (adjust_after_replace_noundo)
12270 (Fupdate_coding_systems_internal): Add prototypes.
12271
12272 * sound.c (Fplay_sound): Initialize header_size also for :data case.
12273
12274 2002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
12275
12276 Support for the --color command-line argument and tty-color-mode
12277 frame parameter:
12278
12279 * term.c (tty_default_color_capabilities, tty_setup_colors)
12280 (set_tty_color_mode): New functions.
12281 (term_init): Call tty_default_color_capabilities.
12282 (Qtty_color_mode_alist): New variable.
12283 (syms_of_term): Intern and staticpro it.
12284
12285 * frame.c (store_frame_param): Call set_tty_color_mode for termcap
12286 frames.
12287 (do_switch_frame): For termcap frames, switch the tty
12288 color mode as specified by the frame's parameters.
12289 (Qtty_color_mode): New variable.
12290 (syms_of_frame): Intern and staticpro it.
12291
12292 * emacs.c (USAGE2): Add the --color option.
12293 (standard_args): Ditto.
12294
12295 2002-01-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12296
12297 * xterm.h (struct x_output): New members want_fullscreen,
12298 x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
12299 y_pixels_outer_diff.
12300 New enum for FULLSCREEN_* constants.
12301 (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
12302 is NULL.
12303 (x_fullscreen_adjust): Add prototype.
12304
12305 * emacs.c (USAGE2): Add the new full-screen arguments.
12306 (standard_args): Ditto.
12307
12308 * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
12309 New variables.
12310 (syms_of_xfns): Intern and staticpro them.
12311 (x_frame_parms) <"fullscreen">: New parameter.
12312 (x_fullscreen_move, x_set_fullscreen): New functions.
12313 (x_set_frame_parameters): Support for Qfullscreen.
12314 (x_real_positions): More accurate computation of the frame position.
12315 (x_figure_window_size): Support full-screen frames.
12316 (Fx_create_frame): Default the fullscreen parameter.
12317
12318 * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
12319 (XTread_socket) <Expose>: Call x_check_fullscreen.
12320 <ConfigureNotify>: Don't resize to fullscreen.
12321 Call x_check_fullscreen_move, and set the want_fullscreen member of
12322 output_data.x.
12323
12324 2002-01-13 Jason Rumney <jasonr@gnu.org>
12325
12326 * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
12327 for mice with more than 3 buttons.
12328
12329 * w32term.c (parse_button): New parameter xbutton. Callers changed.
12330 (w32_read_socket): Handle new "XBUTTON" messages.
12331
12332 * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
12333 (syms_of_w32fns): DEFVAR_BOOL it.
12334 (w32_wnd_proc): Handle new "XBUTTON" messages.
12335
12336 2002-01-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12337
12338 * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
12339
12340 2002-01-13 Andreas Schwab <schwab@suse.de>
12341
12342 * xterm.c (x_load_font): Never set fonts_changed_p to zero.
12343
12344 2002-01-12 Andreas Schwab <schwab@suse.de>
12345
12346 * .gdbinit (xbuffer): Remove address operator since data is now a
12347 pointer.
12348
12349 2002-01-11 Richard M. Stallman <rms@gnu.org>
12350
12351 * insdel.c (adjust_after_replace_noundo): New function.
12352
12353 * coding.c (code_convert_region): Don't copy old text if undo disabled.
12354
12355 2002-01-09 Jason Rumney <jasonr@gnu.org>
12356
12357 * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
12358 when checking for multiple frames.
12359
12360 2002-01-08 Richard M. Stallman <rms@gnu.org>
12361
12362 * window.c (delete_window): Rewrite the code for changing the
12363 selected window to handle the case where WINDOW is not a leaf.
12364
12365 2002-01-07 Eli Zaretskii <eliz@is.elta.co.il>
12366
12367 * process.c (send_process): Set src_multibyte to 1 after the call
12368 top setup_coding_system, not before the call.
12369
12370 2002-01-07 Jason Rumney <jasonr@gnu.org>
12371
12372 * xmenu.c (set_frame_menubar, xmenu_show):
12373 (xdialog_show): Initialize wv->help to Qnil.
12374
12375 * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
12376 (w32_dialog_show): Initialize wv->help to Qnil.
12377
12378 2002-01-06 Jason Rumney <jasonr@gnu.org>
12379
12380 * xmenu.c (single_submenu): Initialize wv->help to Qnil.
12381
12382 * w32menu.c (w32_menu_display_help): Revert last change.
12383
12384 * xmenu.c (menu_highlight_callback): Revert last change.
12385
12386 2002-01-06 Andreas Schwab <schwab@suse.de>
12387
12388 * insdel.c (make_gap_larger): Make sure buffer size does not
12389 overflow range of int.
12390
12391 2002-01-05 Jason Rumney <jasonr@gnu.org>
12392
12393 * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
12394 OVERLAPS_P.
12395
12396 * w32menu.c (w32_menu_display_help): Hide any tooltip window.
12397
12398 * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
12399 to the left or to the right of the pointer, put it against
12400 the left screen edge.
12401 (x_frame_parms): Add missing braces around initializer.
12402
12403 * w32term.c (x_setup_relief_colors): Don't compute an image's
12404 background color if it doesn't have a Pixmap.
12405 (notice_overwritten_cursor): Don't depend on
12406 output_cursor and updated_area. Compare pixel coordinates with
12407 window's cursor pixel coordinates.
12408 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
12409 Call notice_overwritten_cursor with new arg list.
12410 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
12411 unconditionally.
12412 (x_draw_image_relief): Use predefined macro instead of
12413 constant when the value of `tool_bar_button_relief' is negative.
12414
12415 * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
12416
12417 2002-01-04 Richard M. Stallman <rms@gnu.org>
12418
12419 * xmenu.c (menu_highlight_callback): Hide any tooltip window.
12420
12421 2002-01-03 Richard M. Stallman <rms@gnu.org>
12422
12423 * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
12424 (Fkey_binding): Try the `keymap' property map first.
12425 (Fdescribe_buffer_bindings): Show `keymap' property bindings before
12426 minor mode bindings.
12427
12428 2002-01-03 Kim F. Storm <storm@cua.dk>
12429
12430 * keyboard.c (read_key_sequence): Fixed cast of submaps arg to bcopy.
12431
12432 2002-01-02 Richard M. Stallman <rms@gnu.org>
12433
12434 * keyboard.c (read_key_sequence): Handle the keymap property
12435 before minor mode maps.
12436
12437 * editfns.c (Fformat): Update thissize from field_width
12438 based on the actual width, in the string case.
12439
12440 2002-01-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12441
12442 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
12443 when used as truth value to prevent gcc warnings.
12444
12445 * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
12446 * w32proc.c: Include <config.h>.
12447
12448 2002-01-01 Andreas Schwab <schwab@suse.de>
12449
12450 * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
12451 not EMACS_INT, to make them compatible with DEFVAR_INT.
12452 * lisp.h (max_specpdl_size): Adjust declaration.
12453
12454 2002-01-01 Richard M. Stallman <rms@gnu.org>
12455
12456 * print.c (print_object): Test print_escape_nonascii only for
12457 unibyte strings.
12458 (PRINTPREPARE): Once again bind Qprint_escape_nonascii
12459 when outputting to a multibyte buffer.
12460
12461 2001-12-29 Richard M. Stallman <rms@gnu.org>
12462
12463 * print.c (print_object): In multibyte string, use hex escapes.
12464 Use octal only for unibyte strings.
12465 (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
12466
12467 * lread.c (read_escape): New arg BYTEREP for reporting whether
12468 escape forces unibyte or multibyte.
12469 (read1): When reading a string, take note of that info.
12470
12471 2001-12-29 Ken Raeburn <raeburn@gnu.org>
12472
12473 * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
12474 comparison to test lisp value returned by Fget.
12475
12476 2001-12-29 Richard M. Stallman <rms@gnu.org>
12477
12478 * lisp.h (max_specpdl_size): Add declaration.
12479
12480 * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
12481
12482 * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
12483 Handle modifier bits. Correct typo in error message.
12484
12485 2001-12-28 Richard M. Stallman <rms@gnu.org>
12486
12487 * abbrev.c: Use the plist of an abbrev for multiple params if nec.
12488 (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
12489 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
12490 Update calls to Fdefine_abbrev.
12491 (write_abbrev): Update for changed data format.
12492 Don't list "system" abbrevs.
12493 (Fexpand_abbrev): Update use count with new data format.
12494 (describe_abbrev): Update for changed data format.
12495 (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
12496
12497 * config.in (HAVE_MBSINIT): Add #undef.
12498
12499 * strftime.c (mbsinit): Define as no-op if not available.
12500
12501 * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
12502 (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
12503
12504 * keymap.c (Flookup_key): Error message if key has wrong data type.
12505 (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
12506 (exclude_key): New variable.
12507
12508 2001-12-28 Gerd Moellmann <gerd@gnu.org>
12509
12510 * xterm.c (x_setup_relief_colors): Don't compute an image's
12511 background color if it doesn't have a Pixmap.
12512
12513 * xterm.c (notice_overwritten_cursor): Don't depend on
12514 output_cursor and updated_area. Compare pixel coordinates with
12515 window's cursor pixel coordinates.
12516 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
12517 Call notice_overwritten_cursor with new arg list.
12518 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
12519 unconditionally.
12520
12521 * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
12522 height of the cursor line to the amount to scroll.
12523
12524 2001-12-27 Richard M. Stallman <rms@gnu.org>
12525
12526 * intervals.c (set_point_both): The position after an invisible,
12527 intangible character is not an acceptable stopping point.
12528
12529 2001-12-27 Ken Raeburn <raeburn@gnu.org>
12530
12531 * window.c (enlarge_window): In new preserve_before code, convert
12532 CURBEG from lisp object to integer before doing arithmetic.
12533
12534 2001-12-27 Richard M. Stallman <rms@gnu.org>
12535
12536 * bytecode.c (Fbyte_code): Undo previous change.
12537
12538 2001-12-26 Kim F. Storm <storm@cua.dk>
12539
12540 * keyboard.c (record_char): Ignore duplicate help-echo events only
12541 separated by mouse-movement. When tracking mouse, only record
12542 first and last mouse-movement event in same window.
12543 Don't record mouse-movement events in keyboard macros.
12544
12545 2001-12-25 Richard M. Stallman <rms@gnu.org>
12546
12547 * window.c (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
12548 (Fenlarge_window): New arg PRESERVE_BEFORE.
12549
12550 * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
12551 instead of Fstring_as_unibyte.
12552
12553 2001-12-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12554
12555 The following changes remove mocklisp support:
12556
12557 * mocklisp.h, mocklisp.c: Files removed.
12558
12559 * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
12560 `Qmocklisp' and `Qmocklisp_arguments'.
12561 Remove prototype of syms_of_mocklisp.
12562
12563 * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
12564
12565 * callint.c: Do not include mocklisp.h.
12566 (Fcall_interactively): Do not test for mocklisp case.
12567
12568 * eval.c: Remove variables `Qmocklisp_arguments',
12569 `Vmocklisp_arguments' and `Qmocklisp'. Remove prototype of ml_apply.
12570 (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
12571 Do not test for mocklisp case.
12572 (Fwhile): Remove unused variable `tem'.
12573 (syms_of_eval): Remove variable `moclisp-arguments'.
12574
12575 * data.c (wrong_type_argument): Remove mocklisp case.
12576
12577 * doc.c (Fdocumentation): Remove mocklisp case.
12578
12579 * emacs.c (main): Do not call syms_of_mocklisp.
12580
12581 2001-12-21 Richard M. Stallman <rms@gnu.org>
12582
12583 * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
12584 to the left or to the right of the pointer, put it against
12585 the left screen edge.
12586
12587 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
12588
12589 * Makefile.in (distclean): Remove .gdbinit if we are building
12590 outside the source tree.
12591
12592 2001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
12593
12594 * w32.c (emacs_root_dir): New function.
12595
12596 * msdos.c (emacs_root_dir): New function.
12597
12598 * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
12599 of the current drive as the fallback for default_directory.
12600
12601 * dired.c (file_name_completion): Run the elements of
12602 completion-ignored-extensions through ENCODE_FILE.
12603
12604 * lisp.h (scmp): Remove prototype, since it's now a static
12605 function private to dired.c.
12606
12607 2001-12-18 Richard M. Stallman <rms@gnu.org>
12608
12609 * dired.c (scmp): Function moved from minibuf.c.
12610 Delete multibyte handling--used only on encoded strings.
12611
12612 * minibuf.c (scmp): Function moved to dired.c.
12613
12614 * fns.c (merge): Add QUIT call.
12615
12616 2001-12-18 Dave Love <fx@gnu.org>
12617
12618 * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
12619 language/georgian.el.
12620
12621 2001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
12622
12623 * Makefile.in (lisp, shortlisp): Synchronize with changes to
12624 lisp/Makefile.in:DONTCOMPILE.
12625
12626 2001-12-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12627
12628 * xdisp.c (window_box_height): Do not return negative values.
12629 From Gerd Moellmann <gerd@gnu.org>.
12630
12631 * keyboard.c (head_table): Add missing braces around initializer.
12632
12633 * term.c (keys): Likewise.
12634
12635 * xfns.c (x_frame_parms, visual_classes): Likewise.
12636
12637 2001-12-17 Sam Steingold <sds@gnu.org>
12638
12639 * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
12640 patch (COMPOSING_P, not COMPOSING).
12641
12642 2001-12-17 Richard M. Stallman <rms@gnu.org>
12643
12644 * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
12645
12646 * coding.c (code_convert_region): Update coding->cmp_data->char_offset
12647 before calling decode_coding.
12648
12649 * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
12650
12651 * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
12652 instead of only for COMPOSITION_DISABLED.
12653
12654 2001-12-16 Richard M. Stallman <rms@gnu.org>
12655
12656 * alloc.c (pure_alloc): After overflow, allocate just a small block.
12657
12658 * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
12659
12660 * buffer.h (struct buffer): New field `display_error_modiff'.
12661 * buffer.c (reset_buffer): Initialize `display_error_modiff'.
12662
12663 * window.c (Frecenter): Clear display_error_modiff field.
12664
12665 * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
12666 Call redisplay_window, but not if display_error_modiff field says no.
12667 (redisplay_window_error): New function.
12668 (displayed_buffer): New variable.
12669 (redisplay_internal, redisplay_windows): Call the new functions
12670 instead of redisplay_window directly.
12671
12672 2001-12-15 Richard M. Stallman <rms@gnu.org>
12673
12674 * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
12675
12676 2001-12-14 Andrew Innes <andrewi@gnu.org>
12677
12678 * makefile.w32-in (EMACSLOADPATH): Define.
12679 ($(EMACS)): Run `list-load-path-shadows' after dumping Emacs.
12680 (bootstrap-temacs): Remove dependency on bootstrap-clean.
12681
12682 2001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
12683
12684 * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
12685 parameter have a numeric value all the time.
12686
12687 * w32fns.c (x_report_frame_params): Likewise.
12688
12689 2001-12-12 Richard M. Stallman <rms@gnu.org>
12690
12691 * fileio.c (Fwrite_region): Doc fix.
12692
12693 * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
12694 (redisplay_internal): Call clear_image_cache only for window terminals.
12695
12696 2001-12-12 Gerd Moellmann <gerd@gnu.org>
12697
12698 * xdisp.c (move_it_vertically_backward): Change heuristic
12699 for the case that we didn't move far enough initially.
12700
12701 * window.c (Frecenter): Simplify computation in the case of window
12702 system frames and ARG < 0; use window_box_height.
12703
12704 2001-12-11 Richard M. Stallman <rms@gnu.org>
12705
12706 * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
12707 * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
12708
12709 2001-12-11 Andrew Innes <andrewi@gnu.org>
12710
12711 * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
12712 arg is negative.
12713
12714 2001-12-11 Richard M. Stallman <rms@gnu.org>
12715
12716 * m/hp800.h: Split the __hpux conditional into the parts
12717 that are right for GNU/Linux too and the parts that are not.
12718 Use the former if GNU_LINUX.
12719 (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
12720
12721 * s/gnu-linux.h (GNU_LINUX): Defined.
12722
12723 2001-12-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12724
12725 * macros.c, msdos.c, w16select.c: Change doc-string comments to
12726 `new style' [w/`doc:' keyword].
12727
12728 2001-12-10 Jason Rumney <jasonr@gnu.org>
12729
12730 * w32menu.c (w32_free_submenu_strings): Clear menu item struct
12731 before using.
12732
12733 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12734
12735 * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
12736 keyword].
12737
12738 2001-12-09 Eli Zaretskii <eliz@is.elta.co.il>
12739
12740 * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
12741
12742 * s/hpux10.h (srand48): Don't undefine.
12743
12744 2001-12-09 Jason Rumney <jasonr@gnu.org>
12745
12746 * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
12747 Add comment to explain where the struct came from.
12748 (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
12749 (add_menu_item): Process pop-up menus first to avoid memory leak.
12750 (add_menu_item, w32_menu_display_help): Use `help' field as
12751 Lisp_Object.
12752 (w32_free_submenu_strings): Only free owner-drawn strings.
12753
12754 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12755
12756 * COPYING: Moved back.
12757
12758 * charset.c (char_to_string_1, translate_char, Fdefine_charset):
12759 Add parentheses around && within ||.
12760
12761 * indent.c (compute_motion): Likewise.
12762
12763 * intervals.c (merge_properties_sticky): Likewise.
12764
12765 * coding.c (setup_coding_system, shrink_encoding_region)
12766 (Fdecode_sjis_char): Likewise.
12767
12768 2001-12-07 Andreas Schwab <schwab@suse.de>
12769
12770 * xdisp.c (display_mode_element): Don't read past end of string if
12771 it ends with '%'.
12772
12773 * alloc.c (inhibit_garbage_collection): Don't exceed value an int
12774 can hold.
12775
12776 * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum):
12777 Rename from most_positive_fixnum and most_negative_fixnum, resp., and
12778 type changed to Lisp_Object.
12779 (syms_of_data): DEFVAR_LISP them.
12780
12781 2001-12-07 Richard M. Stallman <rms@gnu.org>
12782
12783 * callproc.c (init_callproc): Set Vdata_directory based on the source
12784 location whenever Emacs was run uninstalled.
12785
12786 2001-12-06 Paul Eggert <eggert@twinsun.com>
12787
12788 * config.in (HAVE_WORKING_VFORK): New #undefs.
12789 * process.c (create_process):
12790 Use HAVE_WORKING_VFORK, not HAVE_VFORK.
12791 * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
12792 * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
12793 * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
12794 * m/intel386.h (HAVE_VFORK): Likewise.
12795 * m/mips-siemens.h (HAVE_VFORK): Likewise.
12796 * m/mips.h (HAVE_VFORK): Likewise.
12797 * s/freebsd.h (vfork): Remove #define.
12798 * s/lynxos.h (HAVE_VFORK): Remove #undef.
12799 * s/usg5-4-2.h: Fix comment about vfork.
12800
12801 2001-12-06 Richard M. Stallman <rms@gnu.org>
12802
12803 * s/hpux10.h (random): Add undef.
12804 (HAVE_RANDOM): Define it just once.
12805
12806 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
12807
12808 * eval.c: Undo last change: the standard syntax is not wanted.
12809
12810 2001-12-06 Eli Zaretskii <eliz@is.elta.co.il>
12811
12812 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
12813 scroll bars of the frame before deleting the frame itself. If the
12814 frame has a widget, delete the frame with XtDestroyWidget, and do
12815 not call XDestroyWindow before that.
12816
12817 2001-12-06 Kim F. Storm <storm@cua.dk>
12818
12819 * xfns.c (x_report_frame_params): Return actual fringe widths.
12820
12821 * w32fns.c (x_report_frame_params): Return actual fringe widths.
12822
12823 2001-12-05 Andrew Innes <andrewi@gnu.org>
12824
12825 * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
12826 excessively large.
12827
12828 * insdel.c (make_gap_larger): New function.
12829 (make_gap_smaller): New function.
12830 (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]:
12831 Call make_gap_smaller if arg is negative.
12832
12833 2001-12-04 Stefan Monnier <monnier@cs.yale.edu>
12834
12835 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
12836 Pass a dummy argument when calling interrupt_signal.
12837 (parse_menu_item): Mark disabled items before checking for empty def.
12838 (read_char_minibuf_menu_prompt): Make safety more visible.
12839 (read_key_sequence): Add a `first_unbound' variable.
12840 Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
12841 unbound prefix as soon as we can detect it.
12842
12843 * doc.c (Fsnarf_documentation): Add prototype.
12844 (get_doc_string): Handle negative arguments.
12845 (Fdocumentation): Use AREF and ASIZE.
12846 Move the calls to get_doc_string to a single place.
12847 Don't confuse an interactive-spec for a docstring reference.
12848 (Fdocumentation_property): Take advantage of the fact that
12849 get_doc_string now ignores the sign of the docstring position.
12850
12851 * eval.c: Use standard syntax for usage in docstrings.
12852
12853 2001-12-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12854
12855 * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief' an option.
12856
12857 2001-12-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12858
12859 * xterm.c (x_draw_image_relief): Use predefined macro instead of
12860 constant when the value of `tool_bar_button_relief' is negative.
12861
12862 2001-12-02 Richard M. Stallman <rms@gnu.org>
12863
12864 * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
12865 (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
12866
12867 * fileio.c (read_non_regular): Delete Fsignal call.
12868
12869 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
12870
12871 * lisp.h (run_hook_list_with_args): Undo last change.
12872
12873 2001-12-01 Gerd Moellmann <gerd@gnu.org>
12874
12875 * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
12876
12877 2001-12-01 Jason Rumney <jasonr@gnu.org>
12878
12879 * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
12880
12881 * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
12882 [!WM_MOUSELEAVE]: Define.
12883
12884 * w32menu.c (current_popup_menu, get_menu_item_info):
12885 (set_menu_item_info): New vars.
12886 (set_frame_menubar): Doc fix clarifying GC interaction with menus.
12887 (w32_menu_show): Set current_popup_menu.
12888 (add_menu_item): Allocate new strings for owner-drawn menu items
12889 and help strings.
12890 Use owner-draw for disabled menu items again.
12891 (w32_menu_display_help): Ignore owner-drawn items and popup menus.
12892 (w32_free_submenu_strings, w32_free_menu_strings): New functions.
12893
12894 * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
12895 (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
12896 <WM_EXITMENULOOP>: Free menu strings.
12897 <WM_MOUSELEAVE>: Stop tracking mouse.
12898 (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
12899
12900 * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
12901 and mouse face.
12902
12903 2001-12-01 Kim F. Storm <storm@cua.dk>
12904
12905 The following changes add left-fringe and right-fringe
12906 frame parameters to adjust fringe widths, or remove one or
12907 both fringes.
12908
12909 * frame.h (struct frame): Remove trunc_area_pixel_width and
12910 trunc_area_cols fields.
12911 (Qleft_fringe, Qright_fringe): Declare.
12912 (FRAME_RIGHT_FRINGE_WIDTH): New macro.
12913
12914 * frame.c (Qleft_fringe, Qright_fringe): New vars.
12915 (syms_of_frame): Initialize them.
12916
12917 * window.c (coordinates_in_window): Handle separate left and right
12918 fringe widths.
12919
12920 * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
12921 and fringe_cols fields.
12922 (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
12923 (FRAME_X_FRINGE_COLS): Use fringe_cols field.
12924 (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
12925 (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
12926 (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
12927 (x_compute_fringe_widths): Add prototype.
12928
12929 * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
12930 fill fringe evenly with small dashes.
12931 (x_draw_fringe_bitmap): Clear background if necessary. Align and
12932 clip the new ZV bitmap to avoid jitter between rows.
12933 (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
12934 background. Don't draw fringe bitmaps if fringe width is zero.
12935 (x_compute_fringe_widths): New function.
12936 (x_new_font, x_set_window_size_1): Use it.
12937
12938 * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
12939 (x_set_frame_parameters): Process `font' parameter before other
12940 parameters as fringe widths depend on it.
12941 (x_set_fringe_width): New function.
12942 (x_figure_window_size): Use x_compute_fringe_widths.
12943 (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
12944 parameters.
12945
12946 * widget.c (set_frame_size): Use x_compute_fringe_widths.
12947 (EmacsFrameSetCharSize): Ditto.
12948
12949 * w32term.h: Merged changes from xterm.h.
12950 * w32term.c: Merged changes from xterm.c.
12951 * w32fns.c: Merged changes from xfns.c.
12952
12953 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12954
12955 * COPYING: Removed.
12956
12957 2001-11-29 Dave Love <fx@gnu.org>
12958
12959 * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
12960 extra extra slot.
12961 (detect_coding_mask): Fix call of detect_coding_iso2022.
12962
12963 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
12964
12965 * fileio.c (file-name-coding-system)
12966 (default-file-name-coding-system): Doc fix (links to referenced
12967 variables added).
12968
12969 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
12970
12971 * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
12972 Add dummy uses of gcproN variables.
12973
12974 * category.c (describe_category, describe_category_1)
12975 (Fdescribe_categories): Remove. (Moved to lisp/help-fns.el.)
12976 (syms_of_category): Don't defsubr Sdescribe_categories.
12977
12978 2001-11-28 Richard M. Stallman <rms@gnu.org>
12979
12980 * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
12981
12982 * Makefile.in (lispdir): New variable, referring to build dir.
12983 (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
12984
12985 2001-11-28 Andrew Innes <andrewi@gnu.org>
12986
12987 * w32menu.c (w32_menu_display_help): Actually add the new argument
12988 OWNER.
12989
12990 2001-11-28 Jason Rumney <jasonr@gnu.org>
12991
12992 * w32menu.c (add_menu_item): Do not use owner-draw for disabled
12993 menu items. From David Ponce <dponce@wanadoo.fr>.
12994 (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
12995 conditionally.
12996 (w32_menu_display_help): New argument OWNER. Rewritten to store a
12997 help event in the owner frame's keyboard buffer.
12998
12999 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
13000 (Fx_show_tip): Don't subtract last width from row width.
13001
13002 * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
13003 (w32_read_socket): Use EQ to compare frames.
13004
13005 2001-11-28 Gerd Moellmann <gerd@gnu.org>
13006
13007 * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
13008 OVERLAPS_P.
13009
13010 2001-11-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13011
13012 * xdisp.c (message_dolog): Remove unused variables `gcpro2',
13013 `gcpro3' and `gcpro4'.
13014
13015 * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
13016
13017 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
13018
13019 * ccl.c: Use AREF and ASIZE.
13020
13021 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
13022
13023 * lisp.h (run_hook_list_with_args): Remove.
13024 (LIST_END_P): Fix call to wrong_type_argument.
13025 (make_fixnum_or_float): Use EMACS_INT rather than int.
13026
13027 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
13028
13029 * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
13030 (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
13031
13032 * eval.c: Use AREF and ASIZE.
13033 (Ffetch_bytecode): Add the file name to the error message.
13034
13035 * fileio.c (Ffind_file_name_handler): Give precedence to handlers
13036 which match the end of the file-name.
13037 (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
13038 is not a valid env var, but leave it as is instead.
13039
13040 * keymap.c (access_keymap): Handle t bindings like nil bindings.
13041 Make nil bindings in char-tables transparent.
13042 (store_in_keymap): Turn a nil binding into a t binding for char-tables.
13043
13044 2001-11-26 Richard M. Stallman <rms@gnu.org>
13045
13046 * textprop.c (set_text_properties_1): Allow START, END in either order.
13047 Do nothing if range is empty.
13048
13049 * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
13050
13051 * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
13052 (clean): Not here.
13053
13054 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
13055
13056 * textprop.c (set_text_properties_1): Clearly mark that the
13057 interval should not be empty.
13058
13059 * intervals.c (graft_intervals_into_buffer):
13060 Don't call set_text_properties_1 on an empty interval.
13061
13062 2001-11-25 Richard M. Stallman <rms@gnu.org>
13063
13064 * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
13065
13066 * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
13067 don't lose the data in it.
13068
13069 2001-11-25 Juanma Barranquero <lektu@terra.es>
13070
13071 * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
13072
13073 * buffer.c (Fkill_buffer): Likewise.
13074
13075 * print.c (temp_output_buffer_setup): Likewise.
13076
13077 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
13078
13079 * xfaces.c (merge_face_heights): Coerce back to int explicitly.
13080
13081 2001-11-25 Eli Zaretskii <eliz@is.elta.co.il>
13082
13083 * window.c (Fset_window_vscroll): Doc fix. From Kalle Olavi
13084 Niemitalo <kon@iki.fi>.
13085
13086 2001-11-25 Jason Rumney <jasonr@gnu.org>
13087
13088 * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
13089
13090 * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
13091 (Fx_show_tip): Block input during frame creation.
13092 (Fx_show_tip, Fx_hide_tip): Enable.
13093
13094 2001-11-24 Richard M. Stallman <rms@gnu.org>
13095
13096 * lread.c (Fload): Detect recursive load error for more than 3
13097 nestings of the same file.
13098 (Vrecursive_load_depth_limit): Variable deleted.
13099 (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
13100
13101 2001-11-24 Jason Rumney <jasonr@gnu.org>
13102
13103 * xfns.c (compute_tip_xy): Initialize root_x and root_y from
13104 mouse position if either left or top is not specified.
13105
13106 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
13107 <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
13108 (my_create_tip_window, Fx_show_tip): Adjust size for external border.
13109 (my_create_tip_window): Assign tip_window.
13110 (x_create_tip_frame): Use same defaults as X.
13111 (compute_tip_xy): Remove unused variable. Use full screen width.
13112 (Fx_show_tip): Do not double height. Call ShowWindow directly.
13113
13114 * w32term.c (x_after_update_window_line): Doc fix.
13115 (w32_read_socket): Doc fix. Avoid SET_FRAME_GARBAGED for tip
13116 frames.
13117 <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
13118
13119 * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
13120 for all Windowed systems.
13121
13122 2001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
13123
13124 * msdos.c (IT_clear_screen): If the frame's faces are not yet
13125 realized, use the initial screen colors to clear the screen.
13126
13127 2001-11-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13128
13129 * textprop.c (Fset_text_properties): Remove unused variables
13130 `unchanged', `prev_changed', `s' and `len'.
13131
13132 * search.c (Freplace_match): Remove unused variable `inslen'.
13133
13134 * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
13135
13136 2001-11-22 Jason Rumney <jasonr@gnu.org>
13137
13138 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
13139 (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
13140 (my_create_tip_window): New function.
13141 (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
13142 (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
13143
13144 2001-11-20 Jason Rumney <jasonr@gnu.org>
13145
13146 * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
13147 (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
13148
13149 * w32fns.c (Vw32_system_coding_system): Remove.
13150 (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
13151
13152 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
13153
13154 * fileio.c (Fwrite_region): Move choose_write_coding_system to
13155 after build_annotations.
13156
13157 * syntax.c (describe_syntax): Add dummy arg.
13158 (describe_syntax_1): Update call to describe_vector.
13159
13160 * category.c (describe_category): Add dummy arg.
13161 (describe_category_1): Update call to describe_vector.
13162
13163 * keymap.c (Fdescribe_vector): Add `describer' parameter.
13164 (describe_command, describe_translation): Add dummy second param.
13165 (describe_map): Call elt_describer with two arguments.
13166 (describe_vector_princ): Add `fun' parameter.
13167 Call it instead of the hardcoded `princ'.
13168 (describe_vector): Add arg `args'.
13169 Pass it as a new second argument to elt_describer.
13170
13171 * keymap.h (describe_vector): Update prototype.
13172
13173 * frame.c: Don't include keymap.h any more.
13174 (keys_of_frame): Remove.
13175
13176 * lisp.h (keys_of_frame): Remove declaration.
13177
13178 * emacs.c (main): Don't call `keys_of_frame' any more.
13179
13180 2001-11-14 Andreas Schwab <schwab@suse.de>
13181
13182 * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
13183 if defined, 0 otherwise.
13184 (MAP_FAILED): Define if not defined and use it to test mmap failure.
13185 (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
13186
13187 2001-11-19 Richard M. Stallman <rms@gnu.org>
13188
13189 * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
13190
13191 2001-11-18 Jason Rumney <jasonr@gnu.org>
13192
13193 * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
13194 (x_draw_bar_cursor): If the background color of the glyph under
13195 the cursor equals the frame's cursor color, use the glyph's
13196 foreground color for drawing the bar cursor.
13197 (x_after_update_window_line): Clear internal border in different
13198 circumstances.
13199 (w32_set_vertical_scroll_bar): Check for width and height > 0.
13200 (w32_draw_relief_rect): Correct relief by 1 pixel.
13201 (x_set_glyph_string_background_width):
13202 Set extends_to_end_of_line_p if the row's fill_line_p is set and
13203 drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
13204 (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
13205 if cursor_in_non_selected_windows is false.
13206 (show_mouse_face): Clean up. Recognize overwritten cursor differently.
13207 (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
13208 Notice if cursor gets overwritten.
13209 (notice_overwritten_cursor): Renamed from
13210 note_overwritten_text_cursor. Rewritten to take glyph widths
13211 into account, and to take X positions as parameters.
13212 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
13213 around call to x_draw_glyphs.
13214 (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
13215 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
13216 color to use for image glyph reliefs.
13217 (x_draw_image_relief): Accept zero tool_bar_button_relief.
13218 (glyph_rect): Remove unused variable `area'.
13219
13220 * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
13221 some items.
13222 (x_set_internal_border_width): Set frame garbaged when window
13223 doesn't exist yet.
13224 (Fx_create_frame): Accept zero tool_bar_button_relief.
13225 (x_clear_image_1, four_corners_best, image_background)
13226 (image_background_transparent): New functions.
13227 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
13228 (gs_format): Add `:background' entry.
13229 (lookup_image): Set IMG's background color if specified.
13230 (pbm_load, xbm_load_image, png_load): Set IMG's background field
13231 when appropriate.
13232 (x_clear_image_1): Reset `background_valid' and
13233 `background_transparent_valid' fields.
13234 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
13235 calculating it here. Set IMG's background_transparent field.
13236 (enum xpm_keyword_index): Add XPM_BACKGROUND.
13237 (enum png_keyword_index): Add PNG_BACKGROUND.
13238 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
13239 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
13240 (enum gif_keyword_index): Add GIF_BACKGROUND.
13241 (enum gs_keyword_index): Add GS_BACKGROUND.
13242 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
13243 Pre-calculate image background color where necessary.
13244 (x_create_x_image_and_pixmap, xbm_load, gs_load):
13245 Use display info's n_cbits entry for screen depth.
13246 (Fx_show_tip): Remove unused variables `buffer', `top',
13247 `left', `max_width' and `max_height'.
13248
13249 * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
13250
13251 2001-11-18 Gerd Moellmann <gerd@gnu.org>
13252
13253 * puresize.h (BASE_PURESIZE): Increase to 750000.
13254
13255 2001-11-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13256
13257 * frame.c (Fframe_live_p): Doc fix.
13258
13259 2001-11-18 Richard M. Stallman <rms@gnu.org>
13260
13261 * xdisp.c (message_dolog_marker1, message_dolog_marker2)
13262 (message_dolog_marker3): New static variables hold three markers.
13263 (syms_of_xdisp): Initialize and staticpro them.
13264 (message_dolog): Use message_dolog_marker1..3 instead of
13265 allocating markers each time. Unchain them when done.
13266
13267 2001-11-17 Richard M. Stallman <rms@gnu.org>
13268
13269 * doc.c (Fsnarf_documentation): Doc fix.
13270
13271 2001-11-17 Andreas Schwab <schwab@suse.de>
13272
13273 * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
13274
13275 2001-11-17 Richard M. Stallman <rms@gnu.org>
13276
13277 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
13278
13279 2001-11-17 Jason Rumney <jasonr@gnu.org>
13280
13281 * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
13282
13283 2001-11-17 Gerd Moellmann <gerd@gnu.org>
13284
13285 * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
13286 with invalid position.
13287
13288 2001-11-16 Richard M. Stallman <rms@gnu.org>
13289
13290 * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
13291
13292 * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
13293 * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
13294 * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
13295
13296 * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
13297
13298 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
13299
13300 * fileio.c (build_annotations): Split off the tail.
13301 (build_annotations_2): New fun. Extracted from build_annotations.
13302 (Fwrite_region): Split the call to build_annotations into two
13303 calls to build_annotations and build_annotations_2.
13304
13305 2001-11-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13306
13307 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
13308 clear_waiting_for_input with argument.
13309
13310 * xterm.h (x_update_cursor): Remove duplicated prototype.
13311
13312 * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
13313
13314 * xterm.c (waiting_for_input): Remove unnecessary declaration.
13315
13316 * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
13317
13318 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
13319
13320 * fileio.c (choose_write_coding_system): New fun, extracted
13321 from Fwrite_region.
13322 (Fwrite_region): Use it.
13323
13324 * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
13325 (funcall_lambda, run_hook_with_args): Make static and add prototype.
13326 (ml_apply, find_handler_clause): Add prototype.
13327
13328 2001-11-16 Eli Zaretskii <eliz@gnu.org>
13329
13330 * config.in: Add #undef HAVE_COFF_H.
13331
13332 * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
13333 Required for ISC 4.1.
13334
13335 2001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
13336
13337 * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
13338 Andrew Wiseman <a.wiseman@btclick.com>.
13339
13340 2001-11-16 Kim F. Storm <storm@cua.dk>
13341
13342 The following changes are made to clean up the various internal
13343 references to the fringes to actually use the term `fringe' for
13344 them. Previously, they were called `flags areas', `bitmap areas',
13345 `left/right side of windows', or implicitly as `flags' or
13346 `bitmaps':
13347
13348 * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
13349 Comments fixed. Use renamed symbols.
13350
13351 * dispnew.c: Comment fix. Use renamed symbols.
13352
13353 * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
13354 (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
13355 (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
13356
13357 * msdos.c: Comment fix.
13358
13359 * w32fns.c: Use renamed symbols.
13360
13361 * w32term.c: Comment fixes. Use renamed symbols.
13362 (fringe_bitmap_type): Renamed from bitmap_type.
13363 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
13364 (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
13365 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
13366
13367 * w32term.h: Comment fixes. Use renamed symbols.
13368 (fringes_extra): Renamed from flags_areas_extra.
13369 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
13370 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
13371 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
13372 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
13373 (FRAME_X_LEFT_FRINGE_WIDTH):
13374 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
13375 (FRAME_X_RIGHT_FRINGE_WIDTH):
13376 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
13377
13378 * widget.c: Use renamed symbols.
13379
13380 * window.c: Comment fixes. Use renamed symbols.
13381 (coordinates-in-window-p): Doc fix.
13382
13383 * xdisp.c: Comment fixes. Use renamed symbols.
13384
13385 * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
13386
13387 * xfns.c: Use renamed symbols.
13388
13389 * xterm.c: Comment fixes. Use renamed symbols.
13390 (fringe_bitmap_type): Renamed from bitmap_type.
13391 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
13392 (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
13393 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
13394
13395 * xterm.h: Comment fixes. Use renamed symbols.
13396 (fringes_extra): Renamed from flags_areas_extra.
13397 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
13398 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
13399 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
13400 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
13401 (FRAME_X_LEFT_FRINGE_WIDTH):
13402 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
13403 (FRAME_X_RIGHT_FRINGE_WIDTH):
13404 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
13405
13406 2001-11-15 Jason Rumney <jasonr@gnu.org>
13407
13408 * w32menu.c (add-menu-item): Make help_echo and radio buttons
13409 work for most menu items. From David Ponce
13410 <david.ponce@wanadoo.fr>.
13411
13412 2001-11-15 Gerd Moellmann <gerd@gnu.org>
13413
13414 * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
13415 Some x_set_* function expect to be called even if old and new
13416 value are equal.
13417
13418 * xdisp.c (build_desired_tool_bar_string): Accept zero
13419 tool_bar_button_relief.
13420
13421 * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
13422
13423 * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
13424
13425 * xterm.c (x_draw_bar_cursor): If the background color of the
13426 glyph under the cursor equals the frame's cursor color, use
13427 the glyph's foreground color for drawing the bar cursor.
13428
13429 * dispnew.c (direct_output_forward_char): Fix character/byte
13430 position comparison.
13431
13432 2001-11-15 Miles Bader <miles@gnu.org>
13433
13434 * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
13435 (Fdelete_field, Ffield_string, Ffield_string_no_properties):
13436 Update arguments to find_field.
13437 (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
13438 (Fconstrain_to_field): Use LIMIT arg to shorten search time.
13439 * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
13440 * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
13441
13442 2001-11-14 Richard M. Stallman <rms@gnu.org>
13443
13444 * editfns.c (Fpropertize): Allow call with 1 arg.
13445
13446 * dispextern.h (image_background, image_background_transparent):
13447 Conditionalize on HAVE_X_WINDOWS.
13448
13449 2001-11-13 Richard M. Stallman <rms@gnu.org>
13450
13451 * print.c (Fprin1_to_string): Doc fix.
13452
13453 * sunfns.c (Fsun_change_cursor_icon): Doc fix.
13454
13455 * floatfns.c (Fceiling, Ffloor): Doc fixes.
13456
13457 * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
13458
13459 * fileio.c (Ffile_accessible_directory_p): Doc fix.
13460
13461 * eval.c (syms_of_eval): Doc fix.
13462
13463 * coding.c (syms_of_coding): Doc fix.
13464
13465 * doc.c (Fsnarf_documentation): Doc fix.
13466
13467 * dispnew.c (syms_of_display): Doc fix.
13468
13469 * category.c (Fget_unused_category): Doc fix.
13470
13471 * buffer.c (syms_of_buffer): Doc fixes.
13472
13473 2001-11-14 Eli Zaretskii <eliz@is.elta.co.il>
13474
13475 * print.c (prin1, print): Doc fix.
13476
13477 2001-11-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13478
13479 * fontset.h: Remove declarations of variables
13480 `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
13481
13482 * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
13483 `Vclip_large_size_font'.
13484
13485 2001-11-13 Jason Rumney <jasonr@gnu.org>
13486
13487 * w32fns.c: Doc fix.
13488
13489 2001-11-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13490
13491 * xfaces.c (Fface_attributes_as_vector): Doc fix.
13492
13493 * fns.c: Doc fix.
13494
13495 * emacs.c: Doc fix.
13496
13497 * coding.c: Doc fix.
13498
13499 * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
13500 * fontset.c, insdel.c, keymap.c: Change doc-string comments to
13501 `new style' [w/`doc:' keyword].
13502
13503 2001-11-12 Richard M. Stallman <rms@gnu.org>
13504
13505 * xterm.c (XTread_socket): Don't update focus for EnterNotify or
13506 LeaveNotify events. Only FocusIn and FocusOut do that now.
13507 (x_display_and_set_cursor): Do display hollow cursors in active
13508 minibuffer windows when they are not selected.
13509
13510 2001-11-12 Jason Rumney <jasonr@gnu.org>
13511
13512 * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
13513 * w32term.c: Change doc-string comments to `new style'
13514 [w/`doc:' keyword]. Doc fixes.
13515
13516 * w32fns.c: Don't define max.
13517 (Fx_open_connection): Only execute once.
13518
13519 2001-11-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13520
13521 * ccl.c: Change macros to use do-while block instead of if-else.
13522 Use braces to follow GNU Coding Standards.
13523
13524 2001-11-11 Richard M. Stallman <rms@gnu.org>
13525
13526 * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
13527
13528 * lread.c (read_escape): Use end_of_file_error for reporting eof.
13529
13530 * insdel.c (replace_range): Use adjust_markers_for_replace
13531 instead of adjust_markers_for_delete and adjust_markers_for_insert.
13532
13533 * intervals.h: Declare set_text_properties and set_text_properties_1.
13534
13535 * textprop.c (set_text_properties_1): New subroutine
13536 broken out of set_text_properties.
13537 (set_text_properties): Use set_text_properties_1.
13538
13539 * intervals.c (graft_intervals_into_buffer):
13540 Use set_text_properties_1 to clear out properties.
13541
13542 * search.c (Freplace_match): Use replace_range to insert
13543 and delete. Don't request property inheritance from
13544 surrounding text.
13545
13546 2001-11-10 Jason Rumney <jasonr@gnu.org>
13547
13548 * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
13549 vertical fonts. Allow them if face name is explicitly specified.
13550 Do not give up if we find a font that cannot be converted to an xlfd.
13551
13552 2001-11-10 Gerd Moellmann <gerd@gnu.org>
13553
13554 * unexelf.c (unexec): Use mmap/munmap to allocate buffers
13555 instead of malloc/free.
13556
13557 2001-11-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13558
13559 * xfaces.c (merge_face_vectors): Use braces to follow GNU
13560 Coding Standards.
13561 (Finternal_set_lisp_face_attribute): Likewise.
13562
13563 * buffer.c (Fbury_buffer): Likewise.
13564
13565 * indent.c (current_column_1): Remove unused variable `prev_col'.
13566
13567 * coding.c (encode_coding): Use precomputed value of `src'.
13568 (encode_coding): Remove unused variable `src_end'.
13569 (code_convert_region): Remove unused variables `count'.
13570
13571 2001-11-07 Jason Rumney <jasonr@gnu.org>
13572
13573 * w32term.c (x_display_and_set_cursor): Do not move system caret
13574 if cursor_glyph is NULL.
13575
13576 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13577
13578 * keymap.c (access_keymap): Fix compilation error.
13579
13580 2001-11-07 Miles Bader <miles@gnu.org>
13581
13582 * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
13583
13584 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13585
13586 * intervals.c (graft_intervals_into_buffer):
13587 Remove #ifdef'd-out code.
13588 (graft_intervals_into_buffer): Remove unused variable `middle'.
13589
13590 * lread.c (Feval_region): Remove obsolete #ifdef'd-out
13591 code (eval-current-buffer).
13592 Change doc-string comments to `new style' [w/`doc:' keyword].
13593
13594 2001-11-06 Richard M. Stallman <rms@gnu.org>
13595
13596 * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
13597
13598 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
13599
13600 * lread.c (read1): Fix behavior with nested backquoting.
13601
13602 * keyboard.c (make_lispy_event): Check integerness and fix
13603 Lisp_Object/int mixup.
13604
13605 2001-11-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13606
13607 * fns.c (copy_hash_table): Remove unused variable `v'.
13608
13609 * fontset.c (fontset_font_pattern): Remove unused variable
13610 `family_registry'.
13611
13612 * indent.c (current_column_1): Remove unused variable `prev_col'.
13613
13614 2001-11-05 Richard M. Stallman <rms@gnu.org>
13615
13616 * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
13617
13618 * buffer.c (Fkill_buffer): Don't delete auto save file
13619 if buffer is modified.
13620
13621 2001-11-05 Andrew Innes <andrewi@gnu.org>
13622
13623 * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
13624 CHECK_NUMBER_CDR.
13625
13626 2001-11-05 Richard M. Stallman <rms@gnu.org>
13627
13628 * unexelf.c (unexec): Minor changes; clean up comments.
13629
13630 2001-11-05 Sam Steingold <sds@gnu.org>
13631
13632 * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
13633
13634 2001-11-05 Andreas Schwab <schwab@suse.de>
13635
13636 * sound.c (sound_perror): Save errno from being clobbered.
13637
13638 2001-11-05 Dale Hagglund <rdh@yottayotta.com>
13639
13640 * unexelf.c (unexec): Don't use `mmap'. Instead, read and write
13641 the program image directly.
13642
13643 2001-11-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13644
13645 * buffer.h (Fbuffer_local_value): Add prototype.
13646
13647 2001-11-04 Richard M. Stallman <rms@gnu.org>
13648
13649 * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
13650 and CHECK_BUFFER.
13651
13652 * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
13653 (record_char): Likewise.
13654
13655 * keyboard.c (make_lispy_event): Don't insist a drag event must
13656 move to a different buffer position. Instead, check for moving at
13657 least double_click_fuzz.
13658
13659 * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
13660
13661 * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
13662
13663 * indent.c (current_column_1, Fmove_to_column): Separate the code
13664 for display-table glyphs from the code for buffer text, to fix
13665 bugs in the former.
13666
13667 2001-11-04 Michael Welsh Duggan <md5i@cs.cmu.edu>
13668
13669 * buffer.c (Fbuffer_local_value): New function.
13670 (syms_of_buffer): Defsubr it.
13671
13672 * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
13673 value of `cursor-in-non-selected-windows'.
13674
13675 * lisp.h (Qcursor_in_non_selected_windows): New declaration.
13676 * xdisp.c (Qcursor_in_non_selected_windows): New variable.
13677 (syms_of_xdisp): Initialize it.
13678
13679 2001-11-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13680
13681 * xfns.c (Fx_create_frame): Doc fix.
13682
13683 * coding.c: Change doc-string comments to `new style' [w/`doc:'
13684 keyword].
13685
13686 * eval.c (top_level_value, top_level_set): Remove commented and
13687 #ifdef'd-out code.
13688 (Fdefvar): Fix usage in doc-string.
13689
13690 2001-11-03 Richard M. Stallman <rms@gnu.org>
13691
13692 * xfns.c: Include unistd.h, if it exists.
13693
13694 * editfns.c: Move the include of ctype.h after unistd.h.
13695
13696 * gmalloc.c: Test BROKEN_PROTOTYPES.
13697
13698 2001-11-03 Ken Raeburn <raeburn@gnu.org>
13699
13700 * lisp.h (CHECK_STRING_CAR): New macro.
13701 * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
13702 treating XCAR and XCDR as lvalues.
13703 (openp): Use CHECK_STRING_CAR.
13704 (read_list): Use XSETCDR instead of treating XCDR as lvalue.
13705
13706 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
13707
13708 * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
13709 (SIGMASKTYPE): Define.
13710
13711 * syssignal.h (sigunblock): Don't define if already defined.
13712
13713 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13714
13715 * eval.c (debugger_may_continue, Vdebug_ignored_errors)
13716 (call_debugger, Fcondition_case, skip_debugger, unbind_to):
13717 Fix typos in comments.
13718
13719 * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
13720 and #ifdef'd-out code.
13721 Fix and reindent comments.
13722
13723 * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
13724
13725 * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
13726 argument `i' in macros.
13727
13728 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
13729 `i' in macros.
13730
13731 * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
13732 (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
13733 (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
13734 (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
13735 (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
13736 (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
13737 (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
13738 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
13739 in macros.
13740
13741 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
13742 * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
13743 * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
13744 * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
13745 * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
13746 * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
13747 * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
13748 * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
13749 * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
13750 (remove unused second argument).
13751
13752 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
13753
13754 * syntax.c (describe_syntax): New wrapper.
13755 (Finternal_describe_syntax_value): Rename from describe_syntax.
13756 Don't insert space at front and \n at the end.
13757 (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
13758
13759 * regex.c (re_wctype): Try to fix some warnings.
13760 (regcomp, regexec): Don't forget the __restrict.
13761
13762 2001-11-02 Richard M. Stallman <rms@gnu.org>
13763
13764 * textprop.c (Fget_char_property): Doc fix.
13765
13766 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13767
13768 * process.c (Fstart_process): Add usage to doc-string.
13769
13770 * data.c (Fsetq_default): Ditto.
13771
13772 * callint.c (Finteractive): Ditto.
13773
13774 2001-11-01 Stefan Monnier <monnier@cs.yale.edu>
13775
13776 * macros.c: Don't include keymap.h any more.
13777
13778 2001-11-01 Richard M. Stallman <rms@gnu.org>
13779
13780 * data.c (Fmake_local_variable): Doc fix.
13781
13782 * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
13783 (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
13784
13785 * keymap.c (Fdescribe_buffer_bindings): Print character property
13786 bindings along with or instead of the buffer local map.
13787 Make the overriding maps override what they should.
13788
13789 2001-11-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13790
13791 * window.c (grow_mini_window): Fix typo in comment.
13792
13793 2001-11-01 Gerd Moellmann <gerd@gnu.org>
13794
13795 * xterm.c (x_scroll_bar_create): Check for width and height > 0.
13796 (XTset_vertical_scroll_bar): Likewise.
13797
13798 * xfns.c (x_build_heuristic_mask): Use four_corners_best
13799 instead of IMAGE_BACKGROUND.
13800
13801 * xfns.c (four_corners_best): Reindent.
13802
13803 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
13804 Handle :box so that it is possible to specify sexprs.
13805
13806 2001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
13807
13808 * s/hpux11.h: New file.
13809
13810 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13811
13812 * emacs.c (USAGE1): Show command line option --no-window-system
13813 instead of --no-windows in usage.
13814 (standard_args): Rename --no-windows to --no-window-system.
13815 (bug_reporting_address): Follow Emacs coding conventions.
13816
13817 * eval.c (Fcommandp): Doc fix.
13818 Change doc-string comments to `new style' [w/`doc:' keyword].
13819
13820 * frame.c (Fframe_live_p): Doc fix.
13821
13822 * buffer.c (selective-display-ellipses): Doc fix.
13823
13824 2001-10-31 Gerd Moellmann <gerd@gnu.org>
13825
13826 * lread.c (to_multibyte): Fix computation of new read_buffer_size.
13827
13828 * xfaces.c (realize_x_face): If C is not a single-byte character,
13829 set the face's colors_copied_bitwise_p instead of the defaulted_p
13830 members which have a different meaning.
13831 (free_face_colors): Do nothing for a face whose colors have been
13832 copied bitwise.
13833
13834 * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
13835
13836 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13837
13838 * marker.c, mocklisp.c: Change doc-string comments to `new style'
13839 [w/`doc:' keyword].
13840
13841 2001-10-31 Gerd Moellmann <gerd@gnu.org>
13842
13843 * fns.c (require_unwind): Return Lisp_Object.
13844
13845 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13846
13847 * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
13848 (last-input-char): Revert doc-string to be the same as the
13849 doc-string of `last-input-event'.
13850
13851 * xdisp.c: Fix typos in comments.
13852
13853 2001-10-31 Gerd Moellmann <gerd@gnu.org>
13854
13855 * window.c (grow_mini_window): Handle case that the root
13856 window is already smaller than the nominal mininum height.
13857
13858 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
13859
13860 * emacs.c (main): Don't call keys_of_macros any more.
13861
13862 * lisp.h (keys_of_macros): Remove.
13863
13864 * macros.c (keys_of_macros): Remove.
13865
13866 * xfaces.c (Fface_attribute_relative_p): Declare args.
13867
13868 2001-10-30 Jason Rumney <jasonr@gnu.org>
13869
13870 * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
13871 (enum_font_cb2): Ignore fonts with vertical orientation.
13872
13873 2001-10-30 Richard M. Stallman <rms@gnu.org>
13874
13875 * keyboard.c (Finput_pending_p): Doc fix.
13876
13877 2001-10-30 Gerd Moellmann <gerd@gnu.org>
13878
13879 * xterm.c (x_after_update_window_line): Don't run the code
13880 clearing in borders for rows whose visible height is 0.
13881
13882 * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
13883 resized_p flag is set. If not set, use the much less flickering
13884 method previously used.
13885
13886 * dispnew.c (change_frame_size_1): Set frame's resized_p.
13887
13888 * frame.h (struct frame) <resized_p>: New member.
13889
13890 * lread.c (to_multibyte): Ensure read_buffer is at least twice
13891 as large as the number of bytes to convert.
13892
13893 * lread.c (to_multibyte): New function.
13894 (read1): Use it.
13895
13896 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
13897
13898 * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
13899
13900 2001-10-30 Gerd Moellmann <gerd@gnu.org>
13901
13902 * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
13903 (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
13904 if the row's fill_line_p is set and drawing the last glyph with
13905 DRAW_IMAGE_{RAISED,SUNKEN}.
13906
13907 * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
13908
13909 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
13910
13911 * xmenu.c: Include coding.h and charset.h.
13912 (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
13913 (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
13914 (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
13915 Explicitly set wv->help. Use `TRUE' rather than `True'.
13916 (menu_help_callback): Use empty_string.
13917
13918 * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
13919 (Fx_popup_dialog): Explicitly init f.
13920 (w32_menu_display_help): Use empty_string.
13921
13922 2001-10-29 Richard M. Stallman <rms@gnu.org>
13923
13924 * fns.c (Frequire): Detect recursive try to require the same
13925 feature 3 or more levels deep, and get error.
13926 (require_unwind): New subroutine.
13927 (require_nesting_list): New variable.
13928 (syms_of_fns): Init and staticpro it.
13929
13930 * print.c (print_object): Clarify indication of insertion type.
13931
13932 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
13933
13934 * coding.c (syms_of_coding): Document that locale-coding-system is
13935 used for decoding input on X.
13936
13937 * window.c (Fscroll_left, Fscroll_right): Doc fix.
13938
13939 2001-10-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13940
13941 * keyboard.c (Finput_pending_p): Fix typo in doc-string.
13942 (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
13943
13944 2001-10-29 Gerd Moellmann <gerd@gnu.org>
13945
13946 * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
13947 use NO_CURSOR if cursor_in_non_selected_windows is false.
13948
13949 * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
13950 the slant attribute if FRAME is t.
13951
13952 * xfns.c (x_set_internal_border_width): Set frame garbaged
13953 when X window doesn't exist yet.
13954
13955 * xterm.c (x_after_update_window_line): Clear internal border
13956 in different circumstances.
13957
13958 * xterm.c (XTread_socket) <KeyPress>: Don't use
13959 STRING_CHAR_AND_LENGTH if nchars == nbytes. From Kenichi Handa
13960 <handa@etl.go.jp>.
13961
13962 2001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
13963
13964 * m/ibms390.h: New file. From Adam Thornton
13965 <athornton@sinenomine.net>.
13966
13967 2001-10-28 Gerd Moellmann <gerd@gnu.org>
13968
13969 * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
13970
13971 * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
13972 a loop counter.
13973
13974 2001-10-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13975
13976 * emacs.c: Use argv[0] instead of "emacs" when -t was specified.
13977
13978 * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
13979 keyword].
13980 Fix typos in comments.
13981
13982 * emacs.c (bug_reporting_address): New function.
13983 Use it when displaying usage message.
13984
13985 * minibuf.c (read_minibuf): Remove unused external declaration of
13986 variable `Qread_only'.
13987
13988 * keymap.c (access_keymap): Remove unused variable `charset'.
13989
13990 2001-10-28 Miles Bader <miles@gnu.org>
13991
13992 * xfaces.c (merge_face_heights): Handle TO being relative as well.
13993 Remove #ifdef'd-out code.
13994 (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
13995 (syms_of_xfaces): Initialize them.
13996
13997 2001-10-27 Jason Rumney <jasonr@gnu.org>
13998
13999 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
14000 <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
14001 position using the system caret.
14002
14003 * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
14004 (w32_system_caret_height, w32_system_caret_x)
14005 (w32_system_caret_y): New variables for tracking system caret.
14006 (w32_initialize): Initialize them.
14007 (x_display_and_set_cursor): Make system caret follow the active cursor.
14008
14009 * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
14010 New messages types.
14011
14012 * w32term.c (note_mouse_highlight): Clear old help_echo.
14013
14014 2001-10-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14015
14016 * xterm.c: Fix typo in a comment.
14017
14018 * emacs.c: Fix typos in comments.
14019 Remove unnecessary spaces.
14020 Change doc-string comments to `new style' [w/`doc:' keyword].
14021 (USAGE2): Fix typos in usage string.
14022
14023 * xterm.c: Fix typo in a comment.
14024
14025 * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
14026 emacs.c.
14027
14028 2001-10-27 Gerd Moellmann <gerd@gnu.org>
14029
14030 * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
14031 instead of 1/2 line_height in the heuristic for skipping
14032 farther backward when target_y was not reached.
14033
14034 * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
14035 Display errno only if non-zero.
14036 (sound_warning): New function.
14037 (vox_configure): Don't treat failing to set sample rate as error.
14038 (various places): Improve error messages.
14039
14040 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
14041
14042 * fileio.c (Faccess_file): Run the argument filename through
14043 Fexpand_file_name, before using it.
14044
14045 * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
14046 ring-bell-function. Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
14047
14048 2001-10-26 Gerd Moellmann <gerd@gnu.org>
14049
14050 * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
14051
14052 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
14053 Fix clearing in the case of scroll bars on the right.
14054
14055 2001-10-26 Juanma Barranquero <lektu@terra.es>
14056
14057 * w32gui.h (XImage): Add a dummy typedef.
14058
14059 2001-10-26 Gerd Moellmann <gerd@gnu.org>
14060
14061 * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
14062
14063 2001-10-25 Eli Zaretskii <eliz@is.elta.co.il>
14064
14065 * frame.c (Fframe_parameter): Fix last change.
14066
14067 * fileio.c: Revert last change (which removed old commented-out
14068 version of expand-file-name). Add a comment that explains why
14069 this old version should not be removed.
14070
14071 2001-10-25 Gerd Moellmann <gerd@gnu.org>
14072
14073 * frame.c (Fframe_parameter): Fix a bug whereby some
14074 ``artificial'' frame parameters, like `minibuffer' were not
14075 obtained by calling Fframe_parameters.
14076
14077 * xterm.c (show_mouse_face): Clean up. Recognize overwritten
14078 cursor differently.
14079
14080 * xdisp.c (move_it_vertically_backward): Compute line height
14081 differently. Add heuristic to try to be more compatible to 20.x.
14082
14083 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
14084
14085 * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
14086
14087 * editfns.c (text_property_stickiness): Fix Lisp_Object used as
14088 boolean.
14089
14090 2001-10-25 Miles Bader <miles@gnu.org>
14091
14092 * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
14093 BG is a pointer to a structure, not a structure.
14094 (gif_format, png_format): Add missing commas.
14095
14096 2001-10-24 Richard M. Stallman <rms@gnu.org>
14097
14098 * xfaces.c (Fface_attributes_as_vector): New function.
14099 (syms_of_xfaces): Defsubr it.
14100
14101 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14102
14103 * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
14104 variable `area'.
14105
14106 2001-10-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14107
14108 * search.c (scan_newline): Remove unused variable `selective_display'.
14109
14110 2001-10-25 Miles Bader <miles@gnu.org>
14111
14112 * dispextern.h (struct image): Add `background',
14113 `background_valid', and `background_transparent' fields.
14114 (image_background, image_background_transparent): New declarations.
14115 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
14116 * xfns.c (image_background, image_background_transparent)
14117 (four_corners_best): New functions.
14118 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
14119 (gs_format): Add `:background' entry.
14120 (lookup_image): Set IMG's background color if specified.
14121 (pbm_load, xbm_load_image, png_load): Set IMG's background field
14122 when appropriate.
14123 (x_clear_image_1): Reset `background_valid' and
14124 `background_transparent_valid' fields.
14125 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
14126 calculating it here. Set IMG's background_transparent field.
14127 (enum xpm_keyword_index): Add XPM_BACKGROUND.
14128 (enum png_keyword_index): Add PNG_BACKGROUND.
14129 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
14130 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
14131 (enum gif_keyword_index): Add GIF_BACKGROUND.
14132 (enum gs_keyword_index): Add GS_BACKGROUND.
14133 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
14134 Pre-calculate image background color where necessary.
14135 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
14136 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
14137 color to use for image glyph reliefs.
14138
14139 2001-10-24 Gerd Moellmann <gerd@gnu.org>
14140
14141 * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
14142 in full-width rows.
14143
14144 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
14145 Fix clearing of area not covered by scroll bar.
14146
14147 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14148
14149 * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
14150 and `real_start'.
14151 (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
14152 (glyph_rect): Remove unused variable `area'.
14153
14154 2001-10-24 Gerd Moellmann <gerd@gnu.org>
14155
14156 * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
14157
14158 * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
14159 (row_containing_pos): Take additional argument DY.
14160 Treat rows ending in middle of char differently.
14161 (display_line): Handle tabs on window systems differently.
14162
14163 * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
14164 with additional argument.
14165
14166 * dispextern.h (row_containing_pos): Adjust prototype.
14167
14168 * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
14169 (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
14170 (try_window_id, try_window_reusing_current_matrix)
14171 (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
14172 (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
14173
14174 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14175
14176 * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
14177 gnuemacs).
14178 (HAVE_BOXES): Fix typo in comment.
14179 (push_menu_pane): Fix typo in comment.
14180
14181 * xdisp.c: (display_prop_string_p): Remove unused local declaration
14182 of `Qwhen'.
14183 (single_display_prop_string_p): Remove unused local declarations
14184 of `Qwhen' and `Qmargin'.
14185 (string_buffer_position): Remove unused variable `around'.
14186 (store_frame_title): Remove unused variable `width'.
14187
14188 * window.c: Don't define max.
14189 (coordinates_in_window): Remove unused variable `uy'.
14190
14191 * widget.c: Don't define max.
14192
14193 * process.c: Don't define max.
14194 (create_process): Remove unused variable `buffer'.
14195
14196 2001-10-23 Gerd Moellmann <gerd@gnu.org>
14197
14198 * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
14199
14200 2001-10-23 Eli Zaretskii <eliz@is.elta.co.il>
14201
14202 * xfaces.c (Finternal_set_lisp_face_attribute)
14203 [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
14204 frame is on a windowed display.
14205
14206 2001-10-23 Gerd Moellmann <gerd@gnu.org>
14207
14208 * dispnew.c (sync_window_with_frame_matrix_rows):
14209 Fix handling of windows which aren't full-width, fix handling
14210 of marginal areas.
14211
14212 * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
14213
14214 2001-10-23 Andreas Schwab <schwab@suse.de>
14215
14216 * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
14217 LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
14218
14219 2001-10-23 Gerd Moellmann <gerd@gnu.org>
14220
14221 * xterm.c (x_draw_glyphs): Remove parameters READ_START and
14222 REAL_END. Notice if cursor gets overwritten.
14223 (notice_overwritten_cursor): Take X positions as parameters.
14224 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
14225 around call to x_draw_glyphs.
14226
14227 2001-10-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14228
14229 * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
14230 instead of C) and usage.
14231
14232 * editfns.c (char-to-string): Fix argument names (use CHAR instead
14233 of C) and usage.
14234
14235 * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
14236 `left', `max_width' and `max_height'.
14237
14238 2001-10-23 Gerd Moellmann <gerd@gnu.org>
14239
14240 * xdisp.c (display_line): For a tab continued to the next line,
14241 set row's ends_in_middle_of_char_p.
14242
14243 2001-10-22 Gerd Moellmann <gerd@gnu.org>
14244
14245 * xdisp.c (display_line): Fix computation of continuation lines
14246 width for TABs.
14247
14248 2001-10-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14249
14250 * xdisp.c (build_desired_tool_bar_string): Remove unused variable
14251 `Qlaplace'.
14252
14253 * fileio.c: Remove unused code.
14254
14255 2001-10-22 Miles Bader <miles@gnu.org>
14256
14257 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
14258 (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
14259 Remove `DOC_STRINGS_IN_COMMENTS' cases.
14260
14261 2001-10-21 Jason Rumney <jasonr@gnu.org>
14262
14263 * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
14264
14265 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
14266
14267 * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
14268 (Finsert_string): Avoid the multi-line string literals warning.
14269
14270 2001-10-22 Miles Bader <miles@gnu.org>
14271
14272 * doc.c (Vhelp_manyarg_func_alist): Variable removed.
14273 (Fdocumentation): Don't use it.
14274 (syms_of_doc): Don't initialize it.
14275
14276 * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
14277 * print.c (Fwith_output_to_temp_buffer): Likewise.
14278 * window.c (Fsave_window_excursion): Likewise.
14279 * editfns.c (Fsave_excursion, Fsave_current_buffer)
14280 (Fsave_restriction): Likewise.
14281 * eval.c (Frun_hooks, Frun_hook_with_args)
14282 (Frun_hook_with_args_until_failure)
14283 (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
14284 (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
14285 (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
14286 (Funwind_protect, Fcondition_case): Likewise.
14287 * coding.c (Ffind_operation_coding_system): Likewise.
14288 * keyboard.c (Ftrack_mouse): Likewise.
14289
14290 2001-10-21 Miles Bader <miles@gnu.org>
14291
14292 * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
14293 (Fmake_hash_table): Add usage: string to doc string.
14294 * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
14295 (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
14296 (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
14297 * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
14298 (Fml_prefix_argument_loop): Likewise.
14299
14300 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14301
14302 * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
14303
14304 * sysdep.c (init_sys_modes): Change doc-string comments to `new
14305 style' [w/`doc:' keyword].
14306
14307 * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
14308 * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
14309 comments to `new style' [w/`doc:' keyword].
14310
14311 2001-10-21 Jason Rumney <jasonr@gnu.org>
14312
14313 * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
14314
14315 * w32term.c (remember_mouse_glyph): New function.
14316 (w32_mouse_position): Use it.
14317 (note_mouse_movement): If the mouse moved off the glyph, remember
14318 its new position.
14319
14320 * w32term.h (struct w32_output): Correct spelling of x_compatible.
14321 (w32_display_info): Add mouse_face_overlay.
14322
14323 * w32term.c (notice_overwritten_cursor): Renamed from
14324 note_overwritten_text_cursor. Rewritten to take glyph widths into
14325 account.
14326 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
14327 (fast_find_string_pos): New function.
14328 (fast_find_position): Return the correct vpos. Add parameter
14329 STOP. In the final row, stop before glyphs having STOP as object.
14330 Don't consider glyphs that are not from a buffer.
14331 (fast_find_position) [0]: Add a presumably more correct version
14332 for after 21.1.
14333 (expose_window_tree, expose_frame): Don't compute intersections here.
14334 (expose_window): Do it here instead.
14335 (expose_window_tree, expose_window, expose_line): Return 1 when
14336 overwriting mouse-face.
14337 (expose_window): If W is the window currently being updated, mark
14338 the frame garbaged.
14339 (expose_frame): If mouse-face was overwritten, redo it.
14340 (x_use_underline_position_properties): New variable.
14341 (syms_of_xterm): DEFVAR_BOOL it.
14342 (x_draw_glyph_string): Add comment to use it in future.
14343 (x_draw_glyph_string): Restore clipping after drawing box.
14344 Fix a computation of the underline position.
14345 (w32_get_glyph_string_clip_rect): Minor cleanup.
14346 (x_fill_stretch_glyph_string): Remove an assertion.
14347 (x_produce_glyphs): Don't convert multibyte characters
14348 to unibyte characters in unibyte buffers.
14349 (cursor_in_mouse_face_p): New function.
14350 (x_draw_stretch_glyph_string): Use it to choose a different GC
14351 when drawing a cursor within highlighted text. Don't draw
14352 background again if it has already been drawn.
14353 (x_draw_glyph_string_box): Don't draw a full-width
14354 box just because the glyph row's full_width_p flag is set.
14355 (x_draw_glyphs): Fix computation of rightmost x for
14356 full-width rows.
14357 (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
14358 (w32_draw_relief_rect): Extend left shadow to the bottom and left;
14359 change bottom shadow accordingly. Some cleanup.
14360 (x_update_window_end): Handle overwritten mouse face
14361 also for tool bar windows.
14362 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
14363 DRAW is DRAW_IMAGE_RAISED.
14364 (clear_mouse_face): Return 1 if text with mouse face was
14365 actually redrawn. Make the function static.
14366 Reset dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
14367 optimize away highlighting if we pass over that same overlay again.
14368 (note_mouse_highlight): Call mouse_face_overlay_overlaps
14369 to detect a case where we have to highlight a different region
14370 despite not having left the currently highlighted region.
14371 Set mouse_face_overlay in the x_display_info. Avoid changing the
14372 mouse pointer shape when show_mouse_face has already done it, or
14373 there is no need. Handle mouse-face and help-echo in strings.
14374 (glyph_rect): New function.
14375 (w32_mouse_position): Use it to raise the threshold for mouse
14376 movement event generation.
14377 (w32_initialize_display_info): Initialize the x_display_info's
14378 mouse_face_overlay.
14379 (w32_set_vertical_scroll_bar): Don't clear a zero height
14380 or width area.
14381 (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
14382 a widget to zero height.
14383
14384 * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
14385 Protect unibyte strings created by replacing their multibyte
14386 equivalents in menu_items.
14387 (w32_menu_show): Don't overwrite an item's name with its key
14388 description in case the description is a multibyte string.
14389 (single_submenu): Some cleanup.
14390
14391 * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
14392 (postprocess_image): New function.
14393 (lookup_image): Call it for all image types except PostScript.
14394 (x_kill_gs_process): Call postprocess_image.
14395 (tiff_error_handler, tiff_warning_handler): New functions.
14396 (tiff_load): Install them as handlers.
14397 (x_kill_gs_process): Recognize if someone has cleared the image
14398 cache under us.
14399 (valid_image_p): Protect better against invalid image
14400 specifications. Previous code could signal an error.
14401 (Fx_hide_tip, Fshow_tip): Doc fix.
14402 (Fv_max_tooltip_size): New variable.
14403 (syns_of_xfns): DEFVAR_LISP it.
14404 (Fx_show_tip): Add parameter TEXT. Set the tip frame's root
14405 window buffer to *tip* right after creating the frame. Set frame's
14406 window_width. Use a maximum tooltip size specified by
14407 Vx_max_tooltip_size, if that has valid contents.
14408 (compute_tip_xy): Add parameters WIDTH and HEIGHT.
14409 Make sure the tooltip is completely visible.
14410 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
14411 (Fx_create_frame): Adjust the frame's height for presence
14412 of the tool bar before calling x_figure_window_size.
14413 (x_set_tool_bar_lines): Clear the tool bar window's current matrix
14414 when the window gets smaller.
14415 (x_set_foreground_color): Set frame's cursor_pixel.
14416 (x_set_foreground_color, x_set_background_color): Cleaned up.
14417 (x_set_font): Handle case of x_new_fontset returning the same name
14418 as before, although there was a change in fontsets.
14419
14420 2001-10-21 Miles Bader <miles@gnu.org>
14421
14422 * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
14423 (Flogxor): Add usage: string to doc string.
14424 * charset.c (Fstring): Likewise.
14425 * callproc.c (Fcall_process_region, Fcall_process): Likewise.
14426 * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
14427
14428 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14429
14430 * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
14431
14432 * alloc.c: Reindent DEFUNs with doc: keywords.
14433
14434 * abbrev.c (Finsert_abbrev_table_description): Reindent.
14435
14436 * frame.c: Change doc-string comments to `new style' [w/`doc:'
14437 keyword].
14438
14439 See ChangeLog.9 for earlier changes.
14440
14441 ;; Local Variables:
14442 ;; coding: iso-2022-7bit
14443 ;; End:
14444
14445 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
14446 Copying and distribution of this file, with or without modification,
14447 are permitted provided the copyright notice and this notice are preserved.
14448
14449 ;;; arch-tag: 5dcc435f-4038-4141-b3bf-5be51cd76bd4