(Fexpand_file_name) [VMS]: Don't upcase the name
[bpt/emacs.git] / src / ChangeLog
1 2005-03-04 Thien-Thi Nguyen <ttn@gnu.org>
2
3 * s/vms.h (FILE_SYSTEM_CASE): New macro.
4 * fileio.c (Fexpand_file_name) [VMS]: Don't upcase the name
5 "manually"; this is now handled generally via FILE_SYSTEM_CASE.
6
7 2005-03-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8
9 * emacs.c (main): Change `#ifdef HAVE_CARBON' to `#if
10 defined (MAC_OSX) && defined (HAVE_CARBON)'.
11
12 * image.c [!MAC_OSX && TARGET_API_MAC_CARBON]: Include
13 QuickTime.h.
14
15 * mac.c [!MAC_OSX && HAVE_CARBON]: Include Carbon.h.
16 [!MAC_OSX] (select) [TARGET_API_MAC_CARBON]: Use ReceiveNextEvent.
17 (posix_pathname_to_fsspec, fsspec_to_posix_pathname): New
18 functions.
19 (mac_clear_font_name_table): Move extern to macterm.h.
20
21 * macfns.c (install_window_handler): Move extern to macterm.h.
22 (Fx_file_dialog): Check STRINGP (default_filename) to see it is
23 valid. Don't check !NILP (dir) because it is already checked with
24 CHECK_STRING.
25 (Fx_file_dialog) [!MAC_OSX]: Use FSSpec instead of FSRef for
26 specifying the default location and obtaining the selected
27 filename.
28
29 * macgui.h [!MAC_OSX && HAVE_CARBON]: Include Carbon.h.
30
31 * macmenu.h [TARGET_API_MAC_CARBON]: Don't include headers that
32 are included via Carbon.h.
33
34 * macterm.c [TARGET_API_MAC_CARBON && !MAC_OSX]: Define
35 USE_CARBON_EVENTS to 1.
36 [__MRC__ && TARGET_API_MAC_CARBON]: Don't declare `qd'.
37 (x_free_frame_resources): Call remove_window_handler for
38 non-tooltip windows.
39 [TARGET_API_MAC_CARBON]: Don't include headers that are included
40 via Carbon.h.
41 [TARGET_API_MAC_CARBON] (mac_do_track_dragUPP)
42 (mac_do_receive_dragUPP): New variables.
43 (mac_handle_service_event, init_service_handler): Put declarations
44 and definitions in #ifdef MAC_OSX.
45 (install_window_handler) [TARGET_API_MAC_CARBON]: Create UPPs for
46 drag-and-drop handler functions and register them.
47 (remove_window_handler): New function.
48 (do_ae_open_documents, mac_do_receive_drag) [!MAC_OSX]: Use
49 fsspec_to_posix_pathname.
50 (main): Change #if !TARGET_API_MAC_CARBON to #ifdef MAC_OS8.
51 (XTread_socket) [!MAC_OSX]: Don't pass keyboard events to TSM.
52 [MAC_OS8] (make_mac_terminal_frame) [TARGET_API_MAC_CARBON]: Set
53 default cursors.
54 (mac_initialize) [USE_CARBON_EVENTS && !MAC_OSX] : Don't call
55 init_service_handler or init_quit_char_handler.
56 (mac_initialize) [!MAC_OSX]: Don't call MakeMeTheFrontProcess.
57
58 * macterm.h (install_window_handler, remove_window_handler)
59 (posix_pathname_to_fsspec, fsspec_to_posix_pathname)
60 (mac_clear_font_name_table): New externs.
61
62 2005-03-03 Thien-Thi Nguyen <ttn@gnu.org>
63
64 * fileio.c (FILE_SYSTEM_CASE): Define macro if not already defined.
65 (Ffile_name_directory): Use FILE_SYSTEM_CASE unconditionally.
66 (Fexpand_file_name): Likewise.
67
68 2005-03-03 Thien-Thi Nguyen <ttn@gnu.org>
69
70 * emacs.c (Fkill_emacs): Use EXIT_SUCCESS;
71 no longer special-case VMS. Add bogus return value.
72
73 2005-03-02 Kim F. Storm <storm@cua.dk>
74
75 * dispextern.h (XASSERTS): Define to 0 if not already defined.
76 (xassert) [!XASSERTS]: Define dummy version.
77
78 2005-03-02 Kim F. Storm <storm@cua.dk>
79
80 * xdisp.c (redisplay_window): YABX (yet another bogus xassert).
81 Reported by David Kastrup.
82
83 2005-03-01 Ehud Karni <ehud@unix.mvs.co.il>
84
85 * xdisp.c (get_next_display_element): Fix control and escape
86 glyph from display vector.
87
88 2005-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
89
90 * keyboard.c (Fposn_at_x_y): Check integerness of X and Y.
91
92 2005-02-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
93
94 * gtkutil.c (xg_resize_outer_widget): Remove unneeded call to
95 gtk_window_resize and x_wm_set_size_hint.
96
97 2005-02-25 Kim F. Storm <storm@cua.dk>
98
99 * dispextern.h (OVERLAY_STRING_CHUNK_SIZE): Increase from 3 to 16.
100
101 * xdisp.c (init_from_display_pos): Don't read past end of
102 it->overlay_strings array.
103
104 2005-02-25 Stephan Stahl <stahl@eos.franken.de> (tiny change)
105
106 * buffer.c (syms_of_buffer): Fix typo.
107
108 2005-02-23 Lute Kamstra <lute@gnu.org>
109
110 * buffer.c (Foverlay_buffer): Doc fix.
111
112 2005-02-22 Kim F. Storm <storm@cua.dk>
113
114 * minibuf.c (Ftry_completion, Fall_completions): Allow both string
115 and symbol keys in alists and hash tables.
116
117 * xdisp.c (fast_find_position): Fix search for start of overlay.
118
119 2005-02-21 Kim F. Storm <storm@cua.dk>
120
121 * window.c (window_scroll_pixel_based): When scrolling backwards,
122 handle partial visible line at end of window even when we hit PT.
123
124 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
125
126 * keymap.h: Declare Fcurrent_active_maps, used in doc.c.
127
128 2005-02-21 Kim F. Storm <storm@cua.dk>
129
130 * xdisp.c (move_it_vertically_backward): Eliminate two xasserts.
131 I think those asserts are bogus if buffer contains invisible text
132 or images.
133
134 2005-02-21 David Kastrup <dak@gnu.org>
135
136 * gtkutil.c (xg_create_frame_widgets): UNBLOCK_INPUT on error.
137
138 2005-02-20 Kim F. Storm <storm@cua.dk>
139
140 * xdisp.c (pos_visible_p): Be sure to move to the specified
141 position. Always get the full ascent / descent of the
142 corresponding row, to return reliable rtop and rbot values.
143 (back_to_previous_visible_line_start): Fix 2005-01-18 change.
144 Must look one character back, as back_to_previous_line_start
145 returns position after the newline.
146 (move_it_vertically_backward): Fix heuristic for when to move further
147 back in case line_height * 2/3 is larger than window height.
148 (cursor_row_fully_visible_p): Rename make_cursor_line_fully_visible_p
149 as it does not do anything anymore. Add arg current_matrix_p to
150 use current matrix rather than desired matrix when set.
151 (try_cursor_movement): Don't scroll to make cursor row fully
152 visible if cursor didn't move. This avoids unexpected recentering
153 in case of blinking cursor or accepting process output.
154 Use current matrix to check cursor row visibility.
155 (redisplay_window): Fix whether to recenter or move to top in case
156 cursor line is taller than window height.
157 (find_first_unchanged_at_end_row): Stop search if we reach a row
158 which not enabled (instead of abort).
159
160 2005-02-18 Kim F. Storm <storm@cua.dk>
161
162 * xfaces.c (Finternal_set_lisp_face_attribute): Allow :color property
163 to be nil in a :box attribute value list; customize prints that
164 as lisp value when no box color is specified.
165
166 * .gdbinit (pitx, pit): Pretty print display iterator.
167 (prowx, prow): Pretty print glyph row.
168 (pcursorx, pcursor): Pretty print a window cursor.
169 (pwinx, pwin): Pretty print struct window.
170
171 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
172
173 * alloc.c (BLOCK_BYTES): Harmless typo.
174
175 2005-02-17 Andreas Schwab <schwab@suse.de>
176
177 * xfns.c (hack_wm_protocols): Use correct type for last parameter
178 of XGetWindowProperty to avoid aliasing issues.
179 (Fx_window_property): Likewise.
180
181 * xselect.c (Fx_disown_selection_internal): Use union of struct
182 input_event and struct selection_input_event to avoid aliasing issues.
183
184 * xterm.c (handle_one_xevent): Use union of struct input_event and
185 struct selection_input_event to avoid aliasing issues.
186 (SET_SAVED_MENU_EVENT): Adapt reference to inev.
187
188 2005-02-17 Kim F. Storm <storm@cua.dk>
189
190 * dispextern.h (enum it_method): New enum.
191 (GET_FROM_*): Its members.
192 (struct it): Change member method from function pointer to enum.
193
194 * xdisp.c (check_it, init_from_display_pos, handle_stop)
195 (setup_for_ellipsis, handle_single_display_spec)
196 (handle_composition_prop, next_overlay_string)
197 (get_overlay_strings, reseat_1, reseat_to_string)
198 (next_element_from_ellipsis, BUFFER_POS_REACHED_P)
199 (in_display_vector_p, display_line, get_next_display_element):
200 Change it->method from function pointer to enum.
201 (get_next_element): New array to map it->method to function.
202 (get_next_display_element): Use it.
203 (set_iterator_to_next): Use switch instead of if/else chain.
204
205 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
206
207 * w32select.c: Summary: Thorough rework to implement Unicode
208 clipboard operations and delayed rendering.
209
210 Drop last_clipboard_text and related code, keep track of
211 ownership via clipboard_owner instead. Drop old #if0 sections.
212
213 (DEFAULT_LCID, ANSICP, OEMCP, QUNICODE, QANSICP, QOEMCP)
214 (clipboard_owner, modifying_clipboard, cfg_coding_system)
215 (cfg_codepage, cfg_lcid, cfg_clipboard_type, current_text)
216 (current_coding_system, current_requires_encoding)
217 (current_num_nls, current_clipboard_type, current_lcid):
218 New static variables.
219
220 (convert_to_handle_as_ascii, convert_to_handle_as_coded)
221 (render, render_all, run_protected, lisp_error_handler)
222 (owner_callback, create_owner, setup_config)
223 (enum_locale_callback, cp_from_locale, coding_from_cp):
224 New local functions.
225
226 (term_w32select, globals_of_w32select): New global functions.
227
228 (Fw32_set_clipboard_data): Ignore parameter FRAME, use
229 clipboard_owner instead. Use delayed rendering and provide
230 all text formats. Provide CF_LOCALE if necessary.
231
232 (Fw32_get_clipboard_data): Handle CF_UNICODETEXT and
233 CF_LOCALE. Fall back to CF_TEXT, if CF_UNICODETEXT is not
234 available. Force DOS line-ends for decoding.
235
236 (Fx_selection_exists_p): Handle CF_UNICODETEXT.
237
238 (syms_of_w32select): Init and register new variables.
239
240 * w32.h: Add prototypes for globals_of_w32select and
241 term_w32select. Make the neighboring K&R declarations into
242 prototypes, too.
243
244 * emacs.c: Include w32.h to get function prototypes.
245 (main): Call globals_of_w32select.
246
247 * w32.c (term_ntproc): Call term_w32select.
248
249 * s/ms-w32.h: Guard MSC-specific #pragmas with an #ifdef.
250
251 2005-02-16 Kim F. Storm <storm@cua.dk>
252
253 * xdisp.c (BUFFER_POS_REACHED_P): Return true if pos reached and
254 at end of display vector.
255
256 2005-02-15 Richard M. Stallman <rms@gnu.org>
257
258 * xdisp.c (get_next_display_element): Fix escape-glyph criterion
259 for mode and header lines.
260
261 * lread.c (syms_of_lread) <user-init-file>: Doc fix.
262
263 * keymap.h (describe_map_tree): Change decl.
264
265 * keyboard.c (command_loop_1): Always use safe_run_hooks
266 to run Qdeferred_action_function.
267
268 * keymap.c (describe_map_tree): New arg MENTION_SHADOW. Calls changed.
269 (describe_map, describe_vector): Likewise. When it's 1,
270 don't omit shadowed bindings, instead mark them as shadowed.
271
272 * doc.c (Fsubstitute_command_keys): Compute list of shadowing maps
273 for describe_map_tree. Pass 1 for MENTION_SHADOW.
274
275 * data.c (Fsetq_default): Allow no arg case.
276
277 2005-02-14 Kenichi Handa <handa@m17n.org>
278
279 * coding.c (encode_coding_string): Always return a unibyte string.
280 If NOCOPY is nonzero and there's no need of encoding, make STR
281 unibyte directly.
282
283 * xselect.c (lisp_data_to_selection_data): If OBJ is a non-ASCII
284 multibyte string, signal an error instead of aborting.
285
286 2005-02-12 Dan Nicolaescu <dann@ics.uci.edu>
287
288 * keyboard.c: If HAVE_FCNTL_H include fcntl.h.
289
290 2005-02-12 Kim F. Storm <storm@cua.dk>
291
292 * xdisp.c (expose_window): Don't fix overlaps for mode lines.
293
294 2005-02-10 Kim F. Storm <storm@cua.dk>
295
296 * xdisp.c (try_window_id): Set first_unchanged_at_end_row to NULL
297 if it moves outside window or it doesn't display text.
298
299 2005-02-09 Kim F. Storm <storm@cua.dk>
300
301 * undo.c (Fprimitive_undo): Check that undo function does not
302 switch buffer.
303
304 2005-02-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
305
306 * xselect.c (selection_data_to_lisp_data): For the special case
307 type == XA_ATOM, data contains array of int, not array of Atom.
308 (x_property_data_to_lisp, selection_data_to_lisp_data): Comment
309 update: data must be array of int for format == 32.
310
311 2005-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
312
313 * undo.c (Fprimitive_undo): Check veracity of delta,start,end.
314
315 2005-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
316
317 * xfns.c (Fx_change_window_property): Use long array when format is 32.
318 (Fx_window_property): If format is 32 and long is bigger than 32 bits,
319 convert long array returned from XGetWindowProperty to an int array.
320 (x_set_tool_bar_lines): Check that width and height is greater than
321 zero before clearing area.
322
323 * xselect.c (x_reply_selection_request): Pass long array to
324 XChangeProperty so that 64 bit longs are handeled correctly.
325 (x_get_window_property): If format is 32 and long is bigger than 32
326 bits convert data from XGetWindowProperty from long array to int array.
327 (lisp_data_to_selection_data): When the input is a vector and the
328 format is 32, allocate a long array even if long is bigger than 32 bits.
329 (x_fill_property_data): Use char, short and long as the man page
330 for XChangeProperty specifies. This way the data returned is OK for
331 both 32 and 64 bit machines.
332 (x_handle_dnd_message): Calculate size correctly even for 64 bit
333 machines.
334 (Fx_send_client_event): Undo change from 2005-02-05,
335 x_fill_property_data now handles that case.
336
337 * xfns.c (Fx_backspace_delete_keys_p): Add comment about the
338 reason for the approach in the code.
339
340 2005-02-07 Kim F. Storm <storm@cua.dk>
341
342 * undo.c (Fprimitive_undo): Record max one dummmy apply element.
343
344 2005-02-06 Richard M. Stallman <rms@gnu.org>
345
346 * eval.c (Frun_hook_with_args)
347 (Frun_hook_with_args_until_success)
348 (Frun_hook_with_args_until_failure): Doc fixes.
349
350 2005-02-05 Andreas Schwab <schwab@suse.de>
351
352 * sysdep.c (sys_subshell): Properly terminate execlp argument list.
353
354 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
355
356 * xselect.c (Fx_send_client_event, x_handle_dnd_message): Handle
357 the longs in a XClientMessageEvent correctly when long is 64 bits.
358
359 2005-02-05 Eli Zaretskii <eliz@gnu.org>
360
361 * xfaces.c (face_color_supported_p): Use HAVE_WINDOW_SYSTEM
362 instead of HAVE_X_WINDOWS, for non-X windowed sessions.
363
364 2005-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
365
366 * xmenu.c (menubar_selection_callback): Force out GTK buffered
367 events so the menu event comes after them. This is to prevent sit-for
368 from exiting on buffered events directly after a menu selection,
369 lisp code for Help => About Emacs uses sit-for.
370
371 * gtkutil.c (create_menus): Connect selection-done event instead of
372 the deactivate event to deactivate_cb. This will make the last
373 leave event come before the call to deactivate_cb, so the leave
374 event does not make sit-for exit after a menu selection.
375
376 2005-02-03 Kim F. Storm <storm@cua.dk>
377
378 * dispnew.c (build_frame_matrix_from_leaf_window)
379 [!GLYPH_DEBUG]: Fix xassert.
380
381 * xfaces.c (x_free_gc) [!GLYPH_DEBUG]: Fix xassert.
382
383 * xfns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
384
385 2005-02-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
386
387 * mac.c: Use MAC_OS_X_VERSION_MAX_ALLOWED to conditionalize by
388 the compiling OS version.
389
390 * macfns.c (x_create_tip_frame): Likewise.
391
392 * macterm.c (mac_draw_string_common, x_make_frame_visible): Likewise.
393
394 2005-02-03 Richard M. Stallman <rms@gnu.org>
395
396 * xterm.c (x_error_quitter): On GCC 3 and up, specify noinline.
397
398 * xdisp.c (echo_area_display): Clear echo_message_buffer.
399
400 * buffer.c (Fbury_buffer): Doc fix.
401
402 2005-02-02 Steven Tamm <steventamm@mac.com>
403
404 * macfns.c (unwind_create_frame): Fixing compile error due to
405 xassert being uncondition, but predicate is.
406 * dispnew.c (update_window): Fixing compile error due to
407 xassert being uncondition, but predicate is.
408
409 2005-02-02 Miles Bader <miles@gnu.org>
410
411 * dispextern.h (xassert): Enable unconditionally.
412
413 2005-02-02 Kim F. Storm <storm@cua.dk>
414
415 * undo.c (Fprimitive_undo): Fix dummy apply undo entry.
416
417 2005-02-02 Kenichi Handa <handa@m17n.org>
418
419 * casefiddle.c (casify_object): Enable changing characters of
420 different byte length.
421 (casify_region): Fix loop condition, args to replace_range_2, and
422 update opoint_byte.
423
424 * insdel.c (replace_range_2): Fix bugs in adjusting markers and point.
425
426 2005-02-01 Kim F. Storm <storm@cua.dk>
427
428 * xdisp.c (back_to_previous_visible_line_start): Reset iterator
429 stack before calling handle_display_prop.
430
431 2005-01-31 Kim F. Storm <storm@cua.dk>
432
433 * undo.c (Qapply): New lisp var.
434 (syms_of_undo): Intern and staticpro it.
435 (Fprimitive_undo): Support formats (apply FUNNAME . ARGS) and
436 (apply DELTA BEG END FUNNAME . ARGS) instead of (FUNNAME . ARGS).
437
438 * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
439
440 2005-01-30 Jesper Harder <harder@phys.au.dk>
441
442 * macterm.c (syms_of_macterm) <mac-reverse-ctrl-meta>
443 <mac-emulate-three-button-mouse>: Fix docstring indentation.
444
445 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
446
447 * undo.c (syms_of_undo) <undo-outer-limit>: Doc update.
448 Increase value to 3 Meg.
449
450 2005-01-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
451
452 * xfns.c (show_hourglass): Use FRAME_X_WINDOW as parent for GTK,
453 button events are not received otherwise.
454
455 2005-01-29 Richard M. Stallman <rms@gnu.org>
456
457 * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
458
459 * undo.c (Fprimitive_undo): Handle (FUNNAME . ARGS) by calling FUNNAME.
460
461 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
462
463 * keymap.c (access_keymap): YAILOM.
464
465 2005-01-27 Kim F. Storm <storm@cua.dk>
466
467 * xdisp.c (get_phys_cursor_geometry): New function to calculate
468 phys cursor position and size for hollow cursor. Position is
469 aligned with get_glyph_string_clip_rect and ensures that a hollow
470 cursor is shown, even when the actual glyph is not visible.
471
472 * dispextern.h (get_phys_cursor_geometry): Add prototype.
473
474 * xterm.c (x_clip_to_row): Ensure y >= 0.
475 (x_draw_hollow_cursor): Use get_phys_cursor_geometry.
476
477 * w32term.c (x_draw_hollow_cursor): Use get_phys_cursor_geometry.
478
479 * macterm.c (x_draw_hollow_cursor): Use get_phys_cursor_geometry.
480
481 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
482
483 * xterm.c (x_error_quitter): Add a prototype. Make it static again.
484
485 2005-01-27 Kim F. Storm <storm@cua.dk>
486
487 * xdisp.c (get_glyph_string_clip_rect): Always show a cursor
488 glyph, even when row is only partially visible and actual cursor
489 position is not visible.
490
491 2005-01-24 Richard M. Stallman <rms@gnu.org>
492
493 * xterm.c (x_error_quitter): No longer static, and moved after
494 x_error_handler.
495
496 2005-01-24 Kim F. Storm <storm@cua.dk>
497
498 * xdisp.c (move_it_by_lines): If we move forward after going too
499 far back, cancel move if end position is same as start position.
500
501 2005-01-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
502
503 * dispextern.h (struct glyph_string): New members clip_head and
504 clip_tail.
505
506 * xdisp.c (get_glyph_string_clip_rect): Restrict horizontal clip
507 region to the area between clip_head and clip_tail.
508 (draw_glyphs): Record the area that need to be actually redrawn to
509 the new variables clip_head and clip_tail when there are
510 overhangs. Set values of these variables to the corresponding
511 members in struct glyph_string. Refine x coordinates for
512 notice_overwritten_cursor using clip_head and clip_tail.
513
514 * macgui.h (STORE_XCHARSETSTRUCT): New macro.
515
516 * macterm.c (mac_compute_glyph_string_overhangs): Implement with
517 QDTextBounds.
518 (x_draw_glyph_string): Don't fill the background of the successor
519 of a glyph with a right overhang if the successor will draw a cursor.
520 (XLoadQueryFont): Obtain font metrics using QDTextBounds.
521 (x_redisplay_interface): Add entry for compute_glyph_string_overhangs.
522
523 2005-01-24 Kim F. Storm <storm@cua.dk>
524
525 * window.c (window_scroll_pixel_based): Fix scrolling in the wrong
526 direction if window height was smaller than next-screen-context-lines.
527 Now always scroll at least one line in the requested direction.
528 Ensure that we actually do scroll backwards when requested to do so.
529
530 * xdisp.c (redisplay_window): Only try to make cursor line fully
531 visible once (to avoid redisplay loop).
532
533 2005-01-23 Kim F. Storm <storm@cua.dk>
534
535 * window.c (Fpos_visible_in_window_p): Simplify return value for
536 partially visible rows.
537 (window_scroll_pixel_based): Adapt to that change.
538
539 * window.c (window_scroll_pixel_based): Force moving to next line
540 if scrolling doesn't move start point, e.g. if looking at tall image.
541
542 * xdisp.c (pos_visible_p): Return 0 if non-interactive.
543 Clear last_height before calling line_bottom_y to get real height.
544 Fix calculation of y.
545
546 2005-01-22 Steven Tamm <steventamm@mac.com>
547
548 * s/darwin.h: Removed PTY_ITERATION from here.
549 (DARWIN): Define.
550 * process.c (init_process): Default process-connection-type to
551 nil on darwin 6 or less, t if it is 7 or higher. This way the
552 broken pty behavior is still allowed on darwin 6 for interactive
553 processes for people that know what they are doing.
554
555 2005-01-22 Kim F. Storm <storm@cua.dk>
556
557 * window.c (auto_window_vscroll_p): New boolean.
558 (syms_of_window): DEFVAR_BOOL it.
559 (Fpos_visible_in_window_p): Extend return value to include RTOP
560 and RBOT values if FULLY is nil.
561 (window_scroll_pixel_based): Adjust vscroll for partially visible
562 rows if auto_window_vscroll_p is set.
563 (Fset_window_vscroll): Do nothing if vscroll is not modified.
564
565 * xdisp.c (pos_visible_p): Replace FULLY arg by RTOP and RBOT args
566 to return number of partially invisible pixels at top and bottom
567 of the dislay row at POS.
568
569 * lisp.h (pos_visible_p): Fix prototype.
570
571 2005-01-21 Richard M. Stallman <rms@gnu.org>
572
573 * fileio.c (Fcopy_file): Doc fix.
574
575 2005-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
576
577 * gtkutil.c (xg_tool_bar_detach_callback): Remove unused variable bw.
578 (xg_get_file_name): Move declaration ofx_use_old_gtk_file_dialog to
579 start of function for older compilers.
580
581 2005-01-20 Richard M. Stallman <rms@gnu.org>
582
583 * editfns.c (Fmessage): If arg is "", return "" (as before).
584
585 * keymap.c (access_keymap): Protect from bad value of meta_prefix_char.
586
587 * .gdbinit (xgetptr, xgetint, xgettype): Copy $arg0 into a temp
588 variable.
589
590 2005-01-20 Steven Tamm <steventamm@mac.com>
591
592 * editfns.c (Voperating_system_release): Add.
593 (init_editfns): Assign new variable operating-system-release
594 based on call to uname if available.
595 (get_operating_system_release): Add function to
596 allow c-level access to operating system release.
597
598 * config.h: Regenerated.
599
600 * s/darwin.h (PTY_ITERATION): Don't allow PTYs on darwin 6 or less.
601 (MIN_PTY_KERNEL_VERSION): Define minimum kernel version for
602 using ptys as '7'.
603
604 2005-01-20 Kim F. Storm <storm@cua.dk>
605
606 * alloc.c (STRING_MARKED_P, VECTOR_MARKED_P): Return boolean.
607
608 * xterm.c (x_draw_glyph_string_box): Fix last_x for full width rows.
609 Thanks to Chong Yidong <cyd@stupidchicken.com> for debugging this.
610
611 * macterm.c (x_draw_glyph_string_box): Likewise.
612
613 * w32term.c (x_draw_glyph_string_box): Likewise.
614
615 * indent.c (Fvertical_motion): Temporarily disable selective display.
616
617 2005-01-19 Kim F. Storm <storm@cua.dk>
618
619 * xdisp.c (note_mode_line_or_margin_highlight): Fix :pointer
620 image property.
621
622 * fns.c (sweep_weak_table): Advance prev pointer when we keep a pair.
623
624 2005-01-18 Kim F. Storm <storm@cua.dk>
625
626 * xdisp.c (fast_find_position): Backtrack to find first row if
627 charpos is inside a display overlay that spans multiple lines.
628
629 2005-01-18 Kenichi Handa <handa@m17n.org>
630
631 * coding.c (decode_coding_iso2022): Translate invalid codes if
632 translation-table is specified.
633
634 2005-01-18 Kim F. Storm <storm@cua.dk>
635
636 * xdisp.c (back_to_previous_visible_line_start): Undo 2004-12-28
637 change. If handle_display_prop indicates newline is replaced by
638 image or text, move back to start of relevant overlay or interval
639 and continue scan from there. Simplify.
640
641 2005-01-17 Kim F. Storm <storm@cua.dk>
642
643 * dispnew.c (mode_line_string, marginal_area_string):
644 Fix off-by-one error in search for glyph.
645
646 2005-01-16 Kim F. Storm <storm@cua.dk>
647
648 * macterm.c (syms_of_macterm) <mac-allow-anti-aliasing>: Doc fix.
649
650 2005-01-16 Steven Tamm <steventamm@mac.com>
651
652 * macterm.c (mac_to_x_fontname): Remove spurious argument.
653
654 2005-01-16 Andreas Schwab <schwab@suse.de>
655
656 * macterm.c (mac_draw_string_common): Fix compilation on OSX 10.1.
657
658 2005-01-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
659
660 * fringe.c (Fdefine_fringe_bitmap, init_fringe): When assigning
661 fringe_faces, cast result from xmalloc/xrealloc to Lisp_Object *.
662
663 2005-01-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
664
665 * keyboard.c (READABLE_EVENTS_DO_TIMERS_NOW)
666 (READABLE_EVENTS_FILTER_EVENTS, READABLE_EVENTS_IGNORE_SQUEEZABLES):
667 New flags for readable_events.
668 (get_filtered_input_pending, readable_filtered_events): Remove.
669 (tracking_off): Call readable_events and get_input_pending with
670 flag READABLE_EVENTS_DO_TIMERS_NOW.
671 (readable_events): Move code from old readable_filtered_events here,
672 but check new READABLE_EVENTS_* in argument flags instead of previous
673 two boolean arguments do_timers_now and filter_events.
674 If we are doing mouse tracking and the mouse moved, return only if
675 READABLE_EVENTS_IGNORE_SQUEEZABLES is not set in flags.
676 (swallow_events): Call get_input_pending with flag
677 READABLE_EVENTS_DO_TIMERS_NOW.
678 (get_input_pending): Move code from old get_filtered_input_pending
679 here. Replace boolean arguments do_timers_now, filter_events with
680 flags, and pass flags to readable_events. Document new
681 READABLE_EVENTS_* flags.
682 (detect_input_pending_ignore_squeezables): New function.
683 (detect_input_pending_run_timers): Call get_input_pending with flag
684 READABLE_EVENTS_DO_TIMERS_NOW.
685 (Finput_pending_p): Call get_input_pending with flags
686 READABLE_EVENTS_DO_TIMERS_NOW and READABLE_EVENTS_FILTER_EVENTS.
687
688 * dispnew.c (update_window, update_frame_1): Replace calls to
689 detect_input_pending with detect_input_pending_ignore_squeezables
690 so that redisplay is not paused if the event queue contains only
691 mouse movements.
692
693 * lisp.h: Declare detect_input_pending_ignore_squeezables.
694
695 2005-01-15 Steven Tamm <steventamm@mac.com>
696
697 * macterm.c (Vmac_use_core_graphics): Declare variable for
698 mac-allow-anti-aliasing.
699 (syms_of_macterm): DEFVAR_LISP and initialize it.
700 (mac_draw_string_common): Use core graphics text rendering if
701 mac-allow-anti-aliasing is enabled.
702
703 * macfns.c (Fx_file_dialog): Save As dialog includes only the
704 file name in the text box.
705
706 2005-01-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
707
708 * macfns.c (x_set_foreground_color, x_set_background_color):
709 Sync with xfns.c.
710 (mac_window, x_create_tip_frame): Use XSetWindowBackground.
711 * macterm.c (XSetBackground, XSetWindowBackground): New functions.
712 * macterm.h (XSetBackground, XSetWindowBackground): Add externs.
713
714 2005-01-14 Kim F. Storm <storm@cua.dk>
715
716 * keyboard.c (Fposn_at_x_y): Add optional arg WHOLE.
717
718 2005-01-13 Richard M. Stallman <rms@gnu.org>
719
720 * keymap.c (Fcurrent_active_maps): Ignore Voverriding_local_map
721 if Voverriding_terminal_local_map is non-nil.
722
723 * keyboard.c (syms_of_keyboard): Doc fix.
724
725 2005-01-13 Kim F. Storm <storm@cua.dk>
726
727 * xdisp.c (Fformat_mode_line): Fix last change. Remove NO_PROPS arg
728 (specify 0 for FACE instead). Reorder arg list. Doc fix.
729
730 2005-01-12 Richard M. Stallman <rms@gnu.org>
731
732 * xdisp.c (Fformat_mode_line): New arg FACE specifies a default
733 face property for characters that don't specify one.
734
735 * fns.c (Frequire): Record in load-history unconditionally.
736
737 2005-01-10 Kim F. Storm <storm@cua.dk>
738
739 * dispextern.h (merge_faces): Rename from merge_into_realized_face.
740
741 * xfaces.c (merge_faces): Rename from merge_into_realized_face.
742 Callers changed.
743 Add support to merge with lisp face id too (if face_name is t).
744
745 * xdisp.c (get_next_display_element, next_element_from_display_vector):
746 Don't lookup lface_id from display table glyphs here; instead use
747 merge_faces to merge the lisp face id into current face.
748
749 2005-01-09 Kim F. Storm <storm@cua.dk>
750
751 * dispextern.h (struct it): New member dpvec_face_id.
752 (merge_into_realized_face): Add prototype.
753
754 * xfaces.c (merge_into_realized_face): New function. Used to
755 merge escape-glyph face or face from display table into current face.
756
757 * xdisp.c (Vshow_nonbreak_escape): New lisp var.
758 (syms_of_xdisp): DEFVAR_LISP it.
759 (escape_glyph_face): Remove var.
760 (redisplay_window): Don't initialize it.
761 (setup_for_ellipsis, get_next_display_element):
762 Set it->dpvec_face_id to -1.
763 (get_next_display_element): Test Vshow_nonbreak_escape.
764 Do not setup escape_glyph_face.
765 Properly merge escape-glyph face or face from display table with
766 current face for escape and control characters.
767 Set it->dpvec_face_id to relevant face id instead of adding it to each
768 element of display vector.
769 (next_element_from_display_vector): If it->dpvec_face_id is set,
770 use that instead of lface_id from glyph itself.
771
772 2005-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
773
774 * xterm.h (struct x_output): New member, toolbar_detached.
775
776 * gtkutil.c (xg_create_frame_widgets): Set initial tool bar height to
777 38.
778 (xg_tool_bar_detach_callback): Set toolbar_detached to 1.
779 (xg_tool_bar_attach_callback): Set toolbar_detached to 0.
780 (xg_create_tool_bar): Initialize toolbar_detached.
781 (update_frame_tool_bar): Only set FRAME_TOOLBAR_HEIGHT (f) if
782 toolbar_detached is zero.
783
784 2005-01-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
785
786 * xmenu.c (create_and_show_popup_menu): Pass zero as button to
787 gtk_menu_popup if not for_click, so callbacks for the menu are called.
788
789 * gtkutil.c (xg_gtk_scroll_destroy, xg_create_scroll_bar)
790 (xg_tool_bar_callback, xg_tool_bar_help_callback)
791 (update_frame_tool_bar): Cast to EMACS_INT to avoid compiler warning.
792
793 * xselect.c (x_get_foreign_selection, x_fill_property_data)
794 (Fx_get_atom_name, Fx_send_client_event): Replace XFLOAT with
795 XFLOAT_DATA to get extract number from Lisp object.
796
797 2005-01-07 Kim F. Storm <storm@cua.dk>
798
799 * xdisp.c (set_iterator_to_next): Fix 2004-12-13 change.
800 Set stop_charpos to current charpos instead of 0.
801
802 2005-01-06 Nick Roberts <nickrob@snap.net.nz>
803
804 * xdisp.c (Fformat_mode_line): First arg now required.
805
806 2005-01-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
807
808 * macterm.c (XLoadQueryFont): Correctly handle 0 size
809 font widths that are returned from some Japanese fonts.
810
811 2005-01-06 Kim F. Storm <storm@cua.dk>
812
813 * fringe.c (fringe_faces): Change to Lisp_Object pointer.
814 (draw_fringe_bitmap_1): Lookup user defined fringe faces here.
815 (destroy_fringe_bitmap): Set fringe_faces element to nil.
816 (Fdefine_fringe_bitmap, init_fringe): Change allocation of
817 fringe_faces array and init elements to nil.
818 (Fset_fringe_bitmap_face): Set fringe_faces to face name instead of
819 non-persistent face id.
820 (mark_fringe_data): New function for GC.
821
822 * alloc.c (mark_fringe_data): Declare extern.
823 (Fgarbage_collect): Call mark_fringe_data.
824
825 * alloc.c (overrun_check_free): Invalidate freed memory if
826 XMALLOC_CLEAR_FREE_MEMORY is defined.
827
828 2005-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
829
830 * macfns.c: Include sys/param.h.
831 [TARGET_API_MAC_CARBON] (mac_nav_event_callback): New declaration
832 and function.
833 [TARGET_API_MAC_CARBON] (Fx_file_dialog): Use MAXPATHLEN for size
834 of filename string. Set event callback function when creating
835 dialog boxes. Add code conversions for filenames. Don't dispose
836 apple event descriptor record if failed to create it.
837
838 * macterm.c: Include sys/param.h.
839 [USE_CARBON_EVENTS] (mac_handle_window_event): Add handler for
840 kEventWindowUpdate.
841 (install_window_handler) [USE_CARBON_EVENTS]: Register it.
842 (do_ae_open_documents) [TARGET_API_MAC_CARBON]: Get FSRef instead
843 of FSSpec from apple event descriptor record.
844 (do_ae_open_documents) [TARGET_API_MAC_CARBON]: Use MAXPATHLEN for
845 size of filename string.
846 [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Likewise.
847 [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Return error when a
848 file dialog is in action.
849 [TARGET_API_MAC_CARBON] (mac_do_track_drag): Likewise.
850 Reject only when there are no filename items. Set background color
851 before (un)highlighting the window below the dragged items.
852 (XTread_socket) [!USE_CARBON_EVENTS]: Don't call do_window_update.
853
854 2005-01-05 Romain Francoise <romain@orebokech.com>
855
856 * term.c (encode_terminal_code): Fix buffer size computation.
857
858 2005-01-04 Richard M. Stallman <rms@gnu.org>
859
860 * xdisp.c (Fformat_mode_line): Doc fix.
861
862 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
863
864 * alloc.c (refill_memory_reserve): Move.
865 (emacs_blocked_free, emacs_blocked_malloc, emacs_blocked_realloc)
866 (reset_malloc_hooks, uninterrupt_malloc) [SYNC_INPUT]: Don't define.
867
868 2005-01-03 Richard M. Stallman <rms@gnu.org>
869
870 * window.c (window_scroll_pixel_based): Don't correct preserve_y
871 for CURRENT_HEADER_LINE_HEIGHT when moving backwards.
872
873 2005-01-03 Jason Rumney <jasonr@gnu.org>
874
875 * w32bdf.c (w32_load_bdf_font): Set fontp->average_width and
876 fontp->space_width to FONT_WIDTH so they are valid.
877
878 * w32fns.c (w32_load_system_font): Set FONT_WIDTH to maximum, not
879 average width. Set fontp->average_width and fontp->space_width to
880 their appropriate values.
881
882 * w32term.c (x_new_font): Set FRAME_COLUMN_WIDTH to
883 fontp->average_width, not FONT_WIDTH. Set FRAME_SPACE_WIDTH to
884 fontp->space_width.
885
886 2005-01-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
887
888 * macterm.c (x_new_font): Set FRAME_SPACE_WIDTH.
889 (x_font_min_bounds, XLoadQueryFont): Use the correct font width
890 metrics for max and min bounds.
891 (x_load_font): Correctly calculate average font width metrics.
892
893 2005-01-02 Richard M. Stallman <rms@gnu.org>
894
895 * alloc.c (Fgarbage_collect): Don't truncate_undo_list on dead buffers.
896
897 2004-12-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
898
899 * xterm.c (handle_one_xevent): Clear area in expose event for GTK.
900
901 2004-12-31 Richard M. Stallman <rms@gnu.org>
902
903 * xdisp.c (setup_for_ellipsis, get_next_display_element):
904 Set it->ellipsis_p to 1 or 0.
905 (display_line): Record whether row ends in mid-ellipsis.
906 (set_cursor_from_row): If ends in ellipsis. find start of it.
907 (cursor_row_p): If PT's at the end of the ellipsis the row
908 ends within, don't display cursor on this row.
909
910 * dispextern.h (struct it): New element ellipsis_p.
911 (struct glyph_row): New element ends_in_ellipsis_p.
912
913 * xdisp.c (BUFFER_POS_REACHED_P): We haven't reached the specified
914 position if we're reading from something other than the buffer.
915
916 * window.c (window_scroll_pixel_based): Only look at
917 Vscroll_preserve_screen_position if the old PT can't be kept.
918 (syms_of_window) <scroll-preserve-screen-position>: Doc fix.
919
920 2004-12-30 Kim F. Storm <storm@cua.dk>
921
922 * xdisp.c (get_line_height_property): New function extracted from
923 original calc_line_height_property.
924 (calc_line_height_property): Rework. Handle t and (nil . ratio).
925 (x_produce_glyphs): Use them to handle line-height and
926 line-spacing according to new height spec.
927 (Qtotal): Remove.
928 (syms_of_xdisp): Remove intern and staticpro for Qtotal.
929
930 2004-12-30 Kenichi Handa <handa@m17n.org>
931
932 * fileio.c (Finsert_file_contents): Don't use
933 current_buffer->buffer_file_coding_system even if REPLACE is
934 non-nil. Call Qafter_insert_file_set_coding with the second arg VISIT.
935
936 * fontset.h (struct font_info): New members space_width and
937 average_width.
938
939 * frame.h (struct frame): New member space_width.
940 (FRAME_SPACE_WIDTH): New macro.
941
942 * xterm.h (struct x_display_info): New member Xatom_AVERAGE_WIDTH.
943
944 * xterm.c (x_new_font): Set FRAME_COLUMN_WIDTH to
945 fontp->average_width, not FONT_WIDTH. Set FRAME_SPACE_WIDTH to
946 fontp->space_width.
947 (x_load_font): Calculate fontp->space_width and fontp->average_width.
948 (x_term_init): Initialize dpyinfo->Xatom_AVERAGE_WIDTH.
949
950 * xdisp.c (x_produce_glyphs): Calculate tab width by
951 FRAME_SPACE_WIDTH, not FRAME_COLUMN_WIDTH.
952
953 2004-12-29 Sanghyuk Suh <han9kin@mac.com>
954
955 * macterm.c (SelectionRange): Add Xcode position apple event struct.
956 (do_ae_open_documents): Handle Xcode-style file position open events.
957
958 2004-12-29 Luc Teirlinck <teirllm@auburn.edu>
959
960 * buffer.c (syms_of_buffer) <vertical-scroll-bar>: Correct typo.
961
962 2004-12-29 Richard M. Stallman <rms@gnu.org>
963
964 * buffer.c (syms_of_buffer) <vertical-scroll-bar>: Doc fix.
965
966 2004-12-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
967
968 * macfns.c (install_window_handler): Modify extern to return OSErr
969 value.
970 (mac_window): Handle return value of install_window_handler.
971
972 * macterm.c (reflect_byte): Remove function.
973 (mac_create_bitmap_from_bitmap_data): Don't call reflect_byte.
974 Lookup table instead.
975 (mac_do_font_lists): Simplify calculation of the longest
976 nonspecial string.
977 (init_mac_drag_n_drop): Remove function and declaration.
978 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
979 init_mac_drag_n_drop.
980 (mac_do_track_drag): New function and declaration.
981 (install_window_handler): Return OSErr value.
982 (install_window_handler) [TARGET_API_MAC_CARBON]:
983 Register handlers for tracking/receiving drag-and-drop items.
984 (do_ae_open_documents): Generate unibyte strings for filenames.
985 (mac_do_receive_drag) [TARGET_API_MAC_CARBON] : Likewise.
986 Reject only non-filename items. Set event modifiers, and return value.
987
988 2004-12-28 Dan Nicolaescu <dann@ics.uci.edu>
989
990 * coding.c (decode_coding): Fix previous change.
991
992 2004-12-28 Richard M. Stallman <rms@gnu.org>
993
994 * xdisp.c (back_to_previous_visible_line_start):
995 Don't call handle_display_prop.
996
997 2004-12-28 Dan Nicolaescu <dann@ics.uci.edu>
998
999 * coding.c (decode_coding_XXX, decode_composition_emacs_mule)
1000 (decode_coding_emacs_mule, encode_coding_emacs_mule)
1001 (decode_coding_iso2022, encode_designation_at_bol)
1002 (encode_coding_iso2022, decode_coding_sjis_big5, decode_eol)
1003 (decode_coding): Constify arguments and local vars.
1004
1005 2004-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1006
1007 * xmenu.c (popup_get_selection): Only pop down dialogs
1008 on C-g and Escape.
1009 (popup_get_selection): Remove parameter down_on_keypress.
1010 (create_and_show_popup_menu, create_and_show_dialog):
1011 Remove parameter down_on_keypress to popup_get_selection.
1012
1013 2004-12-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1014
1015 * dispextern.h: Change HAVE_CARBON to MAC_OS.
1016 (struct glyph_string): Likewise.
1017
1018 * emacs.c (main) [MAC_OS8]: Call mac_term_init instead of
1019 mac_initialize.
1020
1021 * fileio.c (Fnext_read_file_uses_dialog_p, Fread_file_name):
1022 Change TARGET_API_MAC_CARBON to HAVE_CARBON.
1023
1024 * fns.c (vector): Change MAC_OSX to MAC_OS.
1025
1026 * frame.c (x_set_frame_parameters, x_report_frame_params)
1027 (x_set_fullscreen): Remove #ifndef HAVE_CARBON.
1028 (x_set_border_width, Vdefault_frame_scroll_bars):
1029 Change HAVE_CARBON to MAC_OS.
1030
1031 * image.c [MAC_OS]: Include sys/stat.h.
1032 [MAC_OS && !MAC_OSX]: Include sys/param.h, ImageCompression.h, and
1033 QuickTimeComponents.h.
1034
1035 * mac.c [!MAC_OSX] (mac_wait_next_event): Add extern.
1036 [!MAC_OSX] (select): Use mac_wait_next_event.
1037 [!MAC_OSX] (run_mac_command): Change EXEC_SUFFIXES to Vexec_suffixes.
1038 [!MAC_OSX] (select, run_mac_command): Change `#ifdef
1039 TARGET_API_MAC_CARBON' to `#if TARGET_API_MAC_CARBON'.
1040 (mac_clear_font_name_table): Add extern.
1041 (Fmac_clear_font_name_table): New defun.
1042 (syms_of_mac): Defsubr it.
1043 [MAC_OSX] (SELECT_POLLING_PERIOD_USEC): New define.
1044 [MAC_OSX] (select_and_poll_event): New function.
1045 [MAC_OSX] (sys_select): Use it.
1046 [MAC_OSX && SELECT_USE_CFSOCKET] (socket_callback): New function.
1047 [MAC_OSX && SELECT_USE_CFSOCKET]
1048 (SELECT_TIMEOUT_THRESHOLD_RUNLOOP, EVENT_CLASS_SOCK): New defines.
1049 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]: Use CFSocket and
1050 RunLoop for simultaneously monitoring two kinds of inputs, window
1051 events and process outputs, without periodically polling.
1052
1053 * macfns.c (mac_initialized): Remove extern.
1054 (stricmp): Put in #if 0. All callers changed to use xstricmp in
1055 xfaces.c.
1056 (strnicmp): Decrement `n' at the end of each loop, not the beginning.
1057 (check_mac): Use the term "Mac native windows" instead of "Mac OS".
1058 (check_x_display_info, x_display_info_for_name): Sync with xfns.c.
1059 (mac_get_rdb_resource): New function (from w32reg.c).
1060 (x_get_string_resource): Use it.
1061 (install_window_handler): Add extern.
1062 (mac_window): New function.
1063 (Fx_create_frame): Use it instead of make_mac_frame.
1064 Set parameter for Qfullscreen. Call x_wm_set_size_hint.
1065 (Fx_open_connection, Fx_close_connection): New defuns.
1066 (syms_of_macfns): Defsubr them.
1067 (x_create_tip_frame) [TARGET_API_MAC_CARBON]:
1068 Add kWindowNoUpdatesAttribute to the window attribute.
1069 (x_create_tip_frame) [!TARGET_API_MAC_CARBON]: Use NewCWindow.
1070 (x_create_tip_frame): Don't call ShowWindow.
1071 (Fx_show_tip): Call ShowWindow.
1072 (Fx_file_dialog): Change `#ifdef TARGET_API_MAC_CARBON' to `#if
1073 TARGET_API_MAC_CARBON'.
1074 (mac_frame_parm_handlers): Set handlers for Qfullscreen.
1075 (syms_of_macfns) [MAC_OSX]: Initialize mac_in_use to 0.
1076
1077 * macgui.h [!MAC_OSX]: Don't include Controls.h. Include Windows.h.
1078 (Window): Typedef to WindowPtr and move outside `#if
1079 TARGET_API_MAC_CARBON'.
1080 (XSizeHints): New struct.
1081
1082 * macterm.c (x_update_begin, x_update_end)
1083 [TARGET_API_MAC_CARBON]: Disable screen updates during update of a
1084 frame.
1085 (x_draw_glyph_string_background, x_draw_glyph_string_foreground)
1086 [MAC_OS8]: Use XDrawImageString/XDrawImageString16.
1087 (construct_mouse_click): Put in #if 0.
1088 (x_check_fullscreen, x_check_fullscreen_move): Remove decls.
1089 (x_scroll_bar_create, x_scroll_bar_handle_click): Change `#ifdef
1090 TARGET_API_MAC_CARBON' to `#if TARGET_API_MAC_CARBON'.
1091 (activate_scroll_bars, deactivate_scroll_bars)
1092 [!TARGET_API_MAC_CARBON]: Use ActivateControl/DeactivateControl.
1093 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Reposition window
1094 if the position is neither user-specified nor program-specified.
1095 (x_free_frame_resources): Free size_hints.
1096 (x_wm_set_size_hint): Allocate size_hints if needed. Set size_hints.
1097 (mac_clear_font_name_table): New function.
1098 (mac_do_list_fonts): Initialize font_name_table if needed.
1099 (x_list_fonts): Don't initialize font_name_table. Add BLOCK_INPUT
1100 around mac_do_list_fonts.
1101 (mac_unload_font): New function.
1102 (x_load_font): Add BLOCK_INPUT around XLoadQueryFont.
1103 (init_mac_drag_n_drop, mac_do_receive_drag): Enclose declarations
1104 and definitions with #if TARGET_API_MAC_CARBON.
1105 [USE_CARBON_EVENTS] (mac_handle_window_event): Add decl.
1106 (install_window_handler): Add decl.
1107 (do_window_update): Add BeginUpdate/EndUpdate for the tooltip
1108 window. Use UpdateControls. Get the rectangle that should be
1109 updated and restrict the target of expose_frame to it.
1110 (do_grow_window): Set minimum height/width according to size_hints.
1111 (do_grow_window) [TARGET_API_MAC_CARBON]: Use ResizeWindow.
1112 (do_zoom_window): Don't use x_set_window_size.
1113 [USE_CARBON_EVENTS] (mac_handle_window_event): New function.
1114 (install_window_handler): New function.
1115 [!USE_CARBON_EVENTS] (mouse_region): New variable.
1116 [!USE_CARBON_EVENTS] (mac_wait_next_event): New function.
1117 (XTread_socket) [USE_CARBON_EVENTS]: Move call to
1118 GetEventDispatcherTarget inside BLOCK_INPUT.
1119 (XTread_socket) [!USE_CARBON_EVENTS]: Use mac_wait_next_event.
1120 Update mouse_region when mouse is moved.
1121 (make_mac_frame): Remove.
1122 (make_mac_terminal_frame): Put in #ifdef MAC_OS8.
1123 Initialize mouse pointer shapes. Change values of f->left_pos and
1124 f->top_pos. Don't use make_mac_frame. Use NewCWindow.
1125 Don't call ShowWindow.
1126 (mac_initialize_display_info) [MAC_OSX]: Create mac_id_name from
1127 Vinvocation_name and Vsystem_name.
1128 (mac_make_rdb): New function (from w32term.c).
1129 (mac_term_init): Use it. Add BLOCK_INPUT. Error if display has
1130 already been opened. Don't pass argument to
1131 mac_initialize_display_info. Don't set dpyinfo->height/width.
1132 Add entries to x_display_list and x_display_name_list.
1133 (x_delete_display): New function.
1134 (mac_initialize): Don't call mac_initialize_display_info.
1135 (syms_of_macterm) [!MAC_OSX]: Don't call Fprovide.
1136
1137 * macterm.h (check_mac): Add extern.
1138 (struct mac_output): New member size_hints.
1139 (FRAME_SIZE_HINTS): New macro.
1140 (mac_unload_font): Add extern.
1141
1142 * xdisp.c (expose_window, expose_frame): Remove kludges for Mac.
1143
1144 * xfaces.c (clear_font_table) [MAC_OS]: call mac_unload_font.
1145
1146 2004-12-27 Richard M. Stallman <rms@gnu.org>
1147
1148 * buffer.c (Fbuffer_disable_undo): Delete (move to simple.el).
1149 (syms_of_buffer): Don't defsubr it.
1150
1151 * process.c (list_processes_1): Set undo_list instead
1152 of calling Fbuffer_disable_undo.
1153
1154 * xdisp.c (single_display_spec_string_p): Rename from
1155 single_display_prop_string_p.
1156 (single_display_spec_intangible_p): Rename from
1157 single_display_prop_intangible_p.
1158 (handle_single_display_spec): Rename from handle_single_display_prop.
1159 Rewritten to be easier to understand.
1160
1161 Change in load-history format. Functions now get (defun . NAME),
1162 and variables get just NAME.
1163
1164 * data.c (Fdefalias): Use (defun . FN_NAME) in LOADHIST_ATTACH.
1165
1166 * eval.c (Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
1167 (Fdefvaralias, Fdefvar, Fdefconst): Use just SYM in LOADHIST_ATTACH.
1168 (Qdefvar): Var deleted.
1169 (syms_of_eval): Don't initialze it.
1170
1171 * lread.c (syms_of_lread) <load-history>: Doc fix.
1172
1173 2004-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1174
1175 * xmenu.c (popup_get_selection): Pop down on C-g.
1176 (set_frame_menubar): Install translations for Lucid/Motif/Lesstif that
1177 pops down menu on C-g.
1178 (xdialog_show): If dialog popped down and no button in the dialog was
1179 pushed, call Fsignal to quit.
1180 (xmenu_show): In no toolkit version, if menu returns NO_SELECT call
1181 Fsignal to quit.
1182
1183 * xfns.c (Fx_file_dialog): Motif/Lesstif version: Pop down on C-g.
1184
1185 * gtkutil.c (xg_initialize): Install bindings for C-g so that
1186 dialogs and menus pop down.
1187
1188 2004-12-27 Kenichi Handa <handa@m17n.org>
1189
1190 * coding.c (code_convert_region): Fix calculation of `ratio'.
1191
1192 2004-12-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1193
1194 * gtkutil.c (update_frame_tool_bar): Make the value of
1195 tool-bar-button-margin control margins of images in tool bar.
1196
1197 * alloc.c (check_depth): New variable.
1198 (overrun_check_malloc, overrun_check_realloc): Only add
1199 overhead and write check pattern if check_depth is 1 (to handle
1200 recursive calls). Increase/decrease check_depth in entry/exit.
1201 (overrun_check_free): Only check for overhead if check_depth is 1.
1202 Increase/decrease check_depth in entry/exit.
1203
1204 2004-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1205
1206 * keyboard.c (input_available_signal): Call SIGNAL_THREAD_CHECK
1207 before touching input_available_clear_time, to avoid accessing it
1208 from multiple threads.
1209
1210 2004-12-23 Jason Rumney <jasonr@gnu.org>
1211
1212 * image.c (__WIN32__) [HAVE_NTGUI]: Define for correct behaviour
1213 of JPEG library.
1214
1215 2004-12-22 Richard M. Stallman <rms@gnu.org>
1216
1217 * emacs.c (main): If batch mode, set Vundo_outer_limit to nil.
1218
1219 * lisp.h (Vundo_outer_limit): Fix decl.
1220
1221 * undo.c (Vundo_outer_limit): Replaces undo_outer_limit.
1222 Uses changed.
1223 (syms_of_undo): Initialize appropriately.
1224 (truncate_undo_list): If it's nil, there's no limit.
1225
1226 2004-12-22 Kenichi Handa <handa@m17n.org>
1227
1228 * xselect.c (Fx_get_cut_buffer_internal): Return a unibyte string.
1229
1230 2004-12-21 Richard M. Stallman <rms@gnu.org>
1231
1232 * eval.c (unwind_to_catch): Clear immediate_quit.
1233
1234 * xdisp.c (get_next_display_element): Display codes 8a0 and 8ad
1235 specially as `\ ' and `\-'.
1236
1237 * keyboard.c (kbd_buffer_store_event_hold):
1238 In the code for while-no-input, handle immediate_quit.
1239
1240 * alloc.c (Fgarbage_collect): Update call to truncate_undo_list.
1241 Call that at the very start.
1242 (undo_limit, undo_strong_limit, undo_outer_limit): Move to undo.c.
1243 (syms_of_alloc): Don't define undo-limit,
1244 undo-strong-limit and undo-outer-limit here.
1245
1246 * undo.c (truncate_undo_list): Return void.
1247 Take just one argument, the buffer.
1248 Make it current, and inhibit recursive GC.
1249 Access and update the undo list directly; return void.
1250 Refer to the undo...limit variables directly.
1251 Test undo_outer_limit only after counting the whole current command.
1252 When it's exceeded, call the function in undo-outer-limit-function.
1253 (undo_limit, undo_strong_limit, undo_outer_limit): From alloc.c.
1254 (Vundo_outer_limit_function): New variable.
1255 (syms_of_undo): Define undo-limit, undo-strong-limit
1256 and undo-outer-limit here, and undo-outer-limit-function.
1257 Doc fixes.
1258
1259 * lisp.h (truncate_undo_list): Update decl.
1260
1261 2004-12-21 Piet van Oostrum <piet@cs.uu.nl>
1262
1263 * fileio.c (Fread_file_name): Delete duplicates in
1264 file-name-history when history_delete_duplicates is true.
1265
1266 2004-12-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1267
1268 * macterm.c (mac_do_list_fonts): Fix memory leak
1269
1270 2004-12-20 Richard M. Stallman <rms@gnu.org>
1271
1272 * regex.c (re_match_2_internal) <symend, wordend>:
1273 Fix calls to UPDATE_SYNTAX_TABLE_FORWARD.
1274
1275 2004-12-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1276
1277 * macterm.c (endif, x_font_name_to_mac_font_name):
1278 Use maccentraleurroman instead of maccentraleuropean
1279 (mac_c_string_match, mac_do_list_fonts): Speed up font search by
1280 quickly finding a specific font without needing regexps.
1281
1282 2004-12-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1283
1284 * syssignal.h: Declare main_thread.
1285 (SIGNAL_THREAD_CHECK): New macro.
1286
1287 * keyboard.c (input_available_signal): Move thread checking code
1288 to macro SIGNAL_THREAD_CHECK and call that macro.
1289 (interrupt_signal): Call SIGNAL_THREAD_CHECK.
1290
1291 * alloc.c (uninterrupt_malloc): Move main_thread to emacs.c.
1292
1293 * emacs.c: Define main_thread.
1294 (main): Initialize main_thread.
1295 (handle_USR1_signal, handle_USR2_signal, fatal_error_signal)
1296 (memory_warning_signal): Call SIGNAL_THREAD_CHECK.
1297
1298 * floatfns.c (float_error): Call SIGNAL_THREAD_CHECK.
1299
1300 * dispnew.c (window_change_signal): Call SIGNAL_THREAD_CHECK.
1301
1302 * sysdep.c (select_alarm): Call SIGNAL_THREAD_CHECK.
1303
1304 * process.c (send_process_trap, sigchld_handler):
1305 Call SIGNAL_THREAD_CHECK.
1306
1307 * data.c (arith_error): Call SIGNAL_THREAD_CHECK.
1308
1309 * atimer.c (alarm_signal_handler): Call SIGNAL_THREAD_CHECK.
1310
1311 * xterm.c (xg_scroll_callback): Update XG_LAST_SB_DATA before
1312 returning when xg_ignore_gtk_scrollbar is true.
1313
1314 2004-12-14 Kim F. Storm <storm@cua.dk>
1315
1316 * keyboard.c (read_char): Save and restore echo_string when
1317 handling input method.
1318
1319 2004-12-13 Richard M. Stallman <rms@gnu.org>
1320
1321 * eval.c (syms_of_eval) <quit-flag>: Doc fix.
1322
1323 * keyboard.c (Vthrow_on_input): New variable.
1324 (syms_of_keyboard): Defvar and initialize it.
1325 (kbd_buffer_store_event_hold): Handle Vthrow_on_input.
1326
1327 * lisp.h (QUIT): Check for Vthrow_on_input.
1328 (Vthrow_on_input): Declare it.
1329
1330 2004-12-13 Kim F. Storm <storm@cua.dk>
1331
1332 * xdisp.c (set_iterator_to_next): Reset stop_charpos after display
1333 vector.
1334
1335 2004-12-12 Richard M. Stallman <rms@gnu.org>
1336
1337 * indent.c (Fvertical_motion): Call move_it_by_lines even if LINES = 0.
1338
1339 * minibuf.c (Fall_completions): Add var `zero' and use it in loop.
1340 (Ftry_completion): Really use outer `zero'; eliminate inner one.
1341
1342 2004-12-12 Kenichi Handa <handa@m17n.org>
1343
1344 * term.c (encode_terminal_code): Fix previous change.
1345
1346 2004-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
1347
1348 * keyboard.c (handle_async_input): Remove pthread mutex handling.
1349 (input_available_signal): Move pthread thingy to !SYNC_INPUT branch.
1350
1351 * syntax.c (Fforward_word): Avoid non-idempotent side-effects
1352 in macro arguments.
1353
1354 * minibuf.c (Ftry_completion, Fall_completions): Don't use
1355 XFASTINT blindly.
1356
1357 * emacs.c (main, Fdump_emacs): Don't touch malloc hooks if SYNC_INPUT.
1358
1359 2004-12-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1360
1361 * w32term.c (x_calc_absolute_position): Remove calculation of
1362 difference between inner and outer window. Don't subtract difference
1363 for left and top calculations.
1364
1365 * xterm.c (x_calc_absolute_position): Don't subtract outer_pixel_diff
1366 for left and top calculations. Remove call to x_real_positions.
1367 [Bug report by Drew Adams in November]
1368 (x_check_expected_move): Do not set change_gravity to 1 when calling
1369 x_set_offset.
1370
1371 2004-12-08 Richard M. Stallman <rms@gnu.org>
1372
1373 * xdisp.c (get_next_display_element): Use `escape-glyph' for
1374 control chars and escaped octal codes.
1375 (Qescape_glyph): New variable.
1376 (syms_of_xdisp): Initialize it.
1377 (escape_glyph_face): New variable.
1378 (redisplay_window): Initialize it.
1379
1380 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
1381
1382 * image.c (our_fill_input_buffer, jpeg_load, CHECK_LIB_AVAILABLE)
1383 (init_image): Use 1 rather than TRUE. TRUE's not always defined.
1384
1385 2004-12-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1386
1387 * emacs.c (Fdump_emacs): Add ! defined (SYSTEM_MALLOC) around
1388 reset_malloc_hooks.
1389
1390 * keyboard.c (handle_async_input, input_available_signal):
1391 Add ! defined (SYSTEM_MALLOC) around thread code.
1392
1393 * alloc.c: Add comment about the reason for (UN)BLOCK_INPUT_ALLOC.
1394
1395 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
1396
1397 * eval.c (init_eval_once): Increase max_specpdl_size to 1000.
1398
1399 * config.in: Regenerate.
1400
1401 2004-12-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1402
1403 * xmenu.c (Fx_popup_menu): Correct documentation about position.
1404 (xmenu_show): Do not call XTranslateCoordinates. Adjust position
1405 if not given by a mouse click to correspond with x-popup-menu
1406 documentation.
1407
1408 * config.in: Regenerate.
1409
1410 * gtkutil.c: Include signal.h and syssignal.h.
1411 (xg_get_file_name): Block and unblock __SIGRTMIN if defined.
1412
1413 * alloc.c: If HAVE_GTK_AND_PTHREAD, include pthread.h,
1414 new variables main_thread and alloc_mutex,
1415 define (UN)BLOCK_INPUT_ALLOC to use alloc_mutex to protect
1416 emacs_blocked_* calls and only do (UN)BLOCK_INPUT in the main thread.
1417 If not HAVE_GTK_AND_PTHREAD, (UN)BLOCK_INPUT_ALLOC is the same as
1418 (UN)BLOCK_INPUT.
1419 (emacs_blocked_free, emacs_blocked_malloc)
1420 (emacs_blocked_realloc): Use (UN)BLOCK_INPUT_ALLOC.
1421 (uninterrupt_malloc): Initialize main_thread and alloc_mutex.
1422 (reset_malloc_hooks): New function.
1423
1424 * lisp.h: Declare reset_malloc_hooks.
1425
1426 * emacs.c (Fdump_emacs): Call reset_malloc_hooks.
1427
1428 * keyboard.c: Conditionally include pthread.h
1429 (handle_async_input, input_available_signalt): If not in the main
1430 thread, block signal, send signal to main thread and return.
1431
1432 * gtkutil.c (xg_get_file_with_chooser): Handle local files only.
1433 Set current folder in file chooser if default_filename is a directory.
1434
1435 2004-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
1436
1437 * regex.c (GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
1438 Remove redundant correctness checks.
1439 (regex_compile): Fix up error codes for \{..\} expressions.
1440
1441 2004-12-05 Richard M. Stallman <rms@gnu.org>
1442
1443 * regex.c (regex_compile): Fix end-of-pattern case for space.
1444
1445 2004-12-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1446
1447 * macterm.h (cfstring_create_with_utf8_cstring): Add prototype.
1448 * mac.c (cfstring_create_with_utf8_cstring): Add to prevent
1449 crashes with invalid characters.
1450 * macmenu.c (add_menu_item): Use it.
1451 * image.c (image_load_quartz2d): Likewise.
1452 * macfns.c (x_set_name, x_set_title): Likewise.
1453 (Fx_file_dialog): Likewise. Use constant CFRefs instead of
1454 creating them each time for labels.
1455
1456 2004-12-02 Richard M. Stallman <rms@gnu.org>
1457
1458 * config.in (RE_TRANSLATE_P): If make_number is not a macro,
1459 don't use it here.
1460
1461 * eval.c (Fcalled_interactively_p): Don't check INTERACTIVE.
1462 (interactive_p): Skip Scalled_interactively_p frames
1463 like Sinteractive_p frames.
1464 (unwind_to_catch): Clear handling_signal.
1465
1466 * data.c (Fmake_variable_buffer_local): Doc fix.
1467 (Fmake_local_variable): Doc fix.
1468
1469 * insdel.c (insert_from_string_before_markers)
1470 (insert_from_string): Don't modify buffer on empty insertion.
1471
1472 * window.c (Fget_lru_window, Fget_largest_window): Doc fixes.
1473
1474 2004-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1475
1476 * macmenu.c (add_menu_item): Fallback on MacRoman if encoding
1477 menu text as UTF8 fails.
1478
1479 2004-12-01 Kim F. Storm <storm@cua.dk>
1480
1481 * alloc.c: Add commentary for last change.
1482 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): New macros to handle
1483 sizeof(size_t) != 4.
1484 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
1485 Use them. Also clear header and trailer of freed memory.
1486 (GC_STRING_OVERRUN_COOKIE_SIZE): Rename from GC_STRING_EXTRA.
1487 (string_overrun_cookie): Rename from string_overrun_pattern.
1488 (GC_STRING_EXTRA): Define from GC_STRING_OVERRUN_COOKIE_SIZE.
1489
1490 2004-12-01 Andreas Schwab <schwab@suse.de>
1491
1492 * lisp.h: Declare string_to_multibyte.
1493
1494 2004-12-01 Kenichi Handa <handa@m17n.org>
1495
1496 * w32console.c (w32con_write_glyphs): Decide coding here.
1497 Adjusted for the change of encode_terminal_code.
1498
1499 * term.c (encode_terminal_code): Don't make it "static".
1500
1501 2004-11-30 Kenichi Handa <handa@m17n.org>
1502
1503 * term.c (encode_terminal_buf, encode_terminal_bufsize): New variables.
1504 (encode_terminal_code): Argument changed. Encode all
1505 characters at once, and return a pointer to the result of encoding.
1506 (write_glyphs): Decide coding here. Adjusted for the above change.
1507 (insert_glyphs): Likewise.
1508 (term_init): Initialize encode_terminal_bufsize to 0.
1509
1510 * coding.c (Vcode_conversion_workbuf_name): New variable.
1511 (syms_of_coding): Initialize and staticpro it.
1512 (set_conversion_work_buffer): New function.
1513 (run_pre_post_conversion_on_str): Use it.
1514 (run_pre_write_conversin_on_c_str): New function.
1515
1516 * coding.h (run_pre_write_conversin_on_c_str): Extern it.
1517
1518 2004-11-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1519
1520 * keyboard.c: Don't undef SIGIO
1521 * s/darwin.h (NO_SOCK_SIGIO): Define NO_SOCK_SIGIO on carbon
1522 * Makefile.in (mac.o): Depend on blockinput.h and atimer.h.
1523 (macfns.o): Don't depend on ccl.h.
1524 * macfns.c (mac_frame_parm_handlers): Set handlers for
1525 Qleft_fringe and Qright_fringe.
1526 * macterm.c (mac_fill_rectangle_to_pixmap)
1527 (mac_draw_rectangle_to_pixmap, mac_copy_area_to_pixmap)
1528 (mac_copy_area_with_mask_to_pixmap, x_draw_image_foreground_1):
1529 Put in #if 0.
1530 (mac_scroll_area) [TARGET_API_MAC_CARBON]: Use ScrollWindowRect.
1531 (x_flush) [TARGET_API_MAC_CARBON]: Don't traverse frames.
1532 (XFlush) [TARGET_API_MAC_CARBON]: Define to an empty replacement.
1533 (x_draw_glyph_string_background, x_draw_glyph_string_foreground)
1534 [!MAC_OS8]: Added ifdef'd out code for os8. Don't use
1535 XDrawImageString. Always draw background and foreground separately.
1536 (x_draw_image_foreground): Use clipping instead of computing the
1537 intersection rectangle.
1538 (x_draw_image_glyph_string): Don't draw an image with mask to a
1539 pixmap.
1540 (x_redisplay_interface): Set flush_display_optional member to 0.
1541 (XTread_socket): Correctly reset the TEConverter
1542 object.
1543
1544 2004-11-30 Kim F. Storm <storm@cua.dk>
1545
1546 * lisp.h: New defines to enable buffer overrun checking.
1547 (GC_CHECK_STRING_OVERRUN, GC_CHECK_STRING_FREE_LIST)
1548 (XMALLOC_OVERRUN_CHECK, GC_CHECK_CONS_LIST): Add.
1549
1550 * alloc.c: Add more checks for buffer overruns.
1551 (XMALLOC_OVERRUN_CHECK_SIZE, xmalloc_overrun_check_header)
1552 xmalloc_overrun_check_trailer, overrun_check_malloc)
1553 overrun_check_realloc, overrun_check_free): Add.
1554 (GC_STRING_EXTRA, string_overrun_pattern): Add.
1555 (check_sblock, allocate_string_data, compact_small_strings):
1556 Set and check string_overrun_pattern if GC_CHECK_STRING_OVERRUN.
1557 (check_cons_list): Condition on GC_CHECK_CONS_LIST.
1558 (check_string_free_list): Add.
1559 (allocate_string, sweep_strings): Call check_string_free_list.
1560
1561 * emacs.c (malloc_initialize_hook): Don't free malloc_state_ptr if
1562 XMALLOC_OVERRUN_CHECK to avoid crash during load.
1563
1564 2004-11-29 Kim F. Storm <storm@cua.dk>
1565
1566 * fns.c (concat): Use SAFE_ALLOCA.
1567
1568 2004-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
1569
1570 * sysdep.c (emacs_write): Don't use QUIT.
1571
1572 2004-11-29 Kenichi Handa <handa@m17n.org>
1573
1574 * buffer.c (init_buffer): Set current_buffer->directory to a
1575 multibyte string made by string_to_multibyte.
1576
1577 * emacs.c (init_cmdargs): Set unibyte strings in Vcommand_line_args.
1578
1579 2004-11-27 Andreas Schwab <schwab@suse.de>
1580
1581 * alloc.c (mark_stack): Call GC_MARK_SECONDARY_STACK if defined.
1582
1583 * s/gnu-linux.h: Enable no-op gcpros on ia64.
1584 (GC_MARK_SECONDARY_STACK) [__ia64__]: Define.
1585
1586 * filelock.c (lock_file_1): Call get_boot_time early.
1587 Increase buffer size.
1588
1589 2004-11-27 Eli Zaretskii <eliz@gnu.org>
1590
1591 * lisp.h (DECL_ALIGN): Define non-trivially only if NO_DECL_ALIGN
1592 is not defined.
1593
1594 2004-11-27 Kim F. Storm <storm@cua.dk>
1595
1596 * search.c (syms_of_search) <search-spaces-regexp>: Move 'doc:'
1597 marker out of doc string.
1598
1599 2004-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
1600
1601 * s/darwin.h (POSIX_SIGNALS): Undo the removal of 2002-08-25,
1602 which was not mentioned in the log.
1603
1604 2004-11-26 Kim F. Storm <storm@cua.dk>
1605
1606 * fringe.c (update_window_fringes): Prefer truncation bitmaps over
1607 angle bitmaps at top/bottom line.
1608
1609 * xdisp.c: Undo recent changes for restoring saved_face_id. Instead,
1610 set it when it->method is set to next_element_from_display_vector.
1611 (setup_for_ellipsis): Add LEN argument. Callers changed.
1612 Set it->saved_face_id.
1613 (get_next_display_element): Use loop instead of recursion.
1614 Set it->saved_face_id. Combine duplicate code for ctr chars.
1615 (next_element_from_display_vector): Do not set it->saved_face_id.
1616 (next_element_from_ellipsis): Use setup_for_ellipsis.
1617
1618 2004-11-26 Eli Zaretskii <eliz@gnu.org>
1619
1620 * eval.c (Fdefvar): Declare pdl from last change as `volatile' to
1621 prevent compiler warnings.
1622
1623 2004-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
1624
1625 * keyboard.c (command_loop_1): Print a message describing the key
1626 the user just pressed when this key has no binding.
1627
1628 * sysdep.c (sys_signal): Don't use SA_RESTART if SYNC_INPUT is set.
1629 (emacs_open, emacs_read, emacs_write): Check QUIT when interrupted.
1630
1631 * lread.c (readchar): Check QUIT when `getc' is interrupted.
1632
1633 2004-11-24 Richard M. Stallman <rms@gnu.org>
1634
1635 * coding.c (run_pre_post_conversion_on_str): Bind Qinhibit_read_only.
1636
1637 * buffer.c (syms_of_buffer) <indicate-buffer-boundaries>: Doc fix.
1638
1639 2004-11-24 Kim F. Storm <storm@cua.dk>
1640
1641 * xdisp.c (move_it_in_display_line_to, display_line):
1642 Restore saved_face_id also when truncate-lines or hscrolled.
1643
1644 2004-11-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1645
1646 * gtkutil.c (xg_get_file_name): Rename use-old-gtk-file-dialog to
1647 x-use-old-gtk-file-dialog.
1648
1649 * xfns.c: Define x_use_old_gtk_file_dialog.
1650 (syms_of_xfns): Rename use-old-gtk-file-dialog to x-... Move it
1651 outside ifdef USE_GTK.
1652
1653 2004-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
1654
1655 * coding.h (ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
1656 Don't use XFASTINT blindly.
1657
1658 * config.in (RE_TRANSLATE_P): Don't use XFASTINT blindly.
1659
1660 * indent.c (skip_invisible): Avoid non-idempotent side-effects
1661 in macro arguments.
1662
1663 * keymap.c (Flookup_key): Check INTEGERP before XINT.
1664
1665 * lread.c (oblookup): Don't use XFASTINT blindly.
1666
1667 * window.c (Fset_window_scroll_bars): Don't use XINT if it isn't int.
1668 (decode_next_window_args, window_loop): Don't use XFASTINT blindly.
1669
1670 2004-11-23 Kim F. Storm <storm@cua.dk>
1671
1672 * dispextern.h (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P)
1673 (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Not if dpvec_index is zero.
1674
1675 * xfaces.c (lookup_named_face): Add signal_p arg. Return -1 if
1676 signal_p is zero and face name is unknown.
1677 (Fx_list_fonts): Don't signal error in lookup_named_face.
1678 (Fface_font): Signal error in lookup_named_face.
1679 (ascii_face_of_lisp_face): Likewise.
1680
1681 * dispextern.h (lookup_named_face): Fix prototype.
1682
1683 * xdisp.c (handle_single_display_prop): Don't signal error in
1684 lookup_named_face for unknown fringe face name.
1685 (highlight_trailing_whitespace): Don't signal error in
1686 lookup_named_face if trailing-whitespace face unknown.
1687 (calc_line_height_property): Don't signal error in
1688 lookup_named_face if specified face name is unknown.
1689
1690 * fringe.c (update_window_fringes): Show top row indicator if
1691 window has header-line. Don't show arrow at bob and eob
1692 if the boundary indicators are not used.
1693 (Fset_fringe_bitmap_face): Signal error in lookup_named_face.
1694
1695 * window.c (set_window_buffer): Clear display_error_modiff.
1696
1697 2004-11-22 Kim F. Storm <storm@cua.dk>
1698
1699 * fringe.c (update_window_fringes): Provide sensible fall-back
1700 value for non-nil indicate-buffer-boundaries setting.
1701
1702 2004-11-22 Markus Rost <rost@ias.edu>
1703
1704 * minibuf.c (Fminibuffer_complete_and_exit): Fix previous change.
1705
1706 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
1707
1708 * eval.c (Fdefvar): Warn when var is let-bound but globally void.
1709
1710 2004-11-21 Kim F. Storm <storm@cua.dk>
1711
1712 * xdisp.c (erase_phys_cursor): Clear hollow cursor inside TEXT_AREA.
1713
1714 * xterm.c (x_clip_to_row): Add area arg. Callers changed.
1715 (x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
1716
1717 * w32term.c (w32_clip_to_row): Add area arg. Callers changed.
1718 (x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
1719
1720 * macterm.c (x_clip_to_row): Add area arg. Callers changed.
1721 (x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
1722
1723 * xdisp.c (move_it_in_display_line_to, display_line):
1724 Restore saved_face_id if overflow-newline-into-fringe is enabled and
1725 line is continued before or in middle of element from display vector.
1726
1727 * indent.c (Fvertical_motion): Fix last change. Use another
1728 method to detect if iterator moved too far ahead after reseat.
1729
1730 * xdisp.c (IT_EXPAND_MATRIX_WIDTH): New macro. Do not
1731 expand matrix width for overflow in zero-width area.
1732 (append_glyph, append_composite_glyph, produce_image_glyph)
1733 (append_stretch_glyph): Use it to avoid loop in redisplay.
1734 (note_mode_line_or_margin_highlight): Don't let help-echo from
1735 string override help-echo from image map.
1736
1737 2004-11-20 Luc Teirlinck <teirllm@auburn.edu>
1738
1739 * fns.c (Fyes_or_no_p): Call Fread_from_minibuffer with extra argument.
1740 * callint.c (Fcall_interactively): Ditto.
1741
1742 2004-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
1743
1744 * minibuf.c (Fminibuffer_complete_and_exit):
1745 Fixup the case of the completed value, for case-indep completion.
1746
1747 2004-11-20 Richard M. Stallman <rms@gnu.org>
1748
1749 * lisp.h (Fread_from_minibuffer): Add arg in decl.
1750
1751 * minibuf.c (read_minibuf): New arg KEEP_ALL. Callers changed.
1752 (Fread_from_minibuffer): New arg KEEP_ALL. Callers changed.
1753
1754 * search.c (Vsearch_spaces_regexp):
1755 Rename from Vsearch_whitespace_regexp. All uses changed.
1756
1757 2004-11-20 Thien-Thi Nguyen <ttn@gnu.org>
1758
1759 * eval.c (init_eval_once): Increase `max_specpdl_size' to 650.
1760
1761 2004-11-19 Richard M. Stallman <rms@gnu.org>
1762
1763 * search.c (Vsearch_whitespace_regexp): New variable.
1764 (syms_of_search): Defvar it.
1765 (compile_pattern_1): Call re_set_whitespace_regexp with it.
1766 (search_buffer): No regexp is trivial if Vsearch_whitespace_regexp
1767 is non-nil.
1768 (struct regexp_cache): New element whitespace_regexp.
1769 (syms_of_search): Initialize whitespace_regexp elements.
1770 (compile_pattern): Compare whitespace_regexp elements.
1771 (compile_pattern_1): Set whitespace_regexp elements.
1772
1773 * regex.c (regex_compile): Substitute whitespace_regexp
1774 for spaces, if it is nonzero.
1775 (whitespace_regexp): New variable.
1776 (re_set_whitespace_regexp): New function.
1777
1778 2004-11-19 Kim F. Storm <storm@cua.dk>
1779
1780 * indent.c (Fvertical_motion): Fix last change.
1781
1782 2004-11-18 Kim F. Storm <storm@cua.dk>
1783
1784 * indent.c (Fvertical_motion): Undo 2004-11-16 change.
1785 Instead, move back again if reseating moves too far ahead.
1786
1787 2004-11-17 Luc Teirlinck <teirllm@auburn.edu>
1788
1789 * xdisp.c (message3): Call clear_message.
1790
1791 2004-11-17 Kim F. Storm <storm@cua.dk>
1792
1793 * xdisp.c (erase_phys_cursor): Adjust cursor row visible height.
1794
1795 2004-11-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1796
1797 * gtkutil.c (xg_get_file_name): Typo in HAVE_GTK_FILE_SELECTION_NEW.
1798
1799 * xmenu.c (x_menu_in_use): Remove.
1800 (x_menu_set_in_use): Also set popup_activated_flag.
1801
1802 * xfns.c (Fx_file_dialog): Call popup_activated instead of
1803 x_menu_in_use. Call x_menu_set_in_use in Motif version also.
1804
1805 * xterm.h: (x_menu_in_use): Remove.
1806
1807 2004-11-16 Richard M. Stallman <rms@gnu.org>
1808
1809 * keymap.c (Fmap_keymap): New arg SORT-FIRST.
1810 Use map-keymap-internal to implement that.
1811
1812 * indent.c (Fvertical_motion): In batch mode, use vmotion directly.
1813
1814 2004-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
1815
1816 * xdisp.c (get_glyph_string_clip_rect, init_glyph_string): Check it's
1817 a window before using XWINDOW.
1818
1819 * window.c (make_window, Fselect_window, make_dummy_parent)
1820 (save_window_save):
1821 * frame.c (make_frame):
1822 * fns.c (concat): Avoid side-effects inside XSETFASTINT's arguments.
1823
1824 * lisp.h (NILP): Use EQ rather than XFASTINT.
1825
1826 2004-11-16 Kim F. Storm <storm@cua.dk>
1827
1828 * fringe.c (Fdefine_fringe_bitmap): Always set 'h'. Simplify.
1829
1830 * indent.c (Fvertical_motion): Fix last change. Only reseat when
1831 moving backwards.
1832
1833 2004-11-16 Luc Teirlinck <teirllm@auburn.edu>
1834
1835 * dispextern.h: Extern reseat_at_previous_visible_line_start.
1836
1837 2004-11-16 Kenichi Handa <handa@m17n.org>
1838
1839 * xdisp.c (display_mode_element): Fix previous change (calculate
1840 end position of substring to display correctly).
1841
1842 2004-11-16 Kim F. Storm <storm@cua.dk>
1843
1844 * keyboard.c (Fposn_at_point): Remove extra */ after doc string.
1845 Reported by Andrew M. Scott.
1846
1847 2004-11-15 Kim F. Storm <storm@cua.dk>
1848
1849 * fns.c (Fsafe_plist_get): New defun.
1850 (syms_of_fns): Defsubr it.
1851
1852 * lisp.h (Fsafe_plist_get): Add EXFUN.
1853
1854 * xdisp.c (store_mode_line_string, produce_stretch_glyph):
1855 Use Fsafe_plist_get.
1856 (note_mode_line_or_margin_highlight, note_mouse_highlight):
1857 Fix image map element parsing. Use Fsafe_plist_get.
1858
1859 2004-11-15 Richard M. Stallman <rms@gnu.org>
1860
1861 * xdisp.c (get_next_display_element): Fix previous change.
1862
1863 2004-11-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1864
1865 * window.c (shrink_windows): Handle special case of one window left
1866 when trying to shrink the final reminder. Grow windows if
1867 total_removed is less than total_shrink.
1868
1869 * xmenu.c (pop_down_menu): Remove global variable current_menu,
1870 extract pointer from arg with XSAVE_VALUE.
1871 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
1872 Construct arg to record_unwind_protect with make_save_value.
1873
1874 2004-11-13 Richard M. Stallman <rms@gnu.org>
1875
1876 * xdisp.c (reseat_at_previous_visible_line_start): No longer static.
1877 (get_next_display_element): Fix previous change to apply only to \n.
1878
1879 * indent.c (Fvertical_motion): Scan to PT from start of line to
1880 make iterator consistent.
1881
1882 * minibuf.c (syms_of_minibuf) <completion-ignore-case>: Doc fix.
1883
1884 2004-11-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1885
1886 * gtkutil.c (pop_down_file_dialog): Add BLOCK_INPUT.
1887
1888 * xfns.c (Fx_file_dialog): Call x_menu_in_use and x_menu_set_in_use.
1889 Record unwind with clean_up_file_dialog.
1890
1891 * xterm.h (x_menu_in_use, x_menu_set_in_use, x_menu_wait_for_event):
1892 Declare.
1893
1894 * xmenu.c (x_menu_in_use, x_menu_set_in_use): New functions.
1895
1896 2004-11-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1897
1898 * gtkutil.c (xg_file_sel_ok, xg_file_sel_cancel)
1899 (xg_file_sel_destroy): Remove.
1900 (xg_file_response_cb, pop_down_file_dialog)
1901 (xg_get_file_name_from_chooser, xg_get_file_name_from_selector):
1902 New functions.
1903 (xg_get_file_with_chooser, xg_get_file_with_selection):
1904 Take new arg func, set it to xg_get_file_name_from_chooser/selector.
1905 Move common code to xg_get_file_name. Return widget created.
1906 (xg_get_file_name): Set name, transient for, modal and destroy
1907 with parent here. Connect response signal to xg_file_response_cb,
1908 connect delete-event to gtk_true. Record pop_down_file_dialog
1909 for unwind. Do event loop and call x_menu_wait_for_event in loop.
1910 (xg_create_widget): Make dialogs modal.
1911
1912 * xmenu.c (unuse_menu_items, pop_down_menu): Arg is of type
1913 Lisp_Object.
1914 (popup_get_selection): Move unwind protect ...
1915 (create_and_show_popup_menu, create_and_show_dialog): ... to here.
1916 Move destroy of widget to pop_down_menu.
1917 (popup_widget_loop): Move unwind protect ...
1918 (create_and_show_popup_menu, create_and_show_dialog): ... to here.
1919 Move destroy of widget to pop_down_menu.
1920 (pop_down_menu): BLOCK_INPUT and destroy widget/window.
1921 (xmenu_show): Record unwind pop_down_menu. Move XMenuDestroy,
1922 x_mouse_leave and grabbed = 0 to pop_down_menu.
1923
1924 2004-11-13 Kim F. Storm <storm@cua.dk>
1925
1926 * xdisp.c (make_cursor_line_fully_visible_p): New variable.
1927 (syms_of_xdisp): DEFVAR_BOOL it.
1928 (make_cursor_line_fully_visible, try_cursor_movement)
1929 (try_window_id): Use it.
1930
1931 2004-11-12 Kim F. Storm <storm@cua.dk>
1932
1933 * dispextern.h (struct glyph_row): New member extra_line_spacing.
1934 (struct it): New member max_extra_line_spacing.
1935 (MR_PARTIALLY_VISIBLE, MR_PARTIALLY_VISIBLE_AT_TOP)
1936 (MR_PARTIALLY_VISIBLE_AT_BOTTOM): New helper macros.
1937 (MATRIX_ROW_PARTIALLY_VISIBLE_P): Fix to return false if invisible
1938 part of last line is only extra line spacing (so the text on the
1939 line is fully visible). Use helper macros.
1940 Add W arg (to use them). All callers changed.
1941 (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P)
1942 (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P): Use helper macros.
1943
1944 * window.c (window_scroll_pixel_based, Frecenter):
1945 Use move_it_vertically_backward directly.
1946 (Frecenter): Fix calculation of new start pos for negative arg.
1947 Before, the new start pos was sometimes chosen too far back, so
1948 the last line became only partially visible, and thus would be
1949 either only semi-visible or automatically scrolled to the middle
1950 of the window by redisplay.
1951
1952 * xdisp.c (init_iterator): Clear it.max_extra_line_spacing.
1953 (move_it_vertically_backward): Don't recure to move further back.
1954 (move_it_vertically): Remove superfluous condition.
1955 (move_it_by_lines): Clear last_height when moved 0 lines.
1956 (resize_mini_window): Use it.max_extra_line_spacing.
1957 (display_tool_bar_line): Clear row->extra_line_spacing.
1958 (try_scrolling): Use move_it_vertically_backward directly.
1959 (redisplay_window): Likewise.
1960 (compute_line_metrics): Set row->extra_line_spacing.
1961 (display_line, display_string): Likewise.
1962 (x_produce_glyphs): Update it->max_extra_line_spacing.
1963
1964 * xmenu.c (pop_down_menu): Return nil.
1965
1966 2004-11-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1967
1968 * xmenu.c (x_menu_wait_for_event): New function.
1969 (popup_get_selection, popup_widget_loop): Call x_menu_wait_for_event
1970 to handle timers.
1971 (popup_widget_loop): Add argument do_timers.
1972 (create_and_show_popup_menu, create_and_show_dialog): Pass 1 for
1973 do_timers to popup_widget_loop.
1974 (xmenu_show): Call XMenuActivateSetWaitFunction so that
1975 x_menu_wait_for_event is called by XMenuActivate.
1976 (create_and_show_popup_menu): Pass 1 for do_timers to
1977 popup_get_selection.
1978 (pop_down_menu): New function.
1979 (popup_get_selection, popup_widget_loop): Unwind protect to
1980 pop_down_menu.
1981 (popup_widget_loop): Add argument widget.
1982 (create_and_show_popup_menu, create_and_show_dialog): Pass new
1983 argument widget to popup_widget_loop.
1984
1985 2004-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
1986
1987 * keymap.c (Fkeymap_prompt): Accept symbol keymaps.
1988
1989 2004-11-09 Kim F. Storm <storm@cua.dk>
1990
1991 * xselect.c: Include <sys/types.h> and <unistd.h> (for getpid).
1992 Fix various comments referring to XEvents instead of input events.
1993 (x_queue_event): Fix format strings.
1994 (x_stop_queuing_selection_requests): Likewise.
1995
1996 * xdisp.c (produce_image_glyph): Remove unused variable 'face_ascent'.
1997 (pint2hrstr): Add extra braces to silence compiler.
1998
1999 * print.c (print_object): Fix format string.
2000
2001 * lread.c (read1): Fix next_char matching.
2002
2003 * lisp.h (Fdelete): Add EXFUN.
2004 (replace_range_2): Add prototype.
2005
2006 * keyboard.c (read_avail_input): Remove unused variable 'discard'.
2007
2008 * intervals.h (NULL_INTERVAL_P): Add separate version when
2009 ENABLE_CHECKING is not defined to silence compiler.
2010 (compare_string_intervals): Add prototype.
2011
2012 * fringe.c (destroy_fringe_bitmap): Fix return type.
2013 (Ffringe_bitmaps_at_pos): Remove unused var 'old_buffer'.
2014
2015 * emacs.c (Fdump_emacs): Fix format string.
2016
2017 * doc.c: Include <ctype.h>.
2018 (Fsubstitute_command_keys): Remove unused variable 'firstkey'.
2019
2020 * data.c (store_symval_forwarding): Remove unused variables.
2021
2022 * callint.c (Fcall_interactively): Remove unused variable 'funcar'.
2023
2024 2004-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2025
2026 * Makefile.in (stamp-oldxmenu): If HAVE_GTK, don't add dependencies
2027 to ${OLDXMENU}.
2028
2029 2004-11-09 Kim F. Storm <storm@cua.dk>
2030
2031 * process.c (Fmake_network_process): Remove kludge for interrupted
2032 connects on BSD. If connect is interrupted, just close socket and
2033 start over rather than sleeping and retry with same socket.
2034
2035 2004-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2036
2037 * .cvsignore: Add buildobj.lst.
2038
2039 * doc.c: New variable Vbuild_files.
2040 (Fsnarf_documentation): If Vbuild_files is nil, populate it with
2041 file names from buildobh.lst. Only attach docstrings from files
2042 that are in Vbuild_files.
2043 (syms_of_doc): Defvar Vbuild_files.
2044
2045 * Makefile.in (SOME_MACHINE_OBJECTS): Add fringe.o, image.o
2046 and w32*.o.
2047 (temacs${EXEEXT}): Generate buildobj.lst when temacs is linked.
2048 (mostlyclean): Rm buildobj.lst
2049
2050 * makefile.w32-in ($(TEMACS)): Generate buildobj.lst when temacs
2051 is linked.
2052
2053 2004-11-09 Kim F. Storm <storm@cua.dk>
2054
2055 * fringe.c (update_window_fringes): Update fringe bitmaps if
2056 cur and row ends_at_zv_p differs. If bitmaps of a row is updated,
2057 also update previous row to get rid of misc. artifacts.
2058
2059 2004-11-08 Kim F. Storm <storm@cua.dk>
2060
2061 * xdisp.c (fast_find_position): Fix start pos if header line present.
2062 (note_mouse_highlight): Clear mouse face if we move out of text area.
2063
2064 2004-11-08 Eli Zaretskii <eliz@gnu.org>
2065
2066 * editfns.c: Move #include "systime.h" before <sys/resource.h>.
2067 Don't include <sys/time.h> explicitly.
2068 Include <stdio.h> unconditionally, not just on MacOS.
2069
2070 2004-11-08 Kenichi Handa <handa@m17n.org>
2071
2072 * fontset.c (fontset_pattern_regexp): Cancel my previous change;
2073 don't pay attention to '\' before '*'.
2074 (fontset_pattern_regexp): Change the meaning of the second arg.
2075 (Fnew_fontset): Call fs_query_fontset, not Fquery_fontset.
2076 (check_fontset_name): Try NAME as literal at first, and if it
2077 failes, try NAME as pattern.
2078
2079 2004-11-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2080
2081 * emacs.c (Fdump_emacs): Only output warning on GNU/Linux.
2082
2083 2004-11-07 Andreas Schwab <schwab@suse.de>
2084
2085 * lisp.h (Fmsdos_downcase_filename): Declare.
2086 * dired.c (Fmsdos_downcase_filename): Don't declare here.
2087 * fileio.c: Likewise.
2088
2089 2004-11-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2090
2091 * dosfns.c (Fdos_memget, Fdos_memput): Use integer variable offs in
2092 comparisons with integers instead of Lisp_Object address.
2093 (Fmsdos_set_keyboard): Declare argument allkeys.
2094
2095 * msdos.c (IT_set_frame_parameters): Use EQ, not ==, for Lisp_Object:s.
2096
2097 * dired.c (Fmsdos_downcase_filename): Declare extern on MSDOS to avoid
2098 int/Lisp_Object mixup.
2099
2100 * fileio.c: Ditto.
2101
2102 2004-11-06 Steven Tamm <steventamm@mac.com>
2103
2104 * editfns.c: Need to include sys/time.h before resource.h on darwin.
2105
2106 2004-11-06 Richard M. Stallman <rms@gnu.org>
2107
2108 * callint.c (Fcall_interactively): Avoid reusing EVENT for other data.
2109
2110 * xfaces.c (merge_named_face): GCPRO the face_name in the
2111 named_merge_point struct that we make.
2112 (merge_face_heights): Eliminate GCPRO arg. All callers changed.
2113
2114 * keyboard.c (command_loop_1): Change Vtransient_mark_mode
2115 before deciding whether to inactivate mark.
2116
2117 2004-11-06 Lars Brinkhoff <lars@nocrew.org>
2118
2119 * config.in: Regenerate (add HAVE_GETRUSAGE).
2120 * editfns.c (Fget_internal_run_time): New function.
2121 (syms_of_data): Defsubr it.
2122 * fns.c (sxhash): As far as possible, merge calculation of
2123 hash code for symbols and strings.
2124
2125 2004-11-06 Eli Zaretskii <eliz@gnu.org>
2126
2127 * frame.c (syms_of_frame): Fix the example in the doc string.
2128
2129 2004-11-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2130
2131 * eval.c (Feval): Remove check for INPUT_BLOCKED_P.
2132
2133 * xmenu.c (popup_get_selection, create_and_show_popup_menu)
2134 (create_and_show_dialog): Revert change from 2004-10-31.
2135
2136 2004-11-05 Luc Teirlinck <teirllm@auburn.edu>
2137
2138 * macros.c (syms_of_macros) <defining-kbd-macro>: Doc fix.
2139
2140 2004-11-05 Kim F. Storm <storm@cua.dk>
2141
2142 * print.c (print_object): Print Lisp_Misc_Save_Value objects.
2143
2144 * fileio.c (Ffile_modes): Doc fix.
2145 (auto_save_1): Check for Ffile_modes nil value.
2146
2147 2004-11-05 Kim F. Storm <storm@cua.dk>
2148
2149 * xselect.c (struct selection_event_queue, selection_queue)
2150 (x_queue_selection_requests, x_queue_event)
2151 (x_start_queuing_selection_requests)
2152 (x_stop_queuing_selection_requests): Add new queue for selection
2153 input events to replace previous XEvent queue in xterm.c.
2154 (queue_selection_requests_unwind): Adapt to new queue.
2155 (x_reply_selection_request): Adapt to new queue.
2156 Unexpect wait_object in case of x errors (memory leak).
2157 (x_handle_selection_request, x_handle_selection_clear): Make static.
2158 (x_handle_selection_event): New function. May queue selection events.
2159 (wait_for_property_change_unwind): Use save_value instead of cons.
2160 Clear property_change_reply_object.
2161 (wait_for_property_change): Abort if already waiting.
2162 Use save_value instead of cons for unwind data.
2163 (x_handle_property_notify): Skip events already arrived, but don't
2164 free them, as "arrived" field is checked by wait_for_property_change,
2165 and it will be freed by unwind or explicit unexpect_property_change.
2166 (x_get_foreign_selection): Add to new queue.
2167 (receive_incremental_selection): Don't unexpect wait_object when done
2168 as it has already been freed by previous wait_for_property_change.
2169
2170 * xterm.h (x_start_queuing_selection_requests)
2171 (x_stop_queuing_selection_requests, x_handle_selection_request)
2172 (x_handle_selection_clear): Remove prototypes.
2173 (x_handle_selection_event): Add prototype.
2174
2175 * xterm.c (handle_one_xevent): Don't queue X selection events
2176 here, it may be too late if we start queuing after we have already
2177 stored some selection events into the kbd buffer.
2178 (struct selection_event_queue, queue, x_queue_selection_requests)
2179 (x_queue_event, x_unqueue_events, x_start_queuing_selection_requests)
2180 (x_stop_queuing_selection_requests): Remove/move to xselect.c.
2181 (x_catch_errors_unwind): Block input around final XSync.
2182
2183 * keyboard.h (kbd_buffer_unget_event): Add prototype.
2184
2185 * keyboard.c (kbd_buffer_store_event_hold): Remove obsolete code.
2186 (kbd_buffer_unget_event): New function.
2187 (kbd_buffer_get_event, swallow_events): Combine SELECTION events
2188 and use x_handle_selection_event.
2189 (mark_kboards): Don't mark x and y of SELECTION_CLEAR_EVENT.
2190
2191 2004-11-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2192
2193 * xselect.c (TRACE3): New debug macro.
2194 (x_reply_selection_request): Use it.
2195 (receive_incremental_selection): In call to TRACE0, the name of
2196 a symbol is in xname.
2197
2198 2004-11-05 Kim F. Storm <storm@cua.dk>
2199
2200 * fontset.c (fontset_pattern_regexp): Use unsigned char.
2201
2202 2004-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2203
2204 * fileio.c (Fnext_read_file_uses_dialog_p): New function.
2205
2206 * gtkutil.h (use_old_gtk_file_dialog): Declare.
2207
2208 * gtkutil.c: Make use_old_gtk_file_dialog non-static.
2209 (xg_initialize): Move DEFVAR_BOOL for use_old_gtk_file_dialog ...
2210 * xfns.c (syms_of_xfns): ... to here.
2211
2212 * gtkutil.c (xg_get_file_with_chooser): Expand DEFAULT_FILENAME if
2213 it doesn't start with /.
2214
2215 2004-11-04 Kenichi Handa <handa@m17n.org>
2216
2217 * fontset.c (fontset_pattern_regexp): If '*' is preceded by '\',
2218 treat it as a literal character.
2219
2220 2004-11-03 Kim F. Storm <storm@cua.dk>
2221
2222 * .gdbinit (ppt): New function.
2223
2224 2004-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2225
2226 * xterm.c (x_window_to_scroll_bar): Only call
2227 xg_get_scroll_id_for_window if toolkit scroll bars are used.
2228
2229 * gtkutil.c (xg_get_file_with_chooser): Use GTK_STOCK_OK instead
2230 of save.
2231
2232 2004-11-02 Andreas Schwab <schwab@suse.de>
2233
2234 * window.c (Fscroll_right): Fix last change.
2235
2236 2004-11-02 Kim F. Storm <storm@cua.dk>
2237
2238 * Makefile.in (callproc.o): Depend on blockinput.h atimer.h systime.h.
2239
2240 2004-11-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2241
2242 * callproc.c (Fcall_process): Block input around vfork.
2243
2244 2004-11-02 Kim F. Storm <storm@cua.dk>
2245
2246 * eval.c (Fcalled_interactively_p): Rename from Fcall_interactive_p.
2247 (syms_of_eval): Defsubr it.
2248
2249 2004-11-02 Richard M. Stallman <rms@gnu.org>
2250
2251 * insdel.c (replace_range_2): New function.
2252
2253 * casefiddle.c (casify_region): Handle changes in byte-length
2254 using replace_range_2.
2255
2256 * emacs.c (USAGE3): Delete --horizontal-scroll-bars, -hb.
2257
2258 * xdisp.c (back_to_previous_visible_line_start):
2259 Subtract 1 from pos when checking previous newline for invisibility.
2260
2261 * window.c (window_scroll_pixel_based): Update preserve_y
2262 for header line if any.
2263 (Fscroll_left, Fscroll_right): Don't call interactive_p;
2264 use a new second argument instead.
2265
2266 * eval.c (Fcall_interactive_p): New function.
2267 (interactive_p): Don't test INTERACTIVE here.
2268 (Finteractive_p): Doc fix.
2269
2270 * eval.c (Feval): Abort if INPUT_BLOCKED_P.
2271
2272 2004-11-02 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
2273
2274 * w32fns.c (w32_font_match): Use fast_string_match_ignore_case for
2275 comparing font names.
2276
2277 2004-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2278
2279 * fileio.c (Fread_file_name): Pass Qt as fifth parameter to
2280 Fx_file_dialog if only directories should be read.
2281
2282 * lisp.h: Fx_file_dialog takes 5 parameters.
2283
2284 * xfns.c (Fx_file_dialog): Both Motif and GTK version:
2285 Add parameter only_dir_p.
2286 In Motif version, don't put DEFAULT_FILENAME in filter part of the
2287 dialog, just text field part. Do not add DEFAULT_FILENAME
2288 to list of files if it isn't there.
2289 In GTK version, pass only_dir_p parameter to xg_get_file_name.
2290
2291 * macfns.c (Fx_file_dialog): Add parameter only_dir_p.
2292 Check only_dir_p instead of comparing prompt to "Dired". When using
2293 a save dialog, add option kNavDontConfirmReplacement, change title
2294 to "Enter name", change text for save button to "Ok".
2295
2296 * w32fns.c (Fx_file_dialog): Add parameter only_dir_p.
2297 Check only_dir_p instead of comparing prompt to "Dired".
2298
2299 * gtkutil.c (xg_get_file_with_chooser)
2300 (xg_get_file_with_selection): New functions, only defined ifdef
2301 HAVE_GTK_FILE_CHOOSER_DIALOG_NEW and HAVE_GTK_FILE_SELECTION_NEW
2302 respectively.
2303 (xg_get_file_name): Add parameter only_dir_p.
2304 Call xg_get_file_with_chooser or xg_get_file_with_selection
2305 depending on HAVE_GTK_FILE* and the value of use_old_gtk_file_dialog.
2306 (xg_initialize): New DEFVAR_BOOL use_old_gtk_file_dialog.
2307
2308 * gtkutil.h (xg_get_file_name): Add parameter only_dir_p.
2309
2310 * config.in: Rebuild (added HAVE_GTK_FILE_*).
2311
2312 2004-11-01 Kim F. Storm <storm@cua.dk>
2313
2314 * process.c (connect_wait_mask, num_pending_connects):
2315 Only declare and use them if NON_BLOCKING_CONNECT is defined.
2316 (init_process): Initialize them if NON_BLOCKING_CONNECT defined.
2317 (IF_NON_BLOCKING_CONNECT): New helper macro.
2318 (wait_reading_process_output): Only declare and use local vars
2319 Connecting and check_connect when NON_BLOCKING_CONNECT is defined.
2320
2321 2004-11-01 Andy Petrusenco <Igrek@star-sw.com> (tiny change)
2322
2323 * w32term.c (x_scroll_run): Delete region objects after use.
2324
2325 2004-10-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2326
2327 * xmenu.c: Add prototypes for forward function declarations.
2328 (popup_get_selection): Remove parameter do_timers, remove call to
2329 timer_check.
2330 (create_and_show_popup_menu, create_and_show_dialog):
2331 Remove parameter do_timers from call to popup_get_selection.
2332
2333 * xdisp.c (update_tool_bar): Pass a copy of f->tool_bar_items to
2334 tool_bar_items and assign the result to f->tool_bar_items if
2335 not equal. Move BLOCK/UNBLOCK_INPUT from around call to
2336 tool_bar_items to assignment of result.
2337
2338 * atimer.c (alarm_signal_handler): Do not call set_alarm if
2339 pending_atmers is non-zero.
2340
2341 2004-10-31 Kim F. Storm <storm@cua.dk>
2342
2343 * dispnew.c (margin_glyphs_to_reserve): Don't use ncols_scale_factor.
2344
2345 2004-10-28 Will <will@glozer.net>
2346
2347 * macterm.c: allow user to assign key modifiers to the Mac Option
2348 key via a 'mac-option-modifier' variable.
2349
2350 2004-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
2351
2352 * xselect.c (Vx_lost_selection_functions, Vx_sent_selection_functions):
2353 Rename from Vx_lost_selection_hooks and Vx_sent_selection_hooks.
2354 (x_handle_selection_request, x_handle_selection_clear)
2355 (x_clear_frame_selections, syms_of_xselect): Adjust accordingly.
2356
2357 2004-10-28 Richard M. Stallman <rms@gnu.org>
2358
2359 * w32fns.c (Fx_server_vendor, Fx_server_version): Doc fixes.
2360
2361 * xfns.c (Fx_server_vendor, Fx_server_version): Doc fixes.
2362
2363 2004-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
2364
2365 * syntax.c (scan_sexps_forward): Give precedence to a 2-char
2366 comment-starter over a 1-char one.
2367
2368 2004-10-27 Richard M. Stallman <rms@gnu.org>
2369
2370 * xdisp.c (get_next_display_element): In mode lines,
2371 treat newline and tab like other control characters.
2372
2373 * editfns.c (Fmessage): Doc fix.
2374
2375 * indent.c (vmotion): When moving up, check the newline before.
2376 Make prevline an int, not a Lisp_Object.
2377
2378 2004-10-27 Kim F. Storm <storm@cua.dk>
2379
2380 * editfns.c (Fformat): Allocate discarded table with SAFE_ALLOCA.
2381 Only allocate info and discarded tables once.
2382
2383 * lisp.h (USE_SAFE_ALLOCA): Add and init sa_must_free integer.
2384 (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Increment it when malloc is used.
2385 (SAFE_FREE): Test it to determine if we need to unwind to free.
2386 Remove size arg. All users changed.
2387 (SAFE_FREE_LISP) Remove. All users changed to use SAFE_FREE.
2388
2389 2004-10-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2390
2391 * gtkutil.c: Put empty line between comment and function body.
2392 (xg_destroy_widgets): Rename from remove_from_container.
2393 Just destroy all widgets in list. Argument wcont removed.
2394 (xg_update_menubar, xg_update_submenu): Call xg_destroy_widgets
2395 instead of remove_from_container.
2396 (xg_display_close, xg_create_tool_bar, update_frame_tool_bar)
2397 (free_frame_tool_bar): Add comment.
2398
2399 * xfns.c (xic_create_xfontset): Check that FRAME_XIC_BASE_FONTNAME
2400 is not NULL before strcmp.
2401
2402 2004-10-26 Kim F. Storm <storm@cua.dk>
2403
2404 * callint.c (Fcall_interactively): Add 'U' code to get the
2405 up-event discarded by a previous 'k' or 'K' argument.
2406
2407 2004-10-26 David Kastrup <dak@gnu.org>
2408
2409 * buffer.c (syms_of_buffer): Fix a few typos.
2410
2411 2004-10-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2412
2413 * xsmfns.c: Put empty line between comment and function body.
2414 Use two spaces before comment end.
2415
2416 2004-10-25 Kenichi Handa <handa@m17n.org>
2417
2418 * fontset.c (fontset_pattern_regexp): Optimize for the case that
2419 PATTERN is full XLFD.
2420
2421 2004-10-24 Kenichi Handa <handa@m17n.org>
2422
2423 * regex.h (enum reg_errcode_t): New value REG_ERANGEX.
2424
2425 * regex.c (re_error_msgid): Add an entry for REG_ERANGEX.
2426 (regex_compile): Return REG_ERANGEX if appropriate.
2427
2428 2004-10-22 Kenichi Handa <handa@m17n.org>
2429
2430 * editfns.c (Ftranslate_region_internal): New function.
2431 (syms_of_editfns): Defsubr it.
2432
2433 2004-10-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2434
2435 * xfns.c (xic_create_xfontset): Initialize missing_list to NULL.
2436
2437 2004-10-21 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
2438
2439 * xterm.h (x_output): New member `xic_base_fontname'.
2440 (FRAME_XIC_BASE_FONTNAME): New macro.
2441 (xic_free_xfontset): Declare.
2442
2443 * xfns.c (xic_create_xfontset): Share fontsets between frames
2444 based on base_fontname.
2445 (xic_free_xfontset): New function.
2446 (free_frame_xic): Use it.
2447 (xic_set_xfontset): Ditto.
2448
2449 * xterm.c (xim_destroy_callback): Ditto.
2450
2451
2452 2004-10-20 B. Anyos <banyos@freemail.hu> (tiny change)
2453
2454 * w32term.c (x_draw_glyph_string): Use overline_color for overlines.
2455
2456 2004-10-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2457
2458 * xterm.h (XSync): If USE_GTK, define XSync as process_all and then
2459 XSync.
2460
2461 * emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
2462 New variables and constant.
2463 (main): Calculate heap_bss_diff. If we are dumping and the
2464 heap_bss_diff is greater than MAX_HEAP_BSS_DIFF, set PER_LINUX32
2465 and exec ourself again.
2466 (Fdump_emacs): If heap_bss_diff is greater than MAX_HEAP_BSS_DIFF
2467 print a warning.
2468
2469 * lastfile.c: Make my_endbss and my_endbss_static available on all
2470 platforms.
2471
2472 * Makefile.in (RUN_TEMACS): Remove @SETARCH@.
2473 * config.in (HAVE_PERSONALITY_LINUX32): Regenerate.
2474
2475 2004-10-19 Luc Teirlinck <teirllm@auburn.edu>
2476
2477 * data.c (Flocal_variable_if_set_p): Doc fix.
2478
2479 2004-10-19 Jason Rumney <jasonr@gnu.org>
2480
2481 * w32.c (init_environment): Set emacs_dir correctly when running
2482 emacs from the build directory.
2483
2484 2004-10-19 Richard M. Stallman <rms@gnu.org>
2485
2486 * editfns.c (Fdelete_and_extract_region):
2487 If region is empty, return null string.
2488
2489 2004-10-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2490
2491 * gtkutil.h (xg_update_scrollbar_pos): Remove arguments real_left
2492 and canon_width.
2493 (xg_frame_cleared): Remove.
2494
2495 * gtkutil.c (xg_frame_cleared, xg_fixed_handle_expose)
2496 (xg_find_top_left_in_fixed): Remove.
2497 (xg_create_scroll_bar): Put an event box widget between
2498 the scroll bar widget and the edit widget.
2499 (xg_show_scroll_bar): Show the parent widget (the event box).
2500 (xg_remove_scroll_bar): Destroy parent (the event box) also.
2501 (xg_update_scrollbar_pos): Remove arguments real_left and canon_width.
2502 Move the parent (the event box) widget inside the fixed widget.
2503 Move window clear to xterm.c.
2504
2505 * gtkutil.h (xg_frame_cleared): Remove.
2506
2507 * xterm.c (x_clear_frame): Remove call to xg_frame_cleared
2508 (x_scroll_bar_create, XTset_vertical_scroll_bar):
2509 Remove arguments left and width to xg_update_scrollbar_pos.
2510 (XTset_vertical_scroll_bar): Do x_clear_area for USE_GTK also.
2511
2512 2004-10-19 Kenichi Handa <handa@m17n.org>
2513
2514 * xdisp.c (display_mode_element): Fix display of wide chars.
2515
2516 2004-10-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2517
2518 * gtkutil.c (xg_update_scrollbar_pos): Change XClearWindow to
2519 gdk_window_clear and move gdk_window_process_all_updates after
2520 clear so events are sent to the X server in correct order.
2521
2522 2004-10-18 Kenichi Handa <handa@m17n.org>
2523
2524 * fontset.c (fs_load_font): Use fast_string_match_ignore_case for
2525 comparing font names.
2526 (fs_query_fontset): Use fast_string_match for comparing fontset names.
2527 (list_fontsets): Likewise.
2528
2529 * search.c (fast_string_match_ignore_case): New function.
2530
2531 * lisp.h (fast_string_match_ignore_case): Extern it.
2532
2533 2004-10-17 Kim F. Storm <storm@cua.dk>
2534
2535 * xdisp.c (overlay_arrow_at_row): Return overlay string rather
2536 than bitmap if there is not left fringe.
2537 (get_overlay_arrow_glyph_row): Also used on windows system.
2538 (display_line): Display overlay string if no left fringe.
2539
2540 2004-10-16 Jason Rumney <jasonr@gnu.org>
2541
2542 * w32fns.c (w32_font_match): Encode font name being matched.
2543
2544 2004-10-16 Richard M. Stallman <rms@gnu.org>
2545
2546 * window.c (Fspecial_display_p): Doc fix.
2547
2548 2004-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
2549
2550 * doc.c (Fsubstitute_command_keys): Fix remap-handling.
2551 Don't ignore menus, because where-is-internal already does it for us.
2552
2553 2004-10-15 Kim F. Storm <storm@cua.dk>
2554
2555 * xdisp.c (redisplay_window): Only update fringes and vertical
2556 border on window frames.
2557
2558 2004-10-14 Andreas Schwab <schwab@suse.de>
2559
2560 * m/ia64.h (DATA_SEG_BITS): Don't define.
2561
2562 2004-10-14 Kim F. Storm <storm@cua.dk>
2563
2564 * xterm.h: Include Xutil.h after keysym.h to work around bug
2565 in some X versions.
2566
2567 2004-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
2568
2569 * fns.c (map_char_table): Add missing gcpros.
2570
2571 2004-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
2572
2573 * keymap.c (get_keymap): An autoload form is not a keymap.
2574
2575 * textprop.c (syms_of_textprop): Make `syntax-table' nonsticky.
2576
2577 2004-10-13 Kim F. Storm <storm@cua.dk>
2578
2579 * callproc.c (Fcall_process): Simplify handling of display arg.
2580 Resume `display_on_the_fly' once a coding system is determined.
2581
2582 * xdisp.c (redisplay_preserve_echo_area): Fix last change.
2583
2584 2004-10-12 Kim F. Storm <storm@cua.dk>
2585
2586 * xdisp.c (redisplay_preserve_echo_area): Flush display in case
2587 caller, such as call-process, is not going to poll for input.
2588 (calc_line_height_property): Handle case where it->object is nil.
2589
2590 * xterm.c (x_redisplay_interface): Fix flush_display_optional.
2591
2592 2004-10-12 Kenichi Handa <handa@m17n.org>
2593
2594 * xdisp.c (get_next_display_element):
2595 If unibyte_display_via_language_environment is zero, display 8-bit
2596 chars in octal in unibyte buffer.
2597
2598 2004-10-12 Kim F. Storm <storm@cua.dk>
2599
2600 * doc.c (Fsubstitute_command_keys): Ignore remappings unless there
2601 are no ordinary bindings.
2602
2603 2004-10-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2604
2605 * xfns.c (syms_of_xfns): Defsubr x-file-dialog for GTK also.
2606
2607 2004-10-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2608
2609 * macterm.c (x_raise_frame): Add BLOCK_INPUT around SelectWindow.
2610 (x_lower_frame): Add BLOCK_INPUT around SendBehind.
2611 (make_mac_frame): Add BLOCK_INPUT around the making of a
2612 terminal frame.
2613 (mac_initialize): Add BLOCK_INPUT around carbon initialization.
2614 * macgui.h (mktime): Use emacs_mktime.
2615 * macfns.c (Fx_file_dialog): Add BLOCK_INPUT around more code.
2616 Make a cancel file-open dialog be like C-g.
2617 * mac.c (mktime): Use emacs_mktime.
2618 (Fdo_applescript): Add BLOCK_INPUT around do_applescript.
2619 (Fmac_paste_function): Add better error handling for carbon cut/paste.
2620
2621 2004-10-10 Kim F. Storm <storm@cua.dk>
2622
2623 * keyboard.c (timer_resume_idle): New function to resume idle
2624 timer without resetting timers on the idle list.
2625 (read_char): Use timer_resume_idle. Remove local var last_idle_start.
2626 (timer_start_idle, timer_stop_idle): Declare static.
2627 (read_key_sequence): Use timer_resume_idle instead of timer_start_idle.
2628
2629 * keyboard.h (timer_start_idle, timer_stop_idle): Remove prototypes.
2630
2631 2004-10-08 Steven Tamm <steventamm@mac.com>
2632
2633 * config.in (HAVE_MALLOC_MALLOC_H): Regenerate.
2634 * macterm.c (mac_check_for_quit_char): Remove warning for using
2635 NULL where 0 should be used.
2636 * unexmacosx.c: Use malloc/malloc.h on Tiger instead of
2637 objc/malloc.h
2638 * mac.c: Include time.h for Tiger compatibility.
2639
2640 2004-10-07 Kim F. Storm <storm@cua.dk>
2641
2642 * xdisp.c (redisplay_window): Fix flicker on vertical line between
2643 windows. Update vertical line after drawing window fringes, but
2644 only if actually drawing any bitmaps--or there is no fringe.
2645
2646 * xterm.c (x_update_window_end): Likewise.
2647 * macterm.c (x_update_window_end): Likewise.
2648 * w32term.c (x_update_window_end): Likewise.
2649
2650 * fringe.c (draw_window_fringes): Return value now indicates if
2651 any fringe bitmaps were redrawn (or there are no fringes).
2652
2653 * dispextern.h (draw_window_fringes): Update prototype.
2654
2655 2004-10-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2656
2657 * macfns.c (mac_get_window_bounds): Add extern.
2658 (x_real_positions): Use mac_get_window_bounds.
2659
2660 * macmenu.c (update_submenu_strings): Apply 2004-09-07 change for
2661 xmenu.c (YAILOM).
2662
2663 * macterm.c [!MAC_OSX]: Include Windows.h.
2664 (front_emacs_window): Rename from mac_front_window. All uses
2665 changed. Return the frontmost non-tooltip emacs window.
2666 (mac_get_window_bounds): New function.
2667 (x_calc_absolute_position): Use the difference of width and height
2668 between the inner and outer window.
2669 (x_set_offset): Specify window position by the coordinae of the
2670 outer window. Adjust the position if the title bar is completely
2671 outside the screen.
2672 (app_is_suspended, app_sleep_time): Remove unused variables.
2673 (do_app_resume, do_app_suspend): Remove their contents because
2674 window-activate/deactivate events will do the job.
2675 (do_zoom_window): Remove unused variables. Make compliant to the
2676 standard way of zooming. Set f->left_pos and f->top_pos.
2677 (XTread_socket): Don't use argument `expected'. Don't use
2678 FrontWindow to determine the clicked window. Exclude unprocessed
2679 mouseUp cases in the early stage. Add parentheses to fix operator
2680 precedence.
2681 (XTread_socket) [TARGET_API_MAC_CARBON]: Don't specify drag area.
2682
2683 2004-10-05 Jan Dj\e,Ad\e(Brv. <jan.h.d@swipnet.se>
2684
2685 * config.in: Regenerate.
2686
2687 * Makefile.in (RUN_TEMACS): Check HAVE_RANDOM_HEAPSTART instead of
2688 HAVE_EXECSHIELD.
2689
2690 2004-10-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2691
2692 * xterm.c (x_find_modifier_meanings): Ignore any Super or Hyper for
2693 a row if Alt or Meta has been found for that row. Also stop scanning
2694 for Keysyms for that row.
2695
2696 2004-10-04 Kim F. Storm <storm@cua.dk>
2697
2698 * fringe.c (Ffringe_bitmaps_at_pos): Change return value from cons
2699 to list. Include overlay arrow bitmap in return value.
2700
2701 * xterm.c (XTset_vertical_scroll_bar): Improve handling of scroll
2702 bars with fractional column width. If scroll bar separates two
2703 windows, move it towards the window it belongs to. Only update
2704 the padding area below the scroll bar widget when necessary,
2705 i.e. when scroll bar widget is created, moved, or resized.
2706
2707 * xdisp.c (define_frame_cursor1): Do not change frame cursor
2708 while tracking/dragging mouse.
2709 (x_draw_vertical_border): Do not draw line if frame has scroll bars.
2710
2711 * window.c (coordinates_in_window): Relax check for cursor
2712 on vertial border between mode lines.
2713 (Fset_window_fringes): Do not allow negative widths.
2714 (Fset_window_scroll_bars): Likewise.
2715
2716 * .gdbinit (pp): Shorthand for p ARG + pr.
2717 (ff): New command: flush frame updates (X only).
2718
2719 2004-10-03 Michael Albinus <michael.albinus@gmx.de>
2720
2721 * fileio.c (auto_save_1) Call Ffile_modes for remote files.
2722
2723 2004-09-30 Kenichi Handa <handa@m17n.org>
2724
2725 * process.c (send_process): Free composition data.
2726
2727 * fileio.c (Finsert_file_contents): Free composition data.
2728
2729 * coding.c (code_convert_region): Don't skip ASCIIs if there are
2730 compositions to encode.
2731 (encode_coding_string): Likewise. Free composition data.
2732
2733 2004-09-30 Florian Weimer <fw@deneb.enyo.de>
2734
2735 * coding.c (code_convert_region): Free composition data.
2736
2737 2004-09-29 Kim F. Storm <storm@cua.dk>
2738
2739 * fringe.c: Remove limit on number of bitmaps.
2740 (fringe_bitmaps, fringe_faces): Change to pointers.
2741 (max_fringe_bitmaps): New var.
2742 (Fdefine_fringe_bitmap): Expand fringe_bitmaps and fringe_faces.
2743 (init_fringe): Allocate fringe_bitmaps and fringe_faces.
2744
2745 * dispextern.h (FRINGE_ID_BITS): Increase to 16 bits (64K bitmaps).
2746 (struct glyph_row): Reorder fringe_bitmap related fields.
2747 (struct it): Likewise.
2748
2749 * w32term.c (fringe_bmp): Change to pointer.
2750 (max_fringe_bmp): New var.
2751 (w32_define_fringe_bitmap): Expand fringe_bmp.
2752 (w32_draw_fringe_bitmap): Check max_fringe_bmp.
2753 (w32_destroy_fringe_bitmap): Likewise.
2754
2755 2004-09-29 Kim F. Storm <storm@cua.dk>
2756
2757 * fringe.c: Simplify last change.
2758 (lookup_fringe_bitmap): New function.
2759 (valid_fringe_bitmap_p, resolve_fringe_bitmap): Remove.
2760 (Fdestroy_fringe_bitmap): Use lookup_fringe_bitmap.
2761 Keep standard bitmaps in Vfringe_bitmaps.
2762 (Fdefine_fringe_bitmap): Use lookup_fringe_bitmap.
2763 (Fset_fringe_bitmap_face): Likewise.
2764
2765 * dispextern.h (lookup_fringe_bitmap): Add prototype.
2766 (valid_fringe_bitmap_p): Remove prototype.
2767
2768 * xdisp.c (handle_single_display_prop): Use lookup_fringe_bitmap.
2769
2770 2004-09-29 Kim F. Storm <storm@cua.dk>
2771
2772 * fringe.c (destroy_fringe_bitmap, init_fringe_bitmap)
2773 (w32_init_fringe, w32_reset_fringes): Fix bootstrap (NULL rif).
2774
2775 * dispextern.h (valid_fringe_bitmap_p): Fix prototype.
2776
2777 * fringe.c (Vfringe_bitmaps): New variable.
2778 (syms_of_fringe): DEFVAR_LISP it.
2779 (valid_fringe_bitmap_p): Rename from valid_fringe_bitmap_id_p.
2780 Change arg to Lisp_Object and fail if not an integer.
2781 (get_fringe_bitmap_name, resolve_fringe_bitmap)
2782 (destroy_fringe_bitmap): New functions.
2783 (Fdestroy_fringe_bitmap): Change arg to bitmap symbol.
2784 Use destroy_fringe_bitmap. Remove symbol from Vfringe_bitmaps and
2785 clear its fringe property.
2786 (init_fringe_bitmap): Use destroy_fringe_bitmap instead of
2787 Fdestroy_fringe_bitmap.
2788 (Fdefine_fringe_bitmap): Add BITMAP arg specifying new or existing
2789 bitmap symbol; remove WHICH arg. Add symbol to Vfringe_bitmaps
2790 and set fringe property. Signal error if no free slots.
2791 (Fset_fringe_bitmap_face): Change arg to bitmap symbol.
2792 (Ffringe_bitmaps_at_pos): Return bitmap symbols instead of numbers.
2793
2794 * xdisp.c (handle_single_display_prop): Fringe bitmaps are now
2795 symbols with a fringe property.
2796
2797 2004-09-27 Kim F. Storm <storm@cua.dk>
2798
2799 * buffer.c (syms_of_buffer) <indicate-buffer-boundaries>:
2800 Doc fix. Format may now be a symbol or alist, not a cons.
2801
2802 * fringe.c (update_window_fringes): Handle new formats of
2803 indicate-buffer-boundaries (symbol or alist). No longer
2804 allow a simple cons.
2805 (Ffringe_bitmaps_at_pos): Use nil value for no bitmap.
2806
2807 2004-09-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2808
2809 * config.in: Rebuild.
2810
2811 2004-09-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2812
2813 * config.in: Rebuild.
2814
2815 * Makefile.in: Run setarch i386 ./temacs if exec-shield is present.
2816
2817 2004-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
2818
2819 * xterm.c (x_term_init): Work around a bug in some X servers.
2820
2821 2004-09-18 Richard M. Stallman <rms@gnu.org>
2822
2823 * buffer.c (syms_of_buffer) <default-major-mode>: Doc fix.
2824
2825 * xdisp.c (try_window_reusing_current_matrix):
2826 Handle the case where we reach the old displayed text,
2827 out of sync with the old line boundary.
2828
2829 2004-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
2830
2831 * fileio.c (Finsert_file_contents): Fix case of replacement in a
2832 narrowed buffer.
2833
2834 2004-09-14 Kim F. Storm <storm@cua.dk>
2835
2836 * puresize.h (PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT.
2837
2838 * xfaces.c (Qface_no_inherit): New var.
2839 (syms_of_xfaces): Intern and staticpro it.
2840 (Finternal_make_lisp_face, Finternal_set_lisp_face_attribute)
2841 (Finternal_copy_lisp_face, update_face_from_frame_parameter):
2842 Don't increment face_change_count when face has non-nil
2843 face-no-inherit property.
2844
2845 2004-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
2846
2847 * bytecode.c (BYTE_CODE_QUIT): Add missing AFTER_POTENTIAL_GC.
2848 (Fbyte_code): Remove dead code after `wrong_type_argument'.
2849
2850 * alloc.c (Fgarbage_collect): Mark keyboards, gtk data, and specpdl
2851 before doing the mark_stack_check_gcpros since they're not on the stack.
2852
2853 2004-09-12 Kim F. Storm <storm@cua.dk>
2854
2855 * editfns.c (Fformat): Handle format strings with multiple text
2856 properties. Reverse text property list from the format string,
2857 so the positions are in increasing order.
2858
2859 2004-09-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2860
2861 * xselect.c (x_reply_selection_request): XSync and UNBLOCK before
2862 x_uncatch_errors so that possible protocol errors are delivered.
2863
2864 2004-09-10 Eli Zaretskii <eliz@gnu.org>
2865
2866 * Makefile.in (msdos.o): Depend on buffer.h, commands.h, and
2867 blockinput.h.
2868 (dosfns.o): Depend on blockinput.h, window.h, dispextern.h,
2869 charset.h, and coding.h
2870 (w16select.o): Depend on buffer.h, charset.h, coding.h, and composite.h.
2871 (term.o): Depend on window.h and keymap.h.
2872 (abbrev.o): Depend on syntax.h.
2873 (callint.o): Depend on keymap.h.
2874 (casefiddle.o): Depend on charset.h and keymap.h.
2875 (category.o): Depend on keymap.h.
2876 (coding.o): Depend on dispextern.h.
2877 (cmds.o): Depend on keyboard.h and keymap.h.
2878 (dispnew.o): Depend on indent.h and intervals.h.
2879 (doc.o): Depend on keymap.h.
2880 (editfns.o): Depend on frame.h.
2881 (emacs.o): Depend on dispextern.h.
2882 (fileio.o): Don't depend on ccl.h.
2883 (filelock.o): Depend on charset.h and coding.h.
2884 (frame.o): Depend on w32term.h and macterm.h.
2885 (insdel.o): Depend on region-cache.h.
2886 (keyboard.o): Depend on keymap.h, w32term.h, and macterm.h.
2887 (minibuf.o): Depend on $(INTERVALS_SRC) and keymap.h.
2888 (search.o): Depend on $(INTERVALS_SRC).
2889 (syntax.o): Depend on keymap.h, regex.h, and $(INTERVALS_SRC).
2890 (window.o): Depend on keymap.h, blockinput.h, $(INTERVALS_SRC),
2891 xterm.h, w32term.h, and macterm.h.
2892 (xdisp.o): Depend on keyboard.h, $(INTERVALS_SRC), xterm.h,
2893 w32term.h, and macterm.h.
2894 (xfaces.o): Depend on keyboard.h, $(INTERVALS_SRC),
2895 region-cache.h, xterm.h, w32term.h, and macterm.h.
2896 (bytecode.o): Depend on dispextern.h, frame.h, and xterm.h.
2897 (data.o): Depend on frame.h.
2898 (fns.o): Depend on keymap.h, xterm.h, and blockinput.h.
2899 (print.o): Depend on termchar.h and $(INTERVALS_SRC).
2900 (lread.o): Depend on $(INTERVALS_SRC), termhooks.h, and coding.h.
2901 (intervals.o): Depend on keymap.h.
2902
2903 * msdos.c (msdos_set_cursor_shape, IT_display_cursor):
2904 Add debugging print-out to termscript.
2905
2906 2004-09-09 Richard M. Stallman <rms@gnu.org>
2907
2908 * xdisp.c (decode_mode_spec): Use current buffer for most purposes.
2909
2910 2004-09-08 Richard M. Stallman <rms@gnu.org>
2911
2912 * window.c (Fset_window_buffer): Doc fix.
2913
2914 * xdisp.c (Fformat_mode_line): New arg BUFFER says which buffer to use.
2915
2916 2004-09-08 Dan Nicolaescu <dann@ics.uci.edu>
2917
2918 * minibuf.c (history_delete_duplicates): New variable.
2919 (read_minibuf): Use it.
2920 (syms_of_minibuf): Create the corresponding lisp variable.
2921
2922 2004-09-08 Kim F. Storm <storm@cua.dk>
2923
2924 * xdisp.c (set_cursor_from_row): Also look at 'cursor' property in
2925 overlay just before point.
2926
2927 2004-09-07 Luc Teirlinck <teirllm@auburn.edu>
2928
2929 * buffer.h (struct buffer): Add auto_save_file_format field.
2930 * buffer.c (reset_buffer, init_buffer_once):
2931 Handle auto_save_file_format field.
2932 (syms_of_buffer): Add DEFVAR_PER_BUFFER for
2933 `buffer-auto-save-file-format'.
2934 * fileio.c: Delete declaration for removed Vauto_save_file_format.
2935 (build_annotations): Adapt to replacement of
2936 `auto-save-file-format' with the new buffer-local variable
2937 `buffer-auto-save-file-format'.
2938 (syms_of_fileio): Delete DEFVAR_LISP for auto-save-file-format.
2939
2940 2004-09-07 Jason Rumney <jasonr@gnu.org>
2941
2942 * w32term.h (AppendMenuW_Proc): Move declaration from w32menu.c.
2943
2944 * w32fns.c (w32_wnd_proc) [WM_MEASUREITEM, WM_DRAWITEM]:
2945 Handle Unicode menu titles.
2946
2947 2004-09-07 Kim F. Storm <storm@cua.dk>
2948
2949 * xdisp.c (set_cursor_from_row): Fix last change. Only use 'cursor'
2950 property from text property or overlay strings at point.
2951
2952 2004-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
2953
2954 * xmenu.c (update_submenu_strings): YAILOM.
2955 (set_frame_menubar): Make sure last_i is initialized.
2956
2957 2004-09-03 Jason Rumney <jasonr@gnu.org>
2958
2959 * w32menu.c (_widget_value): Add lname and lkey.
2960 (digest_single_submenu): Set lname and lkey in widget_value
2961 instead of name and key.
2962 (update_submenu_strings): New function.
2963 (set_frame_menubar): Remove call to inhibit_garbage_collection,
2964 call update_submenu_strings.
2965
2966 * w32menu.c (globals_of_w32menu): Check for Unicode API.
2967 (digest_single_submenu, w32_menu_show): Encode menu strings as
2968 UTF-8 if Unicode API is available.
2969 (utf8to16): New function.
2970 (add_menu_item): Use it when calling Unicode API.
2971
2972 2004-09-03 Kim F. Storm <storm@cua.dk>
2973
2974 * xdisp.c (set_cursor_from_row): Look for non-nil `cursor' property
2975 in overlay or text-property strings; set cursor on corresponding
2976 glyph rather than at end of the string.
2977
2978 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2979
2980 * macfns.c (x_real_positions): Save the current window port and
2981 set a new one before obtaining the global coordinate.
2982 Use FRAME_MAC_WINDOW.
2983 (x_set_name, x_set_title): Encode title to UTF8.
2984 Use SetWindowTitleWithCFString.
2985 (Fx_server_version): Get correct OS version.
2986
2987 * macmenu.c (add_menu_item): Remove unused variable `i'.
2988 Don't let separator items destroy refence constants of other menu items.
2989
2990 * macterm.c (x_update_end): Move SetPortWindowPort to inside
2991 BLOCK_INPUT.
2992 (x_set_offset): Use FRAME_MAC_WINDOW.
2993
2994 * xdisp.c (note_mouse_highlight): Set the mouse pointer shape to
2995 nontext_cursor if it is on a scroll bar.
2996
2997 * s/darwin.h (LIBS_CARBON): New define to specify libraries for
2998 Carbon support.
2999 (LD_SWITCH_SYSTEM_TEMACS): Don't link with unused libstdc++.
3000 Use LIBS_CARBON.
3001
3002 2004-09-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3003
3004 * xfns.c (x_set_name_internal): New function. Check if we shall call
3005 xfree before ENCODE_UTF_8.
3006 (x_set_name, x_set_title): Call x_set_name_internal.
3007
3008 2004-08-31 NAKAMURA Toshikazu <nr-tkz@nifty.com> (tiny change)
3009
3010 * w32fns.c (w32_load_font): If a BDF font is already loaded, do not
3011 reload it.
3012
3013 2004-08-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3014
3015 * macmenu.c (_widget_value): Add lname and lkey.
3016 (single_submenu): Set lname and lkey in widget_value
3017 instead of name and key.
3018 (update_submenu_strings): New function.
3019 (set_frame_menubar): Remove call to inhibit_garbage_collection,
3020 call update_submenu_strings.
3021
3022 * xmenu.c (digest_single_submenu): Set lname and lkey in widget_value
3023 instead of name and key.
3024 (update_submenu_strings): New function.
3025 (set_frame_menubar): Remove call to inhibit_garbage_collection,
3026 call update_submenu_strings.
3027
3028 * gtkutil.h (_widget_value): Added lname and lkey.
3029
3030 2004-08-30 Steven Tamm <steventamm@mac.com>
3031
3032 * macmenu.c (mac_menu_show): Remove shadowing of menu variable
3033 by using different names for inner loop variables.
3034
3035 2004-08-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3036
3037 * xmenu.c (set_frame_menubar): Reintroduce inhibit_garbage_collection
3038 from 2002-07-15T00:01:34Z!raeburn@raeburn.org so that strings from ENCODE_UTF_8 isn't GC:ed before used.
3039
3040 * gtkutil.c (xg_create_frame_widgets): Compensate for tool bar when
3041 tool bar items is 0.
3042
3043 2004-08-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3044
3045 * macmenu.c (ENCODE_MENU_STRING): Added to handle multibyte
3046 strings in menu items.
3047 (single_submenu): Use ENCODE_MENU_STRING
3048 (mac_menu_show): Use ENCODE_MENU_STRING. Reset grabbed because
3049 button release isn't passed to event loop
3050 (add_menu_item): Use SetMenuItemWithCFString
3051
3052 2004-08-26 Steven Tamm <steventamm@mac.com>
3053
3054 * fileio.c (Fread_file_name): Call x_file_dialog on carbon on
3055 tool-bar/menu click
3056 * macfns.c (Fx_file_dialog): Implemented using NavServices
3057
3058 2004-08-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3059
3060 * xterm.c (x_catch_errors_unwind): Do not XSync if display has closed.
3061
3062 * xfns.c (x_window_to_frame, x_any_window_to_frame)
3063 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
3064 (x_top_window_to_frame): Return 0 if wdesc is None.
3065
3066 2004-08-22 Richard M. Stallman <rms@gnu.org>
3067
3068 * process.c (process_send_signal) [SIGNALS_VIA_CHARACTERS,
3069 HAVE_TERMIOS]: If there's no char for this signal, drop through
3070 and use system calls.
3071
3072 * bytecode.c (Fbyte_code) <unwind-protect>: Cannot GC.
3073
3074 2004-08-20 Kim F. Storm <storm@cua.dk>
3075
3076 * process.c (wait_reading_process_output): Rename from
3077 wait_reading_process_input. All uses changed.
3078 (wait_reading_process_output_1): Rename from
3079 wait_reading_process_input_1. All uses changed.
3080
3081 * dispnew.c (Fsleep_for): Remove obsolete code.
3082
3083 2004-08-20 Kenichi Handa <handa@m17n.org>
3084
3085 * syntax.c (skip_chars): Fix for unibyte case.
3086
3087 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
3088
3089 * syntax.c (char_quoted): Mixup byte/char pos.
3090 (back_comment): Fixup globals in all cases.
3091
3092 2004-08-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3093
3094 * xfns.c (x_set_name, x_set_title): Encode title to UTF8 before
3095 passing it to gtk_window_set_title.
3096
3097 2004-08-19 Kim F. Storm <storm@cua.dk>
3098
3099 * process.c (wait_reading_process_input): Clean up.
3100 Add wait_for_cell, wait_proc, and just_wait_proc args
3101 to avoid overloading `read_kbd' and `do_display' args.
3102 Change read_kbd arg to int. All callers changed.
3103
3104 * process.c (process_send_signal): Use CDISABLE.
3105
3106 * sysdep.c (child_setup_tty, init_sys_modes): Use CDISABLE.
3107
3108 2004-08-18 Kim F. Storm <storm@cua.dk>
3109
3110 * process.c (Faccept_process_output): Add arg JUST-THIS-ONE;
3111 forward to wait_reading_process_input via DO_DISPLAY arg.
3112 (wait_reading_process_input): If DO_DISPLAY < 0 for a process
3113 object, only process output from that process; also inhibit
3114 running timers if DO_DISPLAY==-2.
3115
3116 2004-08-17 Kim F. Storm <storm@cua.dk>
3117
3118 * process.c (process_send_signal): Fix last change--use
3119 _POSIX_VDISABLE instead of CVDISABLE when available.
3120
3121 2004-08-16 Richard M. Stallman <rms@gnu.org>
3122
3123 * sysdep.c (child_setup_tty) [SIGNALS_VIA_CHARACTERS]:
3124 Set VQUIT and VINTR chars to the standard ones if they are unset.
3125 [AIX]: Don't do that here. And don't force VINTR to standard
3126 when SIGNALS_VIA_CHARACTERS.
3127
3128 * process.c (process_send_signal)
3129 [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
3130 Do nothing if the character is CVDISABLE.
3131
3132 * xfaces.c (merge_face_ref): Specifying `unspecified' is a no-op.
3133
3134 * intervals.c (move_if_not_intangible):
3135 Force POSITION to be between BEGV and ZV.
3136
3137 2004-08-14 John Paul Wallington <jpw@gnu.org>
3138
3139 * buffer.c (Frestore_buffer_modified_p): Doc fix.
3140
3141 * fileio.c (Fread_file_name): Doc fix.
3142
3143 * minibuf.c (syms_of_minibuf) <completion-ignore-case>: Doc fix.
3144
3145 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
3146
3147 * keymap.c (Fmake_keymap, Fmap_keymap, Fwhere_is_internal): Doc fixes.
3148
3149 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
3150
3151 * keyboard.c: Declare Qdisabled_command_function instead of
3152 Qdisabled_command_hook.
3153 (Fcommand_execute): Use Qdisabled_command_function instead of
3154 Qdisabled_command_hook.
3155 (syms_of_keyboard): Ditto.
3156
3157 2004-08-07 Luc Teirlinck <teirllm@auburn.edu>
3158
3159 * keymap.c (Flocal_key_binding, Fglobal_key_binding)
3160 (syms_of_keymap) <key-translation-map>: Doc fixes.
3161
3162 2004-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
3163
3164 * window.c (window_list_1): YAILOM.
3165
3166 * fileio.c (make_temp_name): Handle multibyte prefixes.
3167
3168 2004-08-06 Luc Teirlinck <teirllm@auburn.edu>
3169
3170 * keyboard.c (syms_of_keyboard) <overriding-terminal-local-map>:
3171 Doc fix.
3172
3173 2004-08-03 Kenichi Handa <handa@m17n.org>
3174
3175 * coding.c (decode_coding_string): Adjust coding->consumed, and
3176 etc. with shrinked_bytes.
3177
3178 2004-08-03 Kim F. Storm <storm@cua.dk>
3179
3180 * indent.c (compute_motion): Fix check for full width window
3181 in non-window case. Do not count left truncation glyph on
3182 window systems.
3183
3184 2004-08-02 Luc Teirlinck <teirllm@auburn.edu>
3185
3186 * data.c (Finteractive_form): Doc fix.
3187
3188 2004-08-02 Kim F. Storm <storm@cua.dk>
3189
3190 * indent.c (compute_motion): Use actual window width if WIDTH is -1,
3191 properly accounting for continuation glyph on non-window systems.
3192 (Fcompute_motion): Use actual window width if WIDTH is nil, and
3193 actual window width/height if TOPOS is nil, properly accounting for
3194 continuation glyphs on non-window systems, and optional header lines.
3195 (vmotion): Let compute_motion calculate actual window width.
3196
3197 * window.c (window_scroll_line_based): Let compute_motion
3198 calculate actual window width.
3199
3200 2004-08-02 Kim F. Storm <storm@cua.dk>
3201
3202 * process.c (read_process_output): Use whole read buffer.
3203 Don't trigger adaptive read buffering on errors.
3204
3205 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
3206
3207 * keymap.c (Fset_keymap_parent, Fdefine_prefix_command): Doc fixes.
3208
3209 * keyboard.c (syms_of_keyboard) <disable-point-adjustment>: Doc fix.
3210
3211 * callint.c (Fcall_interactively): Doc fix.
3212
3213 2004-07-30 Richard M. Stallman <rms@gnu.org>
3214
3215 * abbrev.c (Fexpand_abbrev): Undo previous change.
3216
3217 2004-07-30 Kim F. Storm <storm@cua.dk>
3218
3219 * editfns.c (Fformat): Allocate extra (dummy) element in info.
3220
3221 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
3222
3223 * eval.c (Fdefvar, Fdefconst): Doc fixes.
3224
3225 2004-07-27 Kim F. Storm <storm@cua.dk>
3226
3227 * xdisp.c (move_it_in_display_line_to): Check BUFFER_POS_REACHED_P after
3228 we have ensured that the glyph fits on the current line (or returned
3229 MOVE_LINE_CONTINUED otherwise).
3230
3231 2004-07-26 Kim F. Storm <storm@cua.dk>
3232
3233 * xdisp.c (move_it_in_display_line_to): If overflow-newline-into-fringe
3234 is enabled, return MOVE_LINE_CONTINUED rather than MOVE_POS_MATCH_OR_ZV
3235 if target position is at end of display line but char is not a newline.
3236
3237 2004-07-25 Richard M. Stallman <rms@gnu.org>
3238
3239 * window.c (coordinates_in_window): Return ON_SCROLL_BAR
3240 instead of ON_VERTICAL_BORDER, when on scroll bar.
3241 (Fcoordinates_in_window_p): Handle ON_SCROLL_BAR--return nil.
3242
3243 * dispextern.h (enum window_part): Add ON_SCROLL_BAR.
3244
3245 * window.c (Fcoordinates_in_window_p):
3246 Take account of FRAME_INTERNAL_BORDER_WIDTH.
3247
3248 * alloc.c (check_cons_list): New function (contents commented out).
3249
3250 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
3251
3252 * xfaces.c (Fcolor_supported_p): Doc fix.
3253
3254 * frame.c (Fselect_frame, Fset_frame_selected_window)
3255 (Fframe_visible_p, Fraise_frame): Doc fixes.
3256
3257 2004-07-24 Richard M. Stallman <rms@gnu.org>
3258
3259 * keyboard.h (not_single_kboard_state): Declare.
3260
3261 * fileio.c (Fwrite_region): Doc fix.
3262
3263 * window.c (Fwindow_at): Take account of FRAME_INTERNAL_BORDER_WIDTH.
3264
3265 * abbrev.c (Fexpand_abbrev): Run Qpre_abbrev_expand_hook
3266 only when a real abbrev is present.
3267
3268 * xfns.c (x_icon_verify): New function.
3269 (Fx_create_frame): Use it.
3270
3271 2004-07-22 Barry Fishman <barry_fishman@att.net> (tiny change)
3272
3273 * s/gnu-linux.h: Use GC_MARK_STACK if __amd64__ is defined.
3274
3275 2004-07-21 Kim F. Storm <storm@cua.dk>
3276
3277 * window.h (struct glyph_matrix): New members nrows_scale_factor
3278 and ncols_scale_factor.
3279
3280 * window.c (make_window): Initialize nrows_scale_factor and
3281 ncols_scale_factor members.
3282
3283 * dispnew.c (margin_glyphs_to_reserve): Apply ncols_scale_factor.
3284 (allocate_matrices_for_frame_redisplay): Fix left/right margin mix-up.
3285 (required_matrix_height): Apply nrows_scale_factor.
3286 (required_matrix_width): Apply ncols_scale_factor.
3287
3288 * xdisp.c (display_line): Increment nrows_scale_factor and set
3289 fonts_changed_p if past last allocated row.
3290 (append_glyph, append_composite_glyph, produce_image_glyph)
3291 (append_stretch_glyph): Increment ncols_scale_factor and set
3292 fonts_changed_p if current area is full.
3293
3294 2004-07-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3295
3296 * widget.c (EmacsFrameDestroy): Don't abort if normal_gc is 0.
3297
3298 2004-07-19 Luc Teirlinck <teirllm@auburn.edu>
3299
3300 * window.c (Fpos_visible_in_window_p, Fset_window_hscroll)
3301 (Fwindow_inside_pixel_edges, Fwindow_end, Fset_window_point)
3302 (Fset_window_start, Fscroll_up, Fscroll_down)
3303 (Fother_window_for_scrolling, Fscroll_other_window)
3304 (Fsave_window_excursion, Fset_window_vscroll)
3305 (syms_of_window) <window-size-fixed>: Doc fixes.
3306
3307 2004-07-19 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
3308
3309 * w32fns.c (Fx_file_dialog): Use ENCODE_FILE instead of
3310 ENCODE_SYSTEM for filenames.
3311
3312 2004-07-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3313
3314 * mac.c (sys_select): Block input around call to
3315 ReceiveNextEvent to prevent breakage. Correctly handle
3316 blocking on event queue only by calling ReceiveNextEvent
3317 instead of select (since GUI events aren't on an fd).
3318 (sys_read): Remove function
3319 * sysdep.c: Remove redefine of read to sys_read if HAVE_CARBON
3320
3321 2004-07-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3322
3323 * mac.c (sys_select): Redo sys_select to use alarm-based
3324 polling instead of 1 sec timeouts (like solaris).
3325
3326 * macterm.c (x_make_frame_visible): Comment in polling on
3327 frame creation.
3328
3329 * keyboard.c: Undef SIGIO on Carbon
3330
3331 * atimer.c (alarm_signal_handler): Call alarm handlers after
3332 scheduling.
3333
3334 * eval.c (Feval): Remove quit_char test
3335
3336 * process.c (wait_reading_process_input): Remove clearing
3337 stdin for select call on process input.
3338
3339 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
3340
3341 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Correct
3342 capitalization error in docstring.
3343
3344 2004-07-17 Juanma Barranquero <lektu@terra.es>
3345
3346 * keyboard.c (not_single_kboard_state): Do nothing unless
3347 MULTI_KBOARD is defined.
3348
3349 2004-07-17 Richard M. Stallman <rms@gnu.org>
3350
3351 * window.c (coordinates_in_window): Inside the window but outside
3352 its box to the L or R, return ON_VERTICAL_BORDER.
3353 (window_list_1): Rotate the list to start with WINDOW.
3354
3355 * print.c (print_preprocess): Test for print_depth at limit
3356 before entering in being_printed.
3357
3358 * keyboard.c (not_single_kboard_state): New function.
3359 (stuff_buffered_input): Now no-op only if no SIGTSTP.
3360
3361 * frame.c (Fdelete_frame): If we're in single_bboard_state on
3362 this kboard, and we delete its last frame, go to any_kboard_state.
3363
3364 * buffer.c (syms_of_buffer) <transient-mark-mode>: Doc fix.
3365
3366 2004-07-15 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
3367
3368 * w32fns.c (Fx_file_dialog): Encode strings in system coding
3369 system before passing them to OS functions for display.
3370
3371 2004-07-15 David Kastrup <dak@gnu.org>
3372
3373 * search.c (syms_of_search): Staticpro `saved_last_thing_searched'.
3374 Apparently fixes an abort condition.
3375
3376 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
3377
3378 * fileio.c (Fvisited_file_modtime): Return a list of two integers,
3379 instead of a cons.
3380
3381 2004-07-14 K\e,Ba\e(Broly L\e,Bu\e(Brentey <lorentey@elte.hu>
3382
3383 * keyboard.c (echo_dash): Do nothing if there already is a dash
3384 at the end of the echo string.
3385
3386 2004-07-12 Kim F. Storm <storm@cua.dk>
3387
3388 * alloc.c (mark_object): Only look at Lisp_Misc_Save_Value
3389 if GC_MARK_STACK.
3390
3391 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
3392
3393 * buffer.c (Fswitch_to_buffer, Fpop_to_buffer): Doc fixes.
3394
3395 * window.c (Fwindow_buffer, Fother_window, Fget_lru_window)
3396 (Fget_largest_window, Fget_buffer_window, Fdelete_windows_on)
3397 (Freplace_buffer_in_windows, Fset_window_buffer)
3398 (Fselect-window, Fdisplay-buffer, Fsplit_window): Doc fixes.
3399 (syms_of_window): Expand docstring of `display-buffer-function'.
3400
3401 2004-07-09 Luc Teirlinck <teirllm@auburn.edu>
3402
3403 * editfns.c (Ffloat_time, Fformat_time_string, Fdecode_time)
3404 (Fcurrent_time_string, Fcurrent_time_zone): Mention in docstrings
3405 that time values of the type (HIGH . LOW) are considered obsolete.
3406
3407 2004-07-06 Luc Teirlinck <teirllm@auburn.edu>
3408
3409 * keyboard.c (syms_of_keyboard): Fix `keyboard-translate-table'
3410 docstring.
3411
3412 * fns.c (Fclear_string): Declare `len' before call to CHECK_STRING.
3413
3414 2004-07-06 John Paul Wallington <jpw@gnu.org>
3415
3416 * eval.c (Fdefmacro): Signal an error if NAME is not a symbol.
3417
3418 * fns.c (Fclear_string): Signal an error if STRING is not a string.
3419
3420 2004-07-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3421
3422 * macterm.c (mac_initialize_display_info): Use CGGetActiveDisplayList
3423 instead of CGMainDisplayID (only in OSX 10.2 and later).
3424
3425 2004-07-04 John Paul Wallington <jpw@gnu.org>
3426
3427 * fileio.c (read_file_name_completion_ignore_case): New variable.
3428 (syms_of_fileio): Declare and initialise it.
3429 (Fread_file_name): Bind `completion-ignore-case' to respect it.
3430
3431 2004-07-03 Eli Zaretskii <eliz@gnu.org>
3432
3433 * msdos.c (dos_rawgetc): Use make_number to produce Lisp objects
3434 for event.x and event.y.
3435
3436 2004-07-01 Kenichi Handa <handa@m17n.org>
3437
3438 * w32select.c (Fw32_set_clipboard_data): Update `nbytes' correctly
3439 after getting a new string by pre-write-conversion.
3440
3441 2004-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
3442
3443 * xterm.c (x_detect_focus_change): Remove unused var `nr_events'.
3444 (x_calc_absolute_position): Remove unused var `child'.
3445
3446 * xfaces.c (x_supports_face_attributes_p)
3447 (Fdisplay_supports_face_attributes_p): YAILOM.
3448 (tty_supports_face_attributes_p): Remove unused var `i'.
3449
3450 * syntax.c (skip_chars): Remove unused labels fwd_unibyte_ok and
3451 back_unibyte_ok.
3452
3453 * search.c (match_limit, Fmatch_data, Fset_match_data): YAILOM.
3454
3455 * fontset.c (Fset_fontset_font): Remove unused vars `family' and `registry'.
3456
3457 * Makefile.in (${etc}DOC): Fix file name of make-docfile.
3458
3459 2004-06-30 Andreas Schwab <schwab@suse.de>
3460
3461 * image.c (CHECK_LIB_AVAILABLE): Add third parameter LIBRARIES.
3462 (Finit_image_library): Pass LIBRARIES through to
3463 CHECK_LIB_AVAILABLE. Declare parameters. Doc fix.
3464 (lookup_image_type): Pass Qnil as second argument to
3465 Finit_image_library.
3466
3467 * lisp.h (Finit_image_library): Declare.
3468
3469 2004-06-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3470
3471 * macterm.c (do_window_activate, do_window_deactivate): Remove.
3472 (XTread_socket): Send mouse button events to the toolbox
3473 dispatcher even when the mouse is grabbed. Don't process window
3474 activate events for non-Emacs windows. Replace function calls to
3475 do_window_activate and do_window_deactivate with their contents.
3476 Reset mouse grabbing status when a window is deactivated.
3477
3478 2004-06-29 Steven Tamm <steventamm@mac.com>
3479
3480 * macterm.c (mac_get_emulated_btn)
3481 (mac_event_to_emacs_modifiers): Fix emulated mouse button
3482 support to correctly mask out modifiers.
3483
3484 2004-06-29 David Kastrup <dak@gnu.org>
3485
3486 * search.c (Fset_match_data): Allow buffer before end of list
3487 which can happen if set-match-data is using a pre-consed list.
3488
3489 2004-06-28 Steven Tamm <steventamm@mac.com>
3490
3491 * macterm.c (XTread_socket): Correctly set the frame position
3492 after the window is moved.
3493
3494 2004-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3495
3496 * gtkutil.c (xg_get_image_for_pixmap): Call g_object_unref on
3497 gpix and gmask just before return to avoid memory leak.
3498 (xg_get_image_for_pixmap): Add workaround for monochrome displays
3499 so insensitive and activated icons look ok.
3500
3501 2004-06-27 Jason Rumney <jasonr@gnu.org>
3502
3503 * w32fns.c (file_dialog_callback): Disable edit control if set
3504 to directories only on CDN_INITDONE message.
3505 (Fx_file_dialog): Default to directories only when prompt starts
3506 with "Dired".
3507
3508 2004-06-25 Kim F. Storm <storm@cua.dk>
3509
3510 * alloc.c (allocate_misc): Update total_free_markers.
3511 (free_misc): New function.
3512 (safe_alloca_unwind, free_marker): Use it.
3513
3514 * lisp.h (free_misc): Add prototype.
3515
3516 * fns.c (Fmapconcat, Fmapcar): Remove superfluous GCPROs.
3517
3518 2004-06-24 Richard M. Stallman <rms@gnu.org>
3519
3520 * emacs.c (Vsignal_USR1_hook, Vsignal_USR2_hook): Definitions deleted.
3521 (syms_of_emacs): Lisp variables deleted.
3522
3523 2004-06-23 David Kastrup <dak@gnu.org>
3524
3525 * search.c (Freplace_match): Adjust the match-data more thoroughly
3526 when replacing strings in the buffer.
3527 (Fmatch_data): When INTEGERS is non-nil and the last match was in
3528 a buffer, add the buffer as last element to the match data.
3529 (Fset_match_data): If an additional element of the match-data is a
3530 buffer, restore it to last_thing_searched.
3531 (save_search_regs): Save last_thing_searched as part of the match data.
3532 (restore_match_data): Restore it again.
3533
3534 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
3535
3536 * keymap.c (Ftext_char_description): Doc fix.
3537 * doc.c (Fsnarf_documentation): Doc fix.
3538
3539 2004-06-22 Kim F. Storm <storm@cua.dk>
3540
3541 * fns.c (Fmapcar, Fmapconcat): GCPRO the args array.
3542
3543 * lisp.h (struct Lisp_Save_Value): New member dogc.
3544 (SAFE_ALLOCA_LISP): Change second arg to number of elements.
3545 Set dogc member in Lisp_Save_Value object so it will be GC'ed.
3546 (SAFE_FREE_LISP): New macro.
3547
3548 * alloc.c (safe_alloca_unwind): Clear dogc and pointer members.
3549 (make_save_value): Init new dogc member.
3550 (mark_object): Mark Lisp_Save_Value pointer array if dogc is set.
3551
3552 * fns.c (Fmapconcat, Fmapcar): Use new SAFE_ALLOCA_LISP and
3553 SAFE_FREE_LISP macros.
3554
3555 2004-06-22 Kim F. Storm <storm@cua.dk>
3556
3557 * lisp.h (SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects.
3558 Temporarily inhibits GC if memory is xmalloc'ed, as the Lisp_Objects
3559 in that memory area are unknown to GC. Add comments.
3560
3561 * fns.c (Fmapconcat, Fmapcar): Use SAFE_ALLOCA_LISP.
3562
3563 2004-06-21 Kim F. Storm <storm@cua.dk>
3564
3565 * lisp.h (MAX_ALLOCA): Define here.
3566 (safe_alloca_unwind): Add prototype.
3567 (USE_SAFE_ALLOCA, SAFE_ALLOCA, SAFE_FREE): New macros.
3568
3569 * alloc.c (safe_alloca_unwind): New function.
3570
3571 * casefiddle.c (casify_object): Use SAFE_ALLOCA.
3572
3573 * charset.c (Fstring): Use SAFE_ALLOCA.
3574
3575 * coding.c (MAX_ALLOCA): Remove define.
3576
3577 * data.c (MAX_ALLOCA): Remove define.
3578 (Faset): Use SAFE_ALLOCA.
3579
3580 * editfns.c (Fformat, Ftranspose_regions): Use SAFE_ALLOCA.
3581
3582 * fns.c (string_make_multibyte, string_to_multibyte)
3583 (string_make_unibyte, Fmapconcat, Fmapcar): Use SAFE_ALLOCA.
3584 (MAX_ALLOCA): Remove define.
3585 (Fbase64_encode_region, Fbase64_encode_string)
3586 (Fbase64_decode_region, Fbase64_decode_string): Use SAFE_ALLOCA.
3587 (Fbase64_encode_region, Fbase64_encode_string): Fix potential
3588 memory leak if encoding fails.
3589
3590 * xdisp.c (add_to_log): Use SAFE_ALLOCA.
3591
3592 2004-06-21 Eli Zaretskii <eliz@gnu.org>
3593
3594 * print.c (Fwith_output_to_temp_buffer): Doc fix.
3595
3596 2004-06-20 Richard M. Stallman <rms@gnu.org>
3597
3598 * xfaces.c (Finternal_copy_lisp_face): Small cleanup; doc fix.
3599
3600 * search.c (match_limit): Cleaner err msg when no match data available.
3601
3602 * window.c (syms_of_window): Doc fix.
3603
3604 * keyboard.c (command_loop_1): Handle values `only' and `identity'
3605 for Vtransient_mark_mode.
3606
3607 * buffer.c (syms_of_buffer): Doc fix.
3608
3609 2004-06-21 David Kastrup <dak@gnu.org>
3610
3611 * minibuf.c (Ftry_completion, Fall_completions): Do lazy binding
3612 and unbinding of `case-fold-search' according to
3613 `completion-ignore-case' around calls of string-match and
3614 predicates, respectively. Should give satisfactory performance
3615 in all relevant cases.
3616
3617 2004-06-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3618
3619 * xterm.c (x_draw_image_foreground_1): Subtract slice.x/y from
3620 clip_x/y_origin.
3621
3622 * fns.c (string_to_multibyte): Use xmalloc/xfree instead of alloca.
3623
3624 * macfns.c (Fx_display_color_cells): Do not limit return value to 256.
3625
3626 * macterm.c (mac_initialize_display_info): Initialize n_planes correctly
3627 on Mac OSX.
3628
3629 2004-06-16 Luc Teirlinck <teirllm@auburn.edu>
3630
3631 * buffer.c (syms_of_buffer): Clarify `fill-column' docstring.
3632
3633 2004-06-16 Kim F. Storm <storm@cua.dk>
3634
3635 * dispextern.h (Vimage_types): Remove extern.
3636
3637 2004-06-16 Miles Bader <miles@gnu.org>
3638
3639 * image.c (lookup_image_type): Initialize image type if necessary.
3640
3641 2004-06-15 Kim F. Storm <storm@cua.dk>
3642
3643 * xdisp.c (try_cursor_movement): Exclude header line from scroll
3644 margin at top of window.
3645 (try_window_reusing_current_matrix): Calculate proper cursor position
3646 after scrolling up with non-zero scroll margin, as the old cursor
3647 position corresponds to value of PT before executing this command.
3648 (try_window_id): Consider scroll margin at bottom of window too;
3649 otherwise we fail to scroll when hl-line-mode is enabled.
3650
3651 * syntax.c (skip_chars): Only recognize [:class:] when it has the
3652 proper format and class is a lower-case word.
3653
3654 2004-06-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3655
3656 * gtkutil.c (xg_get_image_for_pixmap): New function.
3657 (xg_get_gdk_pixmap_and_mask): Remove.
3658 (update_frame_tool_bar): Call xg_get_image_for_pixmap instead of
3659 xg_get_gdk_pixmap_and_mask.
3660
3661 * xterm.h (struct x_display_info): Typo in comment fixed.
3662
3663 2004-06-14 Juanma Barranquero <lektu@terra.es>
3664
3665 * dispextern.h (Vimage_types): Make it conditional on
3666 HAVE_WINDOW_SYSTEM.
3667
3668 * image.c (Vimage_types): Move from xdisp.c.
3669 (Vimage_type_cache): New variable.
3670 (define_image_type): New argument indicating whether an image
3671 library was loaded; cache loaded status and return t on success,
3672 nil otherwise.
3673 (CACHE_IMAGE_TYPE, ADD_IMAGE_TYPE): New macros.
3674 (w32_delayed_load): New function to load an image library from a
3675 list of possible filenames.
3676 (init_xpm_functions, init_png_functions, init_jpeg_functions)
3677 (init_tiff_functions, init_gif_functions): Use `w32_delayed_load'.
3678 (CHECK_LIB_AVAILABLE): Call `define_image_library' with new argument.
3679 (Finit_image_library): New function, extracted from `init_image'.
3680 Try to initialize an image library on demand and cache whether we
3681 were successful or not.
3682 (syms_of_image): Initialize `Vimage_types' and
3683 `Vimage_type_cache'. Add recognized image types to Vimage_types.
3684 Export `init-image-library'.
3685 (init_image): Remove initialization of all image types, except xbm
3686 and pbm.
3687
3688 * xdisp.c (Vimage_types): Delete (moved to image.c).
3689
3690 2004-06-14 Andreas Schwab <schwab@suse.de>
3691
3692 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
3693 Avoid calling specbind when completion-regexp-list is empty.
3694
3695 2004-06-13 Richard M. Stallman <rms@gnu.org>
3696
3697 * regex.h (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
3698 (re_wctype, re_iswctype, re_wctype_to_bit):
3699 Non-function definitions moved here from regex.c.
3700
3701 * regex.c (re_wctype, re_iswctype): Function defs longer static.
3702 (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
3703 (re_wctype, re_iswctype, re_wctype_to_bit):
3704 Non-function definitions moved to regex.h.
3705
3706 * window.c (Fselect_window): Doc fix.
3707
3708 * syntax.c: Include regex.h.
3709 (skip_chars): New arg HANDLE_ISO_CLASSES. Callers changed.
3710 If requested, make a list of classes, then check the scanned
3711 chars for membership in them.
3712 (in_classes): New function.
3713 Doc fix.
3714
3715 * keyboard.c (cmd_error): Don't call any_kboard_state
3716 if inside a recursive edit level.
3717
3718 2004-06-13 Lorentey K\e,Aa\e(Broly <lorentey@elte.hu>
3719
3720 * keyboard.c (command_loop): Call any_kboard_state before
3721 command_loop_2 when at top level.
3722
3723 2004-06-13 Andreas Schwab <schwab@suse.de>
3724
3725 * print.c (print_object): Always use %ld for printing EMACS_INT.
3726
3727 * keyboard.c (cancel_hourglass_unwind): Return a value.
3728 (modify_event_symbol): Always use %ld for printing EMACS_INT.
3729 (Fexecute_extended_command): Likewise.
3730
3731 * syntax.h (SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
3732 avoid clashes.
3733 (SYNTAX): Likewise.
3734 (SYNTAX_WITH_FLAGS): Likewise.
3735 (SYNTAX_MATCH): Likewise.
3736
3737 * syntax.c (char_quoted): Avoid warning about undefined operation.
3738 (find_defun_start): Likewise.
3739 (scan_lists): Likewise.
3740 (INC_FROM): Likewise.
3741 (scan_sexps_forward): Likewise.
3742
3743 * image.c: Include <ctype.h>.
3744
3745 * xfaces.c (face_attr_equal_p): Declare parameters.
3746
3747 2004-06-13 Kenichi Handa <handa@m17n.org>
3748
3749 * ccl.c (CCL_READ_CHAR): If hit EOF, set REG to -1.
3750
3751 2004-06-12 Matthew Mundell <matt@mundell.ukfsn.org>
3752
3753 * eval.c (Fdefun): Signal an error if NAME is not a symbol.
3754
3755 2004-06-12 Kenichi Handa <handa@m17n.org>
3756
3757 * ccl.c (CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
3758 ccl_prog_stack_struct and update it.
3759 (CCL_INVALID_CMD): If CCL_DEBUG is defined, call ccl_debug_hook.
3760 (CCL_READ_CHAR): Get instruction counter from eof_ic, not from
3761 ccl->eof_ic on EOF.
3762 (ccl_debug_hook): New function.
3763 (struct ccl_prog_stack): New member eof_ic.
3764 (ccl_driver): Handle EOF in subrountine call correctly.
3765
3766 2004-06-11 Kenichi Handa <handa@m17n.org>
3767
3768 * coding.c (decode_coding_string): Check CODING_FINISH_INTERRUPT.
3769
3770 2004-06-11 Kim F. Storm <storm@cua.dk>
3771
3772 * emacs.c (shut_down_emacs): Inhibit redisplay during shutdown.
3773
3774 2004-06-11 Juanma Barranquero <lektu@terra.es>
3775
3776 * keyboard.c (Fposn_at_point): Doc fix.
3777
3778 2004-06-11 David Kastrup <dak@gnu.org>
3779
3780 * search.c (match_limit): Don't flag an error if match-data
3781 exceeding the allocated search_regs.num_regs gets requested, just
3782 return Qnil.
3783
3784 2004-06-08 Miles Bader <miles@gnu.org>
3785
3786 * xfaces.c (push_named_merge_point): Return 0 when a cycle is detected.
3787
3788 2004-06-07 Juanma Barranquero <lektu@terra.es>
3789
3790 * editfns.c (Fuser_login_name, Ffloat_time, Fencode_time)
3791 (Fcurrent_time_string, Fcurrent_time_zone)
3792 (Finsert_buffer_substring, Ftranspose_regions): Doc fixes.
3793
3794 2004-06-07 Miles Bader <miles@gnu.org>
3795
3796 * xfaces.c (struct named_merge_point): New type.
3797 (push_named_merge_point): New function.
3798 (merge_named_face): New function.
3799 (merge_face_ref, face_at_buffer_position, face_at_string_position):
3800 Use `merge_named_face'.
3801 (merge_face_inheritance): Function removed.
3802 (merge_face_ref): Rename from `merge_face_vector_with_property'.
3803 Add new `err_msgs' and `named_merge_points' args. Return error
3804 status. Only print error messages if ERR_MSGS is true. Don't try to
3805 do :inherit attribute validation.
3806 (merge_face_heights): Handle `unspecified' in both directions.
3807 (merge_face_vectors): Rename `cycle_check' arg to `named_merge_points'.
3808 Call `merge_face_ref' instead of `merge_face_inheritance'.
3809 (Fdisplay_supports_face_attributes_p, Fface_attributes_as_vector)
3810 (compute_char_face, face_at_buffer_position)
3811 (face_at_string_position): Call `merge_face_ref' instead of
3812 `merge_face_vector_with_property'.
3813
3814 2004-06-07 Kenichi Handa <handa@m17n.org>
3815
3816 * coding.c (find_safe_codings): Check NILP (safe_codings) only at
3817 the necessary places.
3818
3819 2004-06-07 Kim F. Storm <storm@cua.dk>
3820
3821 * process.c (Fdelete_process): Undo 2004-05-28 change.
3822 Instead, call status_notify also for network process.
3823 (status_message): Use process instead of status as arg.
3824 Give messages "deleted" or "connection broken by remote peer" for
3825 an exited network process.
3826 (status_notify): Change call to status_message.
3827 (read_process_output): Increase readmax to 4096. Do not increase
3828 buffer size for datagram channels (default is now large enough).
3829
3830 2004-06-06 Steven Tamm <tamm@Steven-Tamms-Computer.local>
3831
3832 * macfns.c (x_create_tip_frame): Fix Mac OS X 10.1 compilation
3833 problem due to newly defined variable.
3834
3835 2004-06-06 Miles Bader <miles@gnu.org>
3836
3837 * xfaces.c (Fdisplay_supports_face_attributes_p): Give up
3838 immediately if non-interactive or not initialized.
3839
3840 2004-06-05 Richard M. Stallman <rms@gnu.org>
3841
3842 * minibuf.c (Fcompleting_read): Doc fix.
3843
3844 2004-06-05 Andreas Schwab <schwab@suse.de>
3845
3846 * macfns.c (x_create_tip_frame): Fix declaration after statement.
3847
3848 2004-06-05 Juanma Barranquero <lektu@terra.es>
3849
3850 * keymap.c (Fdescribe_vector): Fix docstring.
3851 (Fkey_description, Fglobal_key_binding): Fix typo in docstring.
3852
3853 2004-06-05 Miles Bader <miles@gnu.org>
3854
3855 * xfaces.c (tty_supports_face_attributes_p): Make sure the specified
3856 attributes have different values than the default face.
3857
3858 2004-06-04 Eli Zaretskii <eliz@gnu.org>
3859
3860 * xfaces.c (x_supports_face_attributes_p): Make this function
3861 conditional on HAVE_WINDOW_SYSTEM.
3862 (Fdisplay_supports_face_attributes_p) [HAVE_WINDOW_SYSTEM]:
3863 Don't call x_supports_face_attributes_p if it was not compiled in.
3864
3865 2004-06-04 Miles Bader <miles@gnu.org>
3866
3867 * xfaces.c (tty_supports_face_attributes_p): New function, mostly
3868 from Ftty_supports_face_attributes_p.
3869 (x_supports_face_attributes_p): New function.
3870 (Ftty_supports_face_attributes_p): Function deleted.
3871 (Fdisplay_supports_face_attributes_p): New function.
3872 (syms_of_xfaces): Initialize Sdisplay_supports_face_attributes_p.
3873 (face_attr_equal_p): New function.
3874 (lface_equal_p): Use it.
3875
3876 2004-06-03 Juanma Barranquero <lektu@terra.es>
3877
3878 * w32fns.c (Fx_display_grayscale_p, Fw32_send_sys_command)
3879 (Vw32_color_map): Fix typo in docstring.
3880 (Fx_create_frame, Fw32_find_bdf_fonts, Fx_show_tip)
3881 (Fw32_unregister_hot_key, Fw32_reconstruct_hot_key):
3882 Make argument names match their use in docstring.
3883
3884 2004-06-02 Juanma Barranquero <lektu@terra.es>
3885
3886 Work around bugs/problems with MinGW builds of graphics libraries
3887 called from MSVC builds of Emacs.
3888
3889 * image.c (lookup_image): Make pointer to img static.
3890 (png_read_from_memory): Disable "global" optimization.
3891
3892 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
3893
3894 * eval.c (Fcondition_case): Fix usage. Simplify.
3895
3896 * mem-limits.h (EXCEEDS_LISP_PTR) [USE_LSB_TAG]: Never true.
3897
3898 2004-05-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3899
3900 * macfns.c: Don't include ccl.h.
3901 [MAC_OSX]: Don't include QuickTime/QuickTime.h.
3902 [!MAC_OSX]: Don't include alloca.h, Windows.h, Gestalt.h, or
3903 TextUtils.h.
3904 (Fx_create_frame): Sync with xfns.c. Initialize cursor descriptors.
3905 (Fx_display_mm_height, Fx_display_mm_width): Calculate length from
3906 display height/width.
3907 (compute_tip_xy, Vx_max_tooltip_size): Declare.
3908 (unwind_create_tip_frame, compute_tip_xy): New functions.
3909 (x_create_tip_frame, Fx_show_tip, Fx_hide_tip): Sync with xfns.c.
3910 (syms_of_macfns): Initialize Qcancel_timer, Vx_max_tooltip_size,
3911 and last_show_tip_args.
3912
3913 * macgui.h [!MAC_OSX]: Include Gestalt.h.
3914 (Cursor, No_Cursor): New defines.
3915 [!TARGET_API_MAC_CARBON] (SetPortWindowPort): New compatibility macro.
3916 [!TARGET_API_MAC_CARBON] (arrow_cursor): Declare.
3917
3918 * macmenu.c (mac_menu_show, mac_dialog): Use SetPortWindowPort.
3919
3920 * macterm.c: Don't include Gestalt.h.
3921 (enum mouse_tracking_type, mouse_tracking_in_progress): Remove.
3922 (XDrawLine, XClearArea, XClearWindow, mac_draw_bitmap)
3923 (mac_set_clip_rectangle, mac_reset_clipping, XCreatePixmap)
3924 (XFillRectangle, mac_draw_rectangle, mac_draw_string_common)
3925 (mac_copy_area, mac_copy_area_with_mask, x_update_end)
3926 (construct_mouse_click, XTmouse_position)
3927 (x_scroll_bar_report_motion, x_calc_absolute_position)
3928 (do_mouse_moved, do_zoom_window, mac_do_receive_drag)
3929 (XTread_socket, make_mac_frame): Use SetPortWindowPort.
3930 (note_mouse_movement): Clear the mouse face and reset the pointer
3931 shape when the pointer goes outside the frame without grabbing.
3932 (mac_front_window): New function.
3933 (mac_window_to_frame): New macro.
3934 (XTmouse_position, x_scroll_bar_report_motion, do_window_update)
3935 (do_window_activate, do_window_deactivate, do_app_resume)
3936 (do_app_suspend, do_mouse_moved, do_menu_choice, do_grow_window)
3937 (do_zoom_window, mac_do_receive_drag, XTread_socket)
3938 (mac_check_for_quit_char): Use mac_front_window and/or
3939 mac_window_to_frame.
3940 (x_scroll_bar_handle_click): Set `(PORTION . WHOLE)' part in a
3941 scroll-bar click event.
3942 (mac_define_frame_cursor): Change the pointer shape.
3943 (x_free_frame_resources): Reset tip_window to NULL when it is disposed.
3944 [!TARGET_API_MAC_CARBON] (arrow_cursor): New variable.
3945 [!TARGET_API_MAC_CARBON] (do_init_managers): Initialize arrow_cursor.
3946 (do_window_update): Don't do anything if the updated window is the
3947 tooltip window.
3948 (do_mouse_moved): Handle mouse movement events here (previously in
3949 XTread_socket). Clear the mouse face if
3950 dpyinfo->mouse_face_hidden is set.
3951 (do_os_event, do_events): Remove (now in XTread_socket).
3952 (XTread_socket): Immediately return if interrupt_input_blocked.
3953 Loop until all the events in the queue are processed.
3954 Rearrange codes for mouse grabbing. Add tooltip support. Include the
3955 contents of do_os_event and do_events. Remove mouse movement
3956 handling (now in do_mouse_moved). Add the case where
3957 Vmouse_highlight has an integer value.
3958 (NewMacWindow): Remove.
3959 (make_mac_frame): Do what NewMacWindow previously did. Don't do
3960 excess initializations.
3961 (make_mac_terminal_frame): Previous initializations in
3962 make_mac_frame are moved here.
3963 (mac_initialize_display_info):
3964 Initialize dpyinfo->mouse_face_overlay and dpyinfo->mouse_face_hidden.
3965
3966 * xdisp.c [MAC_OS] (No_Cursor): Remove variable.
3967 (define_frame_cursor1): Don't treat HAVE_CARBON as a special case.
3968
3969 2004-05-29 Richard M. Stallman <rms@gnu.org>
3970
3971 * lisp.h (truncate_undo_list): Update decl.
3972
3973 * alloc.c (undo_outer_limit): New variable.
3974 (syms_of_alloc): Defvar it.
3975 (Fgarbage_collect): Pass undo_outer_limit to truncate_undo_list.
3976
3977 * undo.c (truncate_undo_list): New arg LIMITSIZE.
3978
3979 * alloc.c (lisp_align_malloc): Check for base == 0
3980 regardless of HAVE_POSIX_MEMALIGN.
3981 Clean up HAVE_POSIX_MEMALIGN handling of `err'.
3982
3983 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
3984
3985 * alloc.c: Undo Kim's recent changes and fix the same bug differently.
3986 (marker_blocks_pending_free): Remove.
3987 (Fgarbage_collect): Sweep after cleaning up undo-lists.
3988 Mark the undo lists after claning them up.
3989 Don't free block in marker_blocks_pending_free.
3990 (mark_buffer): Don't mark undo_list.
3991 (gc_sweep): Sweep hash-tables and strings first.
3992 Do free marker blocks that are empty.
3993
3994 2004-05-28 Jim Blandy <jimb@redhat.com>
3995
3996 * regex.c (print_partial_compiled_pattern): Add missing 'break'
3997 after 'case wordend'. For symbeg and symend, print to stderr,
3998 like the other cases.
3999
4000 2004-05-28 Noah Friedman <friedman@splode.com>
4001
4002 * process.c (Fdelete_process): Do not call remove_process.
4003
4004 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4005
4006 * alloc.c (struct backtrace): Remove.
4007 (Fgarbage_collect): Use the new mark_backtrace.
4008
4009 * eval.c (mark_backtrace): New function.
4010
4011 * minibuf.c (run_exit_minibuf_hook): New function.
4012 (read_minibuf_unwind): Don't run exit-minibuffer-hook any more.
4013 (read_minibuf): Use separate unwind handler to run exit-minibuf-hook.
4014
4015 2004-05-27 Kim F. Storm <storm@cua.dk>
4016
4017 * xdisp.c (back_to_previous_visible_line_start): Skip backwards
4018 over display properties, e.g. images, that replace buffer text.
4019
4020 2004-05-25 Kim F. Storm <storm@cua.dk>
4021
4022 * alloc.c (marker_blocks_pending_free): New var.
4023 (gc_sweep): Store free marker blocks on that list.
4024 (Fgarbage_collect): Free them after undo-list cleanup.
4025
4026 * process.c (wait_reading_process_input): Check connect_wait_mask
4027 before actually accepting connection in case it has already been
4028 accepted due to recursion.
4029
4030 2004-05-23 K\e,Ba\e(Broly L\e,Bu\e(Brentey <lorentey@elte.hu>
4031
4032 * coding.c (Fset_safe_terminal_coding_system_internal):
4033 Set suppress_error in safe_terminal_coding, not terminal_coding.
4034
4035 2004-05-22 Richard M. Stallman <rms@gnu.org>
4036
4037 * alloc.c (Fmake_string): Doc fix.
4038
4039 * buffer.c (clone_per_buffer_values): Copy the alist of local vars,
4040 and the alist pairs too.
4041
4042 * casefiddle.c (casify_object): Return OBJ unchanged if not real char.
4043
4044 * emacs.c (main): Update copyright year.
4045
4046 * fileio.c (Fread_file_name): Expand DIR if not absolute.
4047
4048 * insdel.c (del_range_2, replace_range): Don't write an anchor
4049 if the gap is empty.
4050
4051 * xdisp.c (try_scrolling): If scroll-up-aggressively or
4052 scroll-down-aggressively is small but positive, put point
4053 near the screen edge.
4054
4055 2004-05-22 Juanma Barranquero <lektu@terra.es>
4056
4057 * keymap.c (Fdefine_key): Doc fix.
4058
4059 2004-05-22 Kim F. Storm <storm@cua.dk>
4060
4061 * alloc.c (struct backtrace): Add debug_on_exit member.
4062 (Fgarbage_collect): Clear out buffer undo_list markers after gc_sweep.
4063 Identify those markers as Lisp_Misc_Free objects. Clear car and cdr of
4064 the removed cons cells.
4065 (mark_object): Undo previous change - disallow Lisp_Misc_Free objects.
4066 (gc_sweep): Clear cons_blocks before sweeping strings, so we don't have
4067 any cons cells pointing to unallocated stings.
4068 Do not lisp_free any marker blocks, as there may still be pointers
4069 to them from buffer undo lists at this stage of GC.
4070
4071 * keyboard.c (struct backtrace): Add debug_on_exit member.
4072 (Fcommand_execute): Clear it.
4073
4074 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
4075
4076 * intervals.c (lookup_char_property): Do not prematurely return nil.
4077
4078 2004-05-19 Jim Blandy <jimb@redhat.com>
4079
4080 Add support for new '\_<' and '\_>' regexp operators, matching the
4081 beginning and end of symbols.
4082
4083 * regex.c (enum syntaxcode): Add Ssymbol.
4084 (init_syntax_once): Set the syntax for '_' to Ssymbol, not Sword.
4085 (re_opcode_t): New opcodes `symbeg' and `symend'.
4086 (print_partial_compiled_pattern): Print the new opcodes properly.
4087 (regex_compile): Parse the new operators.
4088 (analyse_first): Skip sym(beg|end) (they match only the empty string).
4089 (mutually_exclusive_p): `symend' is mutually exclusive with \s_ and
4090 \sw; `symbeg' is mutually exclusive with \S_ and \Sw.
4091 (re_match_2_internal): Match symbeg and symend.
4092
4093 * search.c (trivial_regexp_p): \_ is no longer a trivial regexp.
4094
4095 2004-05-19 Kim F. Storm <storm@cua.dk>
4096
4097 * .gdbinit (xsymbol): Fix last change.
4098
4099 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
4100
4101 * .gdbinit (xprintstr): New fun.
4102 (xstring, xprintsym): Use it.
4103
4104 * w32proc.c (create_child): Use INTMASK.
4105
4106 * alloc.c (Fgarbage_collect): Do all the marking before flushing
4107 unmarked elements of the undo list.
4108
4109 2004-05-18 David Ponce <david@dponce.com>
4110
4111 * print.c (print): Reset print_depth before to call print_object.
4112
4113 2004-05-18 Jason Rumney <jasonr@gnu.org>
4114
4115 * w32console.c: Prefix RIF functions with w32con_ to avoid
4116 namespace clash with functions in term.c and w32term.c.
4117
4118 * w32menu.c (add_menu_item, w32_menu_display_help)
4119 [USE_LISP_UNION_TYPE]: Cast from Lisp_Object using i member.
4120
4121 * w32term.h (display_x_get_resource, vga_stdcolor_name): Add prototype.
4122
4123 2004-05-18 Eli Zaretskii <eliz@gnu.org>
4124
4125 * lisp.h (DECL_ALIGN): Remove restriction on MS-DOS systems.
4126
4127 * msdos.c (syms_of_msdos): Initialize dos-unsupported-char-glyph
4128 with make_number.
4129 (IT_write_glyphs): Extract glyph from dos-unsupported-char-glyph
4130 with XINT.
4131
4132 2004-05-18 Kim F. Storm <storm@cua.dk>
4133
4134 * blockinput.h (INPUT_BLOCKED_P): New macros.
4135
4136 * keyboard.c (Frecursive_edit): Return immediately if input blocked.
4137 (Ftop_level): Unblock input if blocked.
4138
4139 * buffer.h (GET_OVERLAYS_AT): New macro.
4140 * msdos.c (IT_note_mouse_highlight): Use it.
4141 * textprop.c (get_char_property_and_overlay): Use it.
4142 * xdisp.c (next_overlay_change, note_mouse_highlight): Use it.
4143 * xfaces.c (face_at_buffer_position): Use it.
4144
4145 * print.c (print_object): Increase buf size.
4146
4147 2004-05-17 Jason Rumney <jasonr@gnu.org>
4148
4149 * w32fns.c (Fw32_register_hot_key, Fw32_unregister_hot_key)
4150 (Fw32_toggle_lock_key) [USE_LISP_UNION_TYPE]: Cast from
4151 Lisp_Object using i member.
4152 (w32_quit_key): Rename from Vw32_quit_key, and make an int.
4153 (syms_of_w32fns, globals_of_w32fns): Use Lisp_Object and int
4154 consistently.
4155
4156 * w32proc.c (create_child): Use make_number instead of masking pid.
4157
4158 * w32fns.c (w32_color_map_lookup): Return a Lisp_Object.
4159 (x_to_w32_charset, w32_to_x_charset, w32_to_all_x_charsets):
4160 Use EQ to compare Lisp_Objects.
4161 (w32_parse_hot_key): Use int for lisp_modifiers consistently.
4162
4163 * w32term.c (w32_num_mouse_buttons): Rename from
4164 Vw32_num_mouse_buttons and make it an int.
4165
4166 * w32.c (init_environment): Use it.
4167
4168 * w32fns.c (w32_wnd_proc): Likewise.
4169
4170 * w32proc.c (w32_pipe_read_delay): Rename from
4171 Vw32_pipe_read_delay and make it an int.
4172
4173 * w32.c (_sys_read_ahead): Use it.
4174
4175 * lisp.h (egetenv) [USE_CRT_DLL]: Remove condition.
4176
4177 * w32proc.c (create_child) [USE_LSB_TAG]: Don't try to mask pid.
4178
4179 * w32inevt.c (w32_console_mouse_position, do_mouse_event)
4180 (key_event): Don't mix Lisp_Object and int.
4181
4182 * w32heap.c (init_heap) [USE_LSB_TAG]: Don't check heap location.
4183
4184 * keyboard.c (kbd_buffer_get_event): Don't use event->code and
4185 modifiers in language change event.
4186
4187 2004-05-17 Kim F. Storm <storm@cua.dk>
4188
4189 * alloc.c (mark_object): Ignore Lisp_Misc_Free objects.
4190 Such objects may be freed markers which still exist on an undo list.
4191
4192 2004-05-16 Juanma Barranquero <lektu@terra.es>
4193
4194 * data.c (Fset_default): Make argument names match their use in
4195 docstring.
4196
4197 2004-05-15 Andreas Schwab <schwab@suse.de>
4198
4199 * emacs.c (gdb_array_mark_flag): Define.
4200 * .gdbinit: Mask off gdb_array_mark_flag from vector sizes.
4201
4202 2004-05-15 Eli Zaretskii <eliz@gnu.org>
4203
4204 * lisp.h (DECL_ALIGN) [MSDOS]: Don't define DECL_ALIGN to use
4205 __attribute__((__aligned__)), so that USE_LSB_TAG would not become
4206 defined for the MS-DOS build.
4207
4208 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
4209
4210 * w32fns.c (Fw32_define_rgb_color): Avoid XSET.
4211
4212 2004-05-14 Kenichi Handa <handa@m17n.org>
4213
4214 * ccl.c (Fccl_execute_on_string): Fix setting elements of STATUS.
4215
4216 2004-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4217
4218 * lisp.h (Vx_resource_name, Vx_resource_class): Move from xfns.c
4219 section to frame.c section.
4220 (Fxw_display_color_p, Fx_file_dialog): Declare if
4221 HAVE_WINDOW_SYSTEM defined.
4222
4223 * macfns.c (Fx_create_frame): Fix int/Lisp_Object mixup.
4224
4225 * macmenu.c (set_frame_menubar): Use NILP to test a lisp value.
4226
4227 * macterm.c (mac_get_emulated_btn, mac_event_to_emacs_modifiers)
4228 (mac_get_mouse_btn): Use NILP and EQ to test/compare lisp values.
4229 (XTread_socket): Fix int/Lisp_Object mixup.
4230 (mac_check_for_quit_char): Fix pointer/Lisp_Object mixup.
4231
4232 * macterm.h (struct frame, struct face, struct image)
4233 (display_x_get_resource, Fx_display_color_p)
4234 (Fx_display_grayscale_p, Fx_display_planes, x_free_gcs):
4235 Add prototypes.
4236
4237 2004-05-14 Kim F. Storm <storm@cua.dk>
4238
4239 * process.c (wait_reading_process_input): Make reentrant.
4240 Make Available and Connecting non-static. Save and restore value
4241 of waiting_for_user_input_p.
4242
4243 2004-05-13 Kim F. Storm <storm@cua.dk>
4244
4245 * keyboard.c (mark_kboards): Don't mark x and y members
4246 that are overloaded in selection request events.
4247
4248 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
4249
4250 * lisp.h (USE_LSB_TAG): Make it the default when it is known to work.
4251
4252 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
4253
4254 * window.c (Fdisplay_buffer, Fsplit_window)
4255 (split-height-threshold): Doc fix.
4256
4257 2004-05-13 Juanma Barranquero <lektu@terra.es>
4258
4259 * xfaces.c (Ftty_supports_face_attributes_p)
4260 (Finternal_copy_lisp_face): Fix typo in docstring.
4261 (Finternal_get_lisp_face_attribute): Fix docstring.
4262
4263 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4264
4265 * xfns.c (syms_of_xfns): Provide x-toolkit also for GTK.
4266
4267 2004-05-11 Steven Tamm <steventamm@mac.com>
4268
4269 * macfns.c (Fx_create_frame): Default to using tool-bar by
4270 setting tool-bar-lines to 1 in default-frame-alist.
4271
4272 2004-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4273
4274 * image.c (xpm_scan, xpm_make_color_table_v, xpm_put_color_table_v)
4275 (xpm_get_color_table_v, xpm_make_color_table_h)
4276 (xpm_put_color_table_h, xpm_get_color_table_h)
4277 (xpm_str_to_color_key, xpm_load_image, xpm_load)
4278 (syms_of_image): Support XPM on Carbon Emacs. Does not
4279 depend on libXpm, but only supports XPM version 3 without extensions.
4280
4281 2004-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4282
4283 * macterm.c (x_flush, XTframe_up_to_date): Use FRAME_MAC_P
4284 instead of FRAME_X_P
4285
4286 2004-05-11 Kim F. Storm <storm@cua.dk>
4287
4288 * process.c (read_process_output): Grow decoding_buf when needed;
4289 this could cause a crash in allocate_string and compact_small_strings.
4290
4291 2004-04-29 Jim Blandy <jimb@redhat.com>
4292
4293 * regex.c (mutually_exclusive_p): In 'case wordbeg', compare op2
4294 against proper opcode.
4295
4296 2004-05-10 Juanma Barranquero <lektu@terra.es>
4297
4298 * process.c (Fstart_process): Fix docstring.
4299
4300 * charset.c (Fget_unused_iso_final_char): Fix typos in docstring.
4301 (Fchar_bytes, Fchar_width, Fstring_width, Fchar_direction)
4302 (Fsplit_char, Fchar_charset): Make argument names match their use
4303 in docstring.
4304
4305 2004-05-10 Richard M. Stallman <rms@gnu.org>
4306
4307 * print.c (print_preprocess): Use being_printed, loop_count and
4308 halftail to detect overdeep nesting and cyclic cdr chains.
4309
4310 2004-05-10 Andreas Schwab <schwab@suse.de>
4311
4312 * lisp.h (Fmake_symbolic_link): Declare.
4313
4314 * fileio.c (Frename_file): Remove extra argument in call to
4315 Fmake_symbolic_link.
4316
4317 2004-05-10 Kim F. Storm <storm@cua.dk>
4318
4319 * xdisp.c (calc_line_height_property): Use string position when
4320 object is a string.
4321
4322 2004-05-10 Kenichi Handa <handa@m17n.org>
4323
4324 * print.c (temp_output_buffer_setup): Bind inhibit-read-only and
4325 inhibit-modification-hooks to t temporarily before calling
4326 Ferase_buffer.
4327
4328 * xfns.c (x_create_tip_frame): Bind inhibit-read-only and
4329 inhibit-modification-hooks to t temporarily before calling
4330 Ferase_buffer.
4331
4332 * w32fns.c (x_create_tip_frame): Bind inhibit-read-only and
4333 inhibit-modification-hooks to t temporarily before calling
4334 Ferase_buffer.
4335
4336 * fns.c (count_combining): Delete it.
4337 (concat): Don't check combining bytes.
4338
4339 2004-05-09 Jason Rumney <jasonr@gnu.org>
4340
4341 * w32fns.c (Vw32_ansi_code_page): New Lisp variable.
4342 (globals_of_w32fns): Set it.
4343
4344 2004-05-09 Piet van Oostrum <piet@cs.uu.nl>
4345
4346 * data.c (Fquo): Simplify.
4347
4348 2004-05-08 Peter Whaite <emacs@whaite.ca> (tiny change)
4349
4350 * data.c (Fquo): If any argument is float, do the computation in
4351 floating point.
4352
4353 2004-05-08 Juanma Barranquero <lektu@terra.es>
4354
4355 * process.c (Fwaiting_for_user_input_p, Fmake_network_process)
4356 (Fset_process_query_on_exit_flag, Vprocess_adaptive_read_buffering):
4357 Fix spelling of Emacs on docstring.
4358 (Fset_process_coding_system, Fprocess_coding_system)
4359 (Fset_process_filter_multibyte, Fprocess_filter_multibyte_p):
4360 Make argument names match their use in docstring.
4361 (Fprocess_id, Fprocess_query_on_exit_flag, Finterrupt_process):
4362 Fix docstring.
4363
4364 * editfns.c (Finsert_buffer_substring): Make argument names match their
4365 use in docstring.
4366
4367 * syntax.c (Fmodify_syntax_entry): Fix docstring.
4368
4369 2004-05-07 Steven Tamm <steventamm@mac.com>
4370
4371 * macterm.c (mac_check_for_quit_char): Adding BLOCK_INPUT
4372 around call to ReceiveEvent to avoid certain crashes.
4373
4374 2004-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4375
4376 * macterm.c (mac_draw_line_to_pixmap, XCreatePixmapFromBitmapData)
4377 (mac_fill_rectangle_to_pixmap, mac_draw_rectangle_to_pixmap)
4378 (mac_copy_area_to_pixmap, mac_copy_area_with_mask_to_pixmap):
4379 Save/restore the current graphics port and device handle when
4380 drawing into an offscreen graphics world.
4381
4382 * image.c [MAC_OS] (XPutPixel, XGetPixel, image_load_qt_1)
4383 (gif_load): Likewise.
4384
4385 2004-05-07 Juanma Barranquero <lektu@terra.es>
4386
4387 * window.c (Fset_window_buffer): Fix docstring.
4388
4389 2004-05-06 Thien-Thi Nguyen <ttn@gnu.org>
4390
4391 * emacs.c (main) [VMS]: Fix var ref.
4392
4393 2004-05-06 Romain Francoise <romain@orebokech.com>
4394
4395 * data.c (Fsetq_default): Fix docstring.
4396
4397 2004-05-06 Jason Rumney <jasonr@gnu.org>
4398
4399 * image.c (Display) [HAVE_NTGUI]: Redefine while loading xpm.h
4400 to avoid name clash.
4401
4402 2004-05-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4403
4404 * fileio.c (barf_or_query_if_file_exists): Use lstat.
4405 (Frename_file): Handle renaming of symlinks across file systems.
4406 (Frename_file): Put symlink handling inside #ifdef S_IFLNK.
4407
4408 2004-05-04 Kim F. Storm <storm@cua.dk>
4409
4410 * xdisp.c (Qtotal): New var.
4411 (syms_of_xdisp): Intern and staticpro it.
4412 (calc_line_height_property): New arg total. Set it if
4413 line-spacing property has format (total . VALUE).
4414 (x_produce_glyphs): Ignore line-spacing if line-height is 0.
4415 Handle total line-spacing property.
4416
4417 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4418
4419 * gtkutil.c (xg_update_scrollbar_pos): Call XClearWindow to clear
4420 "under" scroll bar when size/position changes.
4421
4422 2004-05-03 Jason Rumney <jasonr@gnu.org>
4423
4424 * makefile.nt: Remove.
4425
4426 2004-05-02 Eli Zaretskii <eliz@gnu.org>
4427
4428 * syntax.h (SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY_INT):
4429 Avoid compiler warnings.
4430
4431 * Makefile.in (region-cache.o): Depend on config.h.
4432
4433 2004-05-02 Romain Francoise <romain@orebokech.com>
4434
4435 * indent.c (compute_motion): Save vpos in prev_vpos when dealing
4436 with continuation lines, too.
4437
4438 2004-05-02 Thien-Thi Nguyen <ttn@gnu.org>
4439
4440 * syssignal.h (init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
4441
4442 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
4443
4444 * xdisp.c (calc_line_height_property): YAILOM (yet another
4445 int/Lisp_Object mixup).
4446
4447 2004-05-01 Eli Zaretskii <eliz@gnu.org>
4448
4449 * msdos.c (top-level): Add "#pragma pack(0)" after <dir.h>, to
4450 undo bad effect of pack(4) in some versions of system headers.
4451
4452 2004-05-01 Jason Rumney <jasonr@gnu.org>
4453
4454 * w32term.c (x_draw_hollow_cursor): Sync with xterm.c
4455
4456 2004-04-30 Kim F. Storm <storm@cua.dk>
4457
4458 * buffer.c (syms_of_buffer) <line-spacing>: Allow float value.
4459 (syms_of_buffer) <cursor-type>: Doc fix.
4460
4461 * dispextern.h (struct it): Remove member use_default_face.
4462 Add members override_ascent, override_descent, override_boff.
4463
4464 * xdisp.c (init_iterator): Handle line-spacing float value.
4465 Initialize override_ascent member.
4466 (append_space_for_newline): Reset override_ascent.
4467 Remove use_default_face.
4468 (calc_line_height_property): New function to calculate value of
4469 line-height and line-spacing properties. Look at overlays, too.
4470 Set override_ascent, override_descent, override_boff members when
4471 using another face than the current face. Float values are now
4472 relative to the frame default font, by default; accept a cons
4473 of ratio and face name to specify value relative to a specific face.
4474 (x_produce_glyphs): Use calc_line_height_property.
4475 Use override_ascent etc. when set to handle different face heights.
4476 A negative line-spacing property value is interpreted as a total
4477 line height, rather than inter-line spacing.
4478 (note_mouse_highlight): Allocate room for 40 overlays initially.
4479
4480 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
4481
4482 * data.c (Fsubr_name): New fun.
4483 (syms_of_data): Defsubr it.
4484
4485 2004-04-29 Kim F. Storm <storm@cua.dk>
4486
4487 * xdisp.c (null_glyph_slice): New var.
4488 (append_glyph, append_composite_glyph, append_stretch_glyph):
4489 Use it to initialize glyph slice.
4490
4491 2004-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
4492
4493 * xdisp.c (x_produce_glyphs): Fix the proverbial int/Lisp_Object mixup.
4494 (on_hot_spot_p): Make sure we always return a value.
4495 (Flookup_image_map): Remove unused var ix and iy.
4496 (note_mode_line_or_margin_highlight): Remove unused var `image'.
4497
4498 2004-04-27 Eli Zaretskii <eliz@gnu.org>
4499
4500 * msdos.c (init_environment): If one of the TMP... environment
4501 variables is set to a drive letter without a trailing slash,
4502 append a slash.
4503
4504 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
4505
4506 * editfns.c (lisp_time_argument): Provide externally.
4507
4508 * fileio.c (Fset_file_times): New function.
4509 (syms_of_fileio): Intern and staticpro it.
4510
4511 2004-04-27 Kim F. Storm <storm@cua.dk>
4512
4513 * xdisp.c (x_produce_glyphs): Fix last change; handle newline in
4514 header line strings.
4515
4516 * dispextern.h (struct it): New member use_default_face.
4517
4518 * xdisp.c (Qline_height): New variable.
4519 (syms_of_xdisp): Intern and staticpro it.
4520 (append_space_for_newline): Partially undo 2004-04-25 change;
4521 add default_face_p arg, and restore callers.
4522 Clear it->use_default_face after use.
4523 (x_produce_glyphs): Set default font for ascii char if
4524 it->use_default_font is set. Change line-spacing property to set
4525 just extra line spacing. Handle new line-height property.
4526
4527 2004-04-26 Andreas Schwab <schwab@suse.de>
4528
4529 * print.c (print_object): Print non-ascii characters in bool
4530 vector representation as octal escapes.
4531
4532 * lisp.h (BOOL_VECTOR_BITS_PER_CHAR): Define.
4533 * print.c (print_object): Use it instead of BITS_PER_CHAR for
4534 bool vectors.
4535 * lread.c (read1): Likewise.
4536 * alloc.c (Fmake_bool_vector): Likewise.
4537 * data.c (Faref, Faset): Likewise.
4538 * fns.c (Fcopy_sequence, concat, internal_equal, Ffillarray)
4539 (mapcar1): Likewise.
4540
4541 2004-04-26 Steven Tamm <tamm@Steven-Tamms-Computer.local>
4542
4543 * lread.c (init_lread): Fixing typo HAVE_CARBON test logic
4544
4545 2004-04-26 Miles Bader <miles@gnu.org>
4546
4547 * lisp.h (CYCLE_CHECK): Macro moved from xfaces.c.
4548
4549 2004-04-26 Juanma Barranquero <lektu@terra.es>
4550
4551 * buffer.c (Fpop_to_buffer): Fix docstring.
4552
4553 2004-04-26 Steven Tamm <steventamm@mac.com>
4554
4555 * lread.c (init_lread): Don't display missing lisp directory
4556 warnings with Carbon Emacs because self-contained bundled Emacs
4557 may be built without correct installation path.
4558
4559 2004-04-25 Kim F. Storm <storm@cua.dk>
4560
4561 * macterm.c (x_draw_hollow_cursor): Fix height of box for narrow lines.
4562
4563 * xterm.c (x_draw_hollow_cursor): Fix height of box for narrow lines.
4564
4565 * xdisp.c (append_space_for_newline): Rename from append_space.
4566 Remove DEFAULT_FACE_P arg; always use current face. Callers changed.
4567 (x_produce_glyphs): Handle line-spacing property on newline char.
4568 If value is t, adjust ascent and descent to fit current row height.
4569 If value is an integer or float, set extra_line_spacing to integer
4570 value, or to float value x current line height.
4571
4572 2004-04-23 Kenichi Handa <handa@m17n.org>
4573
4574 * fontset.c (Finternal_char_font): If POSITION is nil, return
4575 font for displaying CH with the default face.
4576
4577 2004-04-23 Juanma Barranquero <lektu@terra.es>
4578
4579 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
4580
4581 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
4582
4583 * lisp.h (XINT) [EXPLICIT_SIGN_EXTEND && !NO_UNION_TYPE]:
4584 Don't make assumptions about the relative place of i and val.
4585 (EQ) [!NO_UNION_TYPE]: Don't forget to check the type match as well.
4586
4587 2004-04-21 Kim F. Storm <storm@cua.dk>
4588
4589 * dispextern.h (struct glyph_slice): New struct.
4590 (struct glyph): New member slice.
4591 (GLYPH_SLICE_EQUAL_P): New macro.
4592 (GLYPH_EQUAL_P): Use it.
4593 (struct glyph_string): New member slice.
4594 (struct it_slice): New struct.
4595 (struct it): New member slice, add member to stack too.
4596 New member constrain_row_ascent_descent_p.
4597 (image_ascent): Add prototype.
4598
4599 * dispnew.c (buffer_posn_from_coords): Return full image width
4600 and height even for image slices (posn is relative to full image).
4601 (marginal_area_string): Adjust x0,y0 for image slice.
4602
4603 * image.c (image_ascent): Add slice arg; calculate ascent for
4604 image slice (or full image).
4605
4606 * keyboard.c (Fposn_at_x_y, Fposn_at_point): New defuns.
4607 (syms_of_keyboard): Defsubr them.
4608
4609 * lisp.h (pos_visible_p): Fix prototype.
4610
4611 * macterm.c (x_draw_relief_rect): Add top_p and bot_p args.
4612 (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
4613 (x_draw_image_foreground, x_draw_image_relief)
4614 (x_draw_image_foreground_1, x_draw_image_glyph_string):
4615 Draw sliced images.
4616
4617 * w32term.c (w32_draw_relief_rect): Add top_p and bot_p args.
4618 (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
4619 (x_draw_image_foreground, x_draw_image_relief)
4620 (w32_draw_image_foreground_1, x_draw_image_glyph_string):
4621 Draw sliced images.
4622
4623 * w32term.h (image_ascent): Remove prototype.
4624
4625 * window.c (Fpos_visible_in_window_p): Return pixel position if
4626 PARTIALLY arg is non-nil. Simplify. Doc fix.
4627 (Fwindow_vscroll, Fset_window_vscroll): Add optional PIXEL_P arg
4628 to return/set vscroll in pixels.
4629
4630 * window.h (Fwindow_vscroll, Fset_window_vscroll): Fix EXFUN.
4631
4632 * xdisp.c (Qslice): New variable.
4633 (syms_of_xdisp): Intern and staticpro it.
4634 (pos_visible_p): Return pixel position in new x and y args.
4635 (init_iterator): Reset it->slice info.
4636 (handle_display_prop): Parse (slice ...) property.
4637 (push_it, pop_it): Save/restore slice info.
4638 (make_cursor_line_fully_visible): Fix 2004-04-14 change. Do not
4639 force repositioning of tall row if window is vscrolled, as that
4640 would reset vscroll.
4641 (append_space): Set it->constrain_row_ascent_descent_p to avoid
4642 increasing row height if row is non-empty.
4643 (fill_image_glyph_string): Copy slice info.
4644 (take_vertical_position_into_account): Simplify.
4645 (produce_image_glyph): Handle iterator slice info, setup glyph
4646 slice info. Do not force minimum line height.
4647 (x_produce_glyphs): If it->constrain_row_ascent_descent_p is set,
4648 do not increase height (ascent/descent) of non-empty row when
4649 adding normal character glyph; instead reduce glyph ascent/descent
4650 appropriately; if row is higher than current glyph, adjust glyph
4651 descent/ascent to reposition glyph within the existing row.
4652 Likewise, when char is newline, only set ascent/descent if row is
4653 currently empty.
4654 (note_mouse_highlight): Handle hotspots with sliced image.
4655
4656 * xterm.c (x_draw_relief_rect): Add top_p and bot_p args.
4657 (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
4658 (x_draw_image_foreground, x_draw_image_relief)
4659 (x_draw_image_foreground_1, x_draw_image_glyph_string):
4660 Draw sliced images.
4661
4662 * xterm.h (image_ascent): Remove prototype.
4663
4664 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
4665
4666 * keymap.c (Fkey_description): Fix the usual int/Lisp_Object mixup.
4667
4668 2004-04-20 John Paul Wallington <jpw@gnu.org>
4669
4670 * fns.c (Fassoc, Feql): Fix indentation.
4671
4672 * fontset.c (regularize_fontname): Rename from regulalize_fontname.
4673
4674 2004-04-19 John Paul Wallington <jpw@gnu.org>
4675
4676 * fns.c (Feql): New function.
4677 (syms_of_fns): Defsubr it.
4678
4679 2004-04-18 Jason Rumney <jasonr@gnu.org>
4680
4681 * w32select.c (Fw32_set_clipboard_data): Get sequence number
4682 after closing the clipboard.
4683
4684 2004-04-16 Luc Teirlinck <teirllm@auburn.edu>
4685
4686 * buffer.c (Fbuffer_base_buffer): Doc fix.
4687
4688 2004-04-17 Kim F. Storm <storm@cua.dk>
4689
4690 * keymap.c (Fkey_description): Add optional PREFIX arg.
4691 Combine prefix with KEYS to make up the full key sequence to describe.
4692 Correlate meta_prefix_char and following (simple) key to describe
4693 as meta modifier. All callers changed.
4694 (describe_map): Rename arg `keys' to `prefix'. Remove local
4695 `elt_prefix' var. Use Fkey_description with prefix instead of
4696 elt_prefix combined with Fsingle_key_description.
4697 (describe_vector): Declare static. Replace arg `elt_prefix' with
4698 `prefix'. Add KEYMAP_P arg. Add local var `elt_prefix'; use it
4699 if !KEYMAP_P. Use Fkey_description with prefix instead of
4700 Fsingle_key_description.
4701
4702 * keymap.h (Fkey_description): Fix prototype.
4703 (describe_vector): Remove prototype.
4704
4705 * xdisp.c (update_overlay_arrows): Fix handling of up_to_date < 0.
4706
4707 * image.c (PNG_BG_COLOR_SHIFT): Remove.
4708 (png_load): Fix calculation of transparent background color on X
4709 and W32 platforms.
4710
4711 2004-04-16 Juanma Barranquero <lektu@terra.es>
4712
4713 * xdisp.c (try_scrolling): Make sure `scroll-conservatively' is
4714 not too large before computing how much to scroll.
4715
4716 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
4717
4718 * dired.c (Ffile_attributes): Don't pass extra nil arg to file-handler.
4719
4720 2004-04-14 Luc Teirlinck <teirllm@auburn.edu>
4721
4722 * fileio.c (Fverify_visited_file_modtime, Fvisited_file_modtime):
4723 Add hyperlink to Elisp manual to the docstring.
4724
4725 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
4726
4727 * callint.c (fix_command): Use XDCR.
4728
4729 2004-04-14 Nick Roberts <nick@nick.uklinux.net>
4730
4731 * window.c (Fget_lru_window): Doc fix.
4732
4733 2004-04-14 Kim F. Storm <storm@cua.dk>
4734
4735 * editfns.c (Fformat): Fix allocation size of precision array.
4736
4737 * dispnew.c (update_window): Only set changed_p if
4738 scrolling_window actually did scroll.
4739 (scrolling_window): Only return 1 if we actually did scroll.
4740
4741 * xdisp.c (get_glyph_string_clip_rect): Fix reduction of cursor
4742 height to glyph height when cursor row is not fully visible.
4743 (make_cursor_line_fully_visible): Add FORCE_P arg to return
4744 failure in case row is higher than window. Callers changed.
4745 (try_scrolling): Fix loop in scrolling if last_line_misfit (from Gerd).
4746 Try to scroll partially visible, higher-than-window cursor row.
4747 (redisplay_window): Always try to scroll partially visible,
4748 higher-than-window cursor row - both initially and again with
4749 centering_position = 0.
4750 Clear desired matrix before retrying with centering_position = 0.
4751
4752 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
4753
4754 * syntax.c (scan_lists): Simplify backward string scan.
4755 Fix off-by-one boundary check for string and comment fences.
4756
4757 2004-04-13 Joe Buehler <jbuehler@hekimian.com>
4758
4759 * sheap.c, unexcw.c: New files.
4760
4761 2004-04-12 Luc Teirlinck <teirllm@auburn.edu>
4762
4763 * buffer.c (Fmake_indirect_buffer): Throw an error if the intended
4764 base buffer has been killed. Correct the error message if the
4765 base buffer does not exist.
4766
4767 2004-04-12 Joe Buehler <jbuehler@hekimian.com>
4768
4769 * s/cygwin.h: Changes for Cygwin unexec() support, changes in
4770 Cygwin itself. Add support for Xaw3d scrollbars.
4771
4772 * puresize.h: Set up PURE_P() for Cygwin unexec() support.
4773
4774 * lastfile.c: Define my_endbss[] for Cygwin unexec() support.
4775
4776 * gmalloc.c (__default_morecore): Use bss_sbrk(), not __sbrk(),
4777 before Cygwin unexec.
4778
4779 * Makefile.in: Link changes for Cygwin unexec() support.
4780
4781 2004-04-12 Andreas Schwab <schwab@suse.de>
4782
4783 * buffer.c (Fmake_indirect_buffer): Check that NAME is a string.
4784
4785 2004-04-11 Luc Teirlinck <teirllm@auburn.edu>
4786
4787 * buffer.c (Fgenerate_new_buffer_name): Return NAME argument if
4788 IGNORE argument equals NAME. Doc fix.
4789
4790 2004-04-11 Masatake YAMATO <jet@gyve.org>
4791
4792 * buffer.c (fix_start_end_in_overlays): Make overlays
4793 empty if they are backwards.
4794
4795 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
4796
4797 * xfaces.c (face_color_supported_p): Fix compilation without X11.
4798
4799 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
4800
4801 * doc.c (Fsnarf_documentation): Ignore new file name entries.
4802
4803 2004-04-06 Kim F. Storm <storm@cua.dk>
4804
4805 * msdos.c (clear_mouse_face): Only clear mouse highlight if not hidden.
4806 (dos_rawgetc): Set mouse_face_hidden after clearing highlight.
4807
4808 * w32term.c (w32_read_socket): Set mouse_face_hidden after
4809 clearing highlight.
4810
4811 * xdisp.c (clear_mouse_face): Only clear mouse highlight if not hidden.
4812
4813 * xterm.c (handle_one_xevent): Set mouse_face_hidden after
4814 clearing highlight.
4815
4816 * indent.c (vmotion): Do not reserve one column for continuation
4817 marks on window frames.
4818
4819 2004-04-04 Eli Zaretskii <eliz@gnu.org>
4820
4821 * charset.h (SINGLE_BYTE_CHAR_P): Fix macro to avoid warnings
4822 from GCC.
4823
4824 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
4825
4826 * .gdbinit-union: Remove.
4827
4828 * .gdbinit: Make it work for USE_LSB_TAG and !NO_LISP_UNION.
4829 (xgetptr, xgetint, xgettype): New funs. Use them everywhere.
4830 ($nonvalbits): Remove.
4831 ($valmask): Set it by calling xreload to avoid redundancy.
4832
4833 * emacs.c (gdb_use_union, gdb_use_lsb): New vars.
4834 (gdb_emacs_intbits): Remove.
4835
4836 2004-03-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4837
4838 * data.c (Fbyteorder): Make test work even if unsigned is not 4 bytes.
4839
4840 2004-03-30 Kenichi Handa <handa@m17n.org>
4841
4842 * editfns.c (Fformat): Fix initialization of the array info.
4843
4844 2004-03-30 Kim F. Storm <storm@cua.dk>
4845
4846 * xterm.c (x_mouse_click_focus_ignore_position): New var.
4847 (syms_of_xterm): DEFVAR_BOOL it.
4848 (ignore_next_mouse_click_timeout): New var.
4849 (handle_one_xevent): Clear it on KeyPress, set it on EnterNotify.
4850 Use it to filter mouse clicks following focus event.
4851
4852 2004-03-29 David Ponce <david@dponce.com>
4853
4854 * callint.c (Fcall_interactively): Fix last change.
4855
4856 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
4857
4858 * eval.c (Fcommandp): Simplify.
4859
4860 * data.c (Finteractive_form): Rename from Fsubr_interactive_form.
4861 Extend to handle all kinds of functions.
4862
4863 * lisp.h (Finteractive_form): Declare.
4864
4865 * callint.c (Fcall_interactively): Use it.
4866
4867 2004-03-26 Kim F. Storm <storm@cua.dk>
4868
4869 * xdisp.c (syms_of_xdisp): Include `void-variable' in list_of_error
4870 to catch errors in calc_pixel_width_or_height during redisplay.
4871
4872 2004-03-26 Masatake YAMATO <jet@gyve.org>
4873
4874 * buffer.c (fix_start_end_in_overlays): Rename fix_overlays_in_range.
4875
4876 * lisp.h (fix_start_end_in_overlays): Likewise.
4877
4878 * insdel.c (adjust_markers_for_insert): Call fix_start_end_in_overlays.
4879
4880 * editfns.c (Ftranspose_regions): Likewise.
4881
4882 2004-03-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4883
4884 * xterm.c (handle_one_xevent): Do not pass key press events to GTK.
4885
4886 2004-03-19 Richard M. Stallman <rms@gnu.org>
4887
4888 * s/sol2-6.h: Delete previous change.
4889
4890 2004-03-19 Kim F. Storm <storm@cua.dk>
4891
4892 * xdisp.c (move_it_in_display_line_to): Fix MOVE_TO_POS case when
4893 to_charpos corresponds to newline in right fringe. Use local
4894 BUFFER_POS_REACHED_P macro.
4895
4896 2004-03-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4897
4898 * xdisp.c (calc_pixel_width_or_height): Add ifdef HAVE_WINDOW_SYSTEM
4899 to compile on non-window system.
4900
4901 2004-03-19 Kim F. Storm <storm@cua.dk>
4902
4903 * dispextern.h (calc_pixel_width_or_height): Add prototype.
4904
4905 * image.c (Qcenter): Move to xdisp.c.
4906
4907 * xdisp.c (Qcenter): Declare here.
4908 (syms_of_xdisp): Intern and staticpro it.
4909 (handle_single_display_prop): Allow space display property on all
4910 platforms.
4911 (display_mode_line): Set mode_line_p before displaying line.
4912 (calc_pixel_width_or_height): Declare extern. Add separate :align-to
4913 handling. Remove complex cases for fringes and scroll-bars.
4914 Add left, right, and center alignment positions. Add text (area)
4915 width/height. Return width or height for image specs.
4916 (produce_stretch_glyph): Improve handling of :align-to. Is now
4917 relative to left of text area by default, but other base offsets
4918 can be specified -- also for text lines.
4919
4920 * term.c (produce_glyphs): Handle IT_STRETCH.
4921 (produce_stretch_glyph): New function to handle space width and
4922 align-to display properties on non-window systems.
4923
4924 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
4925
4926 * fileio.c (Fread_file_name): Set completion-ignore-case for
4927 case-insensitive systems.
4928
4929 2004-03-14 Masatake YAMATO <jet@gyve.org>
4930
4931 * xdisp.c (note_mode_line_or_margin_highlight): Accept HEADER_LINE
4932 when keymap and cursor are setup.
4933
4934 2004-03-14 Steven Tamm <steventamm@mac.com>
4935
4936 * Makefile.in (XMENU_OBJ) [HAVE_CARBON]: Do not include xmenu.o.
4937
4938 2004-03-14 Kim F. Storm <storm@cua.dk>
4939
4940 * dispextern.h (x_find_image_file): Add prototype.
4941
4942 * image.c (x_find_image_file): Make extern.
4943
4944 * xfns.c (x_find_image_file): Remove prototype.
4945
4946 2004-03-13 Eli Zaretskii <eliz@gnu.org>
4947
4948 * Makefile.in (XMENU_OBJ): Include xmenu.o if HAVE_MENUS is defined.
4949
4950 * emacs.c (main): Call syms_of_xmenu only if HAVE_MENUS is defined.
4951
4952 2004-03-12 Richard M. Stallman <rms@gnu.org>
4953
4954 * fns.c (internal_equal): New arg PROPS controls comparing
4955 text properties. All callers changed.
4956 (Fequal_including_properties): New function.
4957 (syms_of_fns): defsubr it.
4958
4959 2004-03-12 Kim F. Storm <storm@cua.dk>
4960
4961 Fix image support on MAC. From YAMAMOTO Mitsuharu.
4962
4963 * dispextern.h (XImagePtr, XImagePtr_or_DC): Add typedefs.
4964 (image_background, image_background_transparent): Fix prototypes.
4965
4966 * image.c (XImagePtr, XImagePtr_or_DC): Move typedefs to dispextern.h.
4967
4968 * macfns.c (x_list_fonts, x_get_font_info, x_load_font)
4969 (x_query_font, x_find_ccl_program, x_set_window_size)
4970 (x_make_frame_visible, mac_initialize, XCreatePixmap)
4971 (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
4972 (mac_draw_line_to_pixmap): Move prototypes to macterm.h.
4973
4974 * macterm.h (x_list_fonts, x_get_font_info, x_load_font)
4975 (x_query_font, x_find_ccl_program, x_set_window_size)
4976 (x_make_frame_visible, mac_initialize, XCreatePixmap)
4977 (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
4978 (mac_draw_line_to_pixmap): Add prototypes.
4979
4980 2004-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4981
4982 * macterm.c (XTread_socket): Fix mouse click on tool bar.
4983
4984 2004-03-11 Kim F. Storm <storm@cua.dk>
4985
4986 * dispextern.h: Move image related prototypes from xfns.c section
4987 to image.c. Condition them by HAVE_WINDOW_SYSTEM rather than
4988 HAVE_X_WINDOWS.
4989
4990 * Makefile.in (XOBJ): Consolidate into one list. Add image.o.
4991 Move gtkutil.o to new GTK_OBJ list.
4992 (XMENU_OBJ) [HAVE_MENUS]: Move declaration to proper place.
4993 (GTK_OBJ) [USE_GTK]: New declaration.
4994 (obj): Add $(GTK_OBJ) to list.
4995
4996 2004-03-11 Steven Tamm <steventamm@mac.com>
4997
4998 * image.c [MAC_OSX]: Include sys/stat.h
4999
5000 * macfns.c (syms_of_macfns): Remove definitions of things now
5001 defined in image.c
5002
5003 2004-03-11 Kim F. Storm <storm@cua.dk>
5004
5005 The following changes consolidates the identical/similar image
5006 support code previously found in xfns.c, w32fns.c, and macfns.c
5007 into a new file image.c.
5008
5009 * makefile.w32-in (OBJ1): Add image.o.
5010 ($(BLD)/image.$(O)): Add dependencies.
5011
5012 * Makefile.in (XOBJ, MAC_OBJ): Add image.o.
5013 (image.o): Add dependencies.
5014
5015 * image.c: New file with consolidated image support code.
5016 (COLOR_TABLE_SUPPORT): New define to control whether
5017 color table support is available (X only).
5018 (Bitmap_Record): Common name for x_bitmap_record,
5019 w32_bitmap_record, and mac_bitmap_record.
5020 (XImagePtr): Common name for pointer to XImage or equivalent.
5021 (XImagePtr_or_DC): New type to simplify code sharing; equivalent
5022 to XImagePtr on X+MAC, and to HDC on W32.
5023 (GET_PIXEL): Wrapper for XGetPixel or equivalent.
5024 (NO_PIXMAP): Common name for "None" or equivalent.
5025 (PNG_BG_COLOR_SHIFT): Bits to shift PNG background colors.
5026 (RGB_PIXEL_COLOR): Common type for an integer "pixel color" value.
5027 (PIX_MASK_RETAIN, PIX_MASK_DRAW): Portability macros (from macfns.c).
5028 (FRAME_X_VISUAL, x_defined_color, DefaultDepthOfScreen):
5029 Define with suitable equivalents on W32 and MAC for code sharing.
5030 (XDrawLine): Define on MAC for code sharing.
5031 (Destroy_Image, Free_Pixmap): Wrappers for code sharing.
5032 (IF_LIB_AVAILABLE): Macro to simplify code sharing.
5033 (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
5034 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5035 (x_reference_bitmap, x_create_bitmap_from_data)
5036 (x_create_bitmap_from_file, x_destroy_bitmap)
5037 (x_destroy_all_bitmaps, x_create_bitmap_mask)
5038 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
5039 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
5040 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
5041 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
5042 (define_image_type, lookup_image_type, valid_image_p)
5043 (image_error, enum image_value_type, struct image_keyword)
5044 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
5045 (make_image, free_image, prepare_image_for_display, image_ascent)
5046 (four_corners_best, image_background, image_background_transparent)
5047 (x_clear_image_1, x_clear_image, x_alloc_image_color)
5048 (make_image_cache, free_image_cache, clear_image_cache)
5049 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
5050 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
5051 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
5052 (find_image_fsspec, image_load_qt_1, image_load_quicktime)
5053 (init_image_func_pointer, image_load_quartz2d)
5054 (struct ct_color, init_color_table, free_color_table)
5055 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
5056 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
5057 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
5058 (x_disable_image, x_build_heuristic_mask)
5059 (XBM support, XPM support, PBM support, PNG support, JPEG support)
5060 (TIFF support, GIF support, Ghostscript support): Consolidate image
5061 code from xfns.c, w32fns.c, and macfns.c.
5062 (syms_of_image): Consolidate image related symbol setup here.
5063 (init_image): Consolidate image related initializations here.
5064
5065 * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Add calls to syms_of_image
5066 and init_image. Remove call to init_xfns.
5067
5068 * macterm.h (struct mac_bitmap_record): Add file member.
5069 Not currently used, but simplifies code sharing.
5070
5071 * macfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
5072 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5073 (x_reference_bitmap, x_create_bitmap_from_data)
5074 (x_create_bitmap_from_file, x_destroy_bitmap)
5075 (x_destroy_all_bitmaps, x_create_bitmap_mask)
5076 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
5077 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
5078 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
5079 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
5080 (define_image_type, lookup_image_type, valid_image_p)
5081 (image_error, enum image_value_type, struct image_keyword)
5082 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
5083 (make_image, free_image, prepare_image_for_display, image_ascent)
5084 (four_corners_best, image_background, image_background_transparent)
5085 (x_clear_image_1, x_clear_image, x_alloc_image_color)
5086 (make_image_cache, free_image_cache, clear_image_cache)
5087 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
5088 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
5089 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
5090 (find_image_fsspec, image_load_qt_1, image_load_quicktime)
5091 (init_image_func_pointer, image_load_quartz2d)
5092 (struct ct_color, init_color_table, free_color_table)
5093 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
5094 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
5095 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
5096 (x_disable_image, x_build_heuristic_mask)
5097 (XBM support, XPM support, PBM support, PNG support, JPEG support)
5098 (TIFF support, GIF support, Ghostscript support): Merge with image
5099 code from xfns.c and macfns.c into image.c.
5100 (syms_of_xfns): Move image related symbols to image.c.
5101 (init_external_image_libraries, init_xfns): Remove; initialization
5102 moved to init_image in image.c.
5103
5104 * w32fns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
5105 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5106 (x_reference_bitmap, x_create_bitmap_from_data)
5107 (x_create_bitmap_from_file, x_destroy_bitmap)
5108 (x_destroy_all_bitmaps, x_create_bitmap_mask)
5109 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
5110 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
5111 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
5112 (define_image_type, lookup_image_type, valid_image_p)
5113 (image_error, enum image_value_type, struct image_keyword)
5114 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
5115 (make_image, free_image, prepare_image_for_display, image_ascent)
5116 (four_corners_best, image_background, image_background_transparent)
5117 (x_clear_image_1, x_clear_image, x_alloc_image_color)
5118 (make_image_cache, free_image_cache, clear_image_cache)
5119 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
5120 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
5121 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
5122 (struct ct_color, init_color_table, free_color_table)
5123 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
5124 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
5125 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
5126 (x_disable_image, x_build_heuristic_mask)
5127 (XBM support, XPM support, PBM support, PNG support, JPEG support)
5128 (TIFF support, GIF support, Ghostscript support): Merge with image
5129 code from xfns.c and macfns.c into image.c.
5130 (syms_of_xfns): Move image related symbols to image.c.
5131 (init_external_image_libraries, init_xfns): Remove; initialization
5132 moved to init_image in image.c.
5133
5134 * xfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
5135 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5136 (x_reference_bitmap, x_create_bitmap_from_data)
5137 (x_create_bitmap_from_file, x_destroy_bitmap)
5138 (x_destroy_all_bitmaps, x_create_bitmap_mask)
5139 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
5140 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
5141 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
5142 (define_image_type, lookup_image_type, valid_image_p)
5143 (image_error, enum image_value_type, struct image_keyword)
5144 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
5145 (make_image, free_image, prepare_image_for_display, image_ascent)
5146 (four_corners_best, image_background, image_background_transparent)
5147 (x_clear_image_1, x_clear_image, x_alloc_image_color)
5148 (make_image_cache, free_image_cache, clear_image_cache)
5149 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
5150 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
5151 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
5152 (struct ct_color, init_color_table, free_color_table)
5153 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
5154 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
5155 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
5156 (x_disable_image, x_build_heuristic_mask)
5157 (XBM support, XPM support, PBM support, PNG support, JPEG support)
5158 (TIFF support, GIF support, Ghostscript support): Merge with
5159 w32fns.c and macfns.c image code into image.c.
5160 (syms_of_xfns): Move image related symbols to image.c.
5161 (init_xfns): Remove; initialization moved to init_image in image.c.
5162
5163 * lisp.h (syms_of_image, init_image): Add protoypes.
5164 (init_xfns): Remove prototype.
5165
5166 * dispextern.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5167 (x_reference_bitmap, x_create_bitmap_from_data)
5168 (x_create_bitmap_from_file, x_destroy_bitmap)
5169 (x_create_bitmap_mask): Move prototypes from dispextern.h.
5170 (gamma_correct) [MAC_OS]: Add prototype.
5171
5172 * xterm.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5173 (x_reference_bitmap, x_create_bitmap_from_data)
5174 (x_create_bitmap_from_file, x_destroy_bitmap)
5175 (x_create_bitmap_mask): Move prototypes to dispextern.h.
5176
5177 2004-03-09 Kenichi Handa <handa@etlken2>
5178
5179 * coding.c (decode_coding_emacs_mule): Handle insufficent source
5180 correctly.
5181
5182 2004-03-04 Richard M. Stallman <rms@gnu.org>
5183
5184 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS): New definition.
5185
5186 * window.c (Fdisplay_buffer): Doc fix.
5187
5188 * buffer.c (Fpop_to_buffer): Doc fix.
5189
5190 2004-03-03 Kim F. Storm <storm@cua.dk>
5191
5192 * xdisp.c (display_line): Fix call to get_overlay_arrow_glyph_row.
5193
5194 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
5195
5196 * editfns.c (Ftranslate_region): Lisp_Object/int mixup.
5197
5198 2004-03-02 Richard M. Stallman <rms@gnu.org>
5199
5200 * indent.c (compute_motion): Save vpos in prev_vpos, like hpos etc.
5201
5202 2004-03-02 Kenichi Handa <handa@m17n.org>
5203
5204 * doc.c (Fsubstitute_command_keys): Fix counding bytes.
5205
5206 2004-03-02 Kim F. Storm <storm@cua.dk>
5207
5208 * window.h (struct window): New member overlay_arrow_bitmap.
5209
5210 * window.c (make_window): Initialize overlay_arrow_bitmap.
5211
5212 * xdisp.c (Voverlay_arrow_variable_list): New variable to properly
5213 implement and integrate multiple overlay arrows with redisplay.
5214 (syms_of_xdisp): DEFVAR_LISP and initialize it.
5215 (last_arrow_position, last_arrow_string): Replace by properties.
5216 (Qlast_arrow_position, Qlast_arrow_string)
5217 (Qoverlay_arrow_string, Qoverlay_arrow_bitmap): New variables.
5218 (syms_of_xdisp): Intern and staticpro them.
5219 (overlay_arrow_string_or_property, update_overlay_arrows)
5220 (overlay_arrow_in_current_buffer_p, overlay_arrows_changed_p)
5221 (overlay_arrow_at_row): New functions for multiple overlay arrows.
5222 (redisplay_internal): Use them instead of directly accessing
5223 Voverlay_arrow_position etc. for multiple overlay arrows.
5224 (mark_window_display_accurate): Use update_overlay_arrows.
5225 (try_cursor_movement): Use overlay_arrow_in_current_buffer_p.
5226 (try_window_id): Use overlay_arrows_changed_p.
5227 (get_overlay_arrow_glyph_row): Add overlay_arrow_string arg.
5228 (display_line): Use overlay_arrow_at_row to check multiple
5229 overlay arrows, and get relevant overlay-arrow-string and
5230 overlay-arrow-bitmap. Set w->overlay_arrow_bitmap accordingly.
5231 (produce_image_glyph): Set pixel_width = 0 for fringe bitmap.
5232 (syms_of_xdisp): Remove last_arrow_position and last_arrow_string.
5233
5234 * fringe.c (draw_fringe_bitmap): Use w->overlay_arrow_bitmap if set.
5235 (update_window_fringes): Remove unused code.
5236
5237 2004-03-01 Jason Rumney <jasonr@gnu.org>
5238
5239 * w32term.c (w32_read_socket): Fix last change to ButtonPress handling.
5240
5241 2004-03-01 Juanma Barranquero <lektu@terra.es>
5242
5243 * fringe.c (Fdefine_fringe_bitmap): Fix typo in docstring.
5244
5245 * makefile.w32-in ($(BLD)/fringe.$(O)): Add dependencies.
5246
5247 2004-03-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5248
5249 * xfns.c (Fx_display_color_cells): Use number of planes to calculate
5250 how many colors can be displayed.
5251
5252 2004-03-01 Kenichi Handa <handa@m17n.org>
5253
5254 * editfns.c (Ftranslate_region): Handle multibyte chars in TABLE
5255 correctly.
5256
5257 2004-02-28 Kim F. Storm <storm@cua.dk>
5258
5259 * dispnew.c (update_window): Update header line also if there are
5260 no other changes in window (move code after set_cursor label).
5261
5262 * lisp.h (mark_window_display_accurate): Remove prototype.
5263
5264 * window.c (window_loop, Fforce_window_update): Force mode line
5265 updates by setting prevent_redisplay_optimizations_p and
5266 update_mode_lines.
5267
5268 2004-02-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5269
5270 * xfns.c (x_window): Fix indentation.
5271
5272 * xterm.c (x_calc_absolute_position): Call x_real_positions
5273 to get WM window sizes and use those to calculate position.
5274 (x_set_offset): Remove code commented out.
5275
5276 2004-02-28 Miles Bader <miles@gnu.org>
5277
5278 * keyboard.c (adjust_point_for_property): #ifdef-out dodgy xassert.
5279
5280 2004-02-28 Kim F. Storm <storm@cua.dk>
5281
5282 * keyboard.c (kbd_buffer_store_event_hold): New function to store
5283 an event into kbd fifo, but with special handling of quit event;
5284 a quit event is saved for later, and further events are discarded
5285 until the saved quit event has been processed.
5286 (kbd_buffer_store_event): Use kbd_buffer_store_event_hold.
5287 (gen_help_event): Store help event in kbd fifo.
5288 (NREAD_INPUT_EVENTS): Remove.
5289 (read_avail_input): Adapt to new read_socket_hook interface.
5290 Remove allocation and initialization of local input_event buffer,
5291 as read_socket_hook stores events directly in fifo. Allocate and
5292 initialize local hold_quit event to handle postponed quit event
5293 (and store it if set by kbd_buffer_store_event_hold).
5294
5295 * keyboard.h (kbd_buffer_store_event_hold): Add prototype.
5296 (gen_help_event): Fix prototype.
5297
5298 * macterm.c (XTread_socket): Remove bufp_r and
5299 numcharsp args. Add hold_quit arg.
5300 Rework to use just one, local, inev input_event. Store inev
5301 directly in fifo using kbd_buffer_store_event_hold.
5302
5303 * sysdep.c (BUFFER_SIZE_FACTOR): Remove.
5304 (read_input_waiting): Adapt to new read_socket_hook interface.
5305 Remove allocation and initialization of local input_event buffer,
5306 as read_socket_hook stores events directly in fifo. Allocate and
5307 initialize local hold_quit event to handle postponed quit event
5308 (and store it if set by kbd_buffer_store_event_hold).
5309
5310 * term.c (read_socket_hook): Fix arg list.
5311
5312 * termhooks.h (read_socket_hook): Fix prototype.
5313
5314 * w32inevt.c (w32_console_read_socket): Remove bufp_r and
5315 numcharsp args. Add hold_quit arg.
5316 Rework to use just one, local, inev input_event. Store inev
5317 directly in fifo using kbd_buffer_store_event_hold.
5318
5319 * w32inevt.h (w32_console_mouse_position): Fix prototype.
5320
5321 * w32term.c (w32_read_socket): Remove bufp_r and numcharsp args.
5322 Add hold_quit arg. Rework to use just one, local, inev
5323 input_event. Store inev directly in fifo using
5324 kbd_buffer_store_event_hold. Update count in one place.
5325 Postpone call to gen_help_event until inev is stored; use new
5326 local do_help for this.
5327 Remove local emacs_event in handing of ButtonPress event; just use
5328 inev instead (so no reason to copy it later).
5329
5330 * xsmfns.c (x_session_check_input): Remove numchars arg.
5331
5332 * xterm.c (x_focus_changed, x_detect_focus_change):
5333 Remove numchars arg. Always store event into bufp arg.
5334 Return nothing. Callers changed accordingly.
5335 (glyph_rect): Simplify.
5336 (STORE_KEYSYM_FOR_DEBUG): New macro.
5337 (SET_SAVED_MENU_EVENT): Use inev instead of bufp, etc.
5338 (current_bufp, current_numcharsp) [USE_GTK]: Remove.
5339 (current_hold_quit) [USE_GTK]: Add.
5340 (event_handler_gdk): Adapt to new handle_one_xevent.
5341 (handle_one_xevent): Remove bufp_r and numcharsp args.
5342 Add hold_quit arg. Rework to use just one, local, inev
5343 input_event. Store inev directly in fifo using
5344 kbd_buffer_store_event_hold. Update count in one place.
5345 Postpone call to gen_help_event until inev is stored; use new
5346 local do_help for this.
5347 Simplify handling of keysyms (consolidate common code). Fix bug
5348 where count was updated with nchars instead of nbytes.
5349 Remove local emacs_event in handing of ButtonPress event; just use
5350 inev instead (so no reason to copy it later).
5351 Remove `out' label. Rename label `ret' to `done'; add various
5352 `goto done' to clarify code flow in deeply nested blocks.
5353 (x_dispatch_event): Simplify as handle_one_xevent now calls
5354 kbd_buffer_store_event itself.
5355 (XTread_socket): Remove bufp_r and numcharsp args. Add hold_quit
5356 arg. Call handle_one_xevent with new arglist. Store event from
5357 x_session_check_input in fifo.
5358 [USE_GTK]: Setup current_hold_quit.
5359 Decrement handling_signal before unblocking input.
5360 (x_initialize) [USE_GTK]: Initialize current_count.
5361
5362 * xterm.h (x_session_check_input): Fix prototype.
5363
5364 2004-02-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5365
5366 * s/darwin.h (LD_SWITCH_SYSTEM_TEMACS): Add `-framework QuickTime'.
5367
5368 * dispextern.h [MAC_OSX]: Do not include Carbon/Carbon.h (now in
5369 macgui.h).
5370
5371 * emacs.c (main) [HAVE_CARBON]: Call init_xfns.
5372
5373 * macgui.h [MAC_OSX]: Include Carbon/Carbon.h.
5374 (mktime, DEBUG, Z, free, malloc, realloc, max, min)
5375 (init_process) [MAC_OSX] : Avoid conflicts with Carbon/Carbon.h.
5376 [!MAC_OSX]: Include QDOffscreen.h and Controls.h.
5377 (INFINITY) [MAC_OSX]: Avoid conflict with definition in math.h.
5378 (Bitmap): Remove typedef.
5379 (Pixmap): Change int to GWorldPtr.
5380
5381 * macmenu.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
5382
5383 * macterm.h [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
5384 (RED16_FROM_ULONG, GREEN16_FROM_ULONG, BLUE16_FROM_ULONG):
5385 New #define to extract 16-bit depth color components from unsigned
5386 long representation.
5387 (PIX_MASK_DRAW, PIX_MASK_RETAIN): New #define to represent pixel
5388 colors used for masks.
5389 (struct mac_display_info): Add color_p. Remove n_cbits.
5390
5391 * macfns.c: Include sys/types.h and sys/stat.h.
5392 [MAC_OSX]: Do not include Carbon/Carbon.h (now in macgui.h).
5393 Include QuickTime/QuickTime.h.
5394 (XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
5395 (XSetForeground, mac_draw_line_to_pixmap): Add externs for
5396 functions defined in macterm.c.
5397 (XImagePtr): New typedef. Corresponds to XImage * in xfns.c.
5398 (ZPixmap): New #define for compatibility with xfns.c.
5399 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
5400 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
5401 (find_image_fsspec, image_load_qt_1, image_load_quicktime):
5402 New functions.
5403 (four_corners_best, x_create_x_image_and_pixmap)
5404 (x_destroy_x_image, unwind_create_frame, x_disable_image)
5405 (x_edge_detection, init_color_table, colors_in_color_table)
5406 (lookup_rgb_color, lookup_pixel_color, postprocess_image)
5407 (x_put_x_image, slurp_file, xbm_scan, xbm_load, xbm_load_image)
5408 (xbm_image_p, xbm_read_bitmap_data, xbm_file_p, x_to_xcolors)
5409 (x_from_xcolors, x_detect_edges): New declarations (from xfns.c).
5410 (mac_color_map_lookup, x_to_mac_color): Fix Lisp_Object/unsigned
5411 long mixup.
5412 (mac_defined_color, x_to_x_colors): Use RED16_FROM_ULONG etc.
5413 (x_decode_color): Don't use n_cbits (in struct mac_display_info).
5414 (x_set_foreground_color, x_set_cursor_color): Sync with w32fns.c.
5415 (x_set_cursor_type, Fxw_color_values, valid_image_p)
5416 (image_value_type, parse_image_spec, image_ascent, x_clear_image)
5417 (x_alloc_image_color, clear_image_cache, lookup_image)
5418 (x_find_image_file, xbm_read_bitmap_file_data)
5419 (enum xbm_keyword_index, xbm_format, xbm_image_p, xbm_scan)
5420 (xbm_read_bitmap_data, xbm_load, pbm_image_p, pbm_scan_number)
5421 (enum pbm_keyword_index, pbm_format, enum png_keyword_index)
5422 (png_format, png_image_p, enum jpeg_keyword_index, jpeg_format)
5423 (jpeg_image_p, enum tiff_keyword_index, tiff_format, tiff_image_p)
5424 (enum gif_keyword_index, gif_format, gif_image_p): Sync with xfns.c.
5425 (x_make_gc): Sync with xfns.c. Enclose unused `border_tile' with
5426 #if 0.
5427 (x_free_gcs): Sync with xfns.c. Enclose unused `border_tile' with
5428 #if 0. Free white_relief.gc and black_relief.gc.
5429 (unwind_create_frame, x_emboss, x_laplace, x_edge_detection):
5430 New functions (from xfns.c).
5431 (Fx_create_frame): Record unwind_create_frame.
5432 (Fxw_display_color_p): Use dpyinfo->color_p.
5433 (Fx_display_grayscale_p, Fx_display_planes): Don't use
5434 dpyinfo->n_cbits.
5435 (Fx_display_color_cells): Use dpyinfo->n_planes;
5436 (QCmatrix, QCcolor_adjustment, QCmask, Qemboss, Qedge_detection)
5437 (Qheuristic, cross_disabled_images, emboss_matrix)
5438 (laplace_matrix): New variables (from xfns.c).
5439 (Fimage_size, Fimage_mask_p, four_corners_best, image_background)
5440 (x_clear_image_1, postprocess_image, slurp_file, xbm_load_image)
5441 (xbm_file_p, x_to_xcolors, x_from_xcolors, x_detect_edges)
5442 (image_background_transparent): New function (from xfns.c).
5443 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
5444 (image_load_quicktime): Add declaration.
5445 [MAC_OSX] (image_load_quartz2d): Likewise.
5446 [MAC_OSX] (CGImageCreateWithPNGDataProviderProcType): New typedef.
5447 [MAC_OSX] (MyCGImageCreateWithPNGDataProvider): New variable.
5448 [MAC_OSX] (init_image_func_pointer, image_load_quartz2d): New funs.
5449 (xbm_load_image_from_file, x_laplace_read_row)
5450 (x_laplace_write_row, pbm_read_file): Remove functions.
5451 [HAVE_XPM] (enum xpm_keyword_index, xpm_format, xpm_image_p)
5452 (xpm_load): Sync with xfns.c (although XPM is not supported yet).
5453 (colors_in_color_table): Sync with xfns.c (although not used).
5454 (lookup_rgb_color): Don't lookup color table. Just do gamma
5455 correction.
5456 (COLOR_INTENSITY): New #define (from xfns.c).
5457 (x_disable_image): New function (from xfns.c).
5458 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
5459 (x_build_heuristic_mask): Sync with xfns.c.
5460 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
5461 (HAVE_PBM): Remove #ifdef.
5462 (pbm_load): Sync with xfns.c. Set img->width and img->height
5463 before IMAGE_BACKGROUND.
5464 (png_image_p, png_load): Don't enclose declarations with #if HAVE_PNG.
5465 (Qpng, enum png_keyword_index, png_format, png_type, png_image_p):
5466 Don't enclose with #if HAVE_PNG.
5467 [!HAVE_PNG] (png_load) [MAC_OSX]: Use image_load_quartz2d if a
5468 symbol _CGImageCreateWithPNGDataProvider is defined.
5469 Otherwise use image_load_quicktime.
5470 [!HAVE_PNG] (png_load) [!MAC_OSX]: Use image_load_quicktime.
5471 [HAVE_PNG] (png_load): Sync with xfns.c.
5472 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
5473 (jpeg_image_p, jpeg_load): Don't enclose declarations with #if
5474 HAVE_JPEG.
5475 (Qjpeg, enum jpeg_keyword_index, jpeg_format, jpeg_type)
5476 (jpeg_image_p): Don't enclose with #if HAVE_JPEG.
5477 [!HAVE_JPEG] (jpeg_load) [MAC_OSX]: Use image_load_quartz2d.
5478 [!HAVE_JPEG] (jpeg_load) [!MAC_OSX]: Use image_load_quicktime.
5479 [HAVE_JPEG] (jpeg_load): Sync with xfns.c.
5480 (tiff_image_p, tiff_load): Don't enclose declarations with #if
5481 HAVE_TIFF.
5482 (Qtiff, enum tiff_keyword_index, tiff_format, tiff_type)
5483 (tiff_image_p): Don't enclose with #if HAVE_TIFF.
5484 [!HAVE_TIFF] (tiff_load): Use image_load_quicktime.
5485 [HAVE_TIFF] (tiff_error_handler, tiff_warning_handler):
5486 New functions (from xfns.c).
5487 [HAVE_TIFF] (tiff_load): Sync with xfns.c.
5488 (gif_image_p, gif_load): Don't enclose declarations with #if HAVE_GIF.
5489 (Qgif, enum gif_keyword_index, gif_format, gif_type, gif_image_p):
5490 Don't enclose with #if HAVE_GIF.
5491 [!HAVE_GIF] (gif_load): Use Quicktime Movie Toolbox if it is
5492 animated gif. Otherwise use image_load_quicktime.
5493 [HAVE_GIF] (gif_lib.h): Temporarily define DrawText as
5494 gif_DrawText to avoid conflict with QuickdrawText.h.
5495 [HAVE_GIF] (gif_load): Sync with xfns.c.
5496 (enum gs_keyword_index, gs_format, gs_image_p, gs_load)
5497 [HAVE_GHOSTSCRIPT] (x_kill_gs_process): Sync with xfns.c (although
5498 Ghostscript is not supported yet).
5499 (syms_of_macfns): Initialize Qemboss, Qedge_detection, Qheuristic,
5500 QCmatrix, QCcolor_adjustment, and QCmask. Add DEFVAR_BOOL
5501 cross_disabled_images (from xfns.c). Remove #if 0 for supported
5502 image types. Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
5503 HAVE_PNG. Add defsubr for Simage_size and Simage_mask_p.
5504 (init_xfns): Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
5505 HAVE_PNG. Call EnterMovies to support animated gifs.
5506 Call init_image_func_pointer to bind a symbol
5507 _CGImageCreateWithPNGDataProvider if it is defined.
5508
5509 * macterm.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
5510 (x_draw_bar_cursor): Sync declaration with xterm.c.
5511 (XFreePixmap, mac_draw_rectangle_to_pixmap, mac_copy_area)
5512 (mac_copy_area_to_pixmap): Implementation with GWorld (offscreen
5513 graphics).
5514 (mac_set_forecolor, mac_set_backcolor): Use RED16_FROM_ULONG etc.
5515 (mac_draw_line_to_pixmap, XCreatePixmap)
5516 (XCreatePixmapFromBitmapData, mac_fill_rectangle_to_pixmap)
5517 (mac_copy_area_with_mask, mac_copy_area_with_mask_to_pixmap):
5518 New functions.
5519 (mac_draw_bitmap) [TARGET_API_MAC_CARBON]:
5520 Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
5521 Cast bits to char *.
5522 (reflect_byte): New function (from w32fns.c).
5523 (mac_create_bitmap_from_bitmap_data): Use it and don't stuff bits
5524 due to byte alignment.
5525 (mac_scroll_area) [TARGET_API_MAC_CARBON]:
5526 Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
5527 (XSetForeground): Remove static (now used in macfns.c).
5528 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New #define (from w32term.c).
5529 (mac_alloc_lighter_color, x_destroy_window): Sync with w32term.c.
5530 (x_setup_relief_color, x_setup_relief_colors, x_draw_box_rect)
5531 (x_draw_glyph_string_box, x_draw_image_foreground)
5532 (x_draw_image_foreground_1, x_draw_image_glyph_string)
5533 (x_draw_stretch_glyph_string, x_draw_glyph_string)
5534 (x_draw_hollow_cursor, x_draw_bar_cursor, mac_draw_window_cursor):
5535 Sync with xterm.c.
5536 (x_draw_relief_rect): Sync with xterm.c. Make 1 pixel shorter
5537 than the xterm.c version when a strictly horizontal or vertical
5538 line is drawn.
5539 (XTset_terminal_window): Add static.
5540 (x_make_frame_visible): Add UNBLOCK_INPUT.
5541 (x_free_frame_resources): New funcion (from xterm.c).
5542 (XTread_socket): Call handle_tool_bar_click if mouse up/down event
5543 occurs in tool bar area.
5544 (mac_initialize_display_info): Remove dpyinfo->n_cbits.
5545 Set dpyinfo->color_p. Determine dpyinfo->n_planes using HasDepth.
5546 Initialize image cache.
5547 (stricmp, wildstrieq, mac_font_pattern_match, mac_font_match):
5548 Enclose unused functions with #if 0.
5549 (Qbig5, Qcn_gb, Qsjis, Qeuc_kr): New variables.
5550 (decode_mac_font_name): New function to apply code conversions
5551 from a mac font name to an XLFD font name according to its script code.
5552 (x_font_name_to_mac_font_name): Apply code conversion from an XLFD
5553 font name to a mac font name according to REGISTRY and ENCODING fields.
5554 (init_font_name_table) [TARGET_API_MAC_CARBON]: Don't use a font
5555 whose name starts with `.'.
5556 (init_font_name_table): Use decode_mac_font_name. Add both
5557 jisx0208.1983-sjis and jisx0201.1976-0 entries if the script code
5558 of a font is smJapanese.
5559 (mac_do_list_fonts): New function to list fonts that match a given
5560 pattern.
5561 (x_list_fonts, XLoadQueryFont): Use it.
5562 (XLoadQueryFont): Set rbearing field for each variable width
5563 character to avoid needless redraw.
5564 (syms_of_macterm): Initialize Qbig5, Qcn_gb, Qsjis, and Qeuc_kr.
5565
5566 2004-02-26 Kim F. Storm <storm@cua.dk>
5567
5568 * keyboard.c (NREAD_INPUT_EVENTS): Temporarily increase to 512
5569 as read_socket_hook handler on X aborts if buffer is too small
5570 and W32 handler doesn't always check buffer limit.
5571
5572 * xdisp.c (handle_single_display_prop): Handle left-fringe and
5573 right-fringe similar to a display margin image. Specifically,
5574 the characters having the fringe prop are no longer shown, and
5575 we use IT_IMAGE/next_element_from_image with image_id = -1 to
5576 do this. Set fringe bitmap face_id in it->face_id.
5577 (produce_image_glyph): Handle image_id < 0 as "no image" case, but
5578 still realize it->face (i.e. the fringe bitmap face).
5579
5580 2004-02-25 Miles Bader <miles@gnu.org>
5581
5582 * xdisp.c (check_it): Check string/string_pos consistency.
5583 (init_iterator): Initialize string-related fields properly.
5584
5585 2004-02-11 Miles Bader <miles@gnu.org>
5586
5587 * xdisp.c (produce_image_glyph): Force negative descents to zero.
5588
5589 2004-02-10 Miles Bader <miles@gnu.org>
5590
5591 * xfns.c (lookup_image): Remove xassert(!interrupt_input_blocked);
5592 BLOCK_INPUT can be nested, so it doesn't make much sense.
5593
5594 2004-02-24 Michael Mauger <mmaug@yahoo.com>
5595
5596 * w32fns.c (slurp_file, xbm_scan, xbm_load_image)
5597 (xbm_read_bitmap_data): Use unsigned char for image data.
5598
5599 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
5600
5601 * abbrev.c (Finsert_abbrev_table_description): Doc fix.
5602
5603 2004-02-22 Jason Rumney <jasonr@gnu.org>
5604
5605 * w32term.c (w32_draw_fringe_bitmap): Draw overlaid bitmaps
5606 correctly over other bitmaps.
5607
5608 2004-02-21 Eli Zaretskii <eliz@gnu.org>
5609
5610 * emacs.c (USAGE1): Split into two halves.
5611 (USAGE2): Second half of the old USAGE1.
5612 (USAGE3): Rename from USAGE2.
5613 (USAGE4): Rename from USAGE3.
5614
5615 2004-02-21 Juri Linkov <juri@jurta.org>
5616
5617 * emacs.c (USAGE1): Add --no-desktop. Move --display from USAGE2.
5618 Fix --multibyte. Move --help, --version to USAGE2. Add alias
5619 --file. Fix -f, -l. Sort options. Untabify.
5620 (USAGE2): Add -hb. Fix --name, --title. Sort options. Untabify.
5621
5622 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
5623
5624 * category.c (Fdefine_category, Fcategory_docstring)
5625 (Fget_unused_category, Fset_category_table)
5626 (Fcategory_set_mnemonics): Doc fixes.
5627
5628 2004-02-20 Kim F. Storm <storm@cua.dk>
5629
5630 * keyboard.c: Undo 2004-02-16 and 2004-02-17 changes.
5631 The following changes are relative to the 2004-01-21 revision.
5632 (NREAD_INPUT_EVENTS): Define as max number of input events to read
5633 in one call to read_socket_hook. Value is 8.
5634 (read_avail_input): Separate and rework handling of read_socket_hook
5635 and non-read_socket_hook cases. Use smaller input_event buffer
5636 in read_socket_hook case, and repeat if full buffer is read.
5637 Use new local variable 'discard' to skip input after C-g.
5638 In non-read_socket_hook case, just use a single input_event, and
5639 call kbd_buffer_store_event on the fly for each character.
5640
5641 2004-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
5642
5643 * lisp.h (union Lisp_Object): Give a more precise type for `type'.
5644 Remove unused `gu' alternative.
5645
5646 2004-02-19 Andreas Schwab <schwab@suse.de>
5647
5648 * fringe.c (Fdefine_fringe_bitmap): Use && instead of & to avoid
5649 warning.
5650
5651 2004-02-18 Kim F. Storm <storm@cua.dk>
5652
5653 * xdisp.c (get_window_cursor_type, display_and_set_cursor):
5654 Fix last change.
5655
5656 2004-02-17 Kim F. Storm <storm@cua.dk>
5657
5658 * xdisp.c (fast_find_position): Fix return value of new version;
5659 it was inverted compared to the 21.1 version.
5660 (get_window_cursor_type): Don't look at glyph if NULL.
5661 (display_and_set_cursor): Set glyph to NULL if cursor in fringe.
5662
5663 * keyboard.c: Rework previous change; it didn't consider that the
5664 buf array was allocated on the stack.
5665 (prev_read): Remove variable.
5666 (read_avail_input_buf): New static event buffer array.
5667 (in_read_avail_input): New static variable to handle re-entrancy.
5668 (read_avail_input): Change buf to pinter to read_avail_input_buf.
5669 Use in_read_avail_input to handle re-entrance; when re-entered,
5670 fully initialize and use tmp_buf array instead of read_avail_input_buf.
5671 Do not initialize read_avail_input_buf in full here; instead assume it
5672 is always cleared on entry. To ensure that, we clear (just) the
5673 entries that were used before we return.
5674 (init_keyboard): Initialize read_avail_input_buf here.
5675
5676 2004-02-16 Jesper Harder <harder@ifa.au.dk>
5677
5678 * cmds.c (Fend_of_line): Doc fix.
5679
5680 2004-02-16 Dmitry Antipov <dmitry.antipov@mail.ru> (tiny change)
5681
5682 * keyboard.c (prev_read): New static variable.
5683 (read_avail_input): Use it to zero out only those slots in buf[]
5684 that were used last time we were called.
5685
5686 2004-02-16 Eli Zaretskii <eliz@gnu.org>
5687
5688 * Makefile.in (obj): Move fringe.o from here...
5689 (XOBJ, MAC_OBJ): ...to here.
5690
5691 2004-02-16 Stephen Eglen <stephen@gnu.org>
5692
5693 * fringe.c (init_fringe_bitmap): Define j in MAC_OS code.
5694
5695 2004-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
5696
5697 * data.c (Fbyteorder):
5698 * fringe.c (Fdefine_fringe_bitmap):
5699 * xdisp.c (handle_single_display_prop):
5700 * xselect.c (x_handle_dnd_message): Lisp_Object/int mixup.
5701
5702 2004-02-16 Jason Rumney <jasonr@gnu.org>
5703
5704 * w32term.c (w32_draw_fringe_bitmap): Handle overlay fringe bitmaps.
5705
5706 2004-02-15 Steven Tamm <steventamm@mac.com>
5707
5708 * macterm.c (Vmac_emulate_three_button_mouse): New variable for
5709 controlling emulation of a three button mouse with option and
5710 command keys.
5711 (Qreverse, mac_get_enumlated_btn): Handle the emulation
5712 (mac_event_to_emacs_modifiers, XTread_socket): Ditto.
5713
5714 2004-02-15 Kim F. Storm <storm@cua.dk>
5715
5716 * buffer.c (syms_of_buffer): Doc fix for indicate-buffer-boundaries.
5717
5718 * fringe.c (init_fringe_bitmap) [MAC_OS, WORDS_BIG_ENDIAN]:
5719 Perform byte-swapping.
5720
5721 2004-02-14 Kim F. Storm <storm@cua.dk>
5722
5723 * dispextern.h (struct draw_fringe_bitmap_params): Change member
5724 bits from char to short to facilitate wider bitmaps.
5725 (struct redisplay_interface): Fix prototype of define_fringe_bitmap
5726 member.
5727
5728 * fringe.c (struct fringe_bitmap): Change member bits from char to
5729 short to facilitate 16 bits wide bitmaps. Modify all standard
5730 bitmaps accordingly.
5731 (BYTES_PER_BITMAP_ROW, STANDARD_BITMAP_HEIGHT): New macros.
5732 (FRBITS): Use STANDARD_BITMAP_HEIGHT instead of just sizeof.
5733 (draw_fringe_bitmap): Ditto.
5734 (init_fringe_bitmap) [MAC_OS]: Don't bitswap.
5735 (init_fringe_bitmap) [HAVE_X_WINDOWS]: Enhance bitswapping to
5736 handle up to 16 bits wide bitmaps.
5737 (Fdefine_fringe_bitmap): Doc fix. Handle wider bitmaps.
5738 (Ffringe_bitmaps_at_pos): Add missing arg declarations.
5739
5740 * macterm.c (mac_draw_bitmap): Handle 16 bits wide bitmaps directly.
5741 (x_draw_fringe_bitmap): Use enhanced mac_draw_bitmap, so we no longer
5742 need to call mac_create_bitmap_from_bitmap_data and mac_free_bitmap.
5743
5744 * w32term.c (w32_define_fringe_bitmap): Bitmaps are now 16 bits wide,
5745 so it is no longer necessary to expand them here.
5746
5747 * xterm.c (x_draw_fringe_bitmap): Handle wider bitmaps (max 16 bits).
5748
5749 2004-02-12 Kim F. Storm <storm@cua.dk>
5750
5751 * window.c (Fwindow_fringes): Doc fix.
5752
5753 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5754
5755 * xselect.c (x_get_foreign_selection): Add new optional parameter
5756 time_stamp.
5757 (Fx_get_selection_internal): Ditto, pass time_stamp to
5758 x_get_foreign_selection.
5759
5760 * data.c (Fbyteorder): New function.
5761
5762 2004-02-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5763
5764 * atimer.c: Move include stdio.h to same place as in other files.
5765
5766 * region-cache.c: Ditto.
5767
5768 * sysdep.c: Ditto.
5769
5770 * xfaces.c: Ditto.
5771
5772 2004-02-09 Sam Steingold <sds@gnu.org>
5773
5774 * w32term.c (w32_draw_fringe_bitmap): Fix a typo in the last patch.
5775
5776 2004-02-09 Kim F. Storm <storm@cua.dk>
5777
5778 * fringe.c: New file. Move original fringe related declarations
5779 and code from dispextern.h and xdisp.c here.
5780 Rework code to support user defined fringe bitmaps, redefining
5781 standard bitmaps, ability to overlay user defined bitmap with
5782 overlay arrow bitmap, and add faces to bitmaps.
5783 (Voverflow_newline_into_fringe): Declare here.
5784 (enum fringe_bitmap_align): New enum.
5785 (..._bits): All bitmaps are now defined without bitswapping; that
5786 is now done in init_fringe_once (if necessary).
5787 (standard_bitmaps): New array with specifications for the
5788 standard fringe bitmaps.
5789 (fringe_faces): New array.
5790 (valid_fringe_bitmap_id_p): New function.
5791 (draw_fringe_bitmap_1): Rename from draw_fringe_bitmap.
5792 (draw_fringe_bitmap): New function which draws fringe bitmap,
5793 possibly overlaying bitmap with cursor in right fringe or the
5794 overlay arrow in the left fringe.
5795 (update_window_fringes): Do not handle overlay arrow here.
5796 Compare and copy fringe bitmap faces.
5797 (init_fringe_bitmap): New function.
5798 (Fdefine_fringe_bitmap, Fdestroy_fringe_bitmap): New DEFUNs to
5799 define and destroy user defined fringe bitmaps.
5800 (Fset_fringe_bitmap_face): New DEFUN to set face for a fringe bitmap.
5801 (Ffringe_bitmaps_at_pos): New DEFUN to read current fringe bitmaps.
5802 (syms_of_fringe): New function. Defsubr new DEFUNs.
5803 DEFVAR_LISP Voverflow_newline_into_fringe.
5804 (init_fringe_once, init_fringe): New functions.
5805 (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: New functions.
5806
5807 * Makefile.in (obj): Add fringe.o.
5808 (fringe.o): New dependencies.
5809
5810 * dispextern.h (FRINGE_ID_BITS): New definition for number of
5811 bits allocated to hold a fringe number. Increase number of bits
5812 from 4 to 8 to allow user defined fringe bitmaps.
5813 (struct glyph_row, struct it): New members left_user_fringe_bitmap,
5814 left_user_fringe_face_id, right_user_fringe_bitmap,
5815 right_user_fringe_face_id.
5816 (enum fringe_bitmap_type, struct fringe_bitmap, fringe_bitmaps):
5817 Move to new file fringe.c.
5818 (MAX_FRINGE_BITMAPS): Define here.
5819 (struct draw_fringe_bitmap_params): New members bits, cursor_p,
5820 and overlay_p. Change member which to int.
5821 (struct redisplay_interface): New members define_fringe_bitmap
5822 and destroy_fringe_bitmap.
5823 (valid_fringe_bitmap_id_p): Add prototype.
5824 (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: Add prototypes.
5825
5826 * dispnew.c (row_equal_p): Compare fringe bitmap faces and overlay
5827 arrows.
5828 (update_frame): Do flush_display if force_flush_display_p to
5829 ensure display (specifically fringes) are updated in a timely
5830 manner when resizing the frame by dragging the mouse.
5831 (update_window_line): Update row if overlay arrow changed.
5832 (scrolling_window): Redraw fringe bitmaps if fringe bitmap faces
5833 or overlay arrow changed.
5834
5835 * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
5836 syms_of_fringe, and init_fringe.
5837
5838 * frame.h (struct frame): New member force_flush_display_p.
5839
5840 * lisp.h (syms_of_fringe, init_fringe, init_fringe_once):
5841 Add prototypes.
5842
5843 * macterm.c (mac_draw_bitmap): Add overlay_p arg.
5844 (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps;
5845 thanks to YAMAMOTO Mitsuharu for advice on how to do this.
5846 Use cursor color for displaying cursor in fringe.
5847 (x_redisplay_interface): Add null handlers for
5848 define_fringe_bitmap and destroy_fringe_bitmap functions.
5849
5850 * w32term.c (w32_draw_fringe_bitmap): Copy unadapted code from
5851 xterm.c to handle overlayed fringe bitmaps and to use cursor color
5852 for displaying cursor in fringe.
5853 (w32_define_fringe_bitmap, w32_destroy_fringe_bitmap): New W32
5854 specific functions to define and destroy fringe bitmaps in fringe_bmp.
5855 (w32_redisplay_interface): Add them to redisplay_interface.
5856 (w32_term_init): Call w32_init_fringe instead of explicitly
5857 defining fringe bitmaps in fringe_bmp array.
5858 (x_delete_display): Call w32_reset_fringes instead of explicitly
5859 destroying fringe bitmaps in fringe_bmp array.
5860
5861 * xdisp.c (Voverflow_newline_into_fringe, syms_of_xdisp)
5862 (left_bits, right_bits, up_arrow_bits, down_arrow_bits)
5863 (continued_bits, continuation_bits, ov_bits, first_line_bits)
5864 (last_line_bits, filled_box_cursor_bits, hollow_box_cursor_bits)
5865 (bar_cursor_bits, hbar_cursor_bits, zv_bits, hollow_square_bits)
5866 (fringe_bitmaps, draw_fringe_bitmap, draw_row_fringe_bitmaps)
5867 (draw_window_fringes, compute_fringe_widths, update_window_fringes):
5868 Move fringe handling vars and code to new file fringe.c.
5869 (handle_display_prop): Handle left-fringe and right-fringe
5870 display properties; store user fringe bitmaps in iterator.
5871 (move_it_in_display_line_to): Handle cursor in fringe at eob.
5872 (clear_garbaged_frames): Set force_flush_display_p if resized.
5873 (redisplay_window): Redraw fringe bitmaps if not just_this_one_p.
5874 (display_line): Handle cursor in fringe at eob.
5875 (display_line): Set row user fringe bitmaps from iterator.
5876
5877 * xterm.c (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps.
5878 Use cursor color for displaying cursor in fringe.
5879 (x_redisplay_interface): Add null handlers for
5880 define_fringe_bitmap and destroy_fringe_bitmap functions.
5881
5882 2004-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5883
5884 * macfns.c (Fx_change_window_property): Make doc string and
5885 parameters same as for X version.
5886
5887 * w32fns.c (Fx_change_window_property): Ditto.
5888
5889 2004-02-07 Kim F. Storm <storm@cua.dk>
5890
5891 * xdisp.c (hscroll_window_tree): Position cursor near to right
5892 margin in hscrolled window when jumping to end of line (rather
5893 than centering cursor).
5894
5895 * process.c (wait_reading_process_input): Don't do adaptive read
5896 buffering if waiting for a specific process.
5897
5898 2004-02-05 Luc Teirlinck <teirllm@auburn.edu>
5899
5900 * minibuf.c (Fminibufferp, Fread_from_minibuffer)
5901 (Fread_minibuffer, Feval_minibuffer)
5902 (Fread_string, Fread_no_blanks_input)
5903 (Fcompleting_read): Doc fixes.
5904 (syms_of_minibuf): Doc fixes for minibuffer-completion-table and
5905 completion-regexp-list. Define Qcase_fold_search and staticpro it.
5906 (read_minibuf): Fix initial comment.
5907 (Ftry_completion, Fall_completions, Ftest_completion): Bind
5908 case-fold-search to the value of completion-ignore-case when
5909 checking completion-regexp-list.
5910 (Fdisplay_completion_list): Make it handle arguments that are
5911 symbols. Doc fix.
5912
5913 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5914
5915 * xterm.h: Add declaration of free_frame_menubar.
5916
5917 * xfns.c (x_create_bitmap_mask): Removed unused variable depth.
5918 (x_set_menu_bar_lines): Added ! defined USE_GTK for olines.
5919 (Fx_change_window_property): Add declaration of parameters type and
5920 format. Remove unused variable cons.
5921
5922 * xselect.c: Include stdio,h.
5923
5924 2004-02-05 Kenichi Handa <handa@m17n.org>
5925
5926 * fns.c (Fset_char_table_range): Fix previous change.
5927
5928 * buffer.c (Fset_buffer_multibyte): Fix docstring.
5929
5930 2004-02-04 Luc Teirlinck <teirllm@auburn.edu>
5931
5932 * editfns.c (Fchar_after, Fchar_before): Doc fixes.
5933
5934 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
5935
5936 * keymap.c (Vmouse_events): Rename from Vmenu_events.
5937 (syms_of_keymap): Add mouse-[45], header-line, and mode-line to it.
5938
5939 2004-02-04 Kenichi Handa <handa@m17n.org>
5940
5941 * fns.c (Fset_char_table_range): Handle charsets ascii,
5942 eight-bit-control, and eight-bit-graphic correctly.
5943
5944 2004-02-03 Jason Rumney <jasonr@gnu.org>
5945
5946 * w32select.c (Fw32_set_clipboard_data): Make coding iso2022 safe.
5947
5948 * w32fns.c (x_to_w32_font): Likewise.
5949
5950 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5951
5952 * xterm.h: Add x_handle_dnd_message, x_check_property_data,
5953 x_fill_property_data, x_property_data_to_lisp and check_x_display_info.
5954
5955 * xterm.c (handle_one_xevent): Call x_handle_dnd_message for
5956 ClientMessages.
5957
5958 * xselect.c: Include termhooks.h and X11/Xproto.h
5959 (x_check_property_data, x_fill_property_data)
5960 (x_property_data_to_lisp, mouse_position_for_drop)
5961 (Fx_get_atom_name, x_handle_dnd_message): New functions for DND support.
5962 (Fx_send_client_event): Move here from xfns.c.
5963 (syms_of_xselect): Add Sx_get_atom_name and Sx_send_client_message.
5964
5965 * xfns.c (x-send-client-message): Move to xselect.c
5966 (Fx_change_window_property): Add optional arguments TYPE, FORMAT and
5967 OUTER_P.
5968 (Fx_window_property): Add optional arguments TYPE, SOURCE, DELETE_P,
5969 VECTOR_RET_P. Handle AnyPropertyType. Call x_property_data_to_lisp
5970 if vector_ret_p is true.
5971 (syms_of_xfns): Sx_send_client_message moved to xselect.c.
5972
5973 2004-02-02 Eli Zaretskii <eliz@gnu.org>
5974
5975 * fileio.c (Fcopy_file): If NEWNAME is a directory, expand the
5976 basename of FILE relative to it, not FILE itself.
5977
5978 2004-02-02 Kenichi Handa <handa@m17n.org>
5979
5980 * coding.c (coding_restore_composition): Check invalid
5981 composition data more rigidly.
5982
5983 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
5984
5985 * fileio.c (Fread_file_name_internal): Correctly handle the case
5986 where insert-default-directory is nil.
5987 (Fread_file_name): Always return an empty string if the user exits
5988 with an empty minibuffer. Adapt the docstring accordingly.
5989 (syms_of_fileio): Adapt the docstring of insert-default-directory
5990 to the change in Fread_file_name.
5991
5992 2004-01-29 Eli Zaretskii <eliz@gnu.org>
5993
5994 * alloca.c [!alloca]: Fix the prototype for xfree.
5995
5996 2004-01-29 Kenichi Handa <handa@m17n.org>
5997
5998 * fns.c (string_char_to_byte): Optimize for ASCII only string.
5999 (string_byte_to_char): Likewise.
6000
6001 2004-01-28 Peter Runestig <peter@runestig.com>
6002
6003 * makefile.w32-in, w32fns.c: Add `default-printer-name' function.
6004
6005 2004-01-27 Steven Tamm <steventamm@mac.com>
6006
6007 * unexmacosx.c (unexec_copy): Do not copy more than was
6008 requested to prevent overwriting during unexec.
6009
6010 2004-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6011
6012 * process.c (sigchld_handler): Add comment about not calling malloc.
6013
6014 * process.h: Add extern to synch_process_termsig.
6015
6016 2004-01-27 Steven Tamm <steventamm@mac.com>
6017
6018 * macterm.c (make_mac_frame, make_mac_terminal_frame):
6019 Move setting of scroll bars from make_mac_frame to
6020 make_mac_terminal_frame to prevent clobbering of scroll-bar-mode.
6021
6022 2004-01-26 Richard M. Stallman <rms@gnu.org>
6023
6024 * search.c (Freplace_match): Handle nonexistent
6025 back-references properly.
6026
6027 2004-01-03 Richard M. Stallman <rms@gnu.org>
6028
6029 * window.c (decode_any_window): New function.
6030 (Fwindow_height, Fwindow_width, Fwindow_edges)
6031 (Fwindow_pixel_edges, Fwindow_inside_edges)
6032 (Fwindow_inside_pixel_edges): Use decode_any_window.
6033
6034 2004-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6035
6036 * process.h: synch_process_termsig new variable.
6037
6038 * callproc.c: Define synch_process_termsig.
6039 (Fcall_process): Initiate synch_process_termsig to zero and
6040 check if non-zero and get signal name after subprocess has ended.
6041
6042 * process.c (sigchld_handler): Set synch_process_termsig
6043 if terminated by a signal. synch_process_death setting removed.
6044
6045 * sysdep.c (mkdir, rmdir): Also check synch_process_termsig.
6046
6047 2004-01-26 Andreas Schwab <schwab@suse.de>
6048
6049 * print.c (print_preprocess): Declare size as EMACS_INT to not
6050 lose bits.
6051 (print_object): Likewise.
6052 * alloc.c (Fpurecopy): Likewise.
6053
6054 2004-01-25 Luc Teirlinck <teirllm@auburn.edu>
6055
6056 * window.c (Fwindow_minibuffer_p): Doc fix.
6057
6058 2004-01-24 Jonathan Yavner <jyavner@member.fsf.org>
6059
6060 * editfns.c (Fformat): Make both passes accept the same set of flags.
6061
6062 2004-01-23 Kenichi Handa <handa@m17n.org>
6063
6064 * fns.c (Fmd5): If OBJECT is a buffer different from the current
6065 one, set buffer to OBJECT temporarily.
6066
6067 2004-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
6068
6069 * keyboard.c (kbd_buffer_gcpro): Remove.
6070 (kbd_buffer_store_event, clear_event, Fdiscard_input)
6071 (stuff_buffered_input, init_keyboard, syms_of_keyboard):
6072 Don't initialize and/or maintain the variable any more. It was made
6073 redundant by my commit of 2003-06-15.
6074
6075 * lisp.h [USE_LSB_TAG && !DECL_ALIGN]: Signal an error.
6076
6077 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6078
6079 * lisp.h: Add undef DECL_ALIGN.
6080
6081 2004-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
6082
6083 * process.c (wait_reading_process_input) [SYNC_INPUT]:
6084 Check interrupt_input_pending explicitly.
6085
6086 * lisp.h (QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
6087
6088 * keyboard.c (handle_async_input): New fun,
6089 extracted from input_available_signal.
6090 (input_available_signal, reinvoke_input_signal): Use it.
6091
6092 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
6093
6094 * buffer.c (buffer_defaults, buffer_local_symbols): Use DECL_ALIGN.
6095
6096 * lisp.h [USE_LSB_TAG]: Add definitions for Lisp_Object value
6097 manipulation macros for when tags are in the lower bits.
6098 (struct Lisp_Free) [USE_LSB_TAG]: Add padding.
6099 (DECL_ALIGN): New macro.
6100 (DEFUN): Use it.
6101
6102 * lisp.h [ENABLE_CHECKING]: Don't force union type.
6103
6104 * s/darwin.h (__attribute__): Remove outdated workaround.
6105
6106 * macterm.c (main) [USE_LSB_TAG]: Don't range check the ram.
6107
6108 * alloc.c (lisp_malloc, lisp_align_malloc) [USE_LSB_TAG]:
6109 Don't check range of malloc address.
6110 (pure_alloc) [USE_LSB_TAG]: Enforce alignment.
6111
6112 * process.c (wait_reading_process_input): Lisp_Object/int mixup.
6113
6114 * dired.c (Ffile_attributes): Lisp_Object/int mixup.
6115
6116 2004-01-19 Kenichi Handa <handa@m17n.org>
6117
6118 * fontset.c (fontset_font_pattern): Fix previous change.
6119
6120 2004-01-16 Miles Bader <miles@gnu.ai.mit.edu>
6121
6122 * xdisp.c (Voverflow_newline_into_fringe)
6123 (move_it_in_display_line_to, redisplay_internal)
6124 (update_window_fringes, redisplay_window, display_line, window):
6125 Add `#ifdef HAVE_WINDOW_SYSTEM' around fringe-drawing stuff, so
6126 that it compiles without a window-system.
6127 * dispnew.c (direct_output_for_insert, update_window): Likewise.
6128
6129 2004-01-16 Kim F. Storm <storm@cua.dk>
6130
6131 * buffer.h (struct buffer): New member indicate_buffer_boundaries.
6132
6133 * buffer.c (init_buffer_once): Set buffer_defaults and
6134 buffer_local_flags for indicate_buffer_boundaries.
6135 (syms_of_buffer): Defvar_per_buffer it, and defvar_lisp_nopro
6136 default- variable for it.
6137
6138 * dispextern.h (struct glyph_row): New members left_fringe_bitmap,
6139 right_fringe_bitmap, redraw_fringe_bitmaps_p for new fringe handling.
6140 New members exact_window_width_line_p and cursor_in_fringe_p for
6141 overflowing newlines into right fringe.
6142 New members indicate_bob_p, indicate_top_line_p, indicate_eob_p,
6143 and indicate_bottom_line_p for buffer boundaries and scrolling.
6144 (enum fringe_bitmap_type): Add UP_ARROW_BITMAP, DOWN_ARROW_BITMAP,
6145 FIRST_LINE_BITMAP, LAST_LINE_BITMAP, FILLED_BOX_CURSOR_BITMAP,
6146 HOLLOW_BOX_CURSOR_BITMAP, BAR_CURSOR_BITMAP, HBAR_CURSOR_BITMAP,
6147 and HOLLOW_SQUARE_BITMAP.
6148 (draw_fringe_bitmap, draw_window_fringes, update_window_fringes):
6149 Add prototypes.
6150
6151 * dispnew.c (row_equal_p, update_window_line): Compare fringe bitmaps
6152 instead of related indicator fields.
6153 Compare exact_window_width_line_p and cursor_in_mouse_face_p indicators.
6154 (direct_output_for_insert): Handle exact width lines like
6155 contined lines. Call update_window_fringes.
6156 (update_window): Call update_window_fringes.
6157 (scrolling_window): Don't skip desired rows with changed bitmaps.
6158 Check if fringe bitmaps changes when assigning scrolled rows.
6159
6160 * xdisp.c (Voverflow_newline_into_fringe): New variable.
6161 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): New macro.
6162 (move_it_in_display_line_to): Overflow newline into fringe for
6163 rows that are exactly as wide as the window.
6164 (up_arrow_bits, down_arrow_bits, first_line_bits, last_line_bits)
6165 (filled_box_cursor_bits, hollow_box_cursor_bits, bar_cursor_bits)
6166 (hbar_cursor_bits, hollow_square_bits): New fringe bitmaps.
6167 (fringe_bitmaps): Add new bitmaps.
6168 (draw_fringe_bitmap): Make extern. Remove WHICH arg.
6169 Select proper bitmap for cursor in fringe when appropriate.
6170 Handle alignment of bitmap to top or bottom of row.
6171 (draw_row_fringe_bitmaps): Don't select bitmaps here; that is now
6172 done by update_window_fringes.
6173 (update_window_fringes, draw_window_fringes): New functions.
6174 (redisplay_internal): Call update_window_fringes in case only
6175 cursor row is updated.
6176 (redisplay_window): Call update_window_fringes.
6177 Explicitly call draw_window_fringes if redisplay was done using
6178 the current matrix or the overlay arrow is in the window.
6179 (try_window_reusing_current_matrix): Mark scrolled rows for
6180 fringe update (to update buffer-boundaries / scrolling icons).
6181 (find_last_unchanged_at_beg_row): Handle exact width lines line
6182 continued lines.
6183 (display_line): Overflow newline into fringe for rows that are
6184 exactly as wide as the window. Don't append space for newline
6185 in this case.
6186 (notice_overwritten_cursor): Explicitly clear cursor bitmap
6187 in fringe as if it had been overwritten.
6188 (erase_phys_cursor): Erase cursor bitmap in fringe.
6189 (syms_of_xdisp): Mark show-trailing-whitespace and
6190 void-text-area-pointer as user options.
6191 DEFVAR_LISP Voverflow_newline_into_fringe. Enable by default.
6192
6193 * xterm.c (x_update_window_end): Call draw_window_fringes.
6194 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
6195 in row instead of actually drawing fringe bitmaps.
6196 (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
6197 (x_draw_window_cursor): Draw cursor in fringe.
6198
6199 * w32term.c (x_update_window_end): Call draw_window_fringes.
6200 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
6201 in row instead of actually drawing fringe bitmaps.
6202 (w32_draw_fringe_bitmap): Handle bottom aligned bitmaps.
6203 (w32_draw_window_cursor): Draw cursor in fringe.
6204
6205 * macterm.c (x_update_window_end): Call draw_window_fringes.
6206 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
6207 in row instead of actually drawing fringe bitmaps.
6208 (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
6209 (mac_draw_window_cursor): Draw cursor in fringe.
6210
6211 2004-01-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6212
6213 * xterm.c (handle_one_xevent): Don't handle characters that are part
6214 of an old style (XLookupString) compose sequence.
6215
6216 2004-01-15 Kenichi Handa <handa@m17n.org>
6217
6218 * search.c (Freplace_match): Use make_multibyte_string or
6219 make_unibyte_string according to the buffer multibyteness.
6220
6221 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
6222
6223 * alloc.c (struct interval_block, struct string_block)
6224 (struct symbol_block, struct marker_block, live_string_p)
6225 (live_cons_p, live_symbol_p, live_float_p, live_misc_p):
6226 Better preserve alignment for objects in blocks.
6227 (FLOAT_BLOCK_SIZE): Adjust for possible alignment padding.
6228
6229 * lread.c (defvar_per_buffer): Remove dead declaration.
6230
6231 * macterm.c (do_check_ram_size): Don't hardcode the lisp address
6232 space size.
6233
6234 2004-01-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6235
6236 * xmenu.c (popup_get_selection): Check new parameter down_on_keypress
6237 if a key press should pop down. Only pop down if a key is pressed
6238 outside the menu/dialog.
6239 (create_and_show_popup_menu): Pass 0 for down_on_keypress to
6240 popup_get_selection.
6241 (create_and_show_dialog): Pass 1 for down_on_keypress to
6242 popup_get_selection.
6243
6244 2004-01-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6245
6246 * alloc.c (allocate_vectorlike): Surround calls to mallopt with
6247 BLOCK/UNBLOCK_INPUT.
6248
6249 2004-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6250
6251 * xmenu.c (Fx_popup_dialog): Add an Ok button if no buttons are
6252 specified.
6253
6254 2004-01-08 Kenichi Handa <handa@m17n.org>
6255
6256 * editfns.c (Fformat): Fix '&' to '&&'.
6257
6258 2004-01-08 Andreas Schwab <schwab@suse.de>
6259
6260 * print.c (print_preprocess) <case Lisp_Vectorlike>: Only mask
6261 size if PSEUDOVECTOR_FLAG is set.
6262
6263 2004-01-07 Kenichi Handa <handa@m17n.org>
6264
6265 * charset.c (Fdeclare_equiv_charset): Fix docstring.
6266
6267 * fontset.c (fontset_ref_via_base): Fix previous change.
6268
6269 2004-01-07 Kim F. Storm <storm@cua.dk>
6270
6271 * process.c (read_process_output): Only activate adaptive
6272 buffering if we read less than 256 bytes at a time.
6273
6274 2004-01-06 Kim F. Storm <storm@cua.dk>
6275
6276 * dispnew.c (buffer_posn_from_coords): Return both buffer/string
6277 object and image object. Return glyph width and height.
6278 (mode_line_string, marginal_area_string): Ditto.
6279
6280 * dispextern.h (buffer_posn_from_coords, mode_line_string)
6281 (marginal_area_string): Fix prototypes.
6282
6283 * keyboard.h (POSN_POSN, POSN_SET_POSN): Rename macros from
6284 POSN_BUFFER_POSN and POSN_SET_BUFFER_POSN. All uses changed.
6285 (POSN_INBUFFER_P, POSN_BUFFER_POSN): New macros.
6286
6287 * keyboard.c (make_lispy_position): Use modified mode_line_string,
6288 buffer_posn_from_coords, and marginal_area_string functions to
6289 include both string object and image object in the lispy position.
6290 Also add actual glyph width and height to position.
6291 (read_key_sequence): Use real buffer position from mouse
6292 event to find keymap property even when click is in marginal area.
6293
6294 * xdisp.c (note_mode_line_or_margin_highlight): Use modified
6295 mode_line_string and marginal_area_string functions to handle
6296 both string object and image object properties.
6297
6298 2004-01-06 Andreas Schwab <schwab@suse.de>
6299
6300 * syntax.c (skip_chars): Treat '-' at end of string as ordinary
6301 character.
6302
6303 2004-01-02 Andreas Schwab <schwab@suse.de>
6304
6305 * macterm.c (emacs_options, x_initialized, same_x_server):
6306 Remove unused (and duplicated) definitions.
6307
6308 2004-01-02 Kim F. Storm <storm@cua.dk>
6309
6310 * process.h (struct Lisp_Process): New members for adaptive read
6311 buffering: adaptive_read_buffering, read_output_delay, and
6312 read_output_skip.
6313
6314 * process.c (ADAPTIVE_READ_BUFFERING): New conditional.
6315 (READ_OUTPUT_DELAY_INCREMENT, READ_OUTPUT_DELAY_MAX)
6316 (READ_OUTPUT_DELAY_MAX_MAX): New constants.
6317 (process_output_delay_count, process_output_skip): New vars.
6318 (Vprocess_adaptive_read_buffering): New variable.
6319 (make_process): Initialize adaptive read buffering members.
6320 (Fstart_process): Set adaptive_read_buffering member.
6321 (deactivate_process): Cleanup adaptive read buffering.
6322 (wait_reading_process_input): Temporarily omit delayed
6323 subprocesses from the set of file descriptors to read from;
6324 adjust the select timeout if we skipped any subprocesses.
6325 (read_process_output): Increase adaptive read buffering delay if
6326 we read less than a full buffer; reduce delay when we read a
6327 full buffer.
6328 (send_process): Simplify using local Lisp_Process var.
6329 Reset adaptive read buffering delay after write.
6330 (init_process): Initialize process_output_delay_count and
6331 process_output_skip.
6332 (syms_of_process): DEFVAR_LISP Vprocess_adaptive_read_buffering.
6333
6334 2004-01-01 Jason Rumney <jasonr@gnu.org>
6335
6336 * w32term.c (w32_text_out): Use s->font, for consistency with callers.
6337
6338 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
6339
6340 * print.c (Ferror_message_string): Add hyperlink in the docstring
6341 to the definition of `signal' in the Elisp manual.
6342 * eval.c (Fsignal): Ditto.
6343
6344 2003-12-29 James Clark <jjc@jclark.com>
6345
6346 * fns.c (internal_equal): Return t for two NaN arguments.
6347
6348 2003-12-29 Richard M. Stallman <rms@gnu.org>
6349
6350 * data.c (store_symval_forwarding): Handle setting
6351 default-fill-column, etc., by changing the value in
6352 buffers that use the default.
6353
6354 * minibuf.c (Fset_minibuffer_window): Doc fix.
6355
6356 * fileio.c (choose_write_coding_system): Ignore auto_saving
6357 if using the visited file for auto saves.
6358 (Fwrite_region): Don't update SAVE_MODIFF
6359 if auto-saving in visited file.
6360
6361 2003-12-29 Kenichi Handa <handa@m17n.org>
6362
6363 * dispextern.h (face_font_available_p): Extern it.
6364
6365 * fontset.c (Voverriding_fontspec_alist): New variable.
6366 (lookup_overriding_fontspec): New function.
6367 (fontset_ref_via_base): Call lookup_overriding_fontspec if necessary.
6368 (fontset_font_pattern): Likewise.
6369 (regulalize_fontname): New function.
6370 (Fset_fontset_font): Call regulalize_fontname.
6371 (Fset_overriding_fontspec_internal): New function.
6372 (syms_of_fontset): Initialize and staticpro Voverriding_fontspec_alist.
6373 Defsubr Sset_overriding_fontspec_internal.
6374
6375 * xfaces.c (face_font_available_p): New function.
6376
6377 2003-12-28 Richard M. Stallman <rms@gnu.org>
6378
6379 * buffer.c (Fother_buffer): Don't crash if BUF is nil
6380 or if its name is nil.
6381
6382 * buffer.c (Fkill_buffer): Don't delete auto-save file
6383 if it's the same as the visited file.
6384
6385 2003-12-28 Luc Teirlinck <teirllm@auburn.edu>
6386
6387 * coding.c (Fcheck_coding_system): Doc fix.
6388
6389 2003-12-28 Kim F. Storm <storm@cua.dk>
6390
6391 * Makefile.in (eval.o): Depend on dispextern.h.
6392
6393 * dispnew.c (buffer_posn_from_coords): Fix calculation of dy for
6394 image glyph using image's ascent.
6395 (mode_line_string): Return image glyph as object clicked on.
6396 Adjust y0 for image glyph using image's ascent.
6397
6398 * dispextern.h (FACE_ID_BITS, MAX_FACE_ID): New defines.
6399 (struct glyph): New members, ascent and descent. Used to save
6400 this glyph's ascent and descent, instead of having.
6401 (struct glyph): Declare member face_id using FACE_ID_BITS.
6402 (find_hot_spot): Add prototype.
6403
6404 * keyboard.c (Qimage): Remove extern (now in lisp.h).
6405 (QCmap): Declare extern.
6406 (make_lispy_position): When position is inside image hot-spot,
6407 use hot-spot element's id as posn element.
6408
6409 * lisp.h (IMAGEP): New macro to test for image object type.
6410 (Qimage): Declare extern.
6411
6412 * macfns.c (Qimage): Remove extern (now in lisp.h).
6413 (valid_image_p, parse_image_spec): Use IMAGEP macro.
6414
6415 * macterm.c (Qface, Qmouse_face): Remove unused externs.
6416
6417 * w32fns.c (Qimage): Remove extern (now in lisp.h).
6418 (valid_image_p, parse_image_spec): Use IMAGEP macro.
6419
6420 * w32menu.c (Qmouse_click, Qevent_kind): Remove unused externs.
6421
6422 * w32term.c (Qface, Qmouse_face): Remove unused externs.
6423
6424 * xdisp.c (Qarrow, Qhand, Qtext, Qpointer): New variables for
6425 pointer types.
6426 (Qrelative_width, Qalign_to): Remove unused variables.
6427 (Vvoid_text_area_pointer): Replace Vshow_text_cursor_in_void.
6428 (QCmap, QCpointer, Qrect, Qcircle, Qpoly): New variables for
6429 image maps.
6430 (x_y_to_hpos_vpos): Return glyph relative coordinates through
6431 new dx and dy args.
6432 Remove buffer_only_p arg (always 0). Simplify code accordingly.
6433 (get_glyph_string_clip_rect): Draw cursor using glyph's rather
6434 than row's ascent and height, to get sensible height on tall rows.
6435 (build_desired_tool_bar_string): Remove Qimage extern.
6436 (get_tool_bar_item): Fix call to x_y_to_hpos_vpos.
6437 (produce_image_glyph): Adjust it.ascent to minimum row ascent if
6438 image glyph is alone on the last line.
6439 (append_glyph, append_composite_glyph, produce_image_glyph)
6440 (append_stretch_glyph): Set glyph's ascent and descent.
6441 (on_hot_spot_p): New function to check if position is inside an
6442 rectangular, circular, or polygon-shaped image hot-spot,
6443 (find_hot_spot): New function to search for image hot-spot.
6444 (Flookup_image_map): New defun to search for image hot-spot.
6445 (define_frame_cursor1): New aux function to determine frame pointer.
6446 (note_mode_line_or_margin_highlight, note_mouse_highlight):
6447 Handle `pointer' text property and :pointer image property to
6448 control frame pointer shape. Detect image hot-spots for pointer
6449 and help_echo properties. Use define_frame_cursor1.
6450 (note_mouse_highlight): Use Vvoid_text_area_pointer.
6451 (syms_of_xdisp): Defsubr new defun. Intern and staticpro new variables.
6452 DEFVAR_LISP Vvoid_text_area_pointer instead of Vshow_text_cursor_in_void.
6453
6454 * xfaces.c (cache_face): Abort if c->size exceeds MAX_FACE_ID.
6455
6456 * xfns.c (x_set_mouse_color): Remove bogus x_check_errors call.
6457 (Qimage): Remove extern (now in lisp.h).
6458 (valid_image_p, parse_image_spec): Use IMAGEP macro.
6459
6460 * xmenu.c (show_help_event): Remove unused code.
6461
6462 * xterm.c (Qface, Qmouse_face): Remove unused externs.
6463 (x_draw_hollow_cursor): Draw cursor using glyph's rather than
6464 row's ascent and descent, to get a sensible height on tall rows.
6465
6466 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
6467
6468 * minibuf.c (Fcompleting_read): Undo previous change.
6469
6470 2003-12-25 Lars Hansen <larsh@math.ku.dk>
6471
6472 * dired.c (Fdirectory_files, Fdirectory_files_and_attributes):
6473 Arguments GCPRO'ed in call to file name handler.
6474
6475 2003-12-25 Thien-Thi Nguyen <ttn@gnu.org>
6476
6477 * termcap.c (tgetst1): Scan for "%pN"; if all
6478 N are continuous in [1,9], remove all "%pN".
6479
6480 2003-12-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6481
6482 * gtkutil.c (xg_frame_set_char_size): Call x_wm_set_size_hint.
6483
6484 * xfaces.c (lface_fully_specified_p): Take into account that
6485 MAC OS always have unspecified stipple.
6486
6487 2003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
6488
6489 * tparam.c (tparam1): Add handling for `%pN', which
6490 means use param N for the next substitution.
6491
6492 2003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
6493
6494 * xfaces.c (Fcolor_gray_p): Fix omission bug:
6495 In case `frame' is nil, consult the selected frame.
6496 (Fcolor_supported_p): Likewise.
6497
6498 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
6499
6500 * fns.c (Frandom, Fstring_make_multibyte, Fset_char_table_range):
6501 Doc fixes.
6502
6503 * minibuf.c (read_minibuf): Allow INITIAL to be a cons of a string
6504 and an integer. Adapt the introductory comment accordingly.
6505 (Fread_from_minibuffer): Delete code moved into read_minibuf.
6506 Doc fix.
6507 (Fread_minibuffer, Fread_no_blanks_input): Adapt to changes in
6508 read_minibuf.
6509 (Fcompleting_read): Delete code moved into read_minibuf.
6510 (Ftest_completion): Make it handle obarrays and hash tables correctly.
6511
6512 2003-12-03 Kenichi Handa <handa@m17n.org>
6513
6514 * coding.c (decode_coding_iso2022): Fix for preserving UTF-8
6515 encoding sequence.
6516
6517 2003-12-01 Kenichi Handa <handa@m17n.org>
6518
6519 * composite.c (syms_of_composite): Don't make the compostion hash
6520 table week.
6521
6522 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
6523
6524 * intervals.h: Add EXFUN for Fget_char_property_and_overlay.
6525 * textprop.c (Fget_char_property_and_overlay): New function.
6526 (syms_of_textprop): Defsubr it.
6527
6528 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6529
6530 * dispnew.c (buffer_posn_from_coords): Add ifdef HAVE_WINDOW_SYSTEM
6531 to compile on terminal configuration.
6532
6533 * fileio.c (Fread_file_name): Check use_file_dialog also before
6534 calling Fx_file_dialog.
6535
6536 * fns.c: use_file_dialog: New variable.
6537 (syms_of_fns): DEFVAR_BOOL use-file-dialog.
6538
6539 2003-11-29 Kim F. Storm <storm@cua.dk>
6540
6541 * msdos.c (Qcursor_type, Qbar, Qhbar): Declare extern.
6542 (syms_of_msdos): Don't intern and staticpro them.
6543
6544 2003-11-27 Kim F. Storm <storm@cua.dk>
6545
6546 * dispnew.c (buffer_posn_from_coords): Calculate and return pixel
6547 coordinates relative to glyph at posn. If glyph is an image,
6548 return that as object at posn. Callers changed.
6549 (mode_line_string, marginal_area_string): Calculate and return
6550 pixel coordinates relative to glyph. Callers changed.
6551
6552 * dispextern.h (buffer_posn_from_coords, mode_line_string)
6553 (marginal_area_string): Fix prototypes.
6554 (window_box_left_offset, window_box_right_offset): Add prototypes.
6555
6556 * frame.h (get_specified_cursor_type, get_window_cursor_type):
6557 Remove prototypes.
6558
6559 * keyboard.h (EVENT_CLICK_COUNT, POSN_SCROLLBAR_PART): Fix defines.
6560
6561 * keyboard.c (make_lispy_position): Add x and y coordinates
6562 relative to the current glyph as 7th element of position.
6563 If glyph is an image, return it in the object element.
6564 (read_key_sequence): Skip checks for keymap property in cases
6565 where POSN_STRING is not a string (e.g. an image).
6566
6567 * xdisp.c (Vdisplay_pixels_per_inch): New variable.
6568 (Vshow_text_cursor_in_void): New variable.
6569 (glyph_to_pixel_coords): Don't use negative hpos.
6570 (x_y_to_hpos_vpos): Fix for partially visible first glyph.
6571 (append_stretch_glyph): Change ascent arg to be actual value
6572 in pixels rather than ratio to height. Callers changed.
6573 (calc_pixel_width_or_height): New aux function, implementing
6574 pixel based artihmetic for glyph widths and heights.
6575 (produce_stretch_glyph): Use calc_pixel_width_or_height for
6576 :width, :height, :align-to, and :ascent, thus allowing these to
6577 be specified in pixels as well as multiples of characters.
6578 Don't produce stretch glyphs with zero width or height.
6579 (get_specified_cursor_type): Declare static.
6580 (get_window_cursor_type): Declare static. Add glyph arg to be
6581 able to know when cursor is on an image; always substitute
6582 hollow-box cursor for filled-box cursor on images, to avoid
6583 negative images and flicker when blinking the cursor.
6584 (display_and_set_cursor): Pass glyph to get_window_cursor_type.
6585 (note_mode_line_or_margin_highlight): Use non-text cursor rather
6586 than vertical scroll-bar cursor in display margins.
6587 (note_mouse_highlight): Use non-text cursor rather than text
6588 cursor in fringes and over images in the text area.
6589 Use non-text cursor when mouse pointer is outside editable text,
6590 i.e. in the void after end-of-line or end-of-buffer; this was
6591 already done for W32, but is now standard for all systems --
6592 user can toggle show-text-cursor-in-void to get old behaviour.
6593 (syms_of_xdisp): DEFVAR_LISP Vshow_text_cursor_in_void and
6594 Vdisplay_pixels_per_inch.
6595
6596 2003-11-25 Andreas Schwab <schwab@suse.de>
6597
6598 * fns.c (internal_equal) <case Lisp_Vectorlike>: Declare size as
6599 EMACS_INT to not lose bits.
6600 (Ffillarray): Don't set bits beyond the size of a bool vector.
6601
6602 2003-11-25 Kim F. Storm <storm@cua.dk>
6603
6604 * print.c (Fredirect_debugging_output) [!GNU_LINUX]: Do not
6605 define this defun on systems that cannot use stderr as lvalue.
6606
6607 2003-11-24 Gerd Moellmann <gerd@gnu.org>
6608
6609 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS)
6610 [__FreeBSD_version >= 500042]: Define as -znocombreloc because
6611 ld's default is incompatible with unexec.
6612
6613 2003-11-23 Kim F. Storm <storm@cua.dk>
6614
6615 * window.c (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
6616 (window_loop): Handle REDISPLAY_BUFFER_WINDOWS.
6617 (Fforce_window_update): New defun.
6618 (syms_of_window): Defsubr it.
6619 (Fset_window_margins, Fset_window_fringes): Doc fix.
6620
6621 * print.c (Fredirect_debugging_output): New defun.
6622 (syms_of_print): Defsubr it.
6623
6624 2003-11-22 Luc Teirlinck <teirllm@auburn.edu>
6625
6626 * fns.c (Fset_char_table_parent): Doc fix.
6627
6628 2003-11-22 Kim F. Storm <storm@cua.dk>
6629
6630 * dispnew.c (buffer_posn_from_coords): Return actual row/column
6631 for glyph clicked on, rather than (unused) pixel positions.
6632 (mode_line_string, marginal_area_string): Change X and Y args to
6633 pointers for returning actual row/column for glyph clicked on.
6634 Simplify and optimize loops.
6635
6636 * dispextern.h (mode_line_string, marginal_area_string):
6637 Update prototypes.
6638
6639 * keyboard.c (make_lispy_position): New function for generating
6640 mouse click positions from frame and pixel coordinates.
6641 Enhanced to return buffer position and actual row/column for
6642 events outside the text area using updated mode_line_string and
6643 marginal_area_string functions.
6644 Return left-fringe and right-fringe clicks as such, rather than
6645 clicks in text area.
6646 (make_lispy_event) [USE_X_TOOLKIT, USE_GTK]: Don't call
6647 pixel_to_glyph_coords, as we never use the results.
6648 (make_lispy_event): Use make_lispy_position for MOUSE_CLICK_EVENT,
6649 WHEEL_EVENT, and DRAG_N_DROP_EVENT to replace redundant code.
6650 Eliminate unused code in WHEEL_EVENT handling.
6651 (make_lispy_movement): Use make_lispy_position.
6652
6653 * window.c (coordinates_in_window): Remove redundant tests.
6654 Fix returned X pixel value for left-margin.
6655
6656 * xdisp.c (note_mode_line_or_margin_highlight): Adapt to new
6657 mode_line_string and marginal_area_string parameters.
6658
6659 2003-11-22 Lars Hansen <larsh@math.ku.dk>
6660
6661 * w32.c (struct the_group, getgrgid): Add.
6662 * mac.c (struct my_group, getgrgid): Add.
6663
6664 2003-11-21 Luc Teirlinck <teirllm@auburn.edu>
6665
6666 * fns.c (Fassq, Fassoc, Frassq, Frassoc): Doc fixes.
6667
6668 2003-11-21 Lars Hansen <larsh@math.ku.dk>
6669
6670 * dired.c (Ffile_attributes): Add parameter ID-FORMAT and
6671 include in call to file name handler. Optionally translate numeric
6672 UID and GID to strings. Update docstring.
6673 (directory_files_internal): Add parameter ID-FORMAT.
6674 (Fdirectory_files_and_attributes): Add parameter ID-FORMAT and
6675 include in call to file name handler and call to
6676 directory_files_internal. Update Docstring.
6677 (Fdirectory_files): Add dummy parameter in call to
6678 directory_files_internal.
6679 * lisp.h (Qinteger): Add.
6680 (Qinteger_or_floatp, Qinteger_or_float_or_marker_p): Remove.
6681 (Ffile_attributes): Add parameter.
6682 * data.c (Qinteger): Export.
6683
6684 2003-11-21 Luc Teirlinck <teirllm@auburn.edu>
6685
6686 * fns.c (Freverse, Fnreverse): Doc fixes.
6687
6688 2003-11-19 Kim F. Storm <storm@cua.dk>
6689
6690 * xdisp.c (init_iterator): Initialize it->start to position
6691 before reseating (in case start position is invisible).
6692 (init_to_row_start): Set it->start to row-start.
6693 (redisplay_window): Accept optional_new_start if start position
6694 is invisible (in which case IT_CHARPOS overshoots PT).
6695 (display_line): Setup row->start from it->start (rather than
6696 it->current which is wrong if first char on line is invisible).
6697 When done, reseat it->start to it->current (= start of next row).
6698 (expose_area): Fix exposure of text area when first char (e.g. TAB)
6699 is only partially visible.
6700
6701 * dispextern.h (struct it): New member start.
6702
6703 2003-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
6704
6705 * alloc.c (make_float, Fcons): Clear the markbit at init time.
6706 (make_float, Fcons, Fmake_symbol, allocate_misc): Move the increment
6707 of block_index outside of the macro call.
6708 (Fgarbage_collect): Remove null code.
6709
6710 * m/amdx86-64.h: Don't redefine XPNTR.
6711
6712 * keyboard.c (parse_modifiers, apply_modifiers): Use INTMASK instead
6713 of VALMASK.
6714
6715 * fns.c (hashfn_eq, hashfn_eql, hashfn_equal, hash_put)
6716 (sxhash_string, sxhash): Use INTMASK instead of VALMASK.
6717 (maybe_resize_hash_table): Use MOST_POSITIVE_FIXNUM.
6718
6719 * lisp.h (VALMASK): Only define for non-union type.
6720 (MARKBIT): Remove.
6721 (ARRAY_MARK_FLAG): Use previous value of MARKBIT.
6722 (XTYPE): Define unconditionally.
6723 (XSETTYPE): Remove one more remnant.
6724 (EQ): Define differently for the union and non-union cases.
6725 (INTMASK): New bit mask.
6726 (struct Lisp_Marker): Move down to prepare for upcoming patch.
6727 (GC_EQ): Delegate to EQ.
6728
6729 * coding.c (coding_restore_composition): Lisp_Object/int mixup.
6730
6731 2003-11-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6732
6733 * xterm.c (x_window_to_scroll_bar): Move check of display to
6734 where window_id is compared.
6735
6736 2003-11-17 Kim F. Storm <storm@cua.dk>
6737
6738 * dispextern.h (struct it): New member first_vpos.
6739
6740 * xdisp.c (start_display): Set it->first_vpos.
6741 (try_window_id): Use first_vpos to start display in first _text_
6742 line if no reusable lines at start of window with header line.
6743
6744 2003-11-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6745
6746 * w32fns.c (XPutPixel):
6747 * w32bdf.c (w32_init_bdf_font):
6748 * sunfns.c (sel_read):
6749 * process.c (Fmake_network_process):
6750 * frame.c (store_frame_param):
6751 * fontset.c (Fset_fontset_font):
6752 * emacs.c (shut_down_emacs):
6753 * ccl.c (ccl_driver): Remove period at end of error message.
6754
6755 * config.in: Regenerate.
6756
6757 * xfns.c (x_window_to_frame, x_any_window_to_frame)
6758 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
6759 (x_top_window_to_frame): Add Display* argument to xg_win_to_widget.
6760 (x_create_bitmap_mask, xg_set_icon, create_frame_xic)
6761 (xic_set_statusarea, x_window, gif_load): Formatting adjustments.
6762
6763 * xterm.h (struct x_display_info): New field xg_cursor for GTK.
6764
6765 * xterm.c: Add Display * to x_window_to_scroll_bar declaration.
6766 (XTmouse_position, handle_one_xevent): Pass Display* to
6767 x_window_to_scroll_bar.
6768 (x_window_to_scroll_bar): Take a Display* argument.
6769 Check that display for frame is equal to Display* argument.
6770 (event_handler_gdk): Remove current_dpyinfo. Get dpyinfo from
6771 x_display_info_for_display instead. Use Display in xev instead
6772 of GDK_DISPLAY.
6773 (x_dispatch_event): Call x_display_info_for_display.
6774 (XTread_socket): Move GTK part out of loop. current_dpyinfo removed.
6775 (x_connection_closed): Call xg_display_close for GTK.
6776 (x_term_init): Call xg_display_open for additional displays.
6777 Initiate dpyinfo->xg_cursor with call to xg_create_default_cursor
6778 for GTK.
6779
6780 * xmenu.c (single_menu_item, mouse_position_for_popup)
6781 (x_activate_menubar): Formatting adjustments.
6782
6783 * xdisp.c (update_tool_bar, redisplay_tool_bar): Formatting
6784 adjustments.
6785
6786 * gtkutil.c (xg_get_gdk_display, xg_set_screen, xg_display_open)
6787 (xg_display_close, xg_create_default_cursor)
6788 (xg_get_gdk_pixmap_and_mask): New functions for multiple display
6789 handling.
6790 (xg_left_ptr_cursor): Remove.
6791 (xg_set_cursor): Change cursor to GdkCursor*. Do not create
6792 cursor here.
6793 (xg_win_to_widget): Take Display* argument, call
6794 gdk_xid_table_lookup_for_display.
6795 (xg_create_frame_widgets, xg_get_file_name, create_menus)
6796 (xg_create_widget, xg_modify_menubar_widgets): Call xg_set_screen.
6797 (xg_create_widget, xg_create_scroll_bar): Use xg_cursor
6798 in FRAME_X_DISPLAY_INFO.
6799 (xg_get_scroll_id_for_window): Take Display* argument.
6800 (update_frame_tool_bar): Call xg_get_gdk_pixmap_and_mask.
6801 (xg_initialize): Remove xg_left_ptr_cursor.
6802
6803 * gtkutil.h (xg_get_scroll_id_for_window, xg_win_to_widget): Add
6804 Display* argument.
6805 (xg_display_open, xg_display_close, xg_create_default_cursor): Declare.
6806
6807 2003-11-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6808
6809 * xterm.c (x_detect_focus_change): Do not change focus frame for
6810 Enter/LeaveNotify if the current focus frame has explicit focus.
6811
6812 2003-11-14 Kim F. Storm <storm@cua.dk>
6813
6814 * dispnew.c (update_text_area): Fix redisplay error when hscroll
6815 is active and first glyph is only partially visible.
6816
6817 2003-11-13 Kenichi Handa <handa@m17n.org>
6818
6819 * xdisp.c (select_frame_for_redisplay): New function.
6820 (redisplay_internal): Record also selected_frame for
6821 unwind_redisplay. Call select_frame_for_redisplay before
6822 redrawing each frame.
6823 (unwind_redisplay): Argument changed to a cons.
6824
6825 2003-11-12 Luc Teirlinck <teirllm@auburn.edu>
6826
6827 * fns.c (Fstring_to_multibyte): Doc fix.
6828
6829 2003-11-11 Kenichi Handa <handa@m17n.org>
6830
6831 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
6832
6833 2003-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6834
6835 * xfns.c (x_window): Set XtNx and XtNy in shell widget for
6836 program specified positions.
6837
6838 2003-11-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6839
6840 * xterm.c (XAW_ARROW_SCROLLBARS): Define it for Xaw 1.5E.
6841
6842 2003-11-08 Kenichi Handa <handa@m17n.org>
6843
6844 * Makefile.in (lisp): Add kannada.el.
6845 (shortlisp): Likewise.
6846
6847 2003-11-07 Kenichi Handa <handa@m17n.org>
6848
6849 * coding.c (coding_allocate_composition_data):
6850 Reset coding->composing to COMPOSITION_NO.
6851 (coding_restore_composition): Detect invalid composition data.
6852 Give Fstring and Fvector a Lispy integer, not C int.
6853
6854 2003-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
6855
6856 * floatfns.c (Flogb): Don't use VALMASK.
6857
6858 * m/amdx86-64.h (VALBITS, XINT, XUINT): Remove.
6859 * m/ia64.h (VALBITS, XINT, XUINT): Remove.
6860
6861 * lisp.h (XINT): Move the cast to clarify what is going on.
6862 (GCTYPEMASK, XSETTYPE): Remove.
6863 (XGCTYPE): Make it an alias of XTYPE.
6864
6865 2003-11-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6866
6867 * xterm.c (x_term_init): Fix formatting.
6868
6869 2003-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6870
6871 * gtkutil.h (xg_have_tear_offs): Declare.
6872 (xg_keep_popup, xg_did_tearoff): Remove.
6873
6874 * gtkutil.c: Remove variable xg_did_tearoff.
6875 (xg_have_tear_offs): New function.
6876 (tearoff_remove): Just decrease xg_detached_menus.
6877 (tearoff_activate): Increase xg_detached_menus and call
6878 tearoff_remove when tearoff is removed.
6879 (xg_keep_popup): Remove function.
6880 (create_menus): Give add_tearoff_p as argument to recursive
6881 call to create_menus.
6882 (xg_create_widget): Use variables instead of multiple
6883 strcmp. Tell create_menus to create tear off only for
6884 menu bar menus.
6885 (xg_update_menubar): Change title for a detached menu also.
6886 (xg_modify_menubar_widgets): Always call xg_update_menubar, regardless
6887 of deep_p.
6888 (xg_initialize): Initialize xg_detached_menus, remove
6889 initialization of xg_did_tearoff.
6890
6891 * xmenu.c (set_frame_menubar): For GTK, set deep_p if
6892 xg_have_tear_offs returns non-zero.
6893 (create_and_show_popup_menu): Remove setting of xg_did_tearoff and
6894 call to xg_keep_popup.
6895
6896 2003-11-01 Andrew Choi <akochoi@shaw.ca>
6897
6898 * macterm.c (XTread_socket): Handle menubar selection and grow
6899 window only for mouseDown events.
6900
6901 2003-10-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6902
6903 * xterm.c (x_term_init): For GTK part, increase x_initialized
6904 to check for more than one display. Use error instead of return 0.
6905
6906 2003-10-31 Andrew Choi <akochoi@shaw.ca>
6907
6908 * unexmacosx.c (unrelocate): New function (contributed by Nozomu Ando).
6909 (copy_dysymtab): Call it.
6910
6911 2003-10-31 Luc Teirlinck <teirllm@auburn.edu>
6912
6913 * eval.c (Fdefvaralias): Doc fix.
6914
6915 2003-10-26 Luc Teirlinck <teirllm@auburn.edu>
6916
6917 * data.c (Fsetplist): Doc fix.
6918
6919 2003-10-14 Lute Kamstra <lute@gnu.org>
6920
6921 * window.c (Fset_window_fringes): Clarify docstring.
6922
6923 2003-10-14 Kim F. Storm <storm@cua.dk>
6924
6925 * window.c (Fset_window_margins): Simplify arg checking.
6926
6927 2003-10-13 Richard M. Stallman <rms@gnu.org>
6928
6929 * regex.c (MAX_BUF_SIZE): Reduce to 2**15.
6930 (print_partial_compiled_pattern): Replace assert with a printout.
6931 (skip_noops, mutually_exclusive_p): Change args, values to re_char *.
6932
6933 * alloc.c (lisp_align_malloc): If BASE is 0, call memory_full.
6934
6935 * window.c (Fset_window_margins): Allow only integers as args.
6936 (syms_of_window) <special-display-buffer-names, special-display-regexps>:
6937 Doc fixes.
6938
6939 2003-10-13 Lute Kamstra <lute@gnu.org>
6940
6941 * window.c (Fset_window_fringes): Elaborate docstring.
6942
6943 2003-10-12 Andrew Choi <akochoi@shaw.ca>
6944
6945 * macterm.c (XTread_socket): Call DragWindow only for mouseDown events.
6946
6947 * s/darwin.h (GC_MARK_STACK): Define.
6948
6949 2003-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6950
6951 * window.c (shrink_windows): New function.
6952 (size_window): Call shrink_windows to calculate window sizes when
6953 shrinking frame with more than one window.
6954
6955 2003-10-12 Kim F. Storm <storm@cua.dk>
6956
6957 * xdisp.c (compute_fringe_widths): Doc fix.
6958
6959 2003-10-08 Kenichi Handa <handa@m17n.org>
6960
6961 * coding.c (Fcoding_system_p): Return t for auto-loading coding system.
6962
6963 2003-10-07 Kenichi Handa <handa@m17n.org>
6964
6965 * coding.c (Qcoding_system_define_form): New variable.
6966 (syms_of_coding): Intern and staticpro it.
6967 (Fcheck_coding_system): Try to autoload the definition of
6968 CODING-SYSTEM.
6969
6970 2003-10-05 Luc Teirlinck <teirllm@auburn.edu>
6971
6972 * fns.c (Frequire): Doc fix.
6973
6974 2003-10-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6975
6976 * xfns.c (Fx_send_client_event): New function as a base for
6977 manipulating extended window manager hints.
6978 (Fx_send_client_event): Remove unused variable s.
6979
6980 * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,
6981 that function is removed.
6982
6983 * xterm.c (x_set_offset): Use move_offset_left/top instead of
6984 x/y_pixels_outer_diff.
6985 (x_check_expected_move): Calculate move_offset_left/top.
6986
6987 * xterm.h (struct x_output): New members: move_offset_top/left.
6988
6989 * frame.c (x_set_frame_parameters): Remove x_fullscreen_move,
6990 call x_set_offset directly.
6991
6992 * frame.h (enum): FULLSCREEN_MOVE_WAIT removed.
6993
6994 * frame.c (Fdelete_frame): Free decode_mode_spec_buffer.
6995
6996 * xterm.c (x_delete_display): Free font names and font_encoder
6997 in dpyinfo->font_table.
6998
6999 * xfns.c (Fx_close_connection): Only call XFreeFont here.
7000 Move xfree of font names to x_delete_display.
7001
7002 * xterm.h (struct x_display_info): New member, wm_type.
7003 (struct x_output): New members, expected_top/left and
7004 check_expected_move.
7005
7006 * xterm.c (handle_one_xevent): Reset wm_type when ReparentNotify
7007 is received.
7008 (handle_one_xevent): Rename x_check_expected_move from
7009 x_check_fullscreen_move.
7010 (x_set_offset): Only add WM decoration sizes to modified_top/left
7011 for X_WMTYPE_A. Set check_expected_move when WM type is unknown.
7012 (x_check_expected_move): Rename from x_check_fullscreen_move.
7013 Removed fullscreen specific code. Use check_expected_move,
7014 expected_left/top instead. Also, set wm_type.
7015 (x_term_init): Initialize wm_type to unknown.
7016
7017 * frame.c (x_fullscreen_move): Remove addition of WM decoration
7018 sizes to move_x/y.
7019
7020 2003-10-03 Kenichi Handa <handa@m17n.org>
7021
7022 * macterm.c (x_load_font): Clear all members of FONTP before start
7023 filling them.
7024
7025 2003-10-02 Kenichi Handa <handa@m17n.org>
7026
7027 * fontset.c (fs_load_font): Don't set fontp->font_encoder to NULL
7028 before calling find_ccl_program_func. Call find_ccl_program_func
7029 only when fontp->font_encoder is not NULL.
7030
7031 * xterm.c (x_load_font): Clear all members of FONTP before start
7032 filling them.
7033
7034 2003-10-03 John Paul Wallington <jpw@gnu.org>
7035
7036 * keymap.c (map_keymap): Don't abort when binding is a vector.
7037
7038 2003-10-02 Jason Rumney <jasonr@gnu.org>
7039
7040 * makefile.w32-in (emacs.o, coding.o, bytecode.o):
7041 Sync dependencies with Makefile.in.
7042 (alloca.o): Remove.
7043
7044 * w32fns.c (w32_load_system_font): Clear all members of FONTP before
7045 filling them.
7046
7047 * w32bdf.c (w32_load_bdf_font): Likewise.
7048
7049 2003-09-30 Richard M. Stallman <rms@gnu.org>
7050
7051 * term.c (set_tty_color_mode): Calculate current_mode_spec
7052 regardless of value of VAL.
7053
7054 * intervals.c (graft_intervals_into_buffer):
7055 Set BUF_INTERVALS (buffer)->up_obj when appropriate.
7056 Handle over_used when splitting UNDER.
7057
7058 2003-09-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7059
7060 * regex.c (regex_compile): Free the stack when returning from function.
7061
7062 2003-09-28 Kenichi Handa <handa@m17n.org>
7063
7064 * fontset.c (Finternal_char_font): Change return value to
7065 cons (FONT-NAME . GLYPH-CODE).
7066
7067 2003-09-28 Eli Zaretskii <eliz@gnu.org>
7068
7069 * term.c (tty_setup_colors): Treat any negative argument as -1.
7070
7071 2003-09-27 Gaute B Strokkenes <biggaute@uwc.net> (tiny change)
7072
7073 * process.c (send_process): Delete unused temp_buf.
7074
7075 2003-09-26 Dave Love <fx@gnu.org>
7076
7077 * xterm.c (x_bitmap_mask): Declare.
7078
7079 2003-09-25 Dave Love <fx@gnu.org>
7080
7081 * Makefile.in (fns.o): Depend on md5.h.
7082
7083 2003-09-25 Kim F. Storm <storm@cua.dk>
7084
7085 * window.c (set_window_buffer): Fix redisplay problems when
7086 switching between buffers with different display margin widths.
7087
7088 2003-09-23 Kim F. Storm <storm@cua.dk>
7089
7090 * process.c (set_socket_option): Fix :bindtodevice option.
7091 (Fset_network_process_option): Update process contact list when
7092 setting option succeeds.
7093 (Fmake_network_process): Doc fix.
7094
7095 2003-09-23 Dave Love <fx@gnu.org>
7096
7097 * process.c (Fnetwork_interface_info): Use HAVE_STRUCT_IFREQ... macros.
7098
7099 2003-09-22 Eli Zaretskii <eliz@gnu.org>
7100
7101 * term.c (set_tty_color_mode): Use INTEGERP to test whether a
7102 color mode is an integer number (it could be -1).
7103
7104 2003-09-22 Richard M. Stallman <rms@gnu.org>
7105
7106 * intervals.c (graft_intervals_into_buffer): Correct the main loop
7107 in the case where OVER is longer than UNDER.
7108
7109 2003-09-22 Masatake YAMATO <jet@gyve.org>
7110
7111 * window.c (Fset_window_scroll_bars): Validate the value of
7112 `vertical_type'.
7113
7114 2003-09-21 Kim F. Storm <storm@cua.dk>
7115
7116 * frame.c (Vdefault_frame_scroll_bars): New variable.
7117 (x_set_vertical_scroll_bars): Use it instead of hardcoded values.
7118 (syms_of_frame): DEFVAR_LISP it, and initialize according to
7119 window-system default scroll bar position.
7120
7121 * window.c (Fwindow_scroll_bars): Doc fix.
7122
7123 2003-09-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7124
7125 * xterm.c (x_set_offset): Take window manager decorations into account.
7126
7127 2003-09-19 Richard M. Stallman <rms@gnu.org>
7128
7129 * atimer.h: Don't include lisp.h.
7130 (P_): Define it here (as well as elsewhere).
7131
7132 * print.c (Fprin1_to_string): Move the PRINTPREPARE
7133 later, so that PRINTFINISH won't unbind Qinhibit_modification_hooks.
7134
7135 * data.c (Fvariable_binding_locus): New function.
7136 (syms_of_data): defsubr it.
7137 (Flocal_variable_p): Delete duplicate call to indirect_variable.
7138
7139 2003-09-18 Dave Love <fx@gnu.org>
7140
7141 * alloc.c (GC_MALLOC_CHECK): Move conditional undef after lisp.h.
7142
7143 * process.c (Fnetwork_interface_info): Fix type error.
7144 (Fnetwork_interface_list): Doc fix.
7145 (read_process_output, read_process_output): Delete unused var.
7146
7147 2003-09-17 Kim F. Storm <storm@cua.dk>
7148
7149 * process.c (Fnetwork_interface_list, Fnetwork_interface_info):
7150 Require HAVE_NET_IF_H and HAVE_SYS_IOCTL_H to include these fns.
7151 (Fnetwork_interface_info): Check that ifreq struct has required
7152 fields before accessing them; this requires that those fields are
7153 defined as macros, which may be too restrictive on some platforms,
7154 but it is better than failing on other platforms.
7155 (syms_of_process): Only defsubr above fns when included.
7156
7157 2003-09-17 Dave Love <fx@gnu.org>
7158
7159 * unexalpha.c: Don't include varargs.h.
7160
7161 2003-09-17 Kim F. Storm <storm@cua.dk>
7162
7163 * process.c (Fset_process_sentinel): Add sentinel to childp plist
7164 for network process.
7165 (socket_options): Add `:' prefix to option names. Add optbit field.
7166 (set_socket_option): Remove no_error arg and special handling of s < 0.
7167 Return 1<<optbit for known option, 0 for unknown.
7168 Do not interpret 0 as false for boolean option (only nil).
7169 Pass failed option and value to report_file_error.
7170 (Fset_network_process_options): Replace by Fset_network_process_option.
7171 (Fset_network_process_option): New function to set just one option.
7172 (Fmake_network_process): Allow :coding arg to be a cons.
7173 Allow :server arg to be an integer specifying backlog size.
7174 Remove :options arg, and allow options to be specified directly
7175 as :KEY, VALUE pairs. Parse these options before binding socket.
7176 As before, :reuseaddr t is default for a server process, but this
7177 can now be disabled by specifying :reuseaddr nil.
7178 (Fnetwork_interface_info): Rename from Fget_network_interface_info.
7179 (init_process): Availability of network options is now checked with
7180 simpler syntax (featurep 'make-network-process :OPTION); use loop to
7181 setup features.
7182 (syms_of_process): Fix defsubr's for the replaced functions.
7183
7184 2003-09-16 Dave Love <fx@gnu.org>
7185
7186 * Makefile.in: Depend on coding.h.
7187
7188 2003-09-14 Kim F. Storm <storm@cua.dk>
7189
7190 * process.c [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
7191 (Fnetwork_interface_list, Fget_network_interface_info): New defuns.
7192 (syms_of_process): Defsubr them.
7193
7194 * config.in: Regenerate.
7195
7196 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
7197
7198 * m/sr2k.h (XMARKBIT, XUNMARK): Remove.
7199 * m/news-r6.h (XUNMARK): Remove.
7200 * m/mips.h (XUNMARK): Remove.
7201 * m/mips-siemens.h (XUNMARK): Remove.
7202 * m/iris4d.h (XUNMARK): Remove.
7203 * m/hp800.h (XMARKBIT, XUNMARK): Remove.
7204
7205 2003-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
7206
7207 * lisp.h (VALBITS): Don't remove 1 for the markbit.
7208 (union Lisp_Object): Use unsigned int for types. Remove markbit.
7209 (MARKBIT): Remove 1 from VALBITS so we still use same old val.
7210 (XTYPE): Use unsigned right-shift.
7211 (XMARKBIT, XMARK, XUNMARK): Remove.
7212
7213 * alloc.c (init_intervals, init_symbol, init_marker):
7214 Don't preallocate anything.
7215 (Fgarbage_collect, mark_object): Ignore the markbit.
7216
7217 * bytecode.c (mark_byte_stack, unmark_byte_stack): Ignore the markbit.
7218
7219 2003-09-08 Lute Kamstra <lute@gnu.org>
7220
7221 * xdisp.c (pint2hrstr): New function.
7222 (decode_mode_spec): Add `%i' and `%I' specs.
7223 * buffer.c (syms_of_buffer): Document `%i' and `%I' constructs
7224 for `mode-line-format'.
7225
7226 2003-09-07 Andreas Schwab <schwab@suse.de>
7227
7228 * alloc.c: Use long instead of int when casting ABLOCKS_BUSY to
7229 avoid warning.
7230
7231 2003-09-07 Eli Zaretskii <eliz@gnu.org>
7232
7233 * editfns.c (region_limit): Support any non-zero value of BEGINNINGP.
7234
7235 2003-09-03 Kim F. Storm <storm@cua.dk>
7236
7237 * xdisp.c (get_window_cursor_type): Partially undo 2002-03-01
7238 change (superseded by 2002-08-30 change); the default blink-off
7239 cursor is now again "no cursor".
7240
7241 2003-09-01 Jason Rumney <jasonr@gnu.org>
7242
7243 * makefile.w32-in (alloca.o): Remove.
7244 (coding.o): Depend on intervals.h
7245 (emacs.o, bytecode.o): Depend on window.h
7246
7247 2003-09-01 Dave Love <fx@gnu.org>
7248
7249 * Makefile.in (alloca.o): Remove commands.
7250 (coding.o): Depend on intervals.h composite.h window.h.
7251 (emacs.o): Depend on window.h keyboard.h keymap.h.
7252 (gtkutil.o): Depend on keyboard.h charset.h coding.h.
7253 (bytecode.o): Depend on window.h.
7254
7255 2003-08-31 Jason Rumney <jasonr@gnu.org>
7256
7257 * w32term.c (w32_per_char_metric): Allow cached metrics to be
7258 returned even when font_type is unknown.
7259
7260 * xdisp.c (init_iterator): Remove old WINDOWSNT conditional.
7261
7262 2003-08-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7263
7264 * xterm.c (x_term_init): Initialize new fields in x_display_info.
7265
7266 * xterm.h (struct x_display_info): Add red/green/blue_bits and
7267 *_offset.
7268
7269 * xfns.c (lookup_rgb_color): Use new fields in x_display_info to
7270 calculate pixel value.
7271
7272 2003-08-29 Gerd Moellmann <gerd.moellmann@t-online.de>
7273
7274 * xdisp.c (redisplay_internal): Fix change of 2003-04-30.
7275 Don't tell redisplay display is accurate when it's actually been
7276 paused for pending input.
7277
7278 2003-08-29 Richard M. Stallman <rms@gnu.org>
7279
7280 * dispnew.c (adjust_glyph_matrix): Call window_box
7281 whenever W is nonzero.
7282
7283 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
7284 (Fkill_local_variable, Fmake_variable_frame_local)
7285 (Flocal_variable_p, Flocal_variable_if_set_p):
7286 Use indirect_variable to trace thru variable aliases.
7287
7288 * config.in: Updated.
7289
7290 * callint.c (Fcall_interactively): Save and restore
7291 Vthis_command, Vthis_original_command, real_this_command,
7292 and current_kboard->Vlast_command.
7293
7294 * abbrev.c (Fexpand_abbrev): Insert before deleting.
7295
7296 2003-08-29 Gerd Moellmann <gerd@gnu.org>
7297
7298 * xfns.c (lookup_rgb_color): Handle TrueColor visuals specially.
7299
7300 2003-08-28 David Abrahams <dave@boost-consulting.com> (tiny change)
7301
7302 * coding.c (decode_coding_iso2022): Initialize local variable c2.
7303 (decode_coding_sjis_big5): Likewise.
7304
7305 2003-08-27 Jason Rumney <jasonr@gnu.org>
7306
7307 * w32.c (sys_pipe): Protect against file descriptor overflow.
7308
7309 * w32fns.c (syms_of_w32fns): Remove non-existent functions.
7310
7311 * w32term.c (w32_read_socket): Fix WM_MOUSEWHEEL assignment.
7312
7313 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
7314
7315 * xfns.c (Vgtk_version_string): New variable.
7316 (syms_of_xfns): DEFVAR_LISP it. Provide gtk.
7317
7318 2003-08-24 Eli Zaretskii <eliz@gnu.org>
7319
7320 * term.c (term_init): Remove `const' from buffer_size's declaration.
7321
7322 * Makefile.in (msdos.o): Depend on intervals.h.
7323
7324 * msdos.c: Include intervals.h, since STRING_INTERVALS requires that.
7325
7326 2003-08-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7327
7328 * xterm.h (struct x_display_info): New fields: client_leader_window
7329 and Xatom_wm_client_leader.
7330
7331 * xterm.c (x_initialize): Move call to x_session_initialize to ...
7332 (x_term_init): ... here. Initialize client_leader fields in dpyinfo.
7333
7334 * xsmfns.c (create_client_leader_window): New function.
7335 (x_session_initialize): Call create_client_leader_window, take
7336 dpyinfo as argument.
7337
7338 * xfns.c (Fx_create_frame): Set property WM_CLIENT_LEADER.
7339
7340 * Makefile.in (xsmfns.o): Add more depenedencies.
7341
7342 2003-08-21 Dave Love <fx@gnu.org>
7343
7344 * m/iris4d.h: Use _MIPS_SZLONG, not _LP64.
7345
7346 2003-08-21 Kenichi Handa <handa@m17n.org>
7347
7348 * term.c (term_init): Fix previous change; don't rely on the
7349 length of `buffer' if TERMINFO is defined.
7350
7351 2003-08-20 Dave Love <fx@gnu.org>
7352
7353 * atimer.h: Include lisp.h.
7354
7355 * lisp.h (EMACS_LISP_H): New.
7356 (popup_activated_flag): Don't declare.
7357
7358 * alloca.c: Some merging with gnulib. Change logic and doc
7359 concerning (x)malloc/(x)free -- no longer Emacs-specific.
7360 [DO_BLOCK_INPUT]: Don't include lisp.h.
7361 (xmalloc, xfree): Declare.
7362 (malloc): Don't declare.
7363
7364 * Makefile.in (LWLIB_OPTIONS): Remove (unused).
7365 (alloca.o): Remove obsolete stuff concerning alloca.s. Depend on
7366 atimer.h, blockinput.h.
7367
7368 * alloc.c (lisp_align_malloc): Change type of `aligned'.
7369
7370 * alloca.s: Remove.
7371
7372 2003-08-19 Gerd Moellmann <gerd@gnu.org>
7373
7374 * s/freebsd.h [__FreeBSD_version >= 400000]: Define TERMINFO,
7375 use -lncurses.
7376
7377 * term.c (term_init): Use a buffer of size 4096 for tgetent since
7378 FreeBSD returns something longer than 2044. Abort if the end of
7379 the buffer is overwritten.
7380
7381 2003-08-19 Miles Bader <miles@gnu.org>
7382
7383 * xterm.c (x_term_init): Correctly use result of Ffile_readable_p.
7384
7385 2003-08-19 Gerd Moellmann <gerd@gnu.org>
7386
7387 * alloc.c (lisp_align_malloc): Check for memory full when
7388 allocating ablocks, which also avoids freeing a pointer into an
7389 ablocks structure.
7390
7391 * puresize.h (BASE_PURESIZE): Increase to 1100000.
7392
7393 * buffer.c (Fmove_overlay): Set overlay's next pointer unconditionally.
7394
7395 2003-08-16 Richard M. Stallman <rms@gnu.org>
7396
7397 * editfns.c (Fencode_time): Doc fix.
7398
7399 2003-08-16 David Ponce <david@dponce.com>
7400
7401 * fileio.c (Fwrite_region): Fix conditional expression to issue
7402 the right message.
7403
7404 2003-08-16 Juri Linkov <juri@jurta.org>
7405
7406 * syntax.c (Fforward_word): Argument changed to optional.
7407 Set default value to 1.
7408
7409 2003-08-15 Kenichi Handa <handa@m17n.org>
7410
7411 * xfaces.c (better_font_p): Prefer a real scalable font; i.e. not
7412 what autoscaled.
7413 (best_matching_font): Once we find a better scalable font, set
7414 non_scalable_has_exact_height_p to 1.
7415 (try_font_list): Call try_alternative_families to try any family
7416 with the given registry.
7417
7418 2003-08-09 Andreas Schwab <schwab@suse.de>
7419
7420 * alloc.c (mark_object): Handle Lisp_Misc_Save_Value.
7421
7422 * print.c (print_string): Fix printing of multibyte string with
7423 nontrivial printcharfun.
7424
7425 2003-07-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7426
7427 * xfns.c (xg_set_icon): Rewrite to compile with GTK 2.0 and 2.2.
7428
7429 * xterm.c (x_bitmap_icon): Return if xg_set_icon succeeds.
7430
7431 2003-07-31 Kenichi Handa <handa@m17n.org>
7432
7433 * process.c (read_process_output): Return the actually read bytes
7434 instead of the result of decoding.
7435
7436 2003-07-31 Kenichi Handa <handa@m17n.org>
7437
7438 * xterm.h (struct x_bitmap_record): New member have_mask.
7439
7440 * xfns.c (x_create_bitmap_from_data): Initialize have_mask member
7441 to 0.
7442 (x_create_bitmap_from_file): Likewise.
7443 (x_destroy_bitmap): Check have_mask member before freeing a mask.
7444 (x_destroy_all_bitmaps): Likewise.
7445 (x_create_bitmap_mask): Set have_mask member to 1.
7446
7447 2003-07-30 Richard M. Stallman <rms@gnu.org>
7448
7449 * Makefile.in (CFLAGS) [!OPTIMIZE]: Undo previous change.
7450
7451 2003-07-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7452
7453 * gtkutil.c (xg_mark_data): Update calls to mark_object.
7454
7455 2003-07-29 Richard M. Stallman <rms@gnu.org>
7456
7457 * xterm.c (xim_open_dpy, xim_initialize, xim_close_dpy):
7458 Conditionalize XIM code on HAVE_XIM.
7459
7460 * fns.c (Fclear_string): New function.
7461 (syms_of_fns): defsubr it.
7462
7463 2003-07-28 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
7464
7465 * xfns.c (xic_set_preeditarea): Add the left fringe width to spot.x.
7466
7467 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
7468
7469 * xfns.c: Don't check HAVE_PNG_H: autoconf doesn't seem to find it.
7470
7471 * buffer.c (delete_all_overlays): New function.
7472 * buffer.h (delete_all_overlays): Declare.
7473 * coding.c (run_pre_post_conversion_on_str):
7474 * print.c (temp_output_buffer_setup):
7475 * fileio.c (Finsert_file_contents):
7476 * minibuf.c (get_minibuffer): Use it.
7477
7478 2003-07-22 Andrew Choi <akochoi@shaw.ca>
7479
7480 * unexmacosx.c (unexec_regions_sort_compare):
7481 (unexec_regions_merge): New functions. Sort and merge unexec
7482 regions before dumping them.
7483
7484 2003-07-22 Dave Love <fx@gnu.org>
7485
7486 * xfns.c [HAVE_PNG]: Consider both png.h and libpng/png.h.
7487
7488 2003-07-21 Stefan Monnier <monnier@cs.yale.edu>
7489
7490 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P)
7491 (GC_STRING_CHARS, string_bytes): Use ARRAY_MARK_FLAG rather than
7492 MARKBIT as the gcmarkbit for strings.
7493
7494 2003-07-21 Richard M. Stallman <rms@gnu.org>
7495
7496 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Add undef.
7497
7498 * fns.c (Flocale_info): Rename from Flanginfo. Doc fixes.
7499 (syms_of_fns): Corresponding change.
7500
7501 * alloc.c (syms_of_alloc): Doc fixes.
7502
7503 2003-07-20 Han Boetes <han@mijncomputer.nl> (tiny change)
7504
7505 * s/netbsd.h: Use -Wl syntax.
7506
7507 2003-07-17 Richard M. Stallman <rms@gnu.org>
7508
7509 * xterm.c (xim_initialize): Redo 6/24 change.
7510
7511 2003-07-15 Stefan Monnier <monnier@cs.yale.edu>
7512
7513 * buffer.c (copy_overlays): Use EMACS_INT for positions.
7514 (Fswitch_to_buffer): Don't signal an error when switching to the same
7515 buffer in a dedicated window.
7516
7517 * alloc.c: Use bitmaps for cons, as was done for floats.
7518 (init_float, init_cons): Let the normal code allocate the first block.
7519 (CONS_BLOCK_SIZE): Redefine based on BLOCK_BYTES and bitmap size.
7520 (CONS_BLOCK, CONS_INDEX, CONS_MARKED_P, CONS_MARK, CONS_UNMARK):
7521 New macros.
7522 (struct cons_block): Move conses to the beginning. Add gcmarkbits.
7523 (Fcons): Use lisp_align_malloc and CONS_UNMARK.
7524 (live_cons_p): Check the pointer is not past the `conses' array.
7525 (mark_maybe_object, mark_maybe_pointer): Use CONS_MARKED_P.
7526 (mark_object, mark_buffer): Use CONS_MARKED_P and CONS_MARK.
7527 (survives_gc_p): Use CONS_MARKED_P and simplify.
7528 (gc_sweep): Use CONS_MARKED_P, CONS_UNMARK, and lisp_align_free.
7529
7530 2003-07-13 Paul Eggert <eggert@twinsun.com>
7531
7532 GCC 3.3 (sparc) no longer puts "int foo = 0;" into data; it
7533 puts it into BSS instead, at least on Solaris 8 and 9.
7534 This is a valid optimization, and it may occur on other platforms,
7535 so Emacs should not assume that initializing a static variable to
7536 zero puts it into data.
7537 * alloc.c (pure, staticvec):
7538 Initialize these arrays to nonzero, so that they're not
7539 put into BSS by that optimization.
7540
7541 2003-07-13 Stefan Monnier <monnier@cs.yale.edu>
7542
7543 * alloc.c (BLOCK_PADDING): Rename from ABLOCKS_PADDING. Update users.
7544 (lisp_align_malloc): Use posix_memalign is available.
7545 (ABLOCKS_BASE): Use HAVE_POSIX_MEMALIGN as an optimization.
7546 (STRING_BLOCK_SIZE): Rename from STRINGS_IN_STRING_BLOCK
7547 for consistency. Update users.
7548
7549 2003-07-13 Richard M. Stallman <rms@gnu.org>
7550
7551 * s/netbsd.h (START_FILES_1, END_FILES_1): Always define them.
7552
7553 2003-07-13 Terje Rosten <terjeros@phys.ntnu.no>
7554
7555 * xterm.c (x_bitmap_icon,x_wm_set_icon_pixmap): Modify to add mask,
7556 and use the Gtk+ function gtk_window_icon_from_file if available.
7557
7558 * xfns.c (x_bitmap_mask, x_create_bitmap_mask): New functions to
7559 handle mask of bitmaps.
7560 (x_allocate_bitmap_record, x_destroy_bitmap): Modify to handle the
7561 mask property.
7562 (xg_set_icon): New function, wrapper for gtk_window_icon_from_file.
7563
7564 * xterm.h (xg_set_icon): New function.
7565
7566 2003-07-12 Paul Eggert <eggert@twinsun.com>
7567
7568 * unexelf.c (unexec): Consider a section to precede the .bss
7569 section if its addresses overlap that of .bss.
7570
7571 2003-07-12 Richard M. Stallman <rms@gnu.org>
7572
7573 * Makefile.in (CFLAGS) [!OPTIMIZE]: Set CFLAGS to -g.
7574
7575 * config.in (HAVE_CRTIN): Add #undef.
7576 (INLINE): Really inline only if OPTIMIZE is defined.
7577
7578 * s/netbsd.h (START_FILES, LIB_STANDARD): Use START_FILES_1,
7579 END_FILES_1.
7580 (START_FILES_1, END_FILES_1): New macros (conditional).
7581 (LD_SWITCH_SYSTEM_TEMACS): Define.
7582
7583 * s/openbsd.h: Don't include bsd4-3.h.
7584 (TERMINFO): Define.
7585 (LIBS_TERMCAP): Define.
7586 (LD_SWITCH_SYSTEM): Define (two definitions).
7587
7588 * xfns.c: Include libpng/png.h instead of png.h.
7589
7590 2003-07-11 Andreas Schwab <schwab@suse.de>
7591
7592 * buffer.c (modify_overlay): Update prototype.
7593 * lisp.h (adjust_overlays_for_insert, adjust_overlays_for_delete):
7594 Likewise.
7595
7596 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
7597
7598 * lisp.h (VALBITS): Define in terms of GCTYPEBITS.
7599 (struct interval): Move to intervals.h.
7600 (struct Lisp_Marker): Use EMACS_INT for position info.
7601 (forward_point): Remove prototype of defunct function.
7602 (Qmodification_hooks, Qrear_nonsticky, Fnext_property_change)
7603 (Fget_text_property, Fset_text_properties, Ftext_propertes_not_all)
7604 (syms_of_textprop, set_text_properties): Remove prototypes that are
7605 already in intervals.h.
7606
7607 * intervals.h (struct interval): Move from lisp.h.
7608 Use EMACS_INT for position and size info.
7609
7610 * coding.c: Include intervals.h for Fset_text_properties.
7611
7612 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
7613 position and length information.
7614
7615 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
7616
7617 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
7618 position and length information.
7619
7620 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
7621
7622 Change overlays_after and overlays_before so the overlays themselves
7623 are linked into lists, rather than using cons cells. After all each
7624 Lisp_Misc already occupies 5 words, so we can add a `next' field to
7625 Lisp_Overlay for free and save up one cons cell per overlay (not
7626 to mention one indirection when traversing the list of overlay).
7627
7628 * lisp.h (struct Lisp_Overlay): New field `next'.
7629
7630 * buffer.h (struct buffer): Change overlays_before and overlays_after
7631 from Lisp lists of overlays to pointers to overlays.
7632
7633 * buffer.c (overlay_strings, recenter_overlay_lists):
7634 Fix typo in eassert in last commit.
7635 (unchain_overlay): New function.
7636 (add_overlay_mod_hooklist): Use AREF.
7637 (copy_overlays, reset_buffer, overlays_at, overlays_in)
7638 (overlay_touches_p, overlay_strings, recenter_overlay_lists)
7639 (fix_overlays_in_range, fix_overlays_before, Fmake_overlay)
7640 (Fmove_overlay, Fdelete_overlay, Foverlay_lists)
7641 (report_overlay_modification, evaporate_overlays, init_buffer_once):
7642 Adjust to new type of overlays_(before|after).
7643
7644 * alloc.c (mark_object): Mark the new `next' field of overlays.
7645 (mark_buffer): Manually mark the overlays_(after|before) fields.
7646
7647 * coding.c (run_pre_post_conversion_on_str):
7648 * editfns.c (overlays_around):
7649 * xdisp.c (load_overlay_strings):
7650 * fileio.c (Finsert_file_contents):
7651 * indent.c (current_column):
7652 * insdel.c (signal_before_change, signal_after_change):
7653 * intervals.c (set_point_both):
7654 * print.c (temp_output_buffer_setup): Use new type for
7655 overlays_(before|after).
7656
7657 2003-07-08 Stefan Monnier <monnier@cs.yale.edu>
7658
7659 * buffer.c (report_overlay_modification): Don't run hooks while
7660 traversing the list of overlays.
7661
7662 * buffer.h (struct buffer): Use an int for overlay_center.
7663 (overlays_at, evaporate_overlays, recenter_overlay_lists)
7664 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
7665
7666 * buffer.c (reset_buffer, recenter_overlay_lists)
7667 (adjust_overlays_for_insert, adjust_overlays_for_delete)
7668 (fix_overlays_in_range, Fmake_overlay, Fmove_overlay)
7669 (evaporate_overlays, init_buffer_once): Update use of overlay_center.
7670 (overlays_at, evaporate_overlays, recenter_overlay_lists)
7671 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
7672
7673 * xdisp.c (fast_find_position): Remove unused var.
7674
7675 * cmds.c (Qexpand_abbrev): New sym.
7676 (syms_of_cmds): Initialize it.
7677 (internal_self_insert): Use it to call expand-abbrev.
7678
7679 2003-07-09 Kim F. Storm <storm@cua.dk>
7680
7681 * xterm.c (use_xim) [!USE_XIM]: Default to disable XIM if Emacs
7682 was configured with --without-xim.
7683 (x_term_init) [!USE_XIM]: Use `useXIM' resource to turn on XIM.
7684
7685 2003-07-07 Richard M. Stallman <rms@gnu.org>
7686
7687 * xdisp.c (reseat_1): Set it->area to TEXT_AREA.
7688
7689 * alloc.c (Fgarbage_collect): Doc fix.
7690
7691 2003-07-07 Nozomu Ando <nand@mac.com>
7692
7693 * buffer.c (Fkill_buffer): Clear charpos cache if necessary.
7694
7695 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
7696
7697 * minibuf.c (read_minibuf): UNGCPRO before returning.
7698 (Ftry_completion, Fall_completions): Doc fix.
7699
7700 * alloc.c (live_float_p): Check that p is not past the `floats' array,
7701 now that `floats' is not the last element of the struct any more.
7702
7703 2003-07-06 Jason Rumney <jasonr@gnu.org>
7704
7705 * w32term.h (ClipboardSequence_Proc): New type.
7706
7707 * w32fns.c (clipboard_sequence_fn): New variable.
7708 (globals_of_w32fns): Initialize it.
7709
7710 * w32select.c (last_clipboard_sequence_number): New variable.
7711 (Fw32_set_clipboard_data, Fw32_get_clipboard_data): Use sequence
7712 number if possible.
7713
7714 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
7715
7716 * m/amdx86-64.h (MARKBIT):
7717 * m/ia64.h (MARKBIT): Remove definition since lisp.h does not compare
7718 MARKBIT and ARRAY_MARK_FLAG any more.
7719
7720 * m/hp800.h (XSETMARKBIT):
7721 * m/sr2k.h (XSETMARKBIT):
7722 * lisp.h (XSETMARKBIT): Remove unused macro.
7723
7724 * lisp.h (mark_object): Change prototype.
7725
7726 * alloc.c (mark_object): Change arg *Lisp_Object -> Lisp_Object.
7727 (last_marked): Change accordingly.
7728 (mark_interval, mark_maybe_object, mark_maybe_pointer)
7729 (Fgarbage_collect, mark_glyph_matrix, mark_face_cache, mark_image)
7730 (mark_buffer): Update calls to mark_object.
7731
7732 * bytecode.c (mark_byte_stack):
7733 * fns.c (sweep_weak_table):
7734 * keyboard.c (mark_kboards): Update calls to mark_object.
7735
7736 2003-07-06 Jason Rumney <jasonr@gnu.org>
7737
7738 * alloc.c (struct ablock): Only include padding when there is some.
7739
7740 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
7741
7742 * alloc.c (ALIGN): Add casts to simplify usage.
7743 (BLOCK_ALIGN, BLOCK_BYTES, ABLOCKS_PADDING, ABLOCKS_SIZE)
7744 (ABLOCKS_BYTES, ABLOCK_ABASE, ABLOCKS_BUSY, ABLOCKS_BASE): New macros.
7745 (struct ablock, struct ablocks): New types.
7746 (free_ablock): New global var.
7747 (lisp_align_malloc, lisp_align_free): New functions.
7748 (FLOAT_BLOCK_SIZE): Redefine in terms of BLOCK_BYTES.
7749 (struct float_block): Reorder and add gcmarkbits.
7750 (GETMARKBIT, SETMARKBIT, UNSETMARKBIT, FLOAT_BLOCK, FLOAT_INDEX)
7751 (FLOAT_MARKED_P, FLOAT_MARK, FLOAT_UNMARK): New macros.
7752 (init_float, make_float): Use lisp_align_malloc.
7753 (free_float, live_float_p): Don't use `type' any more.
7754 (make_float): Use FLOAT_UNMARK to access to mark bit.
7755 (mark_maybe_object, mark_maybe_pointer, survives_gc_p):
7756 Use FLOAT_MARKED_P to access the mark bit.
7757 (pure_alloc): Simplify use of ALIGN.
7758 (mark_object): Use FLOAT_MARK to access the mark bit.
7759 (gc_sweep): Use new macros to access the float's mark bit.
7760 (init_alloc_once): Init free_ablock.
7761
7762 * lisp.h (struct Lisp_Float): Remove unused field `type'.
7763
7764 2003-06-27 Stefan Monnier <monnier@cs.yale.edu>
7765
7766 * alloc.c (VECTOR_MARK, VECTOR_UNMARK, VECTOR_MARKED_P): New macros.
7767 (GC_STRING_BYTES): Don't mask markbit (it's only used on `size').
7768 (allocate_buffer): Move.
7769 (string_bytes): Don't mask markbit of `size_byte'.
7770 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
7771 (mark_object, mark_buffer, survives_gc_p, gc_sweep):
7772 Use the `size' field of buffers (rather than the `name' field) for
7773 the mark bit, as is done for all other vectorlike objects.
7774 Use the new macros to access the mark bit of vectorlike objects.
7775
7776 2003-06-26 Richard M. Stallman <rms@gnu.org>
7777
7778 * puresize.h (BASE_PURESIZE): Increment base size.
7779
7780 * xdisp.c (fast_find_position): Enable Gerd's new definition.
7781
7782 * xterm.c (xim_initialize): Undo previous change.
7783
7784 2003-06-26 Stefan Monnier <monnier@cs.yale.edu>
7785
7786 * alloc.c (survives_gc_p): Simplify.
7787
7788 * buffer.c (set_buffer_internal_1): Test CONSP for lists.
7789
7790 * window.c (Fset_window_dedicated_p): Simplify.
7791 (display_buffer_1): Don't raise the win from which minibuf was entered.
7792 (temp_output_buffer_show): Don't assume BEG == 1. Simplify.
7793 (Fminibuffer_selected_window): Simplify.
7794
7795 * buffer.h (struct buffer_text): Lisp_Object `markers' => Lisp_Marker.
7796
7797 * lisp.h (unchain_marker): Lisp_Object arg => Lisp_Marker.
7798 (struct Lisp_Marker): Lisp_Object `chain' => Lisp_Marker `next'.
7799
7800 * insdel.c (check_markers, adjust_markers_for_delete)
7801 (adjust_markers_for_insert, adjust_markers_for_replace)
7802 (prepare_to_modify_buffer, RESTORE_VALUE):
7803 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos)
7804 (Fset_marker, set_marker_restricted, set_marker_both, unchain_marker)
7805 (set_marker_restricted_both, Fbuffer_has_markers_at, count_markers):
7806 * alloc.c (Fmake_marker, free_marker, gc_sweep):
7807 * buffer.c (Fget_buffer_create, Fkill_buffer, Fset_buffer_multibyte):
7808 * editfns.c (save_excursion_restore, transpose_markers):
7809 * window.c (delete_window):
7810 * xdisp.c (message_dolog): Update for new types.
7811
7812 2003-06-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7813
7814 * xfaces.c (set_font_frame_param): Set default_face_done_p to zero.
7815 (realize_default_face): Use default_face_done_p for the force_p
7816 argument to set_lface_from_font_name. Set default_face_done_p to one.
7817
7818 * frame.c (make_frame): Initialize default_face_done_p.
7819
7820 * frame.h (struct frame): Add default_face_done_p.
7821
7822 * config.in: Add XRegisterIMInstantiateCallback_arg6 so it
7823 will be defined.
7824
7825 2003-06-25 Stefan Monnier <monnier@cs.yale.edu>
7826
7827 * alloc.c (make_interval, Fmake_symbol, allocate_misc):
7828 Initialize the new field `gcmarkbit'.
7829 (mark_interval, MARK_INTERVAL_TREE): Use the new `gcmarkbit' field.
7830 (mark_interval_tree): Don't mark the tree separately from the nodes.
7831 (UNMARK_BALANCE_INTERVALS): Don't unmark the tree.
7832 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
7833 (mark_object, survives_gc_p, gc_sweep): Use new `gcmarkbit' fields.
7834
7835 * lisp.h (struct interval, struct Lisp_Symbol, struct Lisp_Free)
7836 (struct Lisp_Marker, struct Lisp_Intfwd, struct Lisp_Boolfwd)
7837 (struct Lisp_Kboard_Objfwd, struct Lisp_Save_Value)
7838 (struct Lisp_Buffer_Local_Value, struct Lisp_Overlay)
7839 (struct Lisp_Objfwd, struct Lisp_Buffer_Objfwd): Add `gcmarkbit' field.
7840
7841 2003-06-24 Dave Love <fx@gnu.org>
7842
7843 * xterm.c (xim_initialize): Use XRegisterIMInstantiateCallback_arg6.
7844
7845 * strftime.c: Test HAVE_SYS__MBSTATE_H, not __hpux. Merge changes
7846 from gnulib.
7847
7848 2003-06-21 Richard M. Stallman <rms@gnu.org>
7849
7850 * fileio.c (Fwrite_region): Alternate messages
7851 for append and partial write.
7852
7853 * keyboard.c (read_key_sequence): When converting upcase fn key to
7854 downcase, update fkey and keytran so `backspace' gets translated.
7855
7856 * keyboard.c (read_avail_input): Don't signal SIGHUP in batch mode.
7857
7858 * process.c (wait_reading_process_input): Don't signal SIGIO
7859 in batch mode.
7860
7861 2003-06-17 Kenichi Handa <handa@m17n.org>
7862
7863 * Makefile.in (xselect.o): Don't depend on charset.h, coding.h,
7864 composite.h.
7865
7866 * xselect.c: Don't include charset.h, coding.h, composite.h.
7867 (Qforeign_selection): New variable.
7868 (syms_of_xselect): Intern and static it.
7869 (selection_data_to_lisp_data): Return a unibyte string made from
7870 data with `foreign-selection' text property.
7871
7872 2003-06-15 Stefan Monnier <monnier@cs.yale.edu>
7873
7874 * termhooks.h (EVENT_INIT): New macro.
7875
7876 * keyboard.c (mark_kboards): Move from alloc.c. Mark kbd_buffer.
7877
7878 * alloc.c (mark_kboards): Move to keyboard.c.
7879
7880 * keyboard.c (record_asynch_buffer_change, read_avail_input):
7881 * xterm.c (x_dispatch_event):
7882 * xmenu.c (find_and_call_menu_selection):
7883 * xdisp.c (handle_tool_bar_click):
7884 * w32menu.c (menubar_selection_callback):
7885 * sysdep.c (kbd_input_ast, read_input_waiting):
7886 * msdos.c (dos_rawgetc):
7887 * macterm.c (mac_check_for_quit_char):
7888 * macmenu.c (menubar_selection_callback):
7889 * gtkutil.c (xg_tool_bar_callback): Don't pass uninitialized
7890 data to kbd_buffer_store_event.
7891
7892 2003-06-15 Kim F. Storm <storm@cua.dk>
7893
7894 * xdisp.c (x_fix_overlapping_area): Always use area relative X
7895 to fix redisplay problem with tall characters (such as \e,AC\e(B).
7896
7897 2003-06-13 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
7898
7899 * fileio.c (Fcopy_file): Doc fix: copies file modes, too.
7900
7901 2003-06-12 Kenichi Handa <handa@m17n.org>
7902
7903 * fileio.c (Fwrite_region): Save and restore restriction.
7904
7905 2003-06-12 Dave Love <fx@gnu.org>
7906
7907 * alloca.c (alloca): Declare arg as size_t.
7908
7909 * sysdep.c: Remove redundant include of unistd.h, stdlib.h.
7910 Use HAVE_DECL_SYS_SIGLIST, not SYS_SIGLIST_DECLARED.
7911
7912 2003-06-11 Dave Love <fx@gnu.org>
7913
7914 * search.c (shrink_regexp_cache): Use xrealloc.
7915 (syms_of_search): Use xmalloc.
7916
7917 2003-06-10 Kim F. Storm <storm@cua.dk>
7918
7919 * xdisp.c (phys_cursor_in_rect_p): Fix 2003-05-24 change.
7920 Adjust phys_cursor.x to be relative to window box, rather than
7921 text area before checking -- to ensure cursor is redrawn when
7922 exposing window.
7923 Note: This also fixes a similar (older) bug if display margins
7924 are present.
7925
7926 2003-06-06 Kenichi Handa <handa@m17n.org>
7927
7928 * coding.c (encoding_buffer_size): If coding->type is
7929 coding_type_ccl, double magnification on CRLF encoding.
7930
7931 2003-06-06 Jason Rumney <jasonr@gnu.org>
7932
7933 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): New constant.
7934 (w32_get_string_resource): Try SYSTEM_DEFAULT_RESOURCES last.
7935
7936 * xfaces.c (Finternal_face_x_get_resource): Do it on Windows and
7937 Mac too.
7938
7939 2003-06-05 Dave Love <fx@gnu.org>
7940
7941 * strftime.c: Merge changes from gnulib.
7942
7943 * mktime.c (__mktime_internal): Merge changes from gnulib
7944 involving year 69 and dst2.
7945
7946 Changes to merge with gnulib version and be consistent with the
7947 autoconf test:
7948
7949 * getloadavg.c: Set NLIST_STRUCT from HAVE_NLIST_H.
7950 Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not NLIST_NAME_UNION.
7951 [HAVE_LOCALE_H]: Include locale.h.
7952 (getloadavg) [HAVE_SETLOCALE]: Run sscanf in C locale.
7953
7954 2003-06-05 Kim F. Storm <storm@cua.dk>
7955
7956 * window.c (coordinates_in_window): Convert X and Y to window
7957 relative coordinates inside mode-line and header-line parts.
7958 Convert X and Y to margin area relative coordinates inside left
7959 and right display margin parts.
7960
7961 2003-06-05 Jason Rumney <jasonr@gnu.org>
7962
7963 * w32fns.c (add_system_logical_colors_to_map): New function.
7964 (Fx_open_connection): Use it.
7965
7966 2003-06-04 Stefan Monnier <monnier@cs.yale.edu>
7967
7968 * process.c (allocate_pty): Revert part of the previous patch.
7969 (Faccept_process_output): Simplify.
7970
7971 2003-06-04 Jason Rumney <jasonr@gnu.org>
7972
7973 * termhooks.h (enum event_kind): Remove MOUSE_WHEEL_EVENT.
7974
7975 * keyboard.c (Qmouse_wheel, mouse_wheel_syms)
7976 (lispy_mouse_wheel_names): Remove.
7977 (syms_of_keyboard): Remove Qmouse_wheel and mouse_wheel_syms.
7978 Always define drag_and_drop_syms.
7979
7980 * macterm.c (XTread_socket): Map mouse wheel events to Emacs
7981 WHEEL_EVENT events.
7982
7983 2003-06-03 Stefan Monnier <monnier@cs.yale.edu>
7984
7985 * xdisp.c (update_tool_bar): Add missing UNGCPRO.
7986
7987 * buffer.c (init_buffer_once): Make kill-buffer-hook permanent-local.
7988
7989 2003-06-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7990
7991 * gtkutil.c (make_menu_item): Make sure we don't crash on a NULL
7992 menu item label.
7993
7994 2003-06-03 Richard M. Stallman <rms@gnu.org>
7995
7996 * window.c (Fwindow_edges): Doc fix.
7997 (Fwindow_pixel_edges, Fwindow_inside_edges)
7998 (Fwindow_inside_pixel_edges): New functions.
7999 (syms_of_window): defsubr them.
8000
8001 * window.h (WINDOW_LEFT_FRINGE_COLS, WINDOW_RIGHT_FRINGE_COLS)
8002 (WINDOW_MODE_LINE_LINES, WINDOW_HEADER_LINE_LINES): New macros.
8003
8004 2003-06-02 Stefan Monnier <monnier@cs.yale.edu>
8005
8006 * dispnew.c (Fsit_for): Don't lie about the number of args.
8007
8008 2003-06-02 Dave Love <fx@gnu.org>
8009
8010 * callproc.c: Use HAVE_FCNTL_H, not USG5.
8011 (syms_of_callproc) <process-environment>: Doc fix.
8012
8013 * doc.c: Use HAVE_FCNTL_H, not USG5.
8014
8015 * xfaces.c (font_rescale_ratio): Fix for K&R.
8016
8017 * termcap.c: Use HAVE_FCNTL_H, not _POSIX_VERSION.
8018
8019 * mem-limits.h: Use HAVE_SYS_RESOURCE_H, HAVE_SYS_VLIMIT_H.
8020
8021 * lread.c [HAVE_FCNTL_H]: Include fcntl.h.
8022
8023 * gtkutil.c: Include keyboard.h, charset.h, coding.h.
8024 (xg_create_frame_widgets): Use ENCODE_UTF_8.
8025
8026 * xterm.c (Qutf_8): Move to coding.c
8027
8028 * xmenu.c (ENCODE_MENU_STRING): New.
8029 (list_of_panes, list_of_items, digest_single_submenu, xmenu_show):
8030 Use it.
8031
8032 * coding.h (ENCODE_UTF_8): New.
8033 (Qutf_8): Declare.
8034
8035 * coding.c (Qutf_8): New.
8036 (syms_of_coding): Intern it.
8037
8038 * fns.c: Doc fixes.
8039
8040 2003-06-02 Kenichi Handa <handa@m17n.org>
8041
8042 * buffer.c (Fset_buffer_multibyte): Fix previous change.
8043
8044 2003-06-01 Stefan Monnier <monnier@cs.yale.edu>
8045
8046 * lread.c (openp): Make sure STR is a string.
8047
8048 2003-06-01 David Ponce <david@dponce.com>
8049
8050 * termhooks.h (enum event_kind): Add new WHEEL_EVENT event.
8051 Declare MOUSE_WHEEL_EVENT only if MAC_OSX defined.
8052
8053 * keyboard.c (Qmouse_wheel): Declare only if MAC_OSX defined.
8054 (mouse_wheel_syms, lispy_mouse_wheel_names): Likewise.
8055 (discard_mouse_events): Discard WHEEL_EVENT events too.
8056 (lispy_wheel_names, wheel_syms): New.
8057 (syms_of_keyboard): Init and staticpro `wheel_syms'. Init and
8058 staticpro `Qmouse_wheel' and `mouse_wheel_syms' only if MAC_OSX defined.
8059 (make_lispy_event): Add WHEEL_EVENT handler.
8060
8061 * w32term.c (construct_mouse_wheel): Construct WHEEL_EVENT.
8062 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
8063 WHEEL_EVENT events.
8064
8065 2003-05-31 John Paul Wallington <jpw@gnu.org>
8066
8067 * Makefile.in (lisp, shortlisp): byte-run, float-sup, map-ynp, and
8068 timer are in lisp/emacs-lisp.
8069
8070 2003-05-31 Kenichi Handa <handa@m17n.org>
8071
8072 * buffer.c (Fset_buffer_multibyte): Correctly recover a narrowed
8073 region when a buffer is changed to unibyte.
8074
8075 * charset.h (VALID_LEADING_CODE_P): New macro.
8076 (UNIBYTE_STR_AS_MULTIBYTE_P): Check more rigidly.
8077
8078 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): If coding->flags
8079 is nonzero, accept multibyte form of eight-bit-control chars.
8080 (decode_composition_emacs_mule): Likewise.
8081 (decode_coding_emacs_mule): Likewise.
8082 (encode_coding_emacs_mule): If coding->flags is nonzero, produce
8083 multibyte form of eight-bit-control chars.
8084
8085 * fileio.c (Qauto_save_coding, auto_save_coding): New variables.
8086 (Finsert_file_contents): If coding-system-for-read is bound to
8087 Qauto_save_coding, use the coding system emacs-mule with special
8088 setting for recovering a file.
8089 (choose_write_coding_system): On auto saving, use the coding
8090 system emacs-mule with special setting for auto saving.
8091 (syms_of_fileio) <Qauto_save_coding>: Intern and staticpro it.
8092
8093 2003-05-30 Kenichi Handa <handa@m17n.org>
8094
8095 * coding.c (ccl_coding_driver): Set ccl->eight_bit_control
8096 properly before calling ccl_driver.
8097
8098 * ccl.h (struct ccl_program) <eight_bit_control>: Comment fixed.
8099
8100 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when it is nonzero.
8101 (ccl_driver): Initialize extra_bytes to ccl->eight_bit_control.
8102 (setup_ccl_program): Initialize ccl->eight_bit_control to zero.
8103
8104 2003-05-29 Glenn Morris <gmorris@ast.cam.ac.uk>
8105
8106 * xfaces.c (realize_default_face): Do not abort if lface is
8107 non-existent - reverts change from 2003-05-19.
8108
8109 2003-05-29 Kenichi Handa <handa@m17n.org>
8110
8111 * coding.c (decode_coding_iso2022): Pay attention to the byte
8112 sequence of CTEXT extended segment, and retain those bytes as is.
8113
8114 2003-05-28 Kenichi Handa <handa@m17n.org>
8115
8116 * coding.c (ENCODE_UNSAFE_CHARACTER): Adjust for the name change
8117 of CODING_REPLACEMENT_CHARACTER.
8118 (decode_coding_iso2022): If CODING_FLAG_ISO_SAFE, set
8119 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in coding->mode, and
8120 check this flag on encoding.
8121 (encode_coding_sjis_big5):
8122 Check CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag of coding->mode.
8123 (Fset_terminal_coding_system_internal):
8124 Set CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in terminal_coding.mode
8125 instead of setting CODING_FLAG_ISO_SAFE flag in terminal_coding.flags.
8126
8127 * coding.h (CODING_REPLACEMENT_CHARACTER): Rename from
8128 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
8129 (CODING_MODE_INHIBIT_UNENCODABLE_CHAR): New macro.
8130
8131 2003-05-28 Richard M. Stallman <rms@gnu.org>
8132
8133 * print.c (syms_of_print) <print-escape-nonascii>: Doc fix.
8134
8135 * eval.c (unbind_to): Move init of this_binding to separate statement.
8136
8137 2003-05-28 Kim F. Storm <storm@cua.dk>
8138
8139 * xdisp.c (expose_window): Fix error in calculation of
8140 window relative coordinates of area to redisplay.
8141
8142 2003-05-27 Jason Rumney <jasonr@gnu.org>
8143
8144 * w32term.c (GET_WHEEL_DELTA_WPARAM): New macro.
8145
8146 2003-05-27 David Ponce <david@dponce.com>
8147
8148 Handle W32 mouse wheel events as mouse click events, like in X.
8149
8150 * keyboard.c (make_lispy_event) [WINDOWSNT]: Don't handle
8151 MOUSE_WHEEL_EVENT anymore.
8152
8153 * w32term.c (construct_mouse_wheel): Result is a MOUSE_CLICK_EVENT.
8154 Scrolling down/up the mouse wheel is respectively mapped to mouse
8155 button 4 and 5.
8156 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
8157 MOUSE_CLICK_EVENT events. Forward w32 MSH_MOUSEWHEEL events as
8158 WM_MOUSEWHEEL events.
8159
8160 2003-05-27 Andreas Schwab <schwab@suse.de>
8161
8162 * buffer.c (syms_of_buffer) <default-direction-reversed>: Doc fix.
8163
8164 * xdisp.c (try_window_id): Avoid aborting if PT is inside a
8165 partially visible line.
8166
8167 * alloc.c (Fgarbage_collect): Fix last change.
8168
8169 2003-05-26 John Paul Wallington <jpw@gnu.org>
8170
8171 * xfns.c (Fx_create_frame): Don't call Qface_set_after_frame_default.
8172
8173 2003-05-25 Stefan Monnier <monnier@cs.yale.edu>
8174
8175 * window.c (Fset_window_buffer): Add type of `keep_margins'.
8176 (Fset_window_fringes, Fset_window_scroll_bars): Declare before use.
8177
8178 * window.h (window_box_text_cols): Declare.
8179
8180 * xdisp.c (window_text_bottom_y, draw_row_fringe_bitmaps)
8181 (x_draw_vertical_border): Remove unused var `f'.
8182
8183 * xfaces.c (build_scalable_font_name): Remove `unused var
8184 pixel_size' warning.
8185
8186 * xfns.c (png_load): Remove `unused vars intent, image_gamma' warning.
8187
8188 * unexelf.c (unexec): Remove `unused var n' warning.
8189
8190 * strftime.c (my_strftime_localtime_r): Remove `defined but
8191 unused' warning.
8192
8193 * process.c (allocate_pty): Remove `unused var stb' and
8194 `cp might be used uninitialized' warnings.
8195
8196 * dispnew.c (mode_line_string): Remove unused var `f'.
8197
8198 * coding.c (find_safe_codings): Remove unused var `i'.
8199
8200 * bytecode.c (Fbyte_code): Remove `unused val' warning.
8201
8202 * buffer.c (Fkill_buffer): Remove unused var `list'.
8203
8204 * alloc.c (Fgarbage_collect): Remove `unused var tail' warning.
8205
8206 2003-05-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8207
8208 * frame.c (make_frame): Condition want_fullscreen with
8209 HAVE_WINDOW_SYSTEM.
8210
8211 2003-05-25 Juanma Barranquero <lektu@terra.es>
8212
8213 * window.c (Fset_window_scroll_bars): Fix typo in argument name.
8214 (Fwindow_scroll_bars): Fix typo in docstring.
8215
8216 2003-05-24 Kim F. Storm <storm@cua.dk>
8217
8218 The following changes serve several purposes:
8219
8220 1) Swap the position of fringes and display margins in windows, i.e.
8221 the fringes are now displayed between the margins and the text area
8222 (by default).
8223
8224 2) Allow fringe and scroll bar parameters to be set per-buffer and
8225 per-window (like display margins). Such settings are now stored
8226 in window configurations, preserved when frames are resized, and
8227 copied when windows are split vertically or horizontally.
8228 Several bugs related to display margins have been fixed.
8229
8230 3) Consistently use FRAME_FONT and FRAME_FONTSET macros.
8231
8232 4) Use FRAME_COLUMN_WIDTH (f) consistently throughout the code
8233 rather than FRAME_WIDTH (FRAME_FONT (f)).
8234
8235 5) Introduce a consistent naming of variables, members and macros
8236 depending on whether their value is measured in pixels or in
8237 canonical columns/lines. Pixel dimensions are named *_width and
8238 *_height, while canonical columns/lines are named *_cols and
8239 *_lines. Pixel positions are named *_x and *_y, while column/line
8240 positions are named *_col and *_line.
8241
8242 6) Consolidate more of the X, W32, and MAC gui code by moving
8243 common data into struct frame, and generalize it for the non-gui
8244 case by using suitable defaults.
8245
8246 7) Cleanup and consolidate the macros controlling frame and window
8247 layout into frame.h and window.h, and generalize the use of the
8248 various window_box_* functions (enhanced to handle the new fringe
8249 position and the per-window fringe and scroll bar settings).
8250
8251 * frame.h (struct frame): Rename members height to text_lines,
8252 width to text_cols, window_height to total_lines, window_width to
8253 total_cols, new_height to new_text_lines, new_width to
8254 new_text_cols. All uses changed.
8255 (struct frame): New members which consolidate common members of
8256 x_output, w32_output, and mac_output structures: left_pos,
8257 top_pos, pixel_height, pixel_width, x_pixels_diff, y_pixels_diff,
8258 win_gravity, size_hint_flags, border_width, internal_border_width,
8259 line_height, fringe_cols, left_fringe_width, right_fringe_width,
8260 want_fullscreen. All uses changed.
8261 (struct frame): New member column_width contaning the canonical
8262 column width, analogue to line_height. All uses changed.
8263 (struct frame): Rename members scroll_bar_pixel_width to
8264 config_scroll_bar_width, and scroll_bar_cols to
8265 config_scroll_bar_cols. All uses changed.
8266 (struct frame): New member scroll_bar_actual_width which
8267 consolidates and renames the vertical_scroll_bar_extra member of
8268 x_output, w32_output, and mac_output structures. All uses changed.
8269 (FRAME_PIXEL_HEIGHT): Rename from PIXEL_HEIGHT and moved
8270 from x/w32/macterm.h files. All uses changed. Also change code
8271 which referred to f->output_data...->pixel_height.
8272 (FRAME_PIXEL_WIDTH): Rename from PIXEL_WIDTH and moved
8273 from x/w32/macterm.h files. All uses changed. Also change code
8274 which referred to f->output_data...->pixel_width.
8275 (FRAME_LINES): Rename from FRAME_HEIGHT. All uses changed.
8276 Also change code which referred to f->height.
8277 (FRAME_COLS): Rename from FRAME_WIDTH. All uses changed.
8278 Also change code which referred to f->width.
8279 (FRAME_NEW_HEIGHT, FRAME_NEW_WIDTH): Remove macros; change uses
8280 to update new_text_lines and new_text_cols members directly.
8281 (FRAME_CONFIG_SCROLL_BAR_WIDTH): Rename from
8282 FRAME_SCROLL_BAR_PIXEL_WIDTH. All uses changed.
8283 (FRAME_CONFIG_SCROLL_BAR_COLS): Rename from
8284 FRAME_SCROLL_BAR_COLS. All uses changed.
8285 (FRAME_LEFT_SCROLL_BAR_COLS, FRAME_RIGHT_SCROLL_BAR_COLS):
8286 Rename from FRAME_LEFT_SCROLL_BAR_WIDTH and
8287 FRAME_RIGHT_SCROLL_BAR_WIDTH, resp. All uses changed.
8288 (FRAME_SCROLL_BAR_AREA_WIDTH, FRAME_LEFT_SCROLL_BAR_AREA_WIDTH)
8289 (FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH): New macros.
8290 (FRAME_TOTAL_COLS): Rename from FRAME_WINDOW_WIDTH.
8291 (SET_FRAME_COLS): Rename from SET_FRAME_WIDTH.
8292 (FRAME_TOTAL_COLS_ARG): Rename from FRAME_WINDOW_WIDTH_ARG.
8293 (WINDOW_VERTICAL_SCROLL_BAR_COLUMN): Remove unused macro.
8294 (WINDOW_VERTICAL_SCROLL_BAR_HEIGHT): Remove unused macro.
8295 (FRAME_LINE_HEIGHT): Rename from CANON_Y_UNIT.
8296 Unconditionally return line_height member (it now has proper value
8297 also for non-window frames).
8298 (FRAME_COLUMN_WIDTH): Rename from CANON_X_UNIT. Unconditionally
8299 return new column_width member (rather than the default font width).
8300 (FRAME_FRINGE_COLS, FRAME_LEFT_FRINGE_WIDTH)
8301 (FRAME_RIGHT_FRINGE_WIDTH): Rename from FRAME_X_... and moved
8302 from x/w32/macterm.h files. Unconditionally return corresponding
8303 member of frame structure (they now have proper values also for
8304 non-window frames).
8305 (FRAME_TOTAL_FRINGE_WIDTH): Rename from FRAME_FRINGE_WIDTH.
8306 Calculate return value from left and right widths.
8307 (FRAME_INTERNAL_BORDER_WIDTH): Unconditionally return
8308 internal_border_width member (has proper value for non-window frame).
8309 (FRAME_PIXEL_X_FROM_CANON_X): Rename from PIXEL_X_FROM_CANON_X.
8310 (FRAME_PIXEL_Y_FROM_CANON_Y): Rename from PIXEL_Y_FROM_CANON_Y.
8311 (FRAME_CANON_X_FROM_PIXEL_X): Rename from CANON_X_FROM_PIXEL_X.
8312 (FRAME_CANON_Y_FROM_PIXEL_Y): Rename from CANON_Y_FROM_PIXEL_Y.
8313 (FRAME_LINE_TO_PIXEL_Y): Rename from CHAR_TO_PIXEL_ROW,
8314 consolidated from xterm.h, macterm.h, and w32term.h.
8315 (FRAME_COL_TO_PIXEL_X): Rename from CHAR_TO_PIXEL_COL,
8316 consolidated from xterm.h, macterm.h, and w32term.h.
8317 (FRAME_TEXT_COLS_TO_PIXEL_WIDTH): Rename from
8318 CHAR_TO_PIXEL_WIDTH consolidated from x/mac/w32term.h.
8319 (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Rename from
8320 CHAR_TO_PIXEL_HEIGHT consolidated from x/mac/w32term.h.
8321 (FRAME_PIXEL_Y_TO_LINE): Rename from PIXEL_TO_CHAR_ROW
8322 consolidated from x/mac/w32term.h.
8323 (FRAME_PIXEL_X_TO_COL): Rename from PIXEL_TO_CHAR_COL
8324 consolidated from x/mac/w32term.h.
8325 (FRAME_PIXEL_WIDTH_TO_TEXT_COLS): Rename from
8326 PIXEL_TO_CHAR_WIDTH consolidated from x/mac/w32term.h.
8327 (FRAME_PIXEL_HEIGHT_TO_TEXT_LINES): Rename from
8328 PIXEL_TO_CHAR_HEIGHT consolidated from x/mac/w32term.h.
8329
8330 * window.h (struct window): Rename members left to left_col,
8331 top to top_line, height to total_lines, width to total_cols,
8332 left_margin_width to left_margin_cols, right_margin_width to
8333 right_margin_cols, orig_height to orig_total_lines, orig_top to
8334 orig_top_line. All uses changed.
8335 (struct window): New members left_fringe_width, right_fringe_width,
8336 fringes_outside_margins, scroll_bar_width, vertical_scroll_bar_type.
8337 (WINDOW_XFRAME, WINDOW_FRAME_COLUMN_WIDTH, WINDOW_FRAME_LINE_HEIGHT):
8338 New macros primarily used to simplify other macros.
8339 (WINDOW_TOTAL_COLS): New macro. Change relevant code that
8340 referred to XINT (w->width).
8341 (WINDOW_TOTAL_LINES): New macro. Change relevant code that
8342 referred to XINT (w->height).
8343 (WINDOW_TOTAL_WIDTH): New macro. Change relevant code that
8344 referred to XINT (w->width) * canon_x_unit.
8345 (WINDOW_TOTAL_HEIGHT): New macro. Change relevant code that
8346 referred to XINT (w->height) * canon_y_unit.
8347 (WINDOW_LEFT_EDGE_COL): New macro. Change relevant code that
8348 referred to XINT (w->left).
8349 (WINDOW_RIGHT_EDGE_COL): Rename from WINDOW_RIGHT_EDGE. Change
8350 all uses and code that referred to XINT (w->left) + XINT (w->width).
8351 (WINDOW_TOP_EDGE_LINE): New macro. Change relevant code that
8352 referred to XINT (w->top).
8353 (WINDOW_BOTTOM_EDGE_LINE): New macro. Change relevant code that
8354 referred to XINT (w->top) + XINT (w->height).
8355 (WINDOW_LEFT_EDGE_X): New macro. Change relevant code that
8356 referred to XINT (w->left) * canon_x_unit.
8357 (WINDOW_RIGHT_EDGE_X): New macro. Change relevant code that
8358 referred to (XINT (w->left) + XINT (w->width)) * canon_x_unit.
8359 (WINDOW_TOP_EDGE_Y): New macro. Change relevant code that
8360 referred to XINT (w->top) * canon_y_unit.
8361 (WINDOW_BOTTOM_EDGE_Y): New macro. Change relevant code that
8362 referred to (XINT (w->top) + XINT (w->height)) * canon_y_unit.
8363 (WINDOW_LEFTMOST_P): New macro.
8364 (WINDOW_BOX_LEFT_EDGE_COL): Rename from WINDOW_LEFT_MARGIN.
8365 All uses changed.
8366 (WINDOW_BOX_RIGHT_EDGE_COL): Rename from WINDOW_RIGHT_MARGIN.
8367 All uses changed.
8368 (WINDOW_BOX_LEFT_EDGE_X): Rename from
8369 WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, moved from dispextern.h.
8370 Do not exclude left fringe width.
8371 (WINDOW_BOX_RIGHT_EDGE_X): Rename from
8372 WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X, moved from dispextern.h.
8373 Do not exclude fringe widths.
8374 (WINDOW_LEFT_FRINGE_WIDTH, WINDOW_RIGHT_FRINGE_WIDTH)
8375 (WINDOW_FRINGE_COLS, WINDOW_TOTAL_FRINGE_WIDTH): New macros.
8376 Change relevant code that referred to FRAME_LEFT_FRINGE_WIDTH,
8377 FRAME_RIGHT_FRINGE_WIDTH, FRAME_FRINGE_COLS, and
8378 FRAME_TOTAL_FRINGE_WIDTH to allow per-window fringe settings.
8379 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS): New macro.
8380 (WINDOW_VERTICAL_SCROLL_BAR_TYPE, WINDOW_HAS_VERTICAL_SCROLL_BAR)
8381 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT)
8382 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT)
8383 (WINDOW_CONFIG_SCROLL_BAR_WIDTH, WINDOW_CONFIG_SCROLL_BAR_COLS):
8384 New macros. Change code which referenced corresponding
8385 FRAME_VERTICAL_SCROLL_BAR_TYPE, FRAME_HAS_VERTICAL_SCROLL_BARS,
8386 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT,
8387 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT,
8388 FRAME_SCROLL_BAR_PIXEL_WIDTH, and FRAME_SCROLL_BAR_COLS macros to
8389 allow per-window scroll-bar settings.
8390 (WINDOW_LEFT_SCROLL_BAR_COLS, WINDOW_RIGHT_SCROLL_BAR_COLS): New macros.
8391 (WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH): New macro. Change code that
8392 referred to FRAME_LEFT_SCROLL_BAR_WIDTH.
8393 (WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH): New macro. Change code
8394 that referred to FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT and
8395 FRAME_SCROLL_BAR_WIDTH.
8396 (WINDOW_SCROLL_BAR_COLS, WINDOW_SCROLL_BAR_AREA_WIDTH)
8397 (WINDOW_SCROLL_BAR_AREA_X): New macros.
8398 (WINDOW_HEADER_LINE_HEIGHT): Rename from
8399 WINDOW_DISPLAY_HEADER_LINE_HEIGHT, moved from dispextern.h.
8400 (WINDOW_BOX_HEIGHT_NO_MODE_LINE): Rename from
8401 WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, moved from dispextern.h.
8402 (WINDOW_BOX_TEXT_HEIGHT): Rename from
8403 WINDOW_DISPLAY_PIXEL_WIDTH, moved from dispextern.h.
8404 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
8405 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
8406 (WINDOW_TEXT_TO_FRAME_PIXEL_X): Move here from dispextern.h.
8407 (WINDOW_LEFT_MARGIN_WIDTH): Rename from
8408 WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH, moved from dispextern.h.
8409 (WINDOW_RIGHT_MARGIN_WIDTH): Rename from
8410 WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, moved from dispextern.h.
8411 (window_from_coordinates): Update prototype.
8412 (Fset_window_buffer): Update EXFUN.
8413 (set_window_buffer): Update prototype.
8414
8415 * dispextern.h (struct glyph_matrix): Rename members window_left_x
8416 to window_left_col, window_top_y to window_top_line. All uses
8417 changed.
8418 (FRAME_INTERNAL_BORDER_WIDTH_SAFE): Remove macro; can now safely
8419 use FRAME_INTERNAL_BORDER_WIDTH macro instead as
8420 internal_border_width is now set to 0 for non-window frames.
8421 (WINDOW_DISPLAY_PIXEL_WIDTH, WINDOW_DISPLAY_PIXEL_HEIGHT)
8422 (WINDOW_DISPLAY_MODE_LINE_HEIGHT, WINDOW_DISPLAY_HEADER_LINE_HEIGHT)
8423 (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, WINDOW_DISPLAY_TEXT_HEIGHT)
8424 (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X)
8425 (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y, WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y)
8426 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
8427 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
8428 (WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH)
8429 (WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, WINDOW_WANTS_MODELINE_P):
8430 Move to window.h and renamed [see window.h changes].
8431 (WINDOW_AREA_TO_FRAME_PIXEL_X, WINDOW_AREA_PIXEL_WIDTH)
8432 (WINDOW_DISPLAY_TEXT_AREA_PIXEL_WIDTH): Remove macros.
8433 (WINDOW_WANTS_MODELINE_P, WINDOW_WANTS_HEADER_LINE_P):
8434 Use WINDOW_TOTAL_LINES.
8435 (frame_update_line_height): Remove prototype.
8436
8437 * buffer.h (struct buffer): Rename members measured in columns:
8438 left_margin_width to left_margin_cols, right_margin_width to
8439 right_margin_cols. All uses changed.
8440 New members left_fringe_width, right_fringe_width,
8441 fringes_outside_margins for per-buffer fringe settings.
8442 New members scroll_bar_width and vertical_scroll_bar_type for
8443 per-buffer scroll bar settings.
8444
8445 * buffer.c (init_buffer_once): Set buffer_defaults and
8446 buffer_local_flags for new buffer-local variables
8447 left_fringe_width, right_fringe_width, fringes_outside_margins,
8448 scroll_bar_width, and vertical_scroll_bar_type.
8449 (syms_of_buffer): Defvar_per_buffer them, and defvar_lisp_nopro
8450 default-* variables for them.
8451
8452 * dispnew.c: Make (many) trivial substitutions for renamed and
8453 new macros in dispextern.h, frame.h and window.h.
8454 (mode_line_string): No need to adjust width for mode lines, as it
8455 is already adjusted by the caller.
8456 (marginal_area_string): Handle fringes inside/outside margins.
8457
8458 * frame.c: Make (many) trivial substitutions for renamed and
8459 new macros in dispextern.h, frame.h and window.h.
8460 (make_frame): Initialize left_fringe_width, right_fringe_width,
8461 fringe_cols, scroll_bar_actual_width, border_width,
8462 internal_border_width, column_width, line_height, x_pixels_diff,
8463 y_pixels_diff, want_fullscreen, size_hint_flags, and win_gravity
8464 members with values suitable for a non-window frames.
8465
8466 * gtkutil.c: Make (many) trivial substitutions for renamed and
8467 new macros in dispextern.h, frame.h and window.h.
8468
8469 * indent.c: Make (few) trivial substitutions for renamed and
8470 new macros in dispextern.h, frame.h and window.h.
8471
8472 * keyboard.c: Make (many) trivial substitutions for renamed and
8473 new macros in dispextern.h, frame.h and window.h.
8474 (make_lispy_event): Use window positions returned from
8475 window_from_coordinates when constructing the lisp event for
8476 MOUSE_CLICK_EVENT and DRAG_N_DROP_EVENT, rather than calculating
8477 (incorrect) values locally.
8478 (make_lispy_movement): Use window positions returned from
8479 window_from_coordinates when constructing the lisp event, rather
8480 than calculating (incorrect) values locally.
8481
8482 * scroll.c: Make (some) trivial substitutions for renamed and
8483 new macros in dispextern.h, frame.h and window.h.
8484
8485 * sunfns.c (Fsun_menu_internal): Adapt to per-window fringes and
8486 scroll-bars.
8487
8488 * sysdep.c: Make (few) trivial substitutions for renamed and
8489 new macros in dispextern.h, frame.h and window.h.
8490
8491 * term.c: Make (some) trivial substitutions for renamed and
8492 new macros in dispextern.h, frame.h and window.h.
8493
8494 * widget.c: Make (few) trivial substitutions for renamed and
8495 new macros in dispextern.h, frame.h and window.h.
8496
8497 * window.c: Make (many) trivial substitutions for renamed and
8498 new macros in dispextern.h, frame.h and window.h.
8499 (make_window): Initialize new members
8500 left_margin_cols, right_margin_cols, left_fringe_width,
8501 right_fringe_width, fringes_outside_margins, scroll_bar_width,
8502 and vertical_scroll_bar_type.
8503 (coordinates_in_window): Adapt to new fringe/margin positions
8504 and per-window fringes and scroll-bars.
8505 Fix bug related to incorrectly adjusting coordinates by
8506 frame's internal_border_width (the effect normally negible since
8507 the internal_border_width is typically 0 or 1 pixel, but very
8508 noticeable for an internal_border_width of e.g. 25 pixels).
8509 Upon successful return (other than ON_NOTHING), the coordinates
8510 are now always properly converted to window relative for the
8511 given display element.
8512 (window_from_coordinates): Add new parameters wx and wy to
8513 return the window relative x and y position in the returned
8514 window and part. A null arg means, don't return the position.
8515 All callers changed.
8516 (adjust_window_margins): New function which may reduce the width
8517 of the display margins if a window's text area is too small after
8518 resizing or splitting windows.
8519 (size_window): Fix bug that did not account for display margin
8520 widths when checking the minimum width of a window; use
8521 adjust_window_margins.
8522 (set_window_buffer): Call Fset_window_fringes and
8523 Fset_window_scroll_bars to setup per-window elements.
8524 Add new arg KEEP_MARGINS_P. Non-nil means to keep window's
8525 existing display margin, fringe widths, and scroll bar settings
8526 (e.g. after splitting a window or resizing the frame).
8527 All callers changed.
8528 (Fset_window_buffer): New arg KEEP_MARGINS. All callers changed.
8529 (Fsplit_window): Duplicate original window's display margin,
8530 fringe, and scroll-bar settings; then call Fset_window_buffer with
8531 KEEP_MARGINS non-nil. This fixes a bug which caused a split
8532 window to only preserve the display margins in one of the windows.
8533 When splitting horizontally, call adjust_window_margins on both
8534 windows to ensure that the text area of the new windows is non too
8535 narrow. This fixes a bug which could cause Emacs to trap if the
8536 width of the split window was less than the width of the display
8537 margins.
8538 (window_box_text_cols): Rename from window_internal_width.
8539 All uses changed. Adapt to per-window fringes and scroll bars.
8540 Fix bug that caused vertical separator to be subtracted also on
8541 window frames. Fix another bug that did not reduce the returned
8542 value by the columns used for display margins.
8543 (window_scroll_line_based): Fix bug related to scrolling too much
8544 when display margins are present (implicitly fixed by the fix to
8545 window_box_text_cols).
8546 (scroll_left, scroll_right): Fix bug related to scrolling too far
8547 by default when display margins are present (implicitly fixed by
8548 the fix to window_box_text_cols).
8549 (struct saved_window): Rename members left to left_col, top to
8550 top_line, width to total_cols, height to total_lines, orig_top to
8551 orig_top_line, orig_height to orig_total_lines. All uses changed.
8552 New members left_margin_cols, right_margin_cols,
8553 left_fringe_width, right_fringe_width, fringes_outside_margins,
8554 scroll_bar_width, and vertical_scroll_bar_type for saving
8555 per-window display elements.
8556 (Fset_window_configuration): Restore display margins, fringes,
8557 and scroll bar settings. This fixes a bug which caused display
8558 margins to be discarded when saving and restoring a window
8559 configuration.
8560 (save_window_save): Save display margins, fringes, and scroll bar
8561 settings. This fixes a bug which caused display margins to be
8562 discarded when saving and restoring a window configuration.
8563 (Fset_window_margins): Do nothing if display margins are not
8564 really changed. Otherwise, call adjust_window_margins to ensure
8565 the text area doesn't get too narrow. This fixes a bug which
8566 could cause Emacs to trap if setting display margins wider than
8567 the width of the window.
8568 (Fset_window_fringes): New defun to allow user to specifically set
8569 this window's fringe widths and position vs. display margins.
8570 (Fwindow_fringes): New defun to return window's actual fringe settings.
8571 (Fset_window_scroll_bars): New defun to allow user to specifically
8572 set this window's scroll bar width and position.
8573 (Fwindow_scroll_bars): New defun to return window's actual scroll
8574 bar settings.
8575 (compare_window_configurations): Also compare display margins,
8576 fringes, and scroll bar settings.
8577 (syms_of_window): Defsubr new defuns for fringe and scroll bars.
8578
8579 * xdisp.c: Make (many) trivial substitutions for renamed and
8580 new macros in dispextern.h, frame.h and window.h.
8581 (window_box_width): Adapt to per-window fringes and scroll bars,
8582 and new fringe vs. display margin position. Note that returned
8583 value is no longer guaranteed to be a whole multiple of the frame
8584 column width, since per-window fringes may now be any width.
8585 (window_box_left_offset): New function like window_box_left, but
8586 value is relative to left border of window (rather than frame).
8587 (window_box_right_offset): New function like window_box_right,
8588 but value is relative to left border of window.
8589 (window_box_left): Adapt to per-window fringes and scroll bars,
8590 and new fringe vs. display margin position. Simplify by using
8591 WINDOW_LEFT_EDGE_X and window_box_left_offset.
8592 (window_box): Allow null args for unnecessary return values;
8593 change/simplify relevant callers.
8594 (x_y_to_hpos_vpos): Adapt to per-window fringes and scroll bars,
8595 and new fringe vs. display margin position.
8596 Use window_box_left_offset and window_box_right_offset
8597 (get_glyph_string_clip_rect): Adapt to per-window fringes and
8598 scroll bars, and new fringe vs. display margin position.
8599 Use WINDOW_LEFT_EDGE_X and WINDOW_TOTAL_WIDTH.
8600 (draw_fringe_bitmap): Rework to handle per-window fringes and new
8601 fringe vs. display margin position.
8602 (hscroll_window_tree): Use window_box_width instead of window_box.
8603 (redisplay_window): Adapt to per-window scroll bars.
8604 (draw_glyphs): Rework to handle per-window fringes and scroll
8605 bars, and new fringe vs. display margin position.
8606 Use WINDOW_LEFT_EDGE_X, WINDOW_TOTAL_WIDTH, and window_box_left.
8607 (x_clear_end_of_line): Adapt to per-window fringes and scroll
8608 bars, and new fringe vs. display margin position. Fix bug which
8609 increased total width of full_width rows by width of scroll bars
8610 although window's total width already includes that.
8611 (x_fix_overlapping_area): Simplify using window_box_left_offset.
8612 (expose_area): Simplify using window_box_left_offset.
8613 (x_draw_vertical_border): Handle per-window scroll bar settings,
8614 mixing windows with left, right and no scroll bars.
8615
8616 * xfaces.c [WINDOWSNT]: Move redefinition of FONT_WIDTH macro to
8617 where it's used in x_list_fonts (for clarity).
8618 (frame_update_line_height): Remove unused function; functionality
8619 is now done directly when setting the default font in x_set_font.
8620
8621 * xfns.c: Make (many) trivial substitutions for renamed and
8622 new macros in dispextern.h, frame.h and window.h.
8623
8624 * xmenu.c: Make (some) trivial substitutions for renamed and
8625 new macros in dispextern.h, frame.h and window.h.
8626
8627 * xterm.h (struct x_output): Move members left_pos, top_pos,
8628 border_width, pixel_height, pixel_width, line_height,
8629 internal_border_width, vertical_scroll_bar_extra,
8630 left_fringe_width, right_fringe_width, fringe_cols,
8631 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
8632 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
8633 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
8634 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
8635 (PIXEL_WIDTH, PIXEL_HEIGHT)
8636 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
8637 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Move to
8638 frame.h and renamed [see frame.h changes].
8639 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
8640 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
8641 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Move to frame.h
8642 and renamed [see frame.h changes].
8643
8644 * xterm.c: Make (several) trivial substitutions for renamed and
8645 new macros in dispextern.h, frame.h and window.h.
8646 (x_draw_glyph_string_box): Adapt to per-window fringes and scroll-bars.
8647 (scroll_run): Adapt to new fringe position.
8648 (glyph_rect): Use window coordinates returned from
8649 window_from_coordinates rather than frame_to_window_pixel_xy.
8650 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
8651 scroll-bars.
8652 (handle_one_xevent): Simplify a USE_GTK conditional.
8653 (x_clip_to_row): Remove superfluous whole_line_p arg and code
8654 (fringes are now inside margins, i.e. always in the clipping area).
8655 All callers changed.
8656 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
8657 directly, then call compute_fringe_widths. Don't call
8658 frame_update_line_height.
8659
8660 * w32term.h (struct w32_output): Move members left_pos, top_pos,
8661 border_width, pixel_height, pixel_width, line_height,
8662 internal_border_width, vertical_scroll_bar_extra,
8663 left_fringe_width, right_fringe_width, fringe_cols,
8664 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
8665 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
8666 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
8667 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
8668 (PIXEL_WIDTH, PIXEL_HEIGHT)
8669 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
8670 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Move to
8671 frame.h and renamed [see frame.h changes].
8672 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
8673 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
8674 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Move to frame.h
8675 and renamed [see frame.h changes].
8676
8677 * w32term.c: Make (several) trivial substitutions for renamed and
8678 new macros in dispextern.h, frame.h and window.h.
8679 (x_draw_glyph_string_box): Adapt to per-window fringes and scroll-bars.
8680 (glyph_rect): Use window coordinates returned from
8681 window_from_coordinates rather than frame_to_window_pixel_xy.
8682 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
8683 scroll-bars.
8684 (w32_clip_to_row): Remove superfluous whole_line_p arg and code
8685 (fringes are now inside margins, i.e. always in the clipping area).
8686 All callers changed.
8687 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
8688 directly, then call compute_fringe_widths. Don't call
8689 frame_update_line_height.
8690
8691 * w32console.c: Make (few) trivial substitutions for renamed and
8692 new macros in dispextern.h, frame.h and window.h.
8693
8694 * w32fns.c: Make (many) trivial substitutions for renamed and
8695 new macros in dispextern.h, frame.h and window.h.
8696
8697 * w32menu.c: Make (few) trivial substitutions for renamed and
8698 new macros in dispextern.h, frame.h and window.h.
8699
8700 * macterm.h (struct mac_output): Move members left_pos, top_pos,
8701 border_width, pixel_height, pixel_width, line_height,
8702 internal_border_width, vertical_scroll_bar_extra,
8703 left_fringe_width, right_fringe_width, fringe_cols,
8704 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
8705 x_pixels_diff, y_pixels_diff to struct frame (frame.h).
8706 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
8707 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
8708 (PIXEL_WIDTH, PIXEL_HEIGHT)
8709 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
8710 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Move to
8711 frame.h and renamed [see frame.h changes].
8712 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
8713 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
8714 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Move to frame.h
8715 and renamed [see frame.h changes].
8716
8717 * macterm.c: Make (several) trivial substitutions for renamed and
8718 new macros in dispextern.h, frame.h and window.h.
8719 (x_draw_glyph_string_box): Adapt to per-window fringes and scroll-bars.
8720 (glyph_rect): Use window coordinates returned from
8721 window_from_coordinates rather than frame_to_window_pixel_xy.
8722 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
8723 scroll-bars.
8724 (x_clip_to_row): Remove superfluous whole_line_p arg and code
8725 (fringes are now inside margins, i.e. always in the clipping area).
8726 All callers changed.
8727 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
8728 directly, then call compute_fringe_widths. Don't call
8729 frame_update_line_height.
8730
8731 * macfns.c: Make (several) trivial substitutions for renamed and
8732 new macros in dispextern.h, frame.h and window.h.
8733 (x_real_positions): Set f->x_pixels_diff and f->y_pixels_diff to 0.
8734
8735 * macmenu.c: Make (few) trivial substitutions for renamed and
8736 new macros in dispextern.h, frame.h and window.h.
8737
8738 * msdos.h (struct x_output): Remove members left_pos, top_pos,
8739 and line_height, and use corresponding new members in struct
8740 frame. All uses changed.
8741 (FRAME_LINE_HEIGHT, FRAME_INTERNAL_BORDER_WIDTH): Remove macros;
8742 superseeded by corresponding macros in frame.h.
8743
8744 * msdos.c: Make (several) trivial substitutions for renamed and
8745 new macros in dispextern.h, frame.h and window.h.
8746 (IT_note_mouse_highlight): Use updated window coordinates returned
8747 by window_from_coordinates, rather than adjusting them locally.
8748 (internal_terminal_init): No need to initialize line_height here;
8749 it now defaults to 1.
8750
8751 2003-05-24 Stefan Monnier <monnier@cs.yale.edu>
8752
8753 * keyboard.c (read_key_sequence): Adjust fkey and keytran when
8754 dropping `down' events.
8755
8756 2003-05-24 Andreas Schwab <schwab@suse.de>
8757
8758 * coding.c (find_safe_codings): Fix last change.
8759
8760 2003-05-24 Istvan Marko <mi@imarko.dhs.org> (tiny change)
8761
8762 * xfns.c (x_window): Fix typo from 2003-05-21 change.
8763
8764 2003-05-23 Stefan Monnier <monnier@cs.yale.edu>
8765
8766 * xdisp.c (display_mode_element): Increase max depth.
8767 Simplify the error handling code. Use a different error string
8768 for the case where we hit the depth limit.
8769
8770 * lisp.h (Vfundamental_mode_abbrev_table): Don't declare.
8771
8772 * buffer.c (reset_buffer_local_variables): Remove redundant setting.
8773
8774 2003-05-21 Stefan Monnier <monnier@cs.yale.edu>
8775
8776 * intervals.c (get_local_map): Don't get char-property of previous
8777 point any more: get_pos_property already does it and better.
8778
8779 2003-05-21 Dave Love <fx@gnu.org>
8780
8781 [Merged from unicode branch.]
8782
8783 * xfns.c (x_window, x_window): Use use_xim.
8784
8785 * xterm.c (use_xim): Initialize.
8786 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
8787 (x_term_init): Maybe set use_xim.
8788
8789 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
8790
8791 2003-05-21 Jason Rumney <jasonr@gnu.org>
8792
8793 * unexw32.c (_start): Remove _fmode initialization.
8794
8795 * emacs.c (main) [WINDOWSNT]: Move it here.
8796
8797 2003-05-20 Dave Love <fx@gnu.org>
8798
8799 * s/gnu-linux.h (MAIL_USE_FLOCK): Make it conditional.
8800
8801 2003-05-19 Richard M. Stallman <rms@gnu.org>
8802
8803 * xfaces.c (Finternal_set_lisp_face_attribute): Handle Qunspecified
8804 as value for QCfont attribute.
8805 (realize_default_face): lface should already exist; crash if not.
8806 Specify 0 for FORCE_P when calling set_lface_from_font_name.
8807
8808 * frame.c (Fignore_event): Doc fix.
8809
8810 2003-05-19 Kenichi Handa <handa@m17n.org>
8811
8812 * coding.c (decode_coding_string): Handle post-read-conversion
8813 even if the coding doesn't require decoding.
8814
8815 2003-05-18 Richard M. Stallman <rms@gnu.org>
8816
8817 * callproc.c (Fcall_process_region): Doc fix.
8818
8819 2003-05-17 Stefan Monnier <monnier@cs.yale.edu>
8820
8821 * lread.c (Fload): Print a message if package is obsolete.
8822
8823 * window.c (Fselect_window): Add optional `norecord' arg.
8824 (select_window_1): Fold into Fselect_window.
8825 (select_window_norecord): New function.
8826 (temp_output_buffer_show): Use it. Preserve current buffer.
8827
8828 * window.h (Fselect_window): Update declaration.
8829
8830 * window.c (delete_window, Fother_window, Fset_window_configuration):
8831 * minibuf.c (read_minibuf):
8832 * macterm.c (x_new_focus_frame):
8833 * frame.c (do_switch_frame, Fset_frame_selected_window, Fdelete_frame):
8834 * callint.c (Fcall_interactively):
8835 * xterm.c (x_new_focus_frame): Pass nil as new arg to Fselect_window.
8836
8837 * buffer.c (Fpop_to_buffer): Pass norecord to Fselect_window.
8838
8839 2003-05-17 David Kastrup <dak@gnu.org>
8840
8841 * process.c (read_process_output): Back out change from 2003-03-09.
8842
8843 2003-05-17 Stefan Monnier <monnier@cs.yale.edu>
8844
8845 * editfns.c (get_pos_property): Don't assume that `object' = nil.
8846
8847 * textprop.c (text_property_stickiness): New arg `buffer'.
8848
8849 * intervals.h (text_property_stickiness): New arg `buffer'.
8850 (get_pos_property): Declare.
8851
8852 * intervals.c (get_local_map): Use get_pos_property, to obey
8853 stickiness and empty overlays.
8854 (create_root_interval, graft_intervals_into_buffer): Use BEG.
8855 (merge_properties, intervals_equal, merge_properties_sticky):
8856 Use XCAR, XCDR.
8857 (adjust_for_invis_intang): Pass new arg to text_property_stickiness.
8858
8859 2003-05-17 Richard M. Stallman <rms@gnu.org>
8860
8861 * minibuf.c (read_minibuf): If buffer is empty, record the default
8862 in the history.
8863 (Fminibuffer_complete_word): When deleting the overlap, take account
8864 of its real position.
8865
8866 * fns.c (map_char_table): Fix previous change.
8867
8868 * syntax.c (find_defun_start):
8869 When open_paren_in_column_0_is_defun_start,
8870 return beginning of buffer.
8871
8872 * lisp.h (map_char_table): Declare added arg.
8873
8874 * fns.c (map_char_table): New arg TABLE gets the master table.
8875 All calls changed.
8876 Process default and inheritance, resorting to Faref if necessary.
8877
8878 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
8879 (Faccessible_keymaps): Pass new arg to map_char_table.
8880
8881 * fontset.c (Ffontset_info): Pass new arg to map_char_table.
8882
8883 * casetab.c (set_case_table): Pass new arg to map_char_table.
8884
8885 * data.c (let_shadows_buffer_binding_p): Make target of p volatile.
8886
8887 * lisp.h (specbinding_func): New typedef.
8888 (struct specbinding): Use specbinding_func, to put the `volatile'
8889 in the right place.
8890
8891 * alloc.c (Fgarbage_collect): Cast pointers into specpdl
8892 to avoid GCC warning.
8893
8894 2003-05-16 Ralph Schleicher <rs@nunatak.allgaeu.org>
8895
8896 * fileio.c (Fdelete_file): Handle symlinks pointing to directories.
8897
8898 2003-05-15 Stefan Monnier <monnier@cs.yale.edu>
8899
8900 * keyboard.c (apply_modifiers): Don't fill the other cache.
8901
8902 2003-05-14 Stefan Monnier <monnier@cs.yale.edu>
8903
8904 * .gdbinit-union: New file, for USE_LISP_UNION_TYPE users.
8905
8906 * window.h (Qwindowp, Qwindow_live_p, Vwindow_list)
8907 (Fwindow_end, Fselected_window, Fdelete_window, Fwindow_buffer)
8908 (Fget_buffer_window, Fsave_window_excursion, Fsplit_window)
8909 (Fset_window_configuration, Fcurrent_window_configuration)
8910 (compare_window_configurations, Fcoordinates_in_window_p, Fwindow_at)
8911 (Fpos_visible_in_window_p, mark_window_cursors_off)
8912 (window_internal_height, window_internal_width, Frecenter)
8913 (Fscroll_other_window, Fset_window_start, temp_output_buffer_show)
8914 (replace_buffer_in_all_windows, init_window_once, init_window)
8915 (syms_of_window, keys_of_window): Move from lisp.h.
8916 * lisp.h: Move window.c declarations to window.h.
8917
8918 * bytecode.c: Include window.h.
8919 * emacs.c: Include window.h.
8920
8921 * keyboard.c (make_lispy_event): Apply modifiers to multibyte-char key.
8922 (keyremap): Add `parent' field.
8923 (keyremap_step): Use it. Remove `parent' argument.
8924 (read_key_sequence): Setup and use the new `parent' field.
8925
8926 2003-05-11 Stefan Monnier <monnier@cs.yale.edu>
8927
8928 * keyboard.c (adjust_point_for_property): Ensure termination.
8929
8930 2003-05-10 Stefan Monnier <monnier@cs.yale.edu>
8931
8932 * keyboard.c (follow_key): Remove dead variable `did_meta'.
8933 (access_keymap_keyremap, keyremap_step): New funs, extracted from the
8934 duplicated handling of function-key-map and key-translation-map
8935 in read_key_sequence.
8936 (read_key_sequence): Use them.
8937
8938 * keyboard.c (adjust_point_for_property): Try harder to move point
8939 to the non-sticky end of an invisible property.
8940
8941 * xdisp.c (single_display_prop_intangible_p): Make `space' display
8942 property intangible as well.
8943
8944 2003-05-10 Andreas Schwab <schwab@suse.de>
8945
8946 * xmenu.c (single_menu_item): Change last parameter to void* to
8947 avoid warning.
8948
8949 2003-05-09 Richard M. Stallman <rms@gnu.org>
8950
8951 * print.c (Fprin1_to_string): Instead of gcpro, set abort_on_gc.
8952 Bind Qinhibit_modification_hooks to t so there will be no GC.
8953 Rename local `tem' to `save_deactivate_mark'.
8954
8955 * eval.c (specpdl_ptr): Declare volatile.
8956 (unbind_to): Copy the whole binding and decrement specpdl_ptr
8957 before doing the work of unbinding it.
8958
8959 * lisp.h (struct specbinding): Declare elements volatile.
8960 (specpdl_ptr): Declare volatile.
8961
8962 * Makefile.in (alloca.o): Specify -DDO_BLOCK_INPUT in compiling.
8963
8964 * alloca.c: Test DO_BLOCK_INPUT rather than `emacs'
8965 for use of BLOCK_INPUT and inclusion of lisp.h and blockinput.h.
8966
8967 2003-05-08 Dave Love <fx@gnu.org>
8968
8969 * coding.c (Vlast_coding_system_used): Doc fix.
8970
8971 2003-05-07 Jason Rumney <jasonr@gnu.org>
8972
8973 * fileio.c (Ffile_symlink_p): Let handlers handle symlinks even
8974 when system does not support them.
8975
8976 2003-05-05 Stefan Monnier <monnier@cs.yale.edu>
8977
8978 * fileio.c (Qwrite_region_annotate_functions): New var.
8979 (build_annotations): Use it to process the global part of the hook.
8980 (syms_of_fileio): Init and staticpro it.
8981
8982 * keyboard.c (safe_run_hooks_error): Display a message instead of
8983 silently ignoring the error.
8984
8985 2003-05-03 Stefan Monnier <monnier@cs.yale.edu>
8986
8987 * keyboard.c (input_available_signal): Mark static.
8988 (menu_bar_items): Use map_keymap.
8989 (menu_bar_one_keymap): Remove.
8990 (menu_bar_item): Adjust arglist (for use in map_keymap).
8991 Properly hide a second binding when not both are keymaps.
8992
8993 * xmenu.c (struct skp): New struct, to pass args through map_keymap.
8994 (single_keymap_panes): Use it and map_keymap.
8995 (single_menu_item): Use skp as well.
8996
8997 * keymap.h (map_keymap_function_t): New type.
8998 (map_keymap): Declare.
8999
9000 * keymap.c (map_keymap_item, map_keymap_char_table_item, map_keymap)
9001 (map_keymap_call, Fmap_keymap): New functions.
9002 (syms_of_keymap): Defsubr map-keymap.
9003
9004 2003-05-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9005
9006 * gtkutil.c (create_dialog, make_widget_for_menu_item)
9007 (make_menu_item, create_menus, xg_update_menu_item): Don't call
9008 ..._with_mnemonic functions for menu items.
9009
9010 2003-05-01 Kenichi Handa <handa@m17n.org>
9011
9012 * coding.c (coding_system_accept_latin_extra_p): Delete this
9013 function.
9014 (find_safe_codings): Pay attention to
9015 the property tranlsation-table-for-encode of each codings.
9016 (syms_of_coding): Give Qtranslation_table the extra slot number 2.
9017
9018 2003-05-01 Stefan Monnier <monnier@cs.yale.edu>
9019
9020 * eval.c (Funwind_protect): Use func=Fprogn rather than symbol=Qnil.
9021
9022 2003-04-30 Stefan Monnier <monnier@cs.yale.edu>
9023
9024 * eval.c (unbind_to): Don't handle symbol = Qnil any more.
9025
9026 * lisp.h (CHECK): Wrap args in parenthesis.
9027 (specbind): Fix doc: symbol = Qnil is not supported any more.
9028
9029 * bytecode.c (Fbyte_code) <unwind-protect>:
9030 Use Fprogn rather than 0 and Qnil.
9031
9032 * keyboard.c (parse_modifiers_uncached): Parse `down', `drag',
9033 `double', and `triple' modifiers as well.
9034
9035 2003-04-30 Richard M. Stallman <rms@gnu.org>
9036
9037 * keyboard.c (echo_char): Don't clear out a dash that follows a space.
9038
9039 * alloc.c (abort_on_gc): New variable.
9040 (Fgarbage_collect): Abort if abort_on_gc is set.
9041
9042 * lisp.h (abort_on_gc): Add decl.
9043
9044 * eval.c (Fsignal): Clear abort_on_gc.
9045
9046 * editfns.c (Fformat): Set abort_on_gc during first scan of format.
9047 Reinit FORMAT_START and END before second scan.
9048
9049 * xdisp.c (move_it_vertically_backward): Do the final big else
9050 even if nlines is 0.
9051
9052 * xdisp.c (redisplay_internal): Finish the per-frame loop
9053 even if redisplay is suspended by input.
9054
9055 2003-04-24 Andrew Choi <akochoi@shaw.ca>
9056
9057 * macterm.c (x_list_fonts): Return all fonts that match if
9058 maxnames = -1.
9059
9060 2003-04-25 Kenichi Handa <handa@m17n.org>
9061
9062 * syntax.c (skip_chars): Fix previous change.
9063
9064 2003-04-24 Kenichi Handa <handa@m17n.org>
9065
9066 * syntax.c (skip_chars): Make the code faster by using the common
9067 technique of *p, *stop, and *endp.
9068
9069 2003-04-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9070
9071 * xdisp.c (update_tool_bar): BLOCK_INPUT before calling
9072 tool_bar_items so GTK tool bar expose callback does not access items
9073 being updated.
9074
9075 2003-04-19 Stefan Monnier <monnier@cs.yale.edu>
9076
9077 * eval.c (Fapply): Undo last change and add a comment about why.
9078
9079 2003-04-18 Miles Bader <miles@gnu.org>
9080
9081 * data.c (Faset): Calculate nbytes earlier, to satisfy the now
9082 pickier PARSE_MULTIBYTE_SEQ.
9083
9084 2003-04-17 Stefan Monnier <monnier@cs.yale.edu>
9085
9086 * eval.c (For, Fand, Fprogn, un_autoload, do_autoload):
9087 Use XCDR, XCAR, CONSP.
9088 (Fdefmacro): Fix docstring. Use XCAR, XCDR.
9089 (Fapply): Remove unnecessary GCPRO.
9090
9091 * doc.c (Fsubstitute_command_keys): Remove spurious casts.
9092
9093 * charset.h (PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
9094
9095 * buffer.h: Don't hardcode BEG==1.
9096
9097 * abbrev.c (Fdefine_abbrev_table): Use XCAR, XCDR.
9098
9099 2003-04-16 Richard M. Stallman <rms@gnu.org>
9100
9101 * xdisp.c (try_window, try_window_reusing_current_matrix):
9102 When at end of window, set window_end_pos to Z-ZV.
9103
9104 * buffer.c (Foverlay_recenter): Doc fix.
9105
9106 2003-04-14 Stefan Monnier <monnier@cs.yale.edu>
9107
9108 * dispnew.c (Fsit_For): Support XEmacs-style arg list.
9109
9110 2003-04-14 Andrew Choi <akochoi@shaw.ca>
9111
9112 * macterm.c (mac_check_for_quit_char): Don't check more often than
9113 once a second.
9114
9115 2003-04-11 Stefan Monnier <monnier@cs.yale.edu>
9116
9117 * keyboard.c (kbd_buffer_get_event): Don't handle SELECT_WINDOW_EVENT
9118 specially, so that they can't hide an implicit switch-frame event.
9119 (make_lispy_event): Handle SELECT_WINDOW_EVENT.
9120 (head_table): Use switch-frame as event_kind for select-window.
9121 (keys_of_keyboard): Don't bind [select-window] in special-event-map.
9122
9123 * editfns.c (Fformat): Lisp_Object/int mixup.
9124 (format2): Remove unused var numargs.
9125
9126 2003-04-11 Kenichi Handa <handa@m17n.org>
9127
9128 * fileio.c (Vafter_insert_file_adjust_coding_function): Delete.
9129 (Qafter_insert_file_set_coding): New variable.
9130 (syms_of_fileio): Initialize and staticpro it. Delete declaration
9131 for after-insert-file-adjust-coding-function.
9132 (Finsert_file_contents): Call Qafter_insert_file_set_coding
9133 instead of Vafter_insert_file_adjust_coding_function.
9134
9135 2003-04-11 Kenichi Handa <handa@m17n.org>
9136
9137 * lisp.h (temp_echo_area_glyphs): Adjust prototype.
9138
9139 * minibuf.c (temp_echo_area_glyphs): Change the arg to Lisp
9140 string. Callers changed.
9141
9142 2003-04-10 Kenichi Handa <handa@m17n.org>
9143
9144 * fileio.c (Vafter_insert_file_adjust_coding_function): New variable.
9145 (syms_of_fileio): Declare it as a lisp variable.
9146 (Finsert_file_contents):
9147 Call Vafter_insert_file_adjust_coding_function before calling
9148 decode-format.
9149
9150 2003-04-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9151
9152 * xterm.c (xg_scroll_callback): Call gtk_range_get_adjustment to
9153 get GtkAdjustment as widget now is a GtkRange.
9154
9155 * gtkutil.c (xg_create_scroll_bar): Connect to value-changed on
9156 GtkRange to avoid memory leak.
9157
9158 2003-04-09 Kenichi Handa <handa@m17n.org>
9159
9160 * xfaces.c (Vface_font_rescale_alist): New variable.
9161 (struct font_name): New member rescale_ratio.
9162 (font_rescale_ratio): New function.
9163 (split_font_name): If NUMERIC_P is nonzero, set font->rescale_ratio.
9164 (better_font_p): On comparing point sized, pay attention to
9165 recale_ratio member of fonts.
9166 (build_scalable_font_name): Reflect font->rescale_ratio in the
9167 font name.
9168 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
9169
9170 * lread.c (read1): Before calling index, check if the 2nd
9171 arguemnt is in ASCII range.
9172
9173 2003-04-08 Richard M. Stallman <rms@gnu.org>
9174
9175 * fileio.c (Ffile_symlink_p): Doc fix.
9176
9177 * editfns.c (Fformat): Translate positions of text properties
9178 in the format string to apply them to the result.
9179
9180 * fileio.c (Finsert_file_contents): Doc fix.
9181 (syms_of_fileio) <after-insert-file-functions>: Doc fix.
9182
9183 2003-04-08 Ivan Zakharyaschev <imz@altlinux.org> (tiny change)
9184
9185 * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN.
9186
9187 2003-04-08 Steven Tamm <steventamm@mac.com>
9188
9189 * mac.c (init_mac_osx_environment): Switch libexec and bin so
9190 that self-contained application finds libexec files.
9191
9192 2003-04-08 Kenichi Handa <handa@m17n.org>
9193
9194 * coding.c (code_convert_region_unwind):
9195 Set Vlast_coding_system_used to the argument.
9196 (code_convert_region): If post-read-conversion function changed
9197 the value of last-coding-sytem, keep the new value in
9198 coding->symbol so that it won't be overridden.
9199 (run_pre_post_conversion_on_str): Likewise.
9200 (coding_system_accept_latin_extra_p): New function.
9201 (find_safe_codings): Pay attention to characters registered in
9202 latin-extra-code-table.
9203
9204 2003-04-07 Thien-Thi Nguyen <ttn@gnu.org>
9205
9206 * Makefile.in (md5.o): Add missing dependency info.
9207
9208 2003-04-06 Richard M. Stallman <rms@gnu.org>
9209
9210 * xselect.c (x_handle_selection_request): Move UNGCPRO to very end.
9211
9212 * marker.c (verify_bytepos): New function.
9213
9214 * intervals.c (set_intervals_multibyte_1): When becoming
9215 multibyte, adjust right and left child sizes to a whole set of
9216 characters. If an interval gets zero total-length, delete it.
9217 If an interval consists of just its children, delete one of them.
9218
9219 * intervals.h (CHECK_TOTAL_LENGTH): New macro.
9220 * intervals.c: Add many calls to CHECK_TOTAL_LENGTH.
9221
9222 * alloc.c: (VALIDATE_LISP_STORAGE): Macro deleted.
9223 All calls deleted.
9224 (lisp_malloc): Do the work here directly.
9225
9226 2003-04-06 Gareth Jones <emacs@referential.org.uk> (tiny change)
9227
9228 * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub
9229 char tables.
9230
9231 2003-04-04 Kenichi Handa <handa@m17n.org>
9232
9233 * editfns.c (Fformat): Use a copy of FORMAT string so that we can
9234 destructively change "%S" to "%s".
9235
9236 2003-04-03 Miles Bader <miles@gnu.org>
9237
9238 * xfaces.c (choose_face_font): Make sure *NEEDS_OVERSTRIKE is
9239 always set.
9240
9241 2003-04-01 Dave Love <fx@gnu.org>
9242
9243 * xfns.c (xpm_lookup_color): Grok "opaque".
9244
9245 2003-03-31 Andrew Choi <akochoi@shaw.ca>
9246
9247 * frame.c (x_report_frame_params) [HAVE_CARBON]: Do not report
9248 parent window ID.
9249
9250 * macfns.c (syms_of_macfns): Remove call to init_x_parm_symbols.
9251
9252 * macterm.h (struct mac_output): Define x_pixels_diff and
9253 y_pixels_diff.
9254
9255 2003-03-31 Juanma Barranquero <lektu@terra.es>
9256
9257 * makefile.w32-in ($(BLD)/frame.$(O)): Add dependency on
9258 blockinput.h and files included from it.
9259
9260 2003-03-31 Kim F. Storm <storm@cua.dk>
9261
9262 The following changes consolidates the common code related to
9263 frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
9264 files into frame.c.
9265
9266 * frame.c: Include blockinput.h.
9267 (Vx_resource_name, Vx_resource_class, Qx_frame_parameter)
9268 (Qx_resource_name, Qface_set_after_frame_default): Define vars here.
9269 (Qauto_raise, Qauto_lower, ...): Define all frame parameter
9270 related vars here.
9271 (struct frame_parm_table, frame_parms): New table for describing
9272 frame parameters and their associated Q-variable.
9273 The order of the parameters corresponds to the sequence of the
9274 frame_parm_handlers table in redisplay_interface.
9275 (x_fullscreen_move, x_set_frame_parameters)
9276 (x_report_frame_params, x_set_fullscreen, x_set_line_spacing)
9277 (x_set_screen_gamma, x_set_font, x_set_fringe_width)
9278 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
9279 (x_set_autoraise, x_set_autolower, x_set_unsplittable)
9280 (x_set_vertical_scroll_bars, x_set_scroll_bar_width, x_icon_type):
9281 Generic functions for processing of frame parameters.
9282 (validate_x_resource_name, xrdb_get_resource, Fx_get_resource)
9283 (display_x_get_resource, x_get_resource_string): Functions for
9284 generic access to X resources.
9285 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
9286 (x_default_parameter, Fx_parse_geometry): Functions for generic
9287 access to frame parameters.
9288 (x_figure_window_size): Generic calculation of frame size.
9289 Fixed to add space needed for tool bar. Also setup size_hint_flags.
9290 (syms_of_frame): Intern and staticpro frame parameter variables.
9291 Defvar_lisp Vx_resource_class and Vx_resource_name here.
9292 Defsubr Sx_get_resource and Sx_parse_geometry.
9293
9294 * frame.h (Qauto_raise, Qauto_lower, ...): Declare extern all frame
9295 parameter related vars defined in frame.c.
9296 (EMACS_CLASS): Define here.
9297 (enum FULLSCREEN_*): Define here.
9298 (x_set_scroll_bar_default_width, x_wm_set_icon_position)
9299 (x_set_offset, x_new_font, x_new_fontset): Add prototypes.
9300 (x_fullscreen_adjust, x_set_frame_parameters, x_report_frame_params)
9301 (x_set_fullscreen, x_set_line_spacing, x_set_screen_gamma, x_set_font)
9302 (x_set_fringe_width, x_set_border_width, x_set_internal_border_width)
9303 (x_set_visibility, x_set_autoraise, x_set_autolower)
9304 (x_set_unsplittable, x_set_vertical_scroll_bars)
9305 (x_set_scroll_bar_width, x_icon_type, validate_x_resource_name)
9306 (x_figure_window_size): Add prototypes.
9307
9308 * dispextern.h (frame_parm_handler): New typedef.
9309 (struct redisplay_interface): New member frame_parm_handlers.
9310 (enum resource_types): Move declaration here.
9311 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
9312 (x_default_parameter): Add prototypes.
9313
9314 * window.c: Remove extern decl for frame parameter vars.
9315 (change_window_heights): New generic function;
9316 replaces x_change_window_heights. All users changed.
9317
9318 * window.h (change_window_heights): Add prototype.
9319
9320 * xfaces.c: Remove extern decl for frame parameter vars.
9321
9322 * xterm.h (EMACS_CLASS): Remove. Use generic define.
9323 (struct w32_display_info): Fix type of xrdb member.
9324 (enum FULLSCREEN_*): Remove.
9325 Remove prototypes for generic functions (in frame.h).
9326
9327 * xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
9328 parameters now defined in frame.h and frame.c.
9329 (Vx_resource_name): Remove. Use generic var.
9330 (enum x_frame_parms): Remove (bogus, unused enum).
9331 (check_x_display_info): Make non-static (for frame.c).
9332 (struct x_frame_parm_table, x_frame_parms): Remove.
9333 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
9334 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
9335 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
9336 (x_change_window_heights, x_set_autoraise, x_set_autolower)
9337 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
9338 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
9339 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
9340 Remove. Use generic functions instead.
9341 (enum resource_types): Remove.
9342 (x_set_scroll_bar_default_width): New global function (for frame.c).
9343 (Fx_create_frame): Depend on x_figure_window_size to add space for
9344 toolbar and setup size_hint_flags.
9345 (x_frame_parm_handlers): New table for redisplay_interface.
9346 (syms_of_xfns): Don't intern/staticpro removed vars.
9347
9348 * xterm.c: Remove unnecessary extern declarations.
9349 (x_fullscreen_adjust): Remove. Use generic instead.
9350 (x_redisplay_interface): Add x_frame_parm_handlers member.
9351
9352 * w32gui.h (XrmDatabase): New (dummy) typedef.
9353
9354 * w32term.h (EMACS_CLASS): Remove. Use generic define.
9355 (struct w32_display_info): Fix type of xrdb member.
9356 (enum FULLSCREEN_*): Remove.
9357 (x_fullscreen_adjust): Remove prototype.
9358
9359 * w32fns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
9360 parameters now defined in frame.h and frame.c.
9361 (Vx_resource_name): Remove. Use generic var.
9362 (enum x_frame_parms): Remove (bogus, unused enum).
9363 (check_x_display_info): Make non-static (for frame.c).
9364 (struct x_frame_parm_table, x_frame_parms): Remove.
9365 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
9366 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
9367 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
9368 (x_change_window_heights, x_set_autoraise, x_set_autolower)
9369 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
9370 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
9371 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
9372 Remove. Use generic functions instead.
9373 (enum resource_types): Remove.
9374 (x_set_scroll_bar_default_width): New global function (for frame.c).
9375 (Fx_create_frame): Depend on x_figure_window_size to add space for
9376 toolbar and setup size_hint_flags.
9377 (w32_frame_parm_handlers): New table for redisplay_interface.
9378 (syms_of_w32fns): Don't intern/staticpro removed vars.
9379
9380 * w32term.c: Remove unnecessary extern declarations.
9381 (x_fullscreen_adjust): Remove. Use generic instead.
9382 (x_redisplay_interface): Add w32_frame_parm_handlers member.
9383
9384 * w32reg.c (x_get_string_resource): Use XrmDatabase.
9385
9386 * macgui.h (XrmDatabase): New (dummy) typedef.
9387
9388 * macterm.h (EMACS_CLASS): Remove.
9389 (struct mac_display_info): Add xrdb member.
9390 (struct mac_output): Add want_fullscreen member.
9391
9392 * macfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
9393 parameters now defined in frame.h and frame.c.
9394 (Vx_resource_name): Remove. Use generic var.
9395 (check_x_display_info): Make non-static (for frame.c).
9396 (struct x_frame_parm_table, x_frame_parms): Remove.
9397 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
9398 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
9399 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
9400 (x_change_window_heights, x_set_autoraise, x_set_autolower)
9401 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
9402 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
9403 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
9404 Remove. Use generic functions instead.
9405 (enum resource_types): Remove.
9406 (x_set_scroll_bar_default_width): New global function (for frame.c).
9407 (mac_frame_parm_handlers): New table for redisplay_interface.
9408 (syms_of_macfns): Don't intern/staticpro removed vars.
9409
9410 * macterm.c: Remove unnecessary extern declarations.
9411 (x_redisplay_interface): Add mac_frame_parm_handlers member.
9412
9413 * Makefile.in (frame.o): Add dependency on blockinput.h and files
9414 included from it (atimer.h and systime.h).
9415
9416 2003-03-30 Andreas Schwab <schwab@suse.de>
9417
9418 * xdisp.c (x_insert_glyphs): Fix swapped width and height
9419 parameters for shift_glyphs_for_insert.
9420
9421 * macterm.c (x_redisplay_interface): Add missing entry for
9422 draw_vertical_window_border.
9423
9424 2003-03-29 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
9425
9426 * fileio.c (Fexpand_file_name): In the no-handler case, after
9427 expanding, look again for a handler and invoke it. This is needed
9428 for filenames like "/foo/../user@host:/bar/../baz" -- the first
9429 expansion produces "/user@host:/bar/../baz" which needs to be
9430 expanded again for the finame result "/user@host:/baz".
9431
9432 2003-03-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9433
9434 * gtkutil.c (xg_tool_bar_item_expose_callback): Reduce size
9435 of area to be redrawn for better performance.
9436
9437 2003-03-28 Stefan Monnier <monnier@cs.yale.edu>
9438
9439 * xterm.c (take_vertical_position_into_account): Remove.
9440 (xt_action_hook): Call set_vertical_scroll_bar if needed.
9441 (XM_SB_MIN, XM_SB_RANGE): Remove (min is now set to 0).
9442 (xm_scroll_callback, x_create_toolkit_scroll_bar)
9443 (x_set_toolkit_scroll_bar_thumb): Simplify.
9444 (x_scroll_bar_expose): Only compile if !USE_TOOLKIT_SCROLL_BARS.
9445 (XTread_socket): Remove unused var.
9446 (x_make_frame_invisible): Replace goto with else.
9447
9448 * xdisp.c (set_vertical_scroll_bar): New fun.
9449 (redisplay_window): Use it.
9450
9451 2003-03-26 Richard M. Stallman <rms@gnu.org>
9452
9453 * xdisp.c (update_tool_bar): Recompute tool bar if
9454 update_mode_lines is set. Set w->update_mode_line
9455 only if the tool bar contents actually change.
9456 (update_menu_bar): Undo previous change.
9457
9458 2003-03-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9459
9460 * gtkutil.c (xg_resize_widgets): Don't call xg_frame_cleared.
9461 (xg_frame_set_char_size): Calculate scroll bar width before frame
9462 width. Call SET_FRAME_GARBAGED and cancel_mouse_face.
9463 (xg_separator_p): Check for all documented separator types.
9464 (xg_update_scrollbar_pos): Variable gheight not needed, use height.
9465 (update_frame_tool_bar): Don't call gdk_window_process_all_updates.
9466
9467 * xdisp.c (update_menu_bar): Set w->update_mode_line to Qt
9468 so tool bar gets updated.
9469
9470 2003-03-26 Stefan Monnier <monnier@cs.yale.edu>
9471
9472 * data.c (store_symval_forwarding): Re-instate part of the code
9473 that was deleted with too much enthusiasm.
9474
9475 2003-03-25 Stefan Monnier <monnier@cs.yale.edu>
9476
9477 * data.c (store_symval_forwarding): Delete special read-only
9478 hack for type == -1, since we now use ->constant instead.
9479 (Fkill_local_variable): Don't use XBUFFER if it can be nil.
9480
9481 * buffer.c (overlays_in): Declare static.
9482 (syms_of_buffer) <enable-multibyte-characters>: Use the symbol's
9483 `constant' field rather than the variable's `type' field.
9484
9485 2003-03-24 Andrew Choi <akochoi@shaw.ca>
9486
9487 * config.in [MAC_OSX]: Do not redefine bcopy, bzero, and bcmp.
9488
9489 * dispextern.h [HAVE_CARBON]: Include Carbon.h.
9490
9491 * fns.c [MAC_OSX]: Do not redefine vector.
9492
9493 * keyboard.c [MAC_OSX]: Handle SIGINT with interrupt_signal.
9494
9495 * macgui.h: Remove definition of No_Cursor.
9496
9497 * macterm.h: Include Carbon.h. Replace (struct Cursor *) by Cursor.
9498
9499 * xdisp.c: Define No_Cursor.
9500 (x_write_glyphs, notice_overwritten_cursor)
9501 (draw_phys_cursor_glyph, note_mode_line_or_margin_highlight)
9502 (note_mouse_highlight): Remove Mac-specific code.
9503 (note_mouse_highlight): Use bcmp instead of == to compare Cursors.
9504
9505 2003-03-24 John Paul Wallington <jpw@gnu.org>
9506
9507 * xdisp.c (redisplay_window): If mini window's buffer is not
9508 empty, then redisplay it like other windows.
9509
9510 2003-03-23 Kim F. Storm <storm@cua.dk>
9511
9512 * w32term.c (w32_draw_window_cursor): Fix last change.
9513
9514 2003-03-23 Kenichi Handa <handa@m17n.org>
9515
9516 * alloc.c (make_string_from_bytes, make_specified_string):
9517 Add `const' for the arg CONTENTS.
9518
9519 * lisp.h (make_string_from_bytes, make_specified_string):
9520 Prototypes adjusted.
9521
9522 2003-03-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9523
9524 * xdisp.c (get_glyph_string_clip_rect): Remove ; at end of #endif
9525
9526 * gtkutil.h: Take two more arguments to xg_update_scrollbar_pos.
9527 (XG_SB_RANGE): New define.
9528
9529 * gtkutil.c (xg_fixed_handle_expose): New function.
9530 (xg_create_frame_widgets): Call xg_fixed_handle_expose for
9531 expose events.
9532 (xg_update_scrollbar_pos): Take two more arguments, left and width
9533 of scroll bar including borders.
9534 Clear left and right part outside scroll bar separately as some
9535 themes have bars that are not an even number of pixels.
9536 Don't set reallocate_redraws, don't call
9537 gdk_window_process_all_updates.
9538 (xg_set_toolkit_scroll_bar_thumb): Upper value is fixed,
9539 so no need to change it. Calculate size and value with XG_SB_RANGE.
9540
9541 * xterm.c (x_scroll_bar_create, XTset_vertical_scroll_bar):
9542 Pass left and width of scroll bar including borders to
9543 xg_update_scrollbar_pos.
9544
9545 2003-03-22 Thien-Thi Nguyen <ttn@gnu.org>
9546
9547 * Makefile.in: Make sure space precedes end-of-line backslashes.
9548
9549 2003-03-22 Kim F. Storm <storm@cua.dk>
9550
9551 * xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
9552 Add generic versions here. Remove system specific versions
9553 defined elsewhere.
9554
9555 * dispextern.h (pixel_to_glyph_coords, glyph_to_pixel_coords):
9556 Add prototypes.
9557
9558 * xterm.h (STORE_NATIVE_RECT): New macro.
9559
9560 2003-03-21 Kim F. Storm <storm@cua.dk>
9561
9562 * xdisp.c (get_glyph_string_clip_rect):
9563 Use FRAME_INTERNAL_BORDER_WIDTH.
9564
9565 * dispextern.h (struct redisplay_interface): Add active_p
9566 argument to draw_window_cursor member. All uses changed.
9567
9568 2003-03-21 Kim F. Storm <storm@cua.dk>
9569
9570 The following changes consolidate code related to writing and
9571 inserting glyphs, exposing frame, the tool bar, the mouse face,
9572 the output cursor, and help echo from xterm.c, w32term.c and
9573 macterm.c into xdisp.c. It also generalizes the use of the
9574 window_part enum instead of using numeric values throughout.
9575
9576 * xdisp.c: Consolidate gui-independent code here.
9577 Include keymap.h.
9578 (Qhelp_echo): Import.
9579 (mouse_autoselect_window, x_stretch_cursor_p): Declare here.
9580 (help_echo_string, help_echo_window, help_echo_object)
9581 (previous_help_echo_string, help_echo_pos): Declare here.
9582 (output_cursor, last_mouse_frame, last_tool_bar_item): Declare here.
9583 (estimate_mode_line_height): Define here. Handle windowing
9584 systems directly (without using estimate_mode_line_height_hook).
9585 (x_y_to_hpos_vpos, get_tool_bar_item, note_tool_bar_highlight):
9586 (update_window_cursor, update_cursor_in_window_tree)
9587 (fast_find_position, fast_find_string_pos)
9588 (note_mode_line_highlight, note_mode_line_or_margin_highlight)
9589 (expose_area, expose_line, expose_overlaps, expose_window)
9590 (expose_window_tree, phys_cursor_in_rect_p): New generic versions;
9591 declared static as they are only used locally in xdisp.c.
9592 (draw_glyphs): Rename from x_draw_glyphs and make static.
9593 (tool_bar_item_info, notice_overwritten_cursor): Make static.
9594 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
9595 (set_output_cursor, x_cursor_to, handle_tool_bar_click)
9596 (x_write_glyphs, x_insert_glyphs, x_clear_end_of_line):
9597 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
9598 (display_and_set_cursor, x_update_cursor, x_clear_cursor)
9599 (show_mouse_face, clear_mouse_face, cursor_in_mouse_face_p)
9600 (note_mouse_highlight, x_clear_window_mouse_face)
9601 (cancel_mouse_face, x_draw_vertical_border, expose_frame)
9602 (x_intersect_rectangles): New generic functions for use by xdisp.c
9603 and GUI front-ends.
9604 (syms_of_xdisp): Initialize and staticpro help_echo* variables.
9605 Defvar_bool "x-streach-cursor" and "mouse-autoselect-window" here.
9606
9607 * dispextern.h (Display_Info): Generic typedef for *_display_info.
9608 (NativeRectangle): Generic typedef for rectangle type.
9609 (enum window_part): Move here from window.c.
9610 (struct redisplay_interface): New members flush_display_optional,
9611 define_frame_cursor, clear_frame_area, draw_window_cursor,
9612 draw_vertical_window_border, shift_glyphs_for_insert.
9613 Rename member clear_mouse_face to clear_window_mouse_face.
9614 (estimate_mode_line_height_hook): Remove hook.
9615 (auto_raise_tool_bar_buttons_p): Don't declare extern.
9616 (tool_bar_item_info): Remove prototype.
9617 (help_echo_string, help_echo_window, help_echo_object)
9618 (previous_help_echo_string, help_echo_pos)
9619 (last_mouse_frame, last_tool_bar_item, mouse_autoselect_window):
9620 (x_stretch_cursor_p, output_cursor): Declare extern.
9621 (x_draw_glyphs, notice_overwritten_cursor): Remove prototypes.
9622 (x_write_glyphs), x_insert_glyphs, x_clear_end_of_line)
9623 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
9624 (display_and_set_cursor, set_output_cursor, x_cursor_to)
9625 (x_update_cursor, x_clear_cursor, x_draw_vertical_border)
9626 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
9627 (note_mouse_highlight, x_clear_window_mouse_face, cancel_mouse_face)
9628 (handle_tool_bar_click, clear_mouse_face, show_mouse_face)
9629 (cursor_in_mouse_face_p, expose_frame, x_intersect_rectangles):
9630 Add prototypes.
9631 (mode_line_string, marginal_area_string): Fix prototypes.
9632
9633 * window.c (enum window_part): Move to dispextern.h.
9634 (coordinates_in_window): Use enum window_part member names
9635 instead of numbers to describe return value.
9636 (struct check_window_data): Change part member to window_part.
9637 (check_window_containing): Return window_part unaltered.
9638 (window_from_coordinates): Change part arg from int to enum
9639 window_part. Allow part arg to be null. All users changed.
9640
9641 * window.h (window_from_coordinates): Fix prototype.
9642
9643 * term.c (estimate_mode_line_height): Move to xdisp.c.
9644
9645 * keyboard.c (make_lispy_event): Use enum window_part.
9646
9647 * dispnew.c (mode_line_string, marginal_area_string): Use enum
9648 window_part instead of int in arg list. Users changed.
9649
9650 * xterm.h (No_Cursor): Declare as None for X.
9651 (struct mac_output): Replace member cross_cursor by hand_cursor.
9652
9653 * xterm.c: Remove consolidated defines and code.
9654 (BETWEEN): Remove unused macro.
9655 (x_draw_vertical_window_border, x_shift_glyphs_for_insert)
9656 (x_define_frame_cursor, x_clear_frame_area)
9657 (x_draw_window_cursor): New X-specific functions for RIF.
9658 (x_redisplay_interface): Add new members.
9659
9660 * xfns.c: Setup and use hand_cursor instead of cross_cursor.
9661
9662 * w32term.h (struct w32_output): Remove cross_cursor member.
9663
9664 * w32term.c: Remove consolidated defines and code.
9665 (BETWEEN): Remove unused macro.
9666 (w32_draw_vertical_window_border, w32_shift_glyphs_for_insert)
9667 (w32_define_frame_cursor, w32_clear_frame_area)
9668 (w32_draw_window_cursor): New W32-specific functions for RIF.
9669 (w32_redisplay_interface): Add new members.
9670
9671 * w32gui.h (No_Cursor): Define as 0 for W32.
9672 (XRectangle): Add X compatible rectangle type.
9673 (NativeRectangle): Declare as RECT for W32.
9674 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
9675
9676 * w32fns.c: Remove setup of cross_cursor (already has hand_cursor).
9677
9678 * w32console.c: Remove consolidated defines and code.
9679
9680 * msdos.h (Display_Info): Add generic typedef.
9681
9682 * msdos.c: Remove consolidated defines and code.
9683 (IT_note_mouse_highlight, dos_rawgetc): Use enum window_part.
9684
9685 * macterm.h (struct mac_output): Replace member cross_cursor by
9686 hand_cursor.
9687 (activate_scroll_bars, deactivate_scroll_bars): Add prototypes.
9688
9689 * macterm.c: Remove consolidated defines and code.
9690 (BETWEEN): Remove unused macro.
9691 (mac_draw_vertical_window_border, mac_shift_glyphs_for_insert)
9692 (mac_define_frame_cursor, mac_clear_frame_area)
9693 (mac_draw_window_cursor): New Mac-specific functions for RIF.
9694 (x_redisplay_interface): Add new members.
9695
9696 * macgui.h (No_Cursor): Define as 0 for Mac.
9697 (XRectangle): Add X compatible rectangle type.
9698 (NativeRectangle): Declare as Rect for Mac.
9699 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
9700
9701 * macfns.c (x_set_mouse_color): Setup hand_cursor.
9702 (x_set_cursor_color): Use x_display_and_set_cursor.
9703
9704 * Makefile.in (xdisp.o): Add dependency on blockinput.h and files
9705 included from it. Add dependency on keymap.h.
9706
9707 * makefile.w32-in (xdisp.o): Add dependency on keymap.h.
9708
9709 2003-03-21 Kenichi Handa <handa@m17n.org>
9710
9711 * fileio.c (Fexpand_file_name): Fix previous change.
9712
9713 2003-03-19 Kenichi Handa <handa@m17n.org>
9714
9715 * fileio.c (Ffile_name_directory): Reconstruct file name by
9716 make_specified_string.
9717 (Ffile_name_nondirectory, Ffile_name_as_directory)
9718 (Fdirectory_file_name, Fexpand_file_name)
9719 (Fsubstitute_in_file_name): Likewise.
9720 (Fread_file_name): Compare decoded homedir with DIR and
9721 DEFAULT_FILENAME.
9722
9723 * alloc.c (make_specified_string): If NCHARS is negative, count
9724 the number of characters.
9725
9726 2003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9727
9728 * gtkutil.c (xg_frame_cleared): Call gtk_widget_queue_draw for
9729 all widgets.
9730
9731 * gtkutil.h: Removed xg_ignore_next_thumb.
9732
9733 2003-03-18 Kenichi Handa <handa@m17n.org>
9734
9735 * coding.c (Vchar_coding_system_table): Remove this variable.
9736 (Vcoding_system_safe_chars): New variable.
9737 (intersection): Remove this function.
9738 (find_safe_codings): Don't use Vchar_coding_system_table, but try
9739 all codings in SAFE_CODINGS.
9740 (Ffind_coding_systems_region_internal): Adjust for the change of
9741 find_safe_codings. Get generic coding systems from
9742 Vcoding_system_safe_chars.
9743 (Fdefine_coding_system_internal): New function.
9744 (syms_of_coding): Defsubr Sdefine_coding_system_internal.
9745 Initialize and staticpro Vcoding_system_safe_chars.
9746
9747 2003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9748
9749 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb): Check if new values
9750 equal old values before updating.
9751
9752 * xterm.c (xg_scroll_callback): Remove xg_ignore_next_thumb.
9753
9754 * gtkutil.c (xg_initialize): Remove xg_ignore_next_thumb.
9755
9756 2003-03-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9757
9758 * gtkutil.c: Removed handle_fixed_child, struct xg_last_sb_pos.
9759 (xg_resize_widgets): Don't call foreach(handle_fixed_child).
9760 (xg_gtk_scroll_destroy): Remove free of struct xg_last_sb_pos.
9761 (scroll_bar_button_cb): Set bar->dragging to NIL on button release.
9762 (xg_create_scroll_bar): Pass bar to button event callback.
9763 (xg_find_top_left_in_fixed): New function.
9764 (xg_update_scrollbar_pos): Don't call gdk_window_clear on
9765 whole scroll bar area. Get old position with
9766 xg_find_top_left_in_fixed, calculate and only clear needed areas.
9767 (xg_set_toolkit_scroll_bar_thumb): Do not adjust scroll bar if
9768 dragging is in progress. Calculate whole as for Motif.
9769 Remove code that saved last values. Call gtk_range functions to
9770 set scroll bar sizes.
9771
9772 * gtkutil.h: Removed xg_ignore_next_thumb.
9773
9774 2003-03-17 Juanma Barranquero <lektu@terra.es>
9775
9776 * makefile.w32-in ($(BLD)/xdisp.$(O)): Add dependency on blockinput.h
9777 and files included from it.
9778
9779 2003-03-18 Stefan Monnier <monnier@cs.yale.edu>
9780
9781 * keymap.c (accessible_keymaps_1): Break cycles but without preventing
9782 multiple occurrences of the same keymap under different prefixes.
9783 (Faccessible_keymaps): Remove code redundant since 1994-08-03T07:39:00Z!rms@gnu.org.
9784
9785 2003-03-16 Jason Rumney <jasonr@gnu.org>
9786
9787 * w32gui.h: Use HDC for Display.
9788
9789 * w32term.c (w32_encode_char): Prevent double-byte chars from
9790 crashing Emacs.
9791
9792 * w32fns.c (jpeg_load, png_load, slurp_file): Read image files
9793 as binary.
9794
9795 2003-03-16 Juanma Barranquero <lektu@terra.es>
9796
9797 * xdisp.c (x_produce_glyphs): Use FRAME_BASELINE_OFFSET.
9798
9799 2003-03-16 Kim F. Storm <storm@cua.dk>
9800
9801 The following changes consolidate some of the gui-independent
9802 parts of the processing and drawing of "glyph strings" from
9803 xterm.c, w32term.c, and macterm.c into xdisp.c.
9804
9805 * dispextern.h (struct glyph): Reduce face_id member from 22 to
9806 21 bits (this reduces number of faces from 4M to 2M).
9807 Replace W32 specific w32_font_type member (2 bits) by generic
9808 font_type member (3 bits) for portability.
9809 (FONT_TYPE_UNKNOWN): New define, default for font_type member.
9810 (enum draw_glyphs_face): Define here.
9811 (struct glyph_string): Define here. Merge W32 and X versions.
9812 (struct redisplay_interface): New members per_char_metric,
9813 encode_char, compute_glyph_string_overhangs, draw_glyph_string.
9814 (VCENTER_BASELINE_OFFSET): Define here.
9815 (dump_glyph_string, x_get_glyph_overhangs, x_produce_glyphs)
9816 (x_draw_glyphs, notice_overwritten_cursor): Declare prototypes here.
9817
9818 * xdisp.c: Consolidate gui-independent "glyph string" code here.
9819 (dump_glyph_string): Moved here.
9820 (init_glyph_string, append_glyph_string_lists, append_glyph_string)
9821 (prepend_glyph_string_lists, get_glyph_face_and_encoding)
9822 (fill_composite_glyph_string, fill_glyph_string)
9823 (fill_image_glyph_string, fill_stretch_glyph_string)
9824 (left_overwritten, left_overwriting, right_overwritten)
9825 (right_overwriting, get_char_face_and_encoding)
9826 (set_glyph_string_background_width, compute_overhangs_and_x)
9827 (append_glyph, append_composite_glyph, produce_image_glyph)
9828 (take_vertical_position_into_account, append_stretch_glyph)
9829 (produce_stretch_glyph): New generic functions (based on X version).
9830 Call platform specific functions through rif.
9831 (INIT_GLYPH_STRING): New macro, hides W32 details.
9832 (BUILD_STRETCH_GLYPH_STRING, BUILD_IMAGE_GLYPH_STRING)
9833 (BUILD_CHAR_GLYPH_STRINGS, BUILD_COMPOSITE_GLYPH_STRING)
9834 (BUILD_GLYPH_STRINGS): Generic macros (based on X version).
9835 (x_draw_glyphs, x_get_glyph_overhangs, x_produce_glyphs)
9836 (notice_overwritten_cursor):
9837 Generic functions exported to platform modules. Users changed.
9838
9839 * xterm.h (FONT_DESCENT, FRAME_X_OUTPUT, FRAME_BASELINE_OFFSET)
9840 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE)
9841 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
9842 New macros for consolidated code.
9843
9844 * xterm.c: Remove consolidated defines and code.
9845 (x_per_char_metric, x_encode_char)
9846 (x_compute_glyph_string_overhangs): Adapt to RIF requirements.
9847 (x_redisplay_interface): Add new members.
9848
9849 * w32gui.h (Display): Add dummy typedef for consolidation.
9850 (XChar2b): Define alias for wchar_t for consolidation.
9851 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
9852
9853 * w32term.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY)
9854 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE):
9855 New macros for consolidation.
9856
9857 * w32term.c: Remove consolidated defines and code.
9858 (BUILD_WCHAR_T, BYTE1, BYTE2): Macros removed; callers changed
9859 to use STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2 instead.
9860 (w32_per_char_metric): Change font_type arg to int for RIF.
9861 (w32_encode_char): Return int according to RIF requirements.
9862 (w32_compute_glyph_string_overhangs): Adapt to RIF.
9863 (w32_get_glyph_overhangs): New function for RIF. Uses generic
9864 x_get_glyph_overhangs.
9865 (w32_redisplay_interface): Add new members.
9866
9867 * macgui.h (XChar2b): Move typedef here for consolidation.
9868 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
9869
9870 * macterm.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY):
9871 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): New macros for
9872 consolidation.
9873
9874 * macterm.c: Remove consolidated defines and code.
9875 (mac_per_char_metric): New function for RIF.
9876 (mac_encode_char): Adapt to new RIF requirements.
9877 (mac_compute_glyph_string_overhangs): Adapt for RIF.
9878 (x_redisplay_interface): Add new members.
9879
9880 2003-03-15 Stefan Monnier <monnier@cs.yale.edu>
9881
9882 * keymap.c (Vmenu_events): New var.
9883 (syms_of_keymap): Initialize it.
9884 (where_is_internal): Check more carefully what is a menu event.
9885
9886 2003-03-14 Richard M. Stallman <rms@gnu.org>
9887
9888 * lread.c (read1): After #!, exit loop on eof.
9889
9890 2003-03-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9891
9892 * gtkutil.h: Add declaration for xg_frame_cleared.
9893
9894 * xterm.c (x_clear_frame): Call xg_frame_cleared for GTK.
9895
9896 * gtkutil.c (struct xg_last_sb_pos): New structure.
9897 (handle_fixed_child): New function.
9898 (xg_resize_widgets): Call handle_fixed_child on all scroll bar widgets
9899 and force a redraw on them.
9900 (xg_gtk_scroll_destroy): Free struct xg_last_sb_pos also.
9901 (xg_create_scroll_bar): Add struct xg_last_sb_pos to scroll bar
9902 so we can avoid unneeded redraws.
9903 (xg_update_scrollbar_pos): Invalidate data in xg_last_sb_pos
9904 and force a redraw on the scroll bar.
9905 (xg_set_toolkit_scroll_bar_thumb): Do not change/redraw scroll bar
9906 if xg_last_sb_pos shows the positions are up to date.
9907 (xg_frame_cleared): New function.
9908
9909 2003-03-13 Kenichi Handa <handa@m17n.org>
9910
9911 * coding.c (Fdetect_coding_region): Fix docstring.
9912 (Fdetect_coding_string): Fix docstring.
9913
9914 2003-03-13 Andreas Schwab <schwab@suse.de>
9915
9916 * gtkutil.c: Add prototype for create_menus.
9917
9918 * data.c (long_to_cons): Fix type of top.
9919
9920 * xselect.c (selection_data_to_lisp_data): Use int instead of
9921 long for an integer of size 4.
9922
9923 * gtkutil.c (xg_update_frame_menubar): Add missing return value.
9924 (xg_tool_bar_help_callback): Likewise.
9925
9926 2003-03-12 Andreas Schwab <schwab@suse.de>
9927
9928 * xterm.c (x_term_init) [USE_GTK]: Fix typo.
9929
9930 2003-03-12 Kim F. Storm <storm@cua.dk>
9931
9932 The following changes consolidate the fringe handling from
9933 xterm.c, w32term.c, and macterm.c into xdisp.c.
9934
9935 * xdisp.c: Consolidate fringe handling code here.
9936 (left_bits, right_bits, continued_bits, continuation_bits)
9937 (ov_bits, zv_bits): Define fringe bitmaps.
9938 (fringe_bitmaps): New array holding fringe bitmaps.
9939 (draw_fringe_bitmap): Draw a specific bitmap; call display
9940 specific drawing routine via rif->draw_fringe_bitmap.
9941 (draw_row_fringe_bitmaps): Generic replacement for
9942 x_draw_row_fringe_bitmaps; all callers changed.
9943 (compute_fringe_widths): Generic replacement for
9944 x_compute_fringe_widths; all callers changed.
9945
9946 * dispextern.h (enum fringe_bitmap_type): Define here.
9947 (struct fringe_bitmap, struct draw_fringe_bitmap_params): New.
9948 (fringe_bitmaps): Declare extern.
9949 (struct redisplay_interface): New member draw_fringe_bitmap.
9950 (draw_row_fringe_bitmaps, compute_fringe_widths): Declare extern.
9951
9952 * xterm.c: Remove generic fringe code.
9953 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
9954 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
9955
9956 * w32term.c: Remove generic fringe code.
9957 (w32_draw_fringe_bitmap): Only perform actual fringe drawing.
9958 (w32_redisplay_interface): Add w32_draw_fringe_bitmap member.
9959
9960 * macterm.c: Remove generic fringe code.
9961 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
9962 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
9963
9964 2003-03-11 Stefan Monnier <monnier@cs.yale.edu>
9965
9966 * print.c (Fprin1_to_string): Return unibyte string if possible.
9967
9968 2003-03-09 David Kastrup <dak@gnu.org>
9969
9970 * process.c (read_process_output): We have allocated enough space
9971 for readmax and carryover, so actually use the alloted space.
9972
9973 2003-03-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9974
9975 * keyboard.c (make_lispy_event): Extend mouse_syms if needed for
9976 toolkit scrollbar click.
9977
9978 * xterm.c (x_window_to_scroll_bar): Call xg_get_scroll_id_for_window
9979 for USE_GTK.
9980 (x_scroll_bar_handle_click): Use this function for toolkit scrollbars
9981 also.
9982 (handle_one_xevent): ButtonPress/Release: If event is for a toolkit
9983 scrollbar and control is pressed, call x_scroll_bar_handle_click.
9984
9985 * gtkutil.h (xg_get_scroll_id_for_window): Declare.
9986
9987 * gtkutil.c (xg_get_scroll_id_for_window): New function.
9988 (xg_tool_bar_item_expose_callback): New function.
9989 (xg_tool_bar_expose_callback): Call update_frame_tool_bar.
9990 (xg_create_tool_bar): Connect xg_tool_bar_expose_callback to expose
9991 on the tool bar widget.
9992 (update_frame_tool_bar): Connect xg_tool_bar_item_expose_callback
9993 to expose on the tool bar item widgets.
9994
9995 2003-03-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9996
9997 * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of
9998 struct image* when deciding to update (struct image* may have been
9999 deleted from the image cache).
10000
10001 * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if
10002 the event isn't for a frame (i.e. for dialogs).
10003
10004 2003-03-07 Kenichi Handa <handa@m17n.org>
10005
10006 * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of
10007 composition components reaches the limit, terminate composing.
10008 (COMPOSITION_OK): New macro.
10009 (detect_coding_iso2022): Use it if an escape sequence for
10010 composition is found.
10011 (coding_restore_composition): Adjust the number of composition
10012 components if it is not sane.
10013
10014 2003-03-06 Juanma Barranquero <lektu@terra.es>
10015
10016 * w32term.h (struct w32_display_info): Add xrdb member to support
10017 passing resources via -xrm on Windows.
10018
10019 * w32term.c (w32_make_rdb): New function.
10020 (w32_term_init): Use it to initialize xrdb member of w32_display_info
10021 struct. Delete leftover code.
10022
10023 * w32fns.c (Fx_get_resource, x_get_resource_string): Pass xrdb to check
10024 for resources passed on the command line.
10025
10026 * w32reg.c (w32_get_rdb_resource): New function.
10027 (x_get_string_resource): Use it, so resources passed with -xrm
10028 supercede the ones in the registry.
10029
10030 2003-03-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10031
10032 * xterm.c (x_detect_focus_change): Call x_any_window_to_frame
10033 instead of x_top_window_to_frame.
10034
10035 2003-03-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10036
10037 * xsmfns.c (smc_save_yourself_CB): Add --no-splash to options
10038 when restarting Emacs.
10039
10040 2003-03-03 Richard M. Stallman <rms@gnu.org>
10041
10042 * buffer.c (Fkill_buffer): Use Frun_hook_with_args_until_failure
10043 to run kill-buffer-query-functions.
10044 (Qkill_buffer_query_functions): New var.
10045 (syms_of_buffer): Init and staticpro it.
10046
10047 2003-03-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10048
10049 * xterm.h (XSync): Define as gdk_window_process_all_updates for GTK.
10050
10051 2003-02-25 Kim F. Storm <storm@cua.dk>
10052
10053 * xdisp.c (redisplay_window): Fix infinite loop in redisplay.
10054 If centering point failed to make whole line visible and vscroll
10055 is non-zero, disable vscroll and try centering point again.
10056
10057 * lread.c (read1): Accept `single space' syntax like (? x).
10058
10059 2003-02-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10060
10061 * keyboard.c (cancel_hourglass_unwind): Surround with
10062 #ifdef HAVE_X_WINDOWS
10063
10064 2003-02-25 Kenichi Handa <handa@m17n.org>
10065
10066 * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer
10067 process only when "subprocesses" is defined.
10068
10069 2003-02-24 Stefan Monnier <monnier@cs.yale.edu>
10070
10071 * syntax.c (back_comment): Only check nestedness of 2nd char if needed.
10072
10073 2003-02-24 Juanma Barranquero <lektu@terra.es>
10074
10075 * callint.c (fix_command): Declare as static void and move before
10076 Fcall_interactively.
10077
10078 * xdisp.c (Qwhen): Declare external; it's now defined in callint.c.
10079 (syms_of_xdisp): Don't initialize Qwhen.
10080
10081 2003-02-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10082
10083 * keyboard.c (cancel_hourglass_unwind): New function.
10084 (command_loop_1): Cancel hourglass with unwind-protect.
10085
10086 2003-02-23 Richard M. Stallman <rms@gnu.org>
10087
10088 * callint.c (fix_command): New subroutine, from Fcall_interactively.
10089 Detect (when ... (region-beginning)) etc.
10090 (Fcall_interactively): Call fix_command.
10091 (Qif, Qwhen): New variables.
10092 (syms_of_callint): Init and staticpro them.
10093
10094 * regex.c (print_partial_compiled_pattern): Output to stderr.
10095
10096 2003-02-23 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
10097
10098 * dired.c (directory_files_internal): Don't expand directory.
10099 (Fdirectory_files, Fdirectory_files_and_attributes): Do it here
10100 instead. From Lars Hansen <larsh@math.ku.dk>.
10101
10102 2003-02-22 Stefan Monnier <monnier@cs.yale.edu>
10103
10104 * fns.c (string_to_multibyte): Remove unused var i.
10105 (Flanginfo): Fix int/Lisp_Object mixup.
10106 (void_call2): New fun.
10107 (Fmap_char_table): Use it in place of call2.
10108
10109 * xfaces.c (x_face_list_fonts): Fix int/Lisp_Object mixup.
10110
10111 * macros.c (Fstart_kbd_macro): Remove redundant assignment.
10112
10113 * keymap.c (copy_keymap_1): Make it static.
10114
10115 * alloc.c (Fgarbage_collect): Don't use XSETFLOAT.
10116
10117 2003-02-22 David Ponce <david@dponce.com>
10118
10119 * lread.c (Fload): Don't check STRING_MULTIBYTE.
10120
10121 2003-02-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10122
10123 * process.h: Removed subtty field from struct Lisp_Process.
10124
10125 * process.c (create_process): Remove setting of subtty.
10126 (emacs_get_tty_pgrp): New function.
10127 (Fprocess_running_child_p, process_send_signal):
10128 Call emacs_get_tty_pgrp instead of ioctl.
10129 (process_send_signal): Call EMACS_KILLPG if ioctl TIOCSIGSEND fails.
10130
10131 2003-02-21 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
10132
10133 * keymap.c (Fdefine_key): Doc fix.
10134
10135 2003-02-21 Juanma Barranquero <lektu@terra.es>
10136
10137 Port of patch for RC by Klaus Zeitler <kzeitler@lucent.com>.
10138
10139 * s/hpux10.h: Define POLL_INTERRUPTED_SYS_CALL, not
10140 POLLING_PROBLEM_IN_SELECT.
10141
10142 * s/hpux11.h: Include hpux10-20.h instead of hpux10.h.
10143 Delete #undef of POLLING_PROBLEM_IN_SELECT.
10144
10145 * s/hpux10-20.h: New file.
10146
10147 * process.c (wait_reading_process_input):
10148 Use POLL_INTERRUPTED_SYS_CALL, not POLLING_PROBLEM_IN_SELECT.
10149
10150 2003-02-20 Kenichi Handa <handa@m17n.org>
10151
10152 * fontset.c (check_fontset_name): If NAME is nil, return the
10153 default fontset.
10154 (override_font_info): New function.
10155 (Fset_fontset_font): Document that NAME nil means the default fontset.
10156 (Ffontset_info): If FONTSET is not the default fontset, merge
10157 FONTSET onto the copy of the default fontset, and work on that
10158 copy. Document that NAME nil means the default fontset.
10159 (Ffontset_font): Document that NAME nil means the default fontset.
10160
10161 * process.c (setup_process_coding_systems): If the process's
10162 in/out descriptor is -1, do nothing.
10163
10164 2003-02-19 Andreas Schwab <schwab@suse.de>
10165
10166 * lisp.h (Fcancel_kbd_macro_events, Fstring_to_multibyte):
10167 Add prototypes.
10168
10169 2003-02-19 Kenichi Handa <handa@m17n.org>
10170
10171 * xfaces.c (try_alternative_families): Try all scalable fonts if
10172 Vscalable_fonts_allowed is not Qt.
10173
10174 2003-02-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10175
10176 * xfaces.c (x_face_list_fonts): Set *pfonts to 0 if no fonts found.
10177
10178 2003-02-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10179
10180 * xterm.c (x_list_fonts): If maxnames is less than 0, get all font
10181 names.
10182
10183 * xfaces.c (x_face_list_fonts): Allocate struct font_name here.
10184 (sorted_font_list): Move allocation of struct font_name to
10185 x_face_list_fonts.
10186 (Fx_font_family_list): Set font-list-limit to -1 to get all font names.
10187 (Fx_list_fonts): Set maxnames to -1 to get all font names.
10188
10189 2003-02-18 Kim F. Storm <storm@cua.dk>
10190
10191 * lread.c (read1): Fix last change.
10192 "`" is not always special. Allow "?" after a character constant.
10193
10194 2003-02-18 Andrew Choi <akochoi@shaw.ca>
10195
10196 * unexmacosx.c (copy_data_segment): Also copy __cfstring section.
10197
10198 2003-02-18 Andreas Schwab <schwab@suse.de>
10199
10200 * window.c (window_scroll_pixel_based): Move outside a
10201 multi-glyph character before setting new window start.
10202
10203 * xdisp.c (in_display_vector_p): New function.
10204 * dispextern.h (in_display_vector_p): Declare.
10205
10206 2003-02-18 Kim F. Storm <storm@cua.dk>
10207
10208 * lread.c (read1): Fix and relax read syntax.
10209 Recognize "[", ";", "#", and "?" after a dotted-pair dot.
10210 Only recognize "," after dotted-pair dot if inside backquote.
10211 Never include "`" or "," (inside backquote) in a symbol.
10212 Allow dotted-pair dot after a character constant.
10213 Allow "`" and "," (inside backquote) after a character constant.
10214
10215 2003-02-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10216
10217 * gtkutil.c (xg_tool_bar_expose_callback): New function.
10218 (xg_create_tool_bar): Force style of tool bar to be horizontal with
10219 icons. Set name of tool bar to emacs-toolbar.
10220 (update_frame_tool_bar): Connect expose event to
10221 xg_tool_bar_expose_callback.
10222
10223 2003-02-17 Richard M. Stallman <rms@gnu.org>
10224
10225 * keyboard.c (this_command_key_count_reset): New variable.
10226 Initiatize to 0 where this_command_key_count is set.
10227 (read_char): Save and restore this_command_key_count_reset
10228 around input method code.
10229 (read_char): If this_command_key_count_reset, echo reread commands.
10230 (Freset_this_command_lengths): Set this_command_key_count_reset to 1.
10231
10232 2003-02-17 Kenichi Handa <handa@m17n.org>
10233
10234 * fns.c (string_to_multibyte): Always return a multibyte string.
10235
10236 2003-02-16 Jason Rumney <jasonr@gnu.org>
10237
10238 * w32fns.c (w32_list_bdf_fonts, w32_list_fonts):
10239 Negative max_fonts parameter means list all.
10240
10241 2003-02-14 Dave Love <fx@gnu.org>
10242
10243 * fns.c (Flanginfo): Doc fix.
10244
10245 2003-02-13 Kim F. Storm <storm@cua.dk>
10246
10247 * lread.c (read_escape): Interpret \s as a SPACE character, except
10248 for \s-X in a character constant which still is the super modifier.
10249 (read1): Signal an `invalid read syntax' error if a character
10250 constant is immediately followed by a digit or symbol character.
10251
10252 * search.c (Fmatch_data): Doc fix. Explicitly state that
10253 match-data is undefined if last search failed.
10254
10255 * keymap.c (Fcommand_remapping): Rename from Fremap_command.
10256 All uses changed.
10257
10258 2003-02-12 Juanma Barranquero <lektu@terra.es>
10259
10260 * eval.c (Fdefmacro): Fix typo.
10261
10262 2003-02-12 Kim F. Storm <storm@cua.dk>
10263
10264 * macros.c (Fstart_kbd_macro): If appending, and last keyboard
10265 macro is a string, convert meta modifiers in string when copying
10266 the string into a vector.
10267
10268 2003-02-11 Kim F. Storm <storm@cua.dk>
10269
10270 * keymap.c (Fremap_command): Return nil if arg is not a symbol.
10271
10272 2003-02-11 Kenichi Handa <handa@m17n.org>
10273
10274 * Makefile.in (lisp, shortlisp): Add malayalam.el and tamil.el.
10275
10276 2003-02-10 Kim F. Storm <storm@cua.dk>
10277
10278 * process.c: Doc fixes.
10279 (syms_of_process): Add `:' prefix to QCfilter_multibyte.
10280
10281 2003-02-10 Kenichi Handa <handa@m17n.org>
10282
10283 * fns.c (Fstring_to_multibyte): Fix typo in the docstring.
10284
10285 * process.c (QCfilter_multibyte): New variable.
10286 (setup_process_coding_systems): New function.
10287 (Fset_process_buffer, Fset_process_filter):
10288 Call setup_process_coding_systems.
10289 (Fstart_process): Initialize the member `filter_multibyte' of
10290 struct Lisp_Process.
10291 (create_process): Call setup_process_coding_systems.
10292 (Fmake_network_process): New keyward `:filter-multibyte'.
10293 Initialize the member `filter_multibyte' of struct Lisp_Process.
10294 Call setup_process_coding_systems.
10295 (server_accept_connection): Call setup_process_coding_systems.
10296 (read_process_output): If the process has a filter, decide the
10297 multibyteness of a string to given to the filter by
10298 `filter_multibyte' member of the process. If the process doesn't
10299 have a filter and the result of conversion is unibyte, use
10300 Fstring_to_multibyte (not Fstring_make_multibyte) to get the
10301 multibyte form.
10302 (Fset_process_coding_system): Call setup_process_coding_systems.
10303 (Fset_process_filter_multibyte): New function.
10304 (Fprocess_filter_multibyte_p): New function.
10305 (syms_of_process): Intern and staticpro QCfilter_multibyte.
10306 Defsubr Sset_process_filter_multibyte and
10307 Sprocess_filter_multibyte_p.
10308
10309 * process.h (struct Lisp_Process): New member filter_multibyte.
10310
10311 * lisp.h (setup_process_coding_systems): Add prototype.
10312
10313 * buffer.c (Fset_buffer_multibyte): If the current buffer has a
10314 process, update coding systems for the process.
10315
10316 2003-02-09 Kenichi Handa <handa@m17n.org>
10317
10318 * fns.c (string_to_multibyte): New function.
10319 (Fstring_to_multibyte): New function.
10320 (syms_of_fns): Defsubr it.
10321
10322 2003-02-08 Andreas Schwab <schwab@suse.de>
10323
10324 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
10325 instead of the substitution.
10326
10327 2003-02-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10328
10329 * xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
10330
10331 * xmenu.c (menu_position_func): Adjust menu popup position so that
10332 the menu is fully visible.
10333
10334 2003-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10335
10336 * xterm.c (x_text_icon, x_raise_frame, x_lower_frame)
10337 (x_make_frame_invisible, x_wm_set_icon_position):
10338 Use FRAME_OUTER_WINDOW instead of ifdef X_TOOLKIT/else/endif.
10339
10340 * xfns.c (x_set_name, x_set_title): Ditto.
10341
10342 2003-02-04 Richard M. Stallman <rms@gnu.org>
10343
10344 * keyboard.c (echo_now): Update before_command_echo_length.
10345 (Freset_this_command_lengths): Reset this_command_key_count etc.
10346 immediately rather than arranging to do it later.
10347 (before_command_key_count_1, before_command_echo_length_1)
10348 (before_command_restore_flag): Vars deleted.
10349 (add_command_key): Don't handle before_command_restore_flag.
10350 (read_char, record_menu_key): Don't update before_command_key_count or
10351 before_command_echo_length.
10352 (read_char): Don't handle before_command_restore_flag.
10353
10354 * keyboard.c (command_loop_1): Don't call adjust_point_for_property
10355 in direct-output clauses if it wouldn't be called in the ordinary case.
10356
10357 2003-02-04 Kim F. Storm <storm@cua.dk>
10358
10359 * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix.
10360
10361 2003-02-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10362
10363 * gtkutil.c (remove_from_container): Copying list is not needed.
10364 (xg_update_menubar, xg_update_menu_item, xg_update_submenu)
10365 (xg_modify_menubar_widgets, update_frame_tool_bar): Call g_list_free
10366 on list returned from gtk_container_get_children to avoid memory leak.
10367
10368 2003-02-01 Jason Rumney <jasonr@gnu.org>
10369
10370 * w32fns.c (w32_create_pixmap_from_bitmap_data): Use alloca for
10371 local malloc.
10372 [HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
10373 definitions in xpm.h.
10374 (init_xpm_functions): New function.
10375 (xpm_load): Sync with xfns.c. Adapt for Windows version of libXpm.
10376 (init_external_image_libraries): Try to load libXpm.dll.
10377
10378 * fileio.c (Fcopy_file) [WINDOWSNT]: Reverse logic for setting
10379 timestamp.
10380
10381 2003-01-31 Dave Love <fx@gnu.org>
10382
10383 * syntax.c (Fskip_chars_forward)
10384 (open-paren-in-column-0-is-defun-start): Doc fix.
10385
10386 2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
10387
10388 * fileio.c: Support // at start of name for Cygwin (just added proper
10389 preprocessor tests).
10390
10391 * keyboard.c: Port to Cygwin (just added proper preprocessor tests).
10392
10393 * Makefile.in: Use @EXEEXT@ for Cygwin.
10394
10395 * mem-limits.h: Added ifdef to define BSD4_2 for Cygwin.
10396
10397 * s/cygwin.h: Added for Cygwin port.
10398
10399 2003-01-31 Juanma Barranquero <lektu@terra.es>
10400
10401 * w32fns.c (DrawText): Kludge to avoid a redefinition on Windows
10402 when including gif_lib.h.
10403 (init_gif_functions, init_tiff_functions): New functions.
10404 (gif_load, tiff_load): Sync with xfns.c version. Adjust colors for
10405 Windows. Disable color table lookups. Call library functions
10406 through pointers determined at runtime.
10407 (init_external_image_libraries): Try to load libungif.dll and
10408 libtiff.dll.
10409
10410 2003-01-31 Kenichi Handa <handa@m17n.org>
10411
10412 * xdisp.c (SKIP_GLYPHS): New macro.
10413 (set_cursor_from_row): Skip all glyphs that comes from overlay string.
10414
10415 2003-01-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10416
10417 * gtkutil.c (free_frame_tool_bar): Remove debug printf.
10418
10419 2003-01-30 Dave Love <fx@gnu.org>
10420
10421 * alloc.c (Vgc_elapsed, gcs_done): New variables.
10422 (Fgarbage_collect): Use them.
10423 (init_alloc, syms_of_alloc): Set them up.
10424
10425 2003-01-30 Juanma Barranquero <lektu@terra.es>
10426
10427 * w32fns.c (init_external_image_libraries): Add missing operator.
10428
10429 2003-01-29 Jason Rumney <jasonr@gnu.org>
10430
10431 * w32fns.c (init_external_image_libraries): Allow jpeg-62.dll as
10432 an alternative name for jpeg.dll.
10433
10434 2003-01-29 Kenichi Handa <handa@m17n.org>
10435
10436 * xdisp.c (set_cursor_from_row): Pay attention to string display
10437 properties.
10438
10439 2003-01-28 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
10440
10441 * macterm.c (keycode_to_xkeysym_table): Add <tab>, <backspace>,
10442 <escape>.
10443 (keycode_to_xkeysym_table): Reformat and add more comments.
10444 (XTread_socket): Drop special case for backspace.
10445
10446 2003-01-28 Andrew Choi <akochoi@shaw.ca>
10447
10448 * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
10449 values in old-style RGB specs.
10450
10451 2003-01-27 Juanma Barranquero <lektu@terra.es>
10452
10453 * w32fns.c (init_external_image_libraries): Try alternate names for the
10454 jpeg dll.
10455
10456 2003-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10457
10458 * gtkutil.c (create_dialog, xg_separator_p)
10459 (xg_item_label_same_p, xg_update_menu_item): Check for NULL string
10460 before calling strcmp or strlen.
10461
10462 2003-01-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10463
10464 * gtkutil.c (update_frame_tool_bar): Call prepare_image_for_display
10465 and handle image load failure.
10466
10467 2003-01-26 Jason Rumney <jasonr@gnu.org>
10468
10469 * w32fns.c (init_jpeg_functions, jpeg_resync_to_restart_wrapper):
10470 New functions.
10471 (jpeg_load): Sync with xfns.c version. Adjust colors for Windows.
10472 Disable color table lookups. Call jpeg library functions
10473 through pointers determined at runtime.
10474 (init_external_image_libraries): Try to load jpeg.dll.
10475
10476 2003-01-25 Richard M. Stallman <rms@gnu.org>
10477
10478 * lisp.h: Declare format2 instead of format1.
10479
10480 * fileio.c (barf_or_query_if_file_exists):
10481 Call format2 instead of format1.
10482
10483 * editfns.c (format2): New function, replaces format1
10484 but takes exactly two Lisp Objects as format args.
10485
10486 * buffer.c (Fkill_buffer): Call format2 instead of format1.
10487
10488 2003-01-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10489
10490 * xterm.h: Change to return value of x_dispatch_event to int.
10491
10492 * xterm.c (x_filter_event): New function.
10493 (event_handler_gdk, XTread_socket): Call x_filter_event.
10494 (x_dispatch_event): Change to return value of finish.
10495 (event_handler_gdk): Use return value from x_dispatch_event.
10496
10497 * xfns.c (x_window): Call create_frame_xic for GTK version to
10498 initialize input methods.
10499
10500 * gtkutil.h: Add (void) prototypes.
10501
10502 * gtkutil.c (create_menus): Remove code that puts the help menu to
10503 the right.
10504
10505 2003-01-25 Jason Rumney <jasonr@gnu.org>
10506
10507 * w32fns.c (XPutPixel): Handle monochrome images; used for masks.
10508 [HAVE_PNG]: Sync with xfns.c version.
10509 (png_load): Adjust colors for Windows. Use Windows
10510 bitmaps. Disable color table lookups.
10511 (DEF_IMGLIB_FN, LOAD_IMGLIB_FN): New macros.
10512 (init_png_functions): New function.
10513 (png_read_from_memory, png_load): Call png library functions
10514 through pointers determined at runtime.
10515 (QCloader, QCbounding_box, QCpt_width, QCpt_height): Declare.
10516 (init_external_image_libraries): New function.
10517 (init_xfns): Call it.
10518
10519 2003-01-24 Andreas Schwab <schwab@suse.de>
10520
10521 * minibuf.c (Fminibuffer_message): Verify type of parameter.
10522
10523 2003-01-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10524
10525 * gtkutil.c (xg_initialize): Initialize id_to_widget here instead
10526 of static initializer.
10527
10528 2003-01-24 Dave Love <fx@gnu.org>
10529
10530 * s/gnu-linux.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define for more
10531 architectures.
10532
10533 * alloc.c (mark_stack) [!GC_LISP_OBJECT_ALIGNMENT && __GNUC__]:
10534 Use __alignof__.
10535
10536 2003-01-24 Kenichi Handa <handa@m17n.org>
10537
10538 * keyboard.c (adjust_point_for_property): New second arg MODIFIED.
10539 It it is nonzero, don't pretend that an invisible area doesn't exist.
10540 (command_loop_1): Call adjust_point_for_property with proper
10541 second arg.
10542
10543 2003-01-22 Jason Rumney <jasonr@gnu.org>
10544
10545 Sync changes with xterm.c and xfns.c.
10546
10547 * w32term.c (x_draw_glyph_string_foreground)
10548 (x_draw_composite_glyph_string_foreground): Implement overstriking.
10549
10550 * w32term.c (x_write_glyphs): Clear phys_cursor_on_p if current
10551 phys_cursor's hpos is overwritten. This is still not completely
10552 correct, as it doesn't really make sense to use hpos at all to
10553 get the cursor glyph (as that is relative to the width of the
10554 characters on the line, which may have changed during the update).
10555
10556 * w32term.c (notice_overwritten_cursor): Handle the special case
10557 of the cursor being in the first blank non-text line at the
10558 end of a window.
10559
10560 * w32term.c (x_draw_hollow_cursor, x_draw_bar_cursor)
10561 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
10562 Compute from the x position returned by x_draw_glyphs.
10563
10564 (x_display_and_set_cursor): Don't set phys_cursor_width here,
10565 except for NO_CURSOR and system caret, to make phys_cursor_width
10566 contain what its name suggests.
10567 (notice_overwritten_cursor): Consider the cursor image erased if
10568 the output area intersects the cursor image in y-direction.
10569
10570 * w32term.c (note_mode_line_or_margin_highlight): Rename from
10571 note_mode_line_highlight and extend.
10572
10573 * w32term.c (last_window): New variable.
10574 (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs.
10575 (note_mouse_movement): Remove reimplemented code in #if 0.
10576
10577 * w32fns.c (x_set_cursor_type): Set cursor_type_changed,
10578 not update_mode_lines, and always set it to 1.
10579
10580 2003-01-21 Jason Rumney <jasonr@gnu.org>
10581
10582 * w32fns.c (IDC_HAND): Define it if system headers don't.
10583
10584 2003-01-21 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
10585
10586 * w32term.h (struct w32_output): New member hand_cursor.
10587 (WM_EMACS_SETCURSOR): New message definition.
10588
10589 * w32term.c (note_mode_line_highlight): Delete #if 0 to enable
10590 function w32_define_cursor.
10591 (note_mouse_highlight): Initialize, setup cursor accoding to mouse
10592 position, change member name output_data.x to output_data.w32 and
10593 add function w32_define_cursor.
10594 (show_mouse_face): Delete #if 0 to enable function w32_define_cursor
10595 and change member name output_data.x to output_data.w32.
10596 (w32_initialize_display_info):
10597 Setup dpyinfo->vertical_scroll_bar_cursor.
10598
10599 * w32fns.c (Vx_hand_shape): New variable.
10600 (w32_wnd_proc): Add message entries for WM_SETCURSOR and
10601 WM_EMACS_SETCURSOR.
10602 (x-create-frame): Setup Cursor types.
10603
10604 2003-01-21 David Ponce <david@dponce.com>
10605
10606 * w32term.c (w32_encode_char): For DIM=1 charset, set
10607 ccl->reg[2] to -1 before calling ccl_driver. (Sync. with xterm.c
10608 x_encode_char change by Kenichi Handa <handa@m17n.org> on
10609 2002-09-30.)
10610 (w32_draw_relief_rect): Declare all args.
10611 (w32_define_cursor): New.
10612
10613 * w32fns.c (w32_load_cursor): New function.
10614 (w32_init_class): Use it.
10615 (x_put_x_image): Declare all args.
10616
10617 2003-01-21 Richard Dawe <rich@phekda.freeserve.co.uk>
10618
10619 * Makefile.in (ALL_CFLAGS): Include MYCPPFLAGS, not MYCPPFLAG.
10620
10621 2003-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10622
10623 * gtkutil.c: Must include stdio.h before termhooks.h
10624
10625 2003-01-21 Dave Love <fx@gnu.org>
10626
10627 * alloc.c (Fgc_status): Print zombie list.
10628 (mark_maybe_object) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
10629 Fix assignment of zombies.
10630 (Fgarbage_collect) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
10631 Don't take car of non-cons.
10632
10633 * s/sol2-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
10634
10635 * s/sunos4-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
10636
10637 2003-01-20 David Ponce <david@dponce.com>
10638
10639 * w32menu.c (digest_single_submenu): Declare all args.
10640
10641 Sync with 2002-12-23 Richard M. Stallman <rms@gnu.org>
10642 changes in xmenu.c:
10643
10644 (parse_single_submenu): Use individual keymap's prompt
10645 string as pane name, if there is one.
10646 (set_frame_menubar): Save menu_items_n_panes from each call to
10647 parse_single_submenu and use it when calling digest_single_submenu.
10648
10649 2003-01-20 Steven Tamm <steventamm@mac.com>
10650
10651 * macterm.c (XTread_socket): Checks for valid, visible window
10652 before sending a scroll-wheel event.
10653
10654 2003-01-20 Richard M. Stallman <rms@gnu.org>
10655
10656 * xdisp.c (redisplay_window): If mini window's buffer is not
10657 a minibuffer, then redisplay it like other windows.
10658
10659 2003-01-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10660
10661 * gtkutil.c (xg_create_frame_widgets): Check if there is an
10662 external tool bar before setting tool bar height.
10663
10664 2003-01-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10665
10666 * xterm.c (handle_one_xevent): Surround popup_activated
10667 with #ifdef:s for non-toolkit version.
10668
10669 * Makefile.in (XOBJ): Add gtkutil.o if USE_GTK
10670 (gtkutil.o): New file.
10671 (TOOLKIT_DEFINES): Set to -DUSE_GTK if HAVE_GTK.
10672 (LIBW): Set to @GTK_LIBS@ if USE_GTK.
10673
10674 * gtkutil.c: New file for GTK version.
10675
10676 * gtkutil.h: New file for GTK version.
10677
10678 * xterm.h: Add xt_or_gtk_widget.
10679 Include gtk files for USE_GTK.
10680 (struct x_output): Add toolbar_height.
10681 (struct x_output): Add GTK widgets and Gdk size_hints.
10682 (GTK_WIDGET_TO_X_WIN, FRAME_GTK_OUTER_WIDGET, FRAME_GTK_WIDGET)
10683 (FRAME_OUTER_WINDOW): New macros for USE_GTK.
10684 (FRAME_OUTER_TO_INNER_DIFF_Y): Add FRAME_TOOLBAR_HEIGHT to calculation.
10685
10686 * xterm.c: Include gtkutil.h for USE_GTK.
10687 (free_frame_menubar): Declare extern void for USE_GTK.
10688 (note_mouse_highlight): Check popup_activated for USE_GTK.
10689 (xt_action_hook): Don't compile if USE_GTK.
10690 (x_scroll_bar_to_input_event): Use CurrentTime for USE_GTK.
10691 (xg_scroll_callback): New function.
10692 (x_create_toolkit_scroll_bar): Call xg_create_scroll_bar for USE_GTK.
10693 (x_set_toolkit_scroll_bar_thumb): Call xg_set_toolkit_scroll_bar_thumb
10694 for USE_GTK.
10695 (x_scroll_bar_create): Call xg_update_scrollbar_pos and
10696 xg_show_scroll_bar for USE_GTK.
10697 (x_scroll_bar_remove): Call xg_remove_scroll_bar for USE_GTK.
10698 (XTset_vertical_scroll_bar): Call xg_update_scrollbar_pos for USE_GTK.
10699 (event_handler_gdk): New function for USE_GTK.
10700 (handle_one_xevent): Call xg_resize_widgets for USE_GTK.
10701 (handle_one_xevent): Make sure widget is mapped before
10702 calling x_real_positions for USE_GTK.
10703 (XTread_socket): Add GTK event loop for USE_GTK.
10704 (x_set_window_size): Call xg_frame_set_char_size for USE_GTK.
10705 (x_make_frame_visible): Call gtk_widget_show_all for USE_GTK.
10706 (x_make_frame_invisible): Call gtk_widget_hide for USE_GTK.
10707 (x_iconify_frame): Add code for USE_GTK.
10708 (x_free_frame_resources): Call gtk_widget_destroy for USE_GTK.
10709 (x_wm_set_size_hint): Only compile if not USE_GTK. GTK version
10710 is in gtkutil.c.
10711 (x_term_init): Add initialization for GTK.
10712 (syms_of_xterm): Set Vx_toolkit_scroll_bars for USE_GTK.
10713
10714 * xmenu.c: Include gtkutil.h for USE_GTK.
10715 (Fx_popup_menu): Use current position if x and y is NIL.
10716 (single_menu_item, single_menu_item, Fx_popup_dialog):
10717 Check for USE_GTK.
10718 (popup_widget_loop): New function for USE_GTK.
10719 (x_activate_menubar): Add code for USE_GTK.
10720 (popup_activate_callback, popup_deactivate_callback)
10721 (menu_highlight_callback, menubar_selection_callback):
10722 Add USE_GTK versions.
10723 (update_frame_menubar): Call xg_update_frame_menubar for USE_GTK.
10724 (set_frame_menubar): Call xg_modify_menubar_widgets for USE_GTK.
10725 (free_frame_menubar): Only compile if not USE_GTK. GTK version
10726 is in gtkutil.c.
10727 (popup_selection_callback): New version for USE_GTK.
10728 (create_and_show_popup_menu): New fuction, one USE_GTK version and
10729 one USE_X_TOOLKIT version.
10730 (xmenu_show): Call create_and_show_popup_menu.
10731 (dialog_selection_callback): New version for USE_GTK.
10732 (create_and_show_dialog): New fuction, one USE_GTK version and
10733 one USE_X_TOOLKIT version.
10734 (xdialog_show): Call create_and_show_dialog.
10735
10736 * xfns.c: Include gtkutil for USE_GTK.
10737 (x_window_to_frame, x_any_window_to_frame)
10738 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
10739 (x_top_window_to_frame): Add code for USE_GTK.
10740 (x_set_background_color): Call xg_set_background_color for GTK.
10741 (x_set_menu_bar_lines): Check for USE_GTK.
10742 (x_set_tool_bar_lines): Call update_frame_tool_bar for USE_GTK.
10743 (x_set_name, x_set_title): Call gtk_window_set_title for USE_GTK.
10744 (x_window): Call xg_create_frame_widgets for USE_GTK.
10745 (Fx_create_frame): Check for USE_GTK
10746 (Fx_file_dialog): New implementation for USE_GTK.
10747
10748 * xdisp.c: Add check for USE_GTK for extern void set_frame_menubar.
10749 (update_menu_bar): Add check for USE_GTK.
10750 (update_tool_bar): Add check for USE_GTK and external tool bar.
10751 (redisplay_tool_bar): Add check for USE_GTK and external tool bar.
10752 (redisplay_internal): Add check for USE_GTK and popup_activated.
10753 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_MENU_BAR.
10754 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_TOOL_BAR.
10755 (display_menu_bar): Add check for USE_GTK
10756
10757 * lisp.h (Vx_resource_name): Declare extern.
10758
10759 * keyboard.c (kbd_buffer_get_event): Check MENU_BAR_ACTIVATE_EVENT
10760 for USE_GTK.
10761 (make_lispy_event): Check MENU_BAR_EVENT for USE_GTK.
10762
10763 * frame.h (struct frame): Add external_tool_bar. Check for USE_GTK.
10764 (FRAME_EXTERNAL_TOOL_BAR): New macro.
10765 (FRAME_EXTERNAL_MENU_BAR): Check for USE_GTK.
10766
10767 * fileio.c (Fread_file_name): Add check for USE_GTK.
10768
10769 * dispnew.c (adjust_frame_glyphs_for_window_redisplay):
10770 Add check for USE_GTK.
10771
10772 * config.in: Added HAVE_GTK
10773
10774 * alloc.c (Fgarbage_collect): Call xg_mark_data for GTK.
10775
10776 2003-01-18 Stefan Monnier <monnier@cs.yale.edu>
10777
10778 * charset.h (Funibyte_char_to_multibyte): Export.
10779
10780 2003-01-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10781
10782 * xmenu.c (mouse_position_for_popup): New function.
10783 (Fx_popup_menu): Call mouse_position_for_popup for X and
10784 mouse_position_hook for others.
10785
10786 2003-01-17 Kim F. Storm <storm@cua.dk>
10787
10788 * editfns.c (Finsert): Mention `string-make-multibyte' and
10789 `string-as-multibyte' in doc string.
10790
10791 2003-01-17 Kenichi Handa <handa@m17n.org>
10792
10793 * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here.
10794
10795 * editfns.c (Fformat): Convert an unibyte char argument that is
10796 formatted by "%c" to multibyte if the total result must be a
10797 multibyte string.
10798
10799 2003-01-16 Kim F. Storm <storm@cua.dk>
10800
10801 * process.c (set-process-filter): Document unibyte/multibyte-ness
10802 of string argument.
10803
10804 2003-01-16 Kenichi Handa <handa@m17n.org>
10805
10806 * charset.h (NEXT_CHAR_BOUNDARY, PREV_CHAR_BOUNDARY): New macros.
10807
10808 * regex.c (GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
10809 (re_search_2): Likewise.
10810
10811 2003-01-15 Kenichi Handa <handa@m17n.org>
10812
10813 * xdisp.c (message_dolog): Fix bug of the case that *Message*
10814 buffer is unibyte.
10815
10816 2003-01-15 Francesco Potort\e,Al\e(B <pot@gnu.org>
10817
10818 * fns.c (Fsubstring): Clarify doc string.
10819
10820 * textprop.c (Ftext_properties_at, Fnext_char_property_change)
10821 (Fprevious_char_property_change)
10822 (Fnext_single_char_property_change)
10823 (Fprevious_single_char_property_change, Fnext_property_change)
10824 (Fnext_single_property_change, Fprevious_property_change)
10825 (Fprevious_single_property_change, Fadd_text_properties)
10826 (Fput_text_property, Fset_text_properties)
10827 (Fremove_text_properties, Fremove_list_of_text_properties)
10828 (Ftext_property_any, Ftext_property_not_all): Clarify doc strings.
10829
10830 2003-01-14 Kim F. Storm <storm@cua.dk>
10831
10832 * process.h (struct Lisp_Process): New member plist replaces old
10833 member private_vars. All uses changed.
10834
10835 * process.c: Reworked 2003-01-12 change -- call a plist a plist!
10836 (QCplist): Rename from QCvars. Change all uses.
10837 (Fprocess_plist): Replaces Fprocess_variable. Simplified.
10838 (Fset_process_plist): Replaces Fset_process_variable. Simplify.
10839 (syms_of_process): Intern, staticpro, defsubr these.
10840 (Fmake_network_process): Describe :plist arg. Remove :vars arg.
10841
10842 2003-01-14 Francesco Potort\e,Al\e(B <pot@gnu.org>
10843
10844 * m/delta.h: Remove (obsolete).
10845
10846 2003-01-13 Francesco Potort\e,Al\e(B <pot@gnu.org>
10847
10848 * fileio.c (Fdelete_directory, Fdelete_file): Document the
10849 behaviour in front of symlinks.
10850 (Fdelete_file): Raise an error on directories.
10851
10852 2003-01-13 Dave Love <fx@gnu.org>
10853
10854 * fns.c (Freverse): Use QUIT.
10855
10856 2003-01-13 Richard M. Stallman <rms@gnu.org>
10857
10858 * minibuf.c (minibuffer_completion_contents):
10859 Error if point is inside prompt.
10860
10861 * keyboard.c (command_loop_1): Don't redisplay directly
10862 if there's a post-command-hook.
10863
10864 * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix.
10865 (Fdo_auto_save): Add gcpros around Ffile_name_directory.
10866
10867 2003-01-12 Kim F. Storm <storm@cua.dk>
10868
10869 * process.h (struct Lisp_Process): New member private_vars.
10870
10871 * process.c (QCvars): New variable.
10872 (syms_of_process): Intern and staticpro it.
10873 (Fset_process_contact): Removed function.
10874 (Fprocess_variable, Fset_process_variable): New functions.
10875 (syms_of_process): Defsubr them.
10876 (Fstart_process): Initialize private_vars plist to nil.
10877 (Fmake_network_process): New arg :vars to setup the private
10878 variables for new network process.
10879 (server_accept_connection): Copy server's private variables to
10880 client process.
10881
10882 * alloc.c (pure_alloc): Fixed 2003-01-10 changed (caused spurious
10883 crashes). Code rewritten and simplified. Now directly aligns the
10884 pointer and recalculates pure_bytes_used, rather than aligning the
10885 size and adjusting the pointer.
10886
10887 2003-01-11 Kim F. Storm <storm@cua.dk>
10888
10889 * process.c (Fset_process_contact): New function.
10890 (syms_of_process): defsubr it.
10891 (make-network-process): Update doc.
10892
10893 2003-01-10 Andreas Schwab <schwab@suse.de>
10894
10895 * alloc.c (pure_alloc): Correct alignment for Lisp_Floats.
10896 Reported by Berthold Gunreben <b.gunreben@web.de>.
10897
10898 2003-01-10 Dave Love <fx@gnu.org>
10899
10900 * composite.c (syms_of_composite): Make composition_hash_table weak.
10901
10902 2003-01-09 Kim F. Storm <storm@cua.dk>
10903
10904 * process.c (Fmake_network_process): Convert new port number
10905 to host byte order for `:service t' case. From Mario Lang.
10906
10907 2003-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10908
10909 * xfns.c (Fx_file_dialog): Call XtAppNextEvent and x_dispatch_event
10910 instead of XtAppProcessEvent.
10911
10912 * xterm.c (handle_one_xevent): New function.
10913 (x_dispatch_event): New function.
10914 (XTread_socket): Call handle_one_xevent.
10915
10916 * xterm.h (FRAME_OUTER_TO_INNER_DIFF_X/Y): New.
10917
10918 * xmenu.c (Fx_popup_menu): If popping up at mouse position,
10919 call XQueryPointer to get coordinates.
10920 (popup_get_selection): Do not set popup_activated_flag to zero,
10921 let popup_deactivate_callback do that. Needed for Motif.
10922 Call x_dispatch_event instead of XtDispatchEvent.
10923 (xmenu_show): Calculate root coordinate from frame top/left position.
10924
10925 2003-01-08 Kim F. Storm <storm@cua.dk>
10926
10927 * process.c (server_accept_connection): Fix recording of new
10928 connection's local address in :local property of contact info.
10929 (Fmake_network_process): Record local network address for new
10930 client processes in :local property of contact info.
10931 (format-network-address): Add arg OMIT-PORT. Change callers.
10932
10933 2003-01-07 Dave Love <fx@gnu.org>
10934
10935 * Makefile.in (fns.o): Depend on coding.h.
10936
10937 2003-01-07 Markus Rost <rost@math.ohio-state.edu>
10938
10939 * minibuf.c (Fread_variable): Doc fix.
10940
10941 * eval.c (Fuser_variable_p): Doc change. For custom variables,
10942 use the same test as for custom-variable-p.
10943
10944 2003-01-05 Richard M. Stallman <rms@gnu.org>
10945
10946 * xdisp.c (try_scrolling): New arg LAST_LINE_MISFIT.
10947 Count LAST_LINE_MISFIT in scroll margin for end of window.
10948 Move label too_near_end before setting SCROLL_MARGIN_POS.
10949 Set LAST_LINE_MISFIT before jumping there.
10950
10951 * xdisp.c (try_scrolling): Calculate amount_to_scroll better in
10952 scroll_conservatively case. If scrolling that much doesn't change
10953 STARTP, move it down one line.
10954
10955 * xdisp.c (redisplay_window): Pass last_line_misfit arg to
10956 try_scrolling. Make it 1 after make_cursor_line_fully_visible fails.
10957
10958 * xdisp.c (setup_echo_area_for_printing): Kill Emacs if no
10959 selected frame.
10960
10961 * keymap.c (apropos_predicate, apropos_accumulate): Make them static.
10962 (syms_of_keymap): Staticpro them.
10963 (Fapropos_internal): Initialize them and clear them out.
10964 Don't GCPRO them.
10965
10966 * buffer.c (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>:
10967 Doc fixes.
10968
10969 * lisp.h: New misc type Lisp_Save_Value.
10970 (enum Lisp_Misc_Type): Add Lisp_Misc_Save_Value.
10971 (XSAVE_VALUE): New macro.
10972 (struct Lisp_Save_Value): New data type.
10973 (union Lisp_Misc): Add u_save_value alternative.
10974 (make_save_value): Declare.
10975
10976 * alloc.c (make_save_value): New function.
10977
10978 * xterm.c (x_catch_errors): Save dpy using make_save_value.
10979 (x_catch_errors_unwind): Call XSync.
10980
10981 2003-01-01 Richard M. Stallman <rms@gnu.org>
10982
10983 * window.c (window_scroll_pixel_based): Partially undo last change.
10984
10985 * keyboard.c (command_loop_1): Call adjust_point_for_property
10986 in direct action cases for Qforward_char and Qbackward_char.
10987 Set already_adjusted so it won't be done twice.
10988
10989 2002-12-30 Richard Dawe <rich@phekda.freeserve.co.uk>
10990
10991 * src/config.in (!HAVE_SIZE_T): Fix order of arguments in
10992 type definition of size_t.
10993
10994 2003-01-02 Steven Tamm <steventamm@mac.com>
10995
10996 * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to
10997 distinguish Carbon GUI builds from X11 builds on darwin.
10998
10999 2002-12-30 Steven Tamm <steventamm@mac.com>
11000
11001 * macterm.c (syms_of_macterm): Set mac-wheel-button-is-mouse-2
11002 to default to t.
11003
11004 2002-12-29 Francesco Potort\e,Al\e(B <pot@gnu.org>
11005
11006 * data.c (Fstring_to_number, Fminus): Better English in doc strings.
11007
11008 2002-12-28 Steven Tamm <steventamm@mac.com>
11009
11010 * Makefile.in (macosx-bundle): Fixes to Mac OS X/Carbon port to
11011 allow building in a different directory than source. Uses some
11012 GNU Make extensions, but there is no other make on Mac OS X.
11013
11014 2002-12-26 Francesco Potort\e,Al\e(B <pot@gnu.org>
11015
11016 * data.c (Fmakunbound, Ffmakunbound, Fmake_variable_buffer_local)
11017 (Fsetq_default, Fmake_local_variable, Fkill_local_variable)
11018 (Fmake_variable_frame_local, Faset, Fnumber_to_string, Fminus)
11019 (Fstring_to_number): Mention the returned value in the doc strings.
11020
11021 2002-12-23 Richard M. Stallman <rms@gnu.org>
11022
11023 * buffer.c (syms_of_buffer) <scroll-up-aggressively>
11024 <scroll-down-aggressively>: Doc fix.
11025
11026 * xmenu.c (parse_single_submenu): Use individual keymap's prompt
11027 string as pane name, if there is one.
11028 (set_frame_menubar): Save menu_items_n_panes from each call to
11029 parse_single_submenu and use it when calling digest_single_submenu.
11030
11031 * window.c (window_scroll_pixel_based): Fix check for reaching BEGV.
11032 Don't try to make last line fully visible if it is past end of window.
11033
11034 2002-12-22 Steven Tamm <steventamm@mac.com>
11035
11036 * macmenu.c (MIN_POPUP_SUBMENU_ID): Add.
11037 (mac_menu_show): Add support for hierarchical popup menus.
11038 (add_menu_item): Remove indentation support.
11039 (fill_submenu, fill_menu): Create hierarchical menus
11040 instead of using indentation.
11041
11042 2002-12-22 Richard M. Stallman <rms@gnu.org>
11043
11044 * xdisp.c (try_cursor_movement): Don't call try_window here.
11045 (redisplay_window): Never redisplay minibuffer when inactive.
11046
11047 * window.c (select_window_1): Undo 9/21 change.
11048
11049 2002-12-22 Steven Tamm <steventamm@mac.com>
11050
11051 * macterm.c (XTread_socket): Call KeyTranslate for control and
11052 meta to deal correctly shifted non-alpha characters, like C-S-5
11053 being treated like C-%. Does not look for shift key to deal
11054 with masking off control-key with mac-reverse-ctrl-meta.
11055
11056 2002-12-21 Richard M. Stallman <rms@gnu.org>
11057
11058 * xmenu.c (popup_get_selection): Now static. New arg DO_TIMERS.
11059 If it is non-nil, run timers. Use an unwind-protect to requeue
11060 the events that were read ahead.
11061 (popup_get_selection_unwind): New subroutine.
11062 (popup_get_selection_queue): File-scope variable now holds that queue.
11063 (xmenu_show): Pass 0 for DO_TIMERS to popup_get_selection.
11064 (xdialog_show): Pass 1 for DO_TIMERS to popup_get_selection.
11065 Use an unwind-protect to pop down the dialog box.
11066 (xdialog_show_unwind): New subroutine implements that.
11067
11068 * xdisp.c (row_containing_pos): Change exit test using last_y.
11069 (try_window_id): Abort if row_containing_pos returns null.
11070
11071 * lread.c (load_error_handler): New function.
11072 (Fload): Handle errors in Fsubstitute_in_file_name.
11073 Don't expect Fsignal to return.
11074
11075 * eval.c: Errors and throws work right with interrupt blocking.
11076 (struct catchtag): New elt interrupt_input_blocked.
11077 (unwind_to_catch): Restore interrupt_input_blocked from saved value.
11078 (internal_catch, Fcondition_case, internal_condition_case)
11079 (internal_condition_case_1, internal_condition_case_2): Save it.
11080 (Fsignal): Don't do TOTALLY_UNBLOCK_INPUT.
11081
11082 * editfns.c (Fformat): Add parens.
11083
11084 * dired.c (file_name_completion): Fix that change.
11085 Delete special quit-handling code; just use QUIT.
11086
11087 2002-12-21 Tak Ota <Takaaki.Ota@am.sony.com>
11088
11089 * dired.c (file_name_completion): Close directory on error
11090 just as in directory_files_internal.
11091
11092 2002-12-19 David Kastrup <David.Kastrup@t-online.de>
11093
11094 * window.c (Fset_window_configuration): Set old_point to correct
11095 value when new_current_buffer == current_buffer.
11096
11097 2002-12-17 Ben Key <bkey1@tampabay.rr.com>
11098
11099 Revisited my earlier fix for the following entry in etc/PROBLEMS:
11100 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
11101 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
11102
11103 These changes were in part based upon suggestions made by Peter
11104 'Luna' Runestig [peter@runestig.com].
11105
11106 * w32.c (g_b_init_is_windows_9x, g_b_init_open_process_token)
11107 (g_b_init_get_token_information, g_b_init_lookup_account_sid)
11108 (g_b_init_get_sid_identifier_authority ): Add several static
11109 global variables.
11110
11111 * w32.c (globals_of_w32): New function. Used to initialize those
11112 global variables that must always be initialized on startup even
11113 when the global variable initialized is non zero. Its primary
11114 purpose at this time is to set the global variables
11115 g_b_init_is_windows_9x, g_b_init_open_process_token,
11116 g_b_init_get_token_information, g_b_init_lookup_account_sid, and
11117 g_b_init_get_sid_identifier_authority to 0 on startup.
11118 Called from main.
11119
11120 * w32.c (is_windows_9x): Perform initialization only if
11121 g_b_init_is_windows_9x is equal to 0. On initialization set
11122 g_b_init_is_windows_9x equal to 1.
11123
11124 * w32.c (open_process_token): Perform initialization only if
11125 g_b_init_open_process_token is equal to 0. On initialization set
11126 g_b_init_open_process_token equal to 1.
11127
11128 * w32.c (get_token_information): Perform initialization only if
11129 g_b_init_get_token_information is equal to 0. On initialization
11130 set g_b_init_get_token_information equal to 1.
11131
11132 * w32.c (lookup_account_sid): Perform initialization only if
11133 g_b_init_lookup_account_sid is equal to 0. On initialization
11134 set g_b_init_lookup_account_sid equal to 1.
11135
11136 * w32.c (get_sid_identifier_authority): Perform initialization
11137 only if g_b_init_get_sid_identifier_authority is equal to 0.
11138 On initialization set g_b_init_get_sid_identifier_authority equal to 1.
11139
11140 * w32fns.c (globals_of_w32fns): New function. Used to initialize
11141 those global variables that must always be initialized on startup
11142 even when the global variable initialized is non zero.
11143 Its primary purpose at this time is to initialize the global variable
11144 track_mouse_event_fn.
11145
11146 * w32fns.c (w32_wnd_proc): Remove initialization of
11147 track_mouse_event_fn from the handler for the WM_SETFOCUS message.
11148
11149 * w32fns.c (syms_of_w32fns): Call globals_of_w32fns.
11150
11151 * w32menu.c (globals_of_w32menu): New function. Used to
11152 initialize those global variables that must always be initialized
11153 on startup even when the global variable initialized is non zero.
11154 Its primary purpose at this time is to initialize the global
11155 variables get_menu_item_info and set_menu_item_info.
11156
11157 * w32menu.c (initialize_frame_menubar): Remove initialization of
11158 get_menu_item_info and set_menu_item_info.
11159
11160 * w32menu.c (syms_of_w32menu): Call globals_of_w32menu.
11161
11162 * w32.h (globals_of_w32, globals_of_w32fns, globals_of_w32menu):
11163 Declare them.
11164
11165 * emacs.c (main): Call globals_of_w32 prior to calling
11166 init_environment if WINDOWSNT is defined. Call globals_of_w32fns
11167 and globals_of_w32menu if initialized is non zero and HAVE_NTGUI
11168 is defined.
11169
11170 * w32term.c (x_update_window_begin): Fix Windows API error
11171 detected by BoundsChecker. Test to determine if
11172 w32_system_caret_hwnd is NULL prior to attempting to use
11173 SendMessage to send the WM_EMACS_HIDE_CARET message to it.
11174
11175 * w32term.c (x_update_window_end): Fix Windows API error
11176 detected by BoundsChecker. Test to determine if
11177 w32_system_caret_hwnd is NULL prior to attempting to use
11178 SendMessage to send the WM_EMACS_SHOW_CARET message to it.
11179
11180 2002-12-17 Kenichi Handa <handa@m17n.org>
11181
11182 * coding.c (coding_system_require_warning): New variable.
11183 (syms_of_coding): DEFVAR it.
11184
11185 * coding.h (coding_system_require_warning): Extern it.
11186
11187 * fileio.c (choose_write_coding_system): Even if
11188 Vcoding_system_for_write is non-nil, if
11189 coding_system_require_warning is nonzero, call
11190 Vselect_safe_coding_system_function.
11191
11192 2002-12-17 Markus Rost <rost@math.ohio-state.edu>
11193
11194 * Makefile.in (lisp, shortlisp): Add cus-face and timer.
11195 (lisp): Add font-core.
11196
11197 2002-12-13 Stefan Monnier <monnier@cs.yale.edu>
11198
11199 * textprop.c (text_read_only): New arg `propval'.
11200 (get_char_property_and_overlay): Remove unused var `next_overlay'.
11201 (verify_interval_modification): Use text_read_only's new arg.
11202
11203 2002-12-13 Kenichi Handa <handa@m17n.org>
11204
11205 * coding.c (Funencodable_char_position): Set pend correctly.
11206
11207 2002-12-12 Jason Rumney <jasonr@gnu.org>
11208
11209 * w32term.c (last_mousemove_x, last_mousemove_y): New variables.
11210 (w32_read_socket) <WM_MOUSEMOVE>: Use them to detect non-movement.
11211 Be more careful about when help_events are generated.
11212
11213 2002-12-12 Steven Tamm <steventamm@mac.com>
11214
11215 * macterm.c (mac_check_for_quit_char): Correctly set the
11216 modifiers of the event to 0.
11217 * mac.c (sys_select): Duplicate rfds before calling select to
11218 ensure that rfds survive the while loop.
11219
11220 2002-12-11 Kim F. Storm <storm@cua.dk>
11221
11222 * xdisp.c (try_window_id): Don't call set_cursor_from_row if
11223 row_containing_pos returned NULL.
11224
11225 2002-12-10 Steven Tamm <steventamm@mac.com>
11226
11227 * mac.c (sys_read): Fix sys_read to not call select if IO is
11228 non-blocking.
11229 (sys_select): Fix sys_select to not use a timeout larger than
11230 the one given.
11231
11232 2002-12-10 Juanma Barranquero <lektu@terra.es>
11233
11234 * editfns.c (Fformat): Use alloca, not _alloca.
11235
11236 2002-12-09 Richard M. Stallman <rms@gnu.org>
11237
11238 * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input
11239 as the last thing.
11240
11241 2002-12-09 Dave Love <fx@gnu.org>
11242
11243 * s/sol2-8.h: Removed. (Not necessary.)
11244
11245 2002-12-09 Matthew Swift <swift@alum.mit.edu>
11246
11247 * editfns.c (Fformat): Handle precision in string conversion
11248 specifiers like libc functions do (ie, print at most that many
11249 characters).
11250
11251 2002-12-08 Richard M. Stallman <rms@gnu.org>
11252
11253 * xdisp.c (row_containing_pos): Check more carefully
11254 whether charpos is really in the row before returning it.
11255
11256 2002-12-07 Steven Tamm <steventamm@mac.com>
11257
11258 * sysdep.c (emacs_read) [HAVE_CARBON]: Have emacs_read use sys_read.
11259
11260 * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at
11261 each stack frame. This may change as it could be time consuming.
11262
11263 * macterm.c (mac_check_for_quit_char, quit_char_comp)
11264 (init_quit_char_handler, mac_determine_quit_char_modifiers)
11265 (mac_initialize): Add code to check for pressing of quit_char
11266 in the OS event queue.
11267
11268 * mac.c (sys_select): Call mac_check_for_quit_char every second
11269 while blocking on select.
11270
11271 * mac.c (sys_read): Use sys_select to test for input first
11272 before calling read, to allow C-g to break.
11273
11274 2002-12-07 Richard M. Stallman <rms@gnu.org>
11275
11276 * minibuf.c (Fcompleting_read): Doc fix.
11277
11278 * lread.c (syms_of_lread) <load-history>: Doc fix.
11279
11280 * fileio.c (Fcopy_file): Set immediate_quit around emacs_open call.
11281
11282 * eval.c (Fdefun, Fdefmacro): Record in load-history redefining an
11283 autoload.
11284
11285 * data.c (Fdefalias): Record in load-history redefining an autoload.
11286
11287 * alloca.c: Undo ifdef change accidentally made on 12-04.
11288
11289 2002-12-06 Francesco Potorti` <pot@gnu.org>
11290
11291 * xfns.c (png_load): Avoid double gamma correction for PNG images.
11292
11293 2002-12-04 Richard M. Stallman <rms@gnu.org>
11294
11295 * sysdep.c (fcntl.h): Test only HAVE_FCNTL_H.
11296
11297 * fileio.c (fcntl.h): Test only HAVE_FCNTL_H.
11298
11299 * alloca.c: Don't use #error.
11300
11301 2002-12-03 Dave Love <fx@gnu.org>
11302
11303 * buffer.c (Qucs_set_table_for_input): New.
11304 (Fget_buffer_create): Use it.
11305 (Qset_buffer_major_mode_hook): Deleted.
11306 (Fset_buffer_major_mode): Revert previous change.
11307 (init_buffer_once): Intern ucs-set-table-for-input.
11308 (syms_of_buffer): Delete Qset_buffer_major_mode_hook.
11309 Add &Qucs_set_table_for_input.
11310
11311 2002-12-03 Andreas Schwab <schwab@suse.de>
11312
11313 * callint.c (Fcall_interactively): Use next_event only if less
11314 than key_count.
11315
11316 2002-12-02 Andrew Choi <akochoi@shaw.ca>
11317
11318 * macmenu.c (add_menu_item, fill_menubar): Truncate menu item
11319 names to 255 characters.
11320
11321 * macterm.c (XTread_socket): If all frames have been collapsed,
11322 expand the first one before handling drag-and-drop events.
11323
11324 * s/darwin.h (GETPGRP_NO_ARG): Delete. Replaced by GETPGRP_VOID,
11325 which is detected by autoconf.
11326
11327 2002-12-01 Steven Tamm <steventamm@mac.com>
11328
11329 * unexmacosx.c (copy_twolevelhints, dump_it): Now corrects the
11330 offset in two hints table to allow prebinding to be redone and
11331 allow the executable to be stripped.
11332
11333 2002-11-29 Dave Love <fx@gnu.org>
11334
11335 * fns.c (Frequire): Don't call LOADHIST_ATTACH if feature was
11336 already provided.
11337
11338 2002-11-29 Richard M. Stallman <rms@gnu.org>
11339
11340 * xdisp.c (start_display): Check more intelligently for
11341 whether the line is continued.
11342 (move_it_vertically_backward): Clear it->continuation_lines_width.
11343
11344 2002-11-28 Dave Love <fx@gnu.org>
11345
11346 * s/amdahl.h, s/unipl5-0.h, m/sgi3000.h, s/3700.h, s/alliant-2800.h:
11347 * s/alliant.h, s/altos.h: Deleted. (Unused/empty.)
11348
11349 2002-11-27 Steven Tamm <steventamm@mac.com>
11350
11351 * fns.c (Frequire): Change nesting allowance from 2 to 3 to cause
11352 more descriptive error output from lread.c:Fload upon most require
11353 cycles during boostrapping.
11354
11355 2002-11-27 Jason Rumney <jasonr@gnu.org>
11356
11357 * fileio.c (Finsert_file_contents): Give a more appropriate error
11358 for files bigger than 2Gb when off_t is 32 bit.
11359
11360 * dired.c (Ffile_attributes): Don't return negative file sizes for
11361 files bigger than 2Gb when off_t is 32 bit.
11362
11363 2002-11-27 Dave Love <fx@gnu.org>
11364
11365 * s/irix6-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
11366
11367 * systty.h: Don't conditionally define GETPGRP_NO_ARG.
11368 Test GETPGRP_VOID instead.
11369 [BSD_TERMIOS]: Remove definitions (never used).
11370
11371 * s/osf5-0.h (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist):
11372 Don't define.
11373 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
11374
11375 * m/mips.h (WORDS_BIG_ENDIAN): Define conditionally.
11376
11377 2002-11-25 Jason Rumney <jasonr@gnu.org>
11378
11379 * w32.c (sys_write): Avoid non-blocking mode, which is not fully
11380 supported.
11381
11382 2002-11-25 Dave Love <fx@gnu.org>
11383
11384 * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec.
11385
11386 * Makefile.in (TEMACS_LDFLAGS): Update last change.
11387
11388 2002-11-25 Andreas Schwab <schwab@suse.de>
11389
11390 * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change.
11391
11392 2002-11-24 Steven Tamm <steventamm@mac.com>
11393
11394 * unexmacosx.c (unexec_realloc): Use malloc_default_zone to
11395 determine the size of pointers alloced in unexed space instead
11396 of using possibly invalid emacs_zone pointers. This fixes the
11397 binary incompatibility problems caused by updates to libSystem.B.
11398
11399 2002-11-24 Richard M. Stallman <rms@gnu.org>
11400
11401 * search.c (Fstring_match): Doc fix.
11402
11403 * callint.c (Fcall_interactively): If a command fails because
11404 `*' detects a read-only buffer, but RECORD_FLAG is set,
11405 record it anyway if the args don't actually do tty input.
11406
11407 2002-11-22 Dave Love <fx@gnu.org>
11408
11409 * sysdep.c (stuff_char) [PROTOTYPES]: Provide ISO C arglist.
11410
11411 * keyboard.c (interrupt_signal): Provide forward declaration.
11412 (kbd_buffer_store_event): Don't declare interrupt_signal.
11413
11414 * xdisp.c (store_frame_title_char) [PROTOTYPES]: Provide ISO C arglist.
11415
11416 2002-11-21 Richard M. Stallman <rms@gnu.org>
11417
11418 * eval.c (interactive_p): Skip any number of bytecode
11419 and special form frames, in any order.
11420
11421 2002-11-20 Jason Rumney <jasonr@gnu.org>
11422
11423 * w32fns.c (convert_mono_to_color_image): New function.
11424 (xbm_load, xbm_load_image): Use it when foreground or background
11425 is explicitly set.
11426
11427 2002-11-19 Dave Love <fx@gnu.org>
11428
11429 * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
11430
11431 2002-11-18 Jason Rumney <jasonr@gnu.org>
11432
11433 * w32fns.c (x_build_heuristic_mask): Filter palette info from color.
11434 (XPutPixel): Swap blue and red.
11435 (xpm_format, pbm_format, png_format, jpeg_format, tiff_format)
11436 (gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
11437 (xpm_image_p, pbm_image_p, png_image_p, jpeg_image_p)
11438 (tiff_image_p, gif_image_p, gs_image_p): Don't check ascent.
11439
11440 2002-11-18 Dave Love <fx@gnu.org>
11441
11442 * m/orion105.h (HAVE_ALLOCA): Don't define.
11443
11444 * m/m68k.h, m/arm.h, mtekxd88.h, m/tower32v3.h: Don't define alloca.
11445
11446 * m/intel386.h: Don't include alloca.h or define alloca.
11447
11448 * m/ia64.h: Don't include alloca.h, stdlib.h. Don't declare
11449 malloc, realloc, calloc.
11450
11451 * m/hp800.h, m/sr2k.h, m/ns16000.h, m/wicat.h (bcopy, bzero)
11452 (bcmp): Don't define.
11453
11454 * m/delta.h (bcopy, bzero, bcmp, alloca): Don't define.
11455
11456 * m/amdahl.h: Don't define LIB_STANDARD.
11457
11458 * m/alpha.h: Move OSF1 stuff from here to s/osf1.h.
11459
11460 * s/osf1.h: Move OSF1 stuff from m/alpha.h to here.
11461
11462 * s/irix4-0.h, s/irix5-0.h, m/powerpcle.h, m/sparc.h:
11463 Don't include alloca.h.
11464
11465 * s/aix3-2.h (HAVE_FSYNC): Don't define.
11466
11467 * regex.c (_GNU_SOURCE): Don't define.
11468
11469 * process.c (_GNU_SOURCE): Don't define.
11470
11471 * fileio.c (_GNU_SOURCE, HAVE_FSYNC): Don't define.
11472
11473 2002-11-18 Markus Rost <rost@math.ohio-state.edu>
11474
11475 * s/sol2-8.h: Include sol2-6.h.
11476
11477 2002-11-18 Miles Bader <miles@gnu.org>
11478
11479 * dispextern.h (struct face): Add `overstrike' field.
11480 * xterm.c (x_draw_glyph_string_foreground)
11481 (x_draw_composite_glyph_string_foreground): Implement overstriking.
11482 * xfaces.c (load_face_font): Set `face->overstrike' based on
11483 result from choose_face_font.
11484 (best_matching_font, choose_face_font): Add `needs_overstrike'
11485 argument, and use it to return whether overstriking is desirable
11486 for this face/font combo.
11487 (set_font_frame_param: Pass new argument to choose_face_font.
11488
11489 2002-11-17 Ben Key <BKey1@tampabay.rr.com>
11490
11491 This change is my fix for the following entry in etc/PROBLEMS:
11492 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
11493 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
11494
11495 * w32.c: Added wrapper functions around the win32 API functions
11496 OpenProcessToken, GetTokenInformation, LookupAccountSid, and
11497 GetSidIdentifierAuthority. These wrapper functions serve two
11498 purposes:
11499 1. They ensure that the wrapped function can never be called
11500 when Emacs is running on an operating system on which they are
11501 not supported (Microsoft Windows 95 / 98 / ME).
11502 2. They call the wrapped functions via function pointers rather
11503 than calling them directly. This avoids taking advantage of the
11504 undocumented fact that although these functions are not supported
11505 in the 9x branch of Microsoft Windows, the functions do exist in
11506 the version of advapi32.dll that is found in the 9x branch of
11507 Microsoft Windows.
11508
11509 * w32.c (init_user_info): Replace the calls to the win32 API
11510 functions OpenProcessToken, GetTokenInformation, LookupAccountSid,
11511 and GetSidIdentifierAuthority with calls to the newly added
11512 wrapper functions.
11513
11514 * w32.h: Added extern declarations for the following functions:
11515 syms_of_w32term, syms_of_w32fns, syms_of_w32select,
11516 syms_of_w32menu, and void syms_of_fontset.
11517
11518 * w32fns.c (w32_wnd_proc): Add code to reinitialize the
11519 function pointer track_mouse_event_fn in the handler for the
11520 WM_SETFOCUS message.
11521
11522 * w32menu.c (initialize_frame_menubar): Add code to
11523 reinitialize the function pointers set_menu_item_info and
11524 get_menu_item_info.
11525
11526 2002-11-17 Ben Key <BKey1@tampabay.rr.com>
11527
11528 * sound.c: Added a partial implementation of play-sound-internal
11529 for Microsoft Windows. Added various #ifdef / #else / #endif
11530 code blocks to separate the code that will compile under
11531 Microsoft Windows from the code that is specific to Gnu/Linux.
11532 Moved several blocks of code around to make this separation of code
11533 into Windows compatible and Gnu/Linux compatible code blocks easier.
11534
11535 * makefile.w32-in: Include sound.c and link with WinMM.lib.
11536
11537 * s/ms-w32.h: Defined the symbol HAVE_SOUND so that the newly
11538 added support for play-sound-internal under Windows would be
11539 included in the build of Emacs.
11540
11541 2002-11-16 Jason Rumney <jasonr@gnu.org>
11542
11543 * w32fns.c (w32_load_system_font): Don't disable Cleartype.
11544
11545 * w32term.c (w32_get_glyph_string_clip_rect): Clip cursor tightly.
11546
11547 2002-11-15 Stefan Monnier <monnier@cs.yale.edu>
11548
11549 * keyboard.c (command_loop_1): Fix int/Lisp_Object mixup.
11550 (adjust_point_for_property): Move out of display and invisible even if
11551 we were already inside before (in case a property was added while
11552 we weren't looking). Be more careful when handling invisible props.
11553 Skip invisible text as if it really wasn't there at all.
11554
11555 2002-11-15 Jason Rumney <jasonr@gnu.org>
11556
11557 * w32term.c (x_draw_image_foreground)
11558 (w32_draw_image_foreground_1): Use standard copy and invert
11559 operations to draw images.
11560
11561 * w32fns.c (x_create_x_image_and_pixmap): Fill in palette for
11562 depth of 1.
11563 (xbm_read_bitmap_data): Invert bits as xbm is read in.
11564 (XPutPixel): Don't invert bits here.
11565
11566 2002-11-15 Jason Rumney <jasonr@gnu.org>
11567
11568 * w32term.c (x_draw_image_foreground, x_draw_image_glyph_string)
11569 (w32_draw_image_foreground_1): Handle image masks.
11570 (x_draw_image_glyph_string): Don't BitBlt transparently.
11571
11572 * w32fns.c (w32_defined_color): Adjust RGB values for Emacs.
11573 (x_from_xcolors): Adjust RGB values for W32.
11574 (image_background, image_background_transparent)
11575 (postprocess_image, x_to_xcolors, x_disable_image)
11576 (x_build_heuristic_mask): Adapt for W32 and enable.
11577 (x_create_x_image_and_pixmap): Mark images with palettes as such.
11578 (xbm_load): Remove unused variable.
11579
11580 2002-11-14 Richard M. Stallman <rms@gnu.org>
11581
11582 * buffer.c (syms_of_buffer): Doc fix.
11583
11584 2002-11-14 Dave Love <fx@gnu.org>
11585
11586 * alloc.c (SETJMP_WILL_NOT_WORK): Add note.
11587
11588 * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
11589 * xmenu.c (unuse_menu_items, digest_single_submenu):
11590 * xfns.c (x_put_x_image):
11591 * xdisp.c (message2_nolog, set_message):
11592 * undo.c (record_point):
11593 * terminfo.c (tparam):
11594 * syntax.c (scan_sexps_forward):
11595 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
11596 * composite.c (update_compositions):
11597 * cm.c (calccost, cmgoto):
11598 * charset.c (c_string_width): Declare all args (per C99).
11599
11600 * frame.h (get_specified_cursor_type, get_window_cursor_type): Declare.
11601
11602 * lisp.h (get_specified_cursor_type, get_window_cursor_type):
11603 Don't declare.
11604
11605 * emacs.c (main) [!VMS]: Avoid third arg.
11606
11607 * fns.c (Fcopy_sequence): Doc fix.
11608 (Fmap_char_table): Cast `call2'.
11609
11610 2002-11-14 Francesco Potorti` <pot@gnu.org>
11611
11612 * s/sol2-8.h: New file.
11613
11614 2002-11-14 Kim F. Storm <storm@cua.dk>
11615
11616 * buffer.c (syms_of_buffer) <mode-line-format>: Document symbol
11617 dependency on `risky-local-variable' and the :propertize form.
11618
11619 2002-11-12 Stefan Monnier <monnier@cs.yale.edu>
11620
11621 * fns.c (Fmap_char_table): Don't use map_char_table's function arg.
11622
11623 * syntax.c (scan_sexps_forward): Undo last patch.
11624 Use a more obvious fix: check eob before updating the syntax table.
11625
11626 2002-11-09 Stefan Monnier <monnier@cs.yale.edu>
11627
11628 * syntax.c (scan_sexps_forward): Update syntax table before reading
11629 a char rather than after so we don't update the table past eob.
11630
11631 2002-11-09 Dave Love <fx@gnu.org>
11632
11633 * buffer.c (Fset_buffer_major_mode): Fix last change.
11634
11635 * regex.c (regexec): Fix pmatch declaration.
11636
11637 * cmds.c (Fself_insert_command): Apply Vtranslation_table_for_input.
11638
11639 * keyboard.c (command_loop_1): Apply Vtranslation_table_for_input
11640 to self-inserting characters.
11641 (syms_of_keyboard) <keyboard-translate-table>: Doc fix.
11642
11643 * coding.c (Vtranslation_table_for_input): New.
11644 (syms_of_coding): DEFVAR it.
11645
11646 2002-11-08 Juanma Barranquero <lektu@terra.es>
11647
11648 * w32term.c (w32_draw_fringe_bitmap): Remove unused local variable
11649 window.
11650
11651 2002-11-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
11652
11653 * process.c (Fformat_network_address): Remove unused locals p,
11654 cp, and i.
11655
11656 2002-11-06 Dave Love <fx@gnu.org>
11657
11658 * buffer.c (Qset_buffer_major_mode_hook): New.
11659 (Fset_buffer_major_mode): Use it.
11660
11661 2002-11-06 Richard M. Stallman <rms@gnu.org>
11662
11663 * xterm.c (x_term_init): Use turn_on_atimers, not start_polling
11664 and stop_polling.
11665
11666 * process.c (wait_reading_process_input):
11667 Test POLLING_PROBLEM_IN_SELECT, not hpux.
11668 Avoid initialization for auto Lisp_Object var.
11669
11670 * s/hpux11.h (POLLING_PROBLEM_IN_SELECT): Add #undef.
11671
11672 * s/hpux10.h (POLLING_PROBLEM_IN_SELECT): Defined.
11673
11674 2002-11-05 Richard M. Stallman <rms@gnu.org>
11675
11676 * s/sol2-5.h (BROKEN_SIGIO): Turn off the #undef.
11677
11678 * callint.c (Fcall_interactively): New local filter_specs.
11679 (Fcall_interactively): Check for progn as well as let.
11680 Add a gcpro.
11681 (Qprogn): New variable.
11682 (syms_of_callint): Staticpro and init Qprogn.
11683
11684 2002-11-04 John Paul Wallington <jpw@shootybangbang.com>
11685
11686 * lread.c (Feval_buffer): Doc fix.
11687
11688 2002-11-04 Dave Love <fx@gnu.org>
11689
11690 * keyboard.c (read_char): Always translate iff
11691 Vkeyboard_translate_table is a char table and c is valid.
11692
11693 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
11694 and fix C types.
11695
11696 2002-11-03 Stefan Monnier <monnier@cs.yale.edu>
11697
11698 * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
11699
11700 * editfns.c (get_pos_property): Don't hardcode Qfield.
11701
11702 * keyboard.c (adjust_point_for_property): Handle `display' prop on
11703 overlays. Also handle `invisible' prop.
11704
11705 2002-11-02 Stefan Monnier <monnier@cs.yale.edu>
11706
11707 * coding.c (decode_coding_emacs_mule, decode_coding_iso2022)
11708 (decode_coding_sjis_big5, decode_eol): Allow lone \r in DOS EOL.
11709
11710 2002-11-01 Andreas Schwab <schwab@suse.de>
11711
11712 * editfns.c (Fmessage): Revert last change to properly handle %%.
11713
11714 2002-11-01 Stefan Monnier <monnier@cs.yale.edu>
11715
11716 * xmenu.c (unuse_menu_items): New fun.
11717 (menu_items_inuse): New var.
11718 (syms_of_xmenu): Initialize it.
11719 (init_menu_items): Use it to detect re-entrance.
11720 (Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset when done.
11721 (Fx_popup_menu): Remove spurious XSETFRAME.
11722
11723 * editfns.c (find_field): Make an exception for nil fields.
11724
11725 2002-11-01 Dave Love <fx@gnu.org>
11726
11727 * m/gec63.h: Deleted.
11728
11729 2002-10-31 Dave Love <fx@gnu.org>
11730
11731 * xterm.c (XTread_socket): Fix last change.
11732 (xaw_scroll_callback): Cast call_data to long to avoid warning.
11733
11734 2002-10-31 Stefan Monnier <monnier@cs.yale.edu>
11735
11736 * process.c (Fformat_network_address): Fix int/Lisp_Object mixup.
11737
11738 2002-10-30 Stefan Monnier <monnier@cs.yale.edu>
11739
11740 * editfns.c (overlays_around, get_pos_property): New funs.
11741 (find_field): Use them.
11742 Also be careful not to modify POS before its last use.
11743 (Fmessage): Don't Fformat if there's nothing to format.
11744
11745 2002-10-30 Dave Love <fx@gnu.org>
11746
11747 * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
11748 [HAVE_PTY_H]; Include pty.h.
11749
11750 * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
11751
11752 * xterm.c (Qeql): Declare.
11753 (Vx_keysym_table): New.
11754 (syms_of_xterm): Initialize it.
11755 (XTread_socket): Use it. Deal with ASCII keysyms.
11756 (XSetIMValues) [HAVE_X11R6]: Prototype.
11757
11758 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
11759 (lispy_kana_keys): Comment out.
11760 (make_lispy_event) [XK_kana_A]: Comment out.
11761 (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>:
11762 Fix sprintf call.
11763
11764 * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
11765 regexp.h change).
11766 (TERMINFO, LIBS_TERMCAP): Define.
11767
11768 * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
11769 (bcmp): Define conditional on HAVE_BCMP.
11770 (NO_SIOCTL_H): Don't define.
11771 (TIOCSIGSEND): Don't make conditional on IRIX6.
11772
11773 * s/sol2-5.h: Don't include strings.h.
11774 (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
11775
11776 * s/irix6-0.h (IRIX6): Don't define.
11777 (bcopy, bcmp, bzero): Don't undef.
11778
11779 * s/irix6-5.h: Don't include strings.h.
11780 (IRIX6): Don't define.
11781 (bcopy, bcmp, bzero): Don't undef.
11782
11783 * syntax.c (Fforward_comment): Doc fix.
11784
11785 2002-10-29 Kim F. Storm <storm@cua.dk>
11786
11787 * process.c (Fsignal_process): Allow PROCESS to be specified by
11788 name in addition to pid (as integer or string).
11789
11790 2002-10-28 Harald Maier <Harald.Maier.BW@t-online.de> (tiny change)
11791
11792 * w32heap.c: Don't redefine _heap_init and _heap_term on MSVC 7 build
11793 environments.
11794
11795 2002-10-27 Kim F. Storm <storm@cua.dk>
11796
11797 * xterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
11798
11799 * w32term.c (note_mouse_highlight): Don't use mouse-face if hidden.
11800
11801 * msdos.c (IT_note_mouse_highlight): Don't use mouse-face if hidden.
11802
11803 * macterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
11804
11805 2002-10-26 Richard M. Stallman <rms@gnu.org>
11806
11807 * editfns.c (Fformat): Detect invalid format letters for floats.
11808
11809 2002-10-25 Kenichi Handa <handa@m17n.org>
11810
11811 * xfns.c (x_set_name): Encode by Qcompound_text unconditionally.
11812 (x_set_title): Likewise.
11813
11814 2002-10-25 Juanma Barranquero <lektu@terra.es>
11815
11816 * macgui.h:
11817 * w32gui.h: Remove definition of XColor.
11818
11819 * dispextern.h [!HAVE_X_WINDOWS]: Define XColor.
11820
11821 2002-10-24 Kim F. Storm <storm@cua.dk>
11822
11823 * xdisp.c (get_window_cursor_type): New arg ACTIVE_CURSOR.
11824 Callers changed (supply dummy arg).
11825
11826 * lisp.h (get_window_cursor_type): Update prototype.
11827
11828 * w32term.c (x_display_and_set_cursor): Get active_cursor from
11829 get_window_cursor_type to track system caret.
11830
11831 2002-10-24 Kim F. Storm <storm@cua.dk>
11832
11833 * process.c (Fformat_network_address): New function.
11834 (syms_of_process): Defsubr it.
11835 (list_processes_1): Use it to format :local/:remote address if
11836 service/host is not set; before Emacs would crash in that case.
11837 (Fmake_network_process): Don't use Ffind_operation_coding_system
11838 to setup coding system if host or service is not set.
11839
11840 2002-10-23 Juanma Barranquero <lektu@terra.es>
11841
11842 Patch suggested by Jay Finger <jay_finger@hotmail.com>.
11843
11844 * w32term.c (w32_term_init): Pass XColor to w32_define_color, not
11845 COLORREF.
11846
11847 * macgui.h:
11848 * w32gui.h: Add definition of XColor.
11849
11850 * macfns.c:
11851 * w32fns.c:
11852 * xfaces.c: Remove definition of XColor.
11853
11854 2002-10-22 Stefan Monnier <monnier@cs.yale.edu>
11855
11856 * xfns.c (x_set_name, x_set_title): `icon.value' has unsigned char.
11857
11858 * window.c (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
11859 Only ignore truly dedicated windows. For UNSHOW_BUFFER, delete the
11860 window if it is dedicated.
11861 (Fshrink_window): Add preserve_before as was done for enlarge_window.
11862 (Vspecial_display_function): Update docstring.
11863
11864 * buffer.c (assoc_ignore_text_properties, Fother_buffer, Fkill_buffer)
11865 (call_overlay_mod_hooks): Use CONSP and XCAR/XCDR.
11866 (Fget_buffer_create, advance_to_char_boundary): Use BEG and BEG_BYTE;
11867
11868 2002-10-21 Stefan Monnier <monnier@cs.yale.edu>
11869
11870 * casefiddle.c (casify_region): Don't treat a prefix char as part
11871 of a word when at the beginning.
11872
11873 2002-10-17 Juanma Barranquero <lektu@terra.es>
11874
11875 * lread.c (syms_of_lread): Fix typos.
11876
11877 2002-10-17 Dave Love <fx@gnu.org>
11878
11879 * Makefile.in (TEMACS_LDFLAGS): Add trailing comment.
11880
11881 2002-10-16 Richard M. Stallman <rms@gnu.org>
11882
11883 * fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
11884
11885 2002-10-14 Juanma Barranquero <lektu@terra.es>
11886
11887 * w16select.c (syms_of_win16select): Fix docstring for
11888 `selection-coding-system'.
11889
11890 * w32select.c (syms_of_w32select): Likewise.
11891
11892 2002-10-14 Stefan Monnier <monnier@cs.yale.edu>
11893
11894 * syntax.c (scan_lists): Don't get fooled by a symbol ending with
11895 a backslash-quoted char.
11896 (scan_lists, scan_sexps_forward): Pacify the compiler.
11897
11898 2002-10-13 Richard M. Stallman <rms@gnu.org>
11899
11900 * window.c (window_scroll): Set immediate_quit.
11901
11902 * print.c (print): When backquote form is the car of a list,
11903 output in old style. Use old_backquote_output to output all
11904 comma forms inside it in old style too.
11905
11906 * buffer.h (struct buffer): Move `undo_list' down below `name'.
11907
11908 2002-10-11 Markus Rost <rost@math.ohio-state.edu>
11909
11910 * emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in
11911 batch mode).
11912
11913 * lread.c (Fload): Doc fix (load-suffixes).
11914
11915 2002-10-10 Steven Tamm <steventamm@mac.com>
11916
11917 * macterm.c (syms_of_macterm, mac_get_mouse_btn):
11918 Reverse functionality of mac-wheel-button-is-mouse-2 to be correct.
11919 Also switch the default to Qnil from Qt.
11920
11921 2002-10-08 Kenichi Handa <handa@m17n.org>
11922
11923 * coding.c (code_convert_region): When we need more GAP for
11924 conversion, pay attention to the case that coding->produced is not
11925 greater than coding->consumed.
11926
11927 2002-10-07 Richard M. Stallman <rms@gnu.org>
11928
11929 * unexelf.c (unexec): Redo 9/16 change, but only if IRIX6_5.
11930
11931 2002-10-06 Andrew Choi <akochoi@shaw.ca>
11932
11933 * macmenu.c (mac_menu_show): Add j to count menu items; match
11934 menu_item_selection to it to find selected item.
11935
11936 2002-10-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11937
11938 * xterm.c (XTread_socket): Fix from 2002-10-03 didn't cover all
11939 cases. The correct fix is to pass ReparentNotify to Xt.
11940 The shell widget interprets ConfigureNotify differently depending
11941 on if it has been reparented or not.
11942
11943 2002-10-05 Markus Rost <rost@math.ohio-state.edu>
11944
11945 * editfns.c (Fformat_time_string): Doc fix.
11946
11947 2002-10-05 John Paul Wallington <jpw@shootybangbang.com>
11948
11949 * fns.c (Flength): Doc fix.
11950
11951 2002-10-04 Stefan Monnier <monnier@cs.yale.edu>
11952
11953 * keyboard.c (keyremap): New struct.
11954 (read_key_sequence): Use it: globally replace keytran_foo with
11955 keytran.foo and fkey_foo with fkey.foo. Rename temp vars
11956 keytran_next and fkey_next to just `next'.
11957
11958 2002-10-04 Steven Tamm <steventamm@mac.com>
11959
11960 * macterm.c (keycode_to_xkeysym_table): Change return to be
11961 treated like an X keysym.
11962
11963 2002-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11964
11965 * xterm.c (XTread_socket): For ConfigureNotify, with x and y == 0,
11966 and USE_MOTIF, call XTranslateCoordinates to get the real x and y.
11967 This is to also handle x/y changes that occur because of a resize.
11968
11969 2002-10-02 John Paul Wallington <jpw@shootybangbang.com>
11970
11971 * frame.c (Vdelete_frame_functions): New variable.
11972 (syms_of_frame): Initialize and defvar it.
11973 (Fdelete_frame): Use it instead of delete-frame-hook. Don't run
11974 it when frame's `tooltip' parameter is non-nil.
11975
11976 * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t.
11977
11978 * w32fns.c (x_create_tip_frame): Likewise.
11979
11980 * macfns.c (x_create_tip_frame): Likewise.
11981
11982 2002-09-30 Kenichi Handa <handa@m17n.org>
11983
11984 * xterm.c (x_encode_char): For DIM=1 charset, set ccl->reg[2] to
11985 -1 before calling ccl_driver.
11986
11987 * coding.c (decode_coding_emacs_mule): Check coding->cmp_data.
11988 Only when it is non-nil, handle composition sequence.
11989 (setup_coding_system) <0>: Don't force composition handling.
11990
11991 * Makefile.in (lisp, shortlisp): Add utf-16.elc
11992
11993 2002-09-29 Richard M. Stallman <rms@gnu.org>
11994
11995 * search.c (Freplace_match): Adjust match data for the substitution
11996 just made in the buffer.
11997
11998 * xdisp.c (STOP_POLLING, RESUME_POLLING): New macros.
11999 (redisplay_internal): Use them. Do RESUME_POLLING at end of function.
12000
12001 2002-09-27 Richard M. Stallman <rms@gnu.org>
12002
12003 * keyboard.c (STOP_POLLING, RESUME_POLLING): New macros.
12004 (read_char): Use them. Do all exits thru the end of the function.
12005
12006 2002-09-27 Kenichi Handa <handa@etl.go.jp>
12007
12008 * xfaces.c (try_font_list): Pay attention to the case that FAMILY
12009 is nil.
12010
12011 2002-09-26 Richard M. Stallman <rms@gnu.org>
12012
12013 * regex.h (__restrict_arr): Don't define if already defined.
12014
12015 * coding.c (run_pre_post_conversion_on_str):
12016 Save and restore Vdeactivate_mark.
12017
12018 2002-09-26 John Paul Wallington <jpw@shootybangbang.com>
12019
12020 * minibuf.c (Fminibufferp): Add an optional `buffer' argument.
12021
12022 2002-09-26 Kenichi Handa <handa@etl.go.jp>
12023
12024 * xfaces.c (try_font_list): New arg PREFER_FACE_FAMILY. If it is
12025 nonzero, try face's family at first. Otherwise try FAMILY at first.
12026 (choose_face_font): If C is a single byte char or latin-1, call
12027 try_font_list with PREFER_FACE_FAMILY 1.
12028
12029 2002-09-21 Richard M. Stallman <rms@gnu.org>
12030
12031 * window.c (select_window_1): Don't select frame.
12032 Set frame's selected window only when frame itself is selected.
12033 (Fselect_window): Doc fix.
12034
12035 2002-09-18 Kim F. Storm <storm@cua.dk>
12036
12037 * process.c (make-network-process): Doc fix (there is no
12038 network-server-log-function hook).
12039
12040 2002-09-18 Richard M. Stallman <rms@gnu.org>
12041
12042 * print.c (print): Clear out the unused parts of Vprint_number_table.
12043 (syms_of_print): Doc fix for `print-number-table'.
12044
12045 * unexelf.c (unexec): Undo previous change.
12046
12047 2002-09-17 Andreas Schwab <schwab@suse.de>
12048
12049 * m/alpha.h [LINUX]: Don't define DATA_START.
12050
12051 2002-09-16 Dave Love <fx@gnu.org>
12052
12053 * unexelf.c (unexec): Deal with .got, reinstating change from
12054 25-08-1999.
12055
12056 2002-09-13 Richard M. Stallman <rms@gnu.org>
12057
12058 * s/sol2-6.h (UNEXEC): Comment out definition.
12059
12060 * unexsol.c (unexec): Don't downcase first letter of error msg.
12061
12062 * xfaces.c (Fcolor_supported_p): Just one arg is required.
12063
12064 2002-09-12 Markus Rost <rost@math.ohio-state.edu>
12065
12066 * unexsol.c: Include buffer.h, charset.h, coding.h.
12067
12068 2002-09-11 Richard M. Stallman <rms@gnu.org>
12069
12070 * unexsol.c: Don't use report_file_error; do it by hand
12071 using dlerror.
12072
12073 * process.c (wait_reading_process_input, both versions):
12074 Before calling turn_on_atimers, call stop_polling.
12075
12076 * emacs.c (syms_of_emacs) <command-line-args>: Doc fix.
12077
12078 * xdisp.c (try_scrolling): If after make_cursor_line_fully_visible
12079 we go to too_near_end, call clear_glyph_matrix.
12080 (redisplay_window): After make_cursor_line_fully_visible,
12081 call clear_glyph_matrix and bypass `goto done'.
12082
12083 * xfns.c (x_report_frame_params): If FRAME_SCROLL_BAR_PIXEL_WIDTH is 0
12084 and we have non-toolkit scroll bars, return nil for scroll-bar-width.
12085
12086 2002-09-10 Richard M. Stallman <rms@gnu.org>
12087
12088 * fileio.c (Fdo_auto_save): Catch error making directory.
12089 Only call push_message if we need to.
12090 At the same time, make an unwind-protect to pop it.
12091 Rename local message_p to old_message_p.
12092 (do_auto_save_make_dir, do_auto_save_eh): New functions.
12093 (do_auto_save_unwind): Don't call pop_message.
12094
12095 * lisp.h (pop_message_unwind): Renamed from push_message_unwind.
12096
12097 * keyboard.c (Fexecute_extended_command): Use pop_message_unwind.
12098
12099 * alloc.c (Fgarbage_collect): Use pop_message_unwind.
12100
12101 * xdisp.c (pop_message_unwind): Renamed from push_message_unwind.
12102
12103 2002-09-10 Stefan Monnier <monnier@cs.yale.edu>
12104
12105 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete.
12106 (CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1.
12107 (re_match_2_internal): Be more careful with infinite loops.
12108
12109 2002-09-10 Kim F. Storm <storm@cua.dk>
12110
12111 * macros.c (end_kbd_macro): New function.
12112 (Fend_kbd_macro): Use it.
12113
12114 * macros.h (end_kbd_macro): Declare extern.
12115
12116 * keyboard.c (Fdiscard_input): If defining keyboard macro,
12117 end and save it instead of discarding it.
12118
12119 2002-09-09 Markus Rost <rost@math.ohio-state.edu>
12120
12121 * s/sol2-6.h: Fix typo. Add comment.
12122
12123 2002-09-09 Richard M. Stallman <rms@gnu.org>
12124
12125 * regex.c (regnum_t): Use signed int, not unsigned int.
12126
12127 * s/sol2-6.h: New file.
12128
12129 * s/sol2-5.h (UNEXEC): Definition deleted.
12130
12131 2002-09-08 Kim F. Storm <storm@cua.dk>
12132
12133 * macros.c (executing_macro_index): Change type to EMACS_INT.
12134 (syms_of_macros): DEFVAR_INT it (needed by kmacro).
12135
12136 * macros.h (executing_macro_index): Change type to EMACS_INT.
12137
12138 2002-09-06 Richard M. Stallman <rms@gnu.org>
12139
12140 * casetab.c (set_case_table): Make canon table point to eqv table.
12141
12142 2002-09-06 Juanma Barranquero <lektu@terra.es>
12143
12144 * coding.c (syms_of_coding): Fix spacing.
12145
12146 * composite.c (Fcompose_region_internal)
12147 (Fcompose_string_internal): Likewise.
12148
12149 * data.c (Flsh): Likewise.
12150
12151 * fontset.c (Fset_fontset_font): Likewise.
12152
12153 * macfns.c (Fx_server_max_request_size): Likewise.
12154
12155 * w16select.c (syms_of_win16select): Likewise.
12156
12157 * w32select.c (syms_of_w32select): Likewise.
12158
12159 * xselect.c (syms_of_xselect): Likewise.
12160
12161 2002-09-05 Richard M. Stallman <rms@gnu.org>
12162
12163 * regex.c (set_image_of_range_1): In no-TRANSLATE case,
12164 call EXTEND_RANGE_TABLE and return a proper value.
12165 (set_image_of_range): Don't call set_image_of_range_1
12166 if no TRANSLATE or if range includes all of Latin-1.
12167 Only call it for the Latin-1 part of the range.
12168 For other cases, make two separate ranges,
12169 one for the original specified characters and one for
12170 their case-conversions.
12171
12172 2002-09-04 Richard M. Stallman <rms@gnu.org>
12173
12174 * s/sol2-5.h (UNEXEC): Use unexsol.o.
12175
12176 * window.c (displayed_window_lines): Correct for one-off bug
12177 in HEIGHT on non-window displays.
12178
12179 * regex.c (set_image_of_range_1): New function.
12180 (set_image_of_range): Use set_image_of_range_1 for Latin-1.
12181 Return a value to indicate running out of memory.
12182 (SET_RANGE_TABLE_WORK_AREA): Check value from set_image_of_range.
12183 (extend_range_table_work_area): New subroutine.
12184 (EXTEND_RANGE_TABLE): Replaces EXTEND_RANGE_TABLE_WORK_AREA.
12185 Different calling conventions, and used from set_image_of_range{,_1}.
12186 (IMMEDIATE_QUIT_CHECK): Definitions moved.
12187
12188 2002-09-04 Juanma Barranquero <lektu@terra.es>
12189
12190 * makefile.w32-in: All dependencies updated.
12191
12192 2002-09-01 Richard M. Stallman <rms@gnu.org>
12193
12194 * unexsol.c: New file.
12195
12196 * xfns.c (Qbox): Declare external, don't define.
12197
12198 * xdisp.c (redisplay_window) <force-start case>:
12199 If point is on semi-visible last line, reposition
12200 it at previous line.
12201
12202 * alloc.c (display_malloc_warning): Use display-warning.
12203 (malloc_warning_1): Function deleted.
12204
12205 * alloc.c [ALLOC_DEBUG]: #undef INLINE.
12206
12207 * lread.c (read1): Handle #! by skipping the line.
12208
12209 2002-08-31 Richard M. Stallman <rms@gnu.org>
12210
12211 * Makefile.in (TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS.
12212 Don't include LDFLAGS.
12213 (temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
12214
12215 2002-08-31 Eli Zaretskii <eliz@is.elta.co.il>
12216
12217 * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame
12218 member of x_display_info unless we compile for some window system.
12219
12220 2002-08-31 Kim F. Storm <storm@cua.dk>
12221
12222 * xdisp.c (Valternate_cursor_type, Qalternate_cursor_type): Removed.
12223 (get_window_cursor_type): Don't use them.
12224 (syms_of_xdisp): Remove intern, staticpro, and defvar for them.
12225
12226 2002-08-30 Kenichi Handa <handa@etl.go.jp>
12227
12228 * xdisp.c (get_next_display_element): Fix previous change.
12229
12230 2002-08-30 Andrew Choi <akochoi@shaw.ca>
12231
12232 * macterm.c (expose_overlaps): New function (merge code from xterm.c).
12233 (expose_window): Use it to fix the display of overlapping
12234 rows (merge code from xterm.c).
12235
12236 * macfns.c (Qbox): Add extern declaration.
12237
12238 2002-08-30 Juanma Barranquero <lektu@terra.es>
12239
12240 * w32fns.c (Qbox): Make extern.
12241 (syms_of_w32fns): Remove initialization of Qbox.
12242
12243 2002-08-30 Rune Kleveland <runekl@viewpoint.no> (tiny change)
12244
12245 * xfns.c (Fx_open_connection): Fix error message.
12246
12247 2002-08-30 Kim F. Storm <storm@cua.dk>
12248
12249 The following changes consolidates the handling of the cursor
12250 type in xdisp.c, moving duplicate code and functionality from
12251 xfns.c, xterm.c, w32fns.c, w32term.c, macfns.c, and macterm.c.
12252
12253 * frame.h (enum text_cursor_kinds): Consolidated here.
12254 Added DEFAULT_CURSOR value.
12255 (struct frame) <desired_cursor, cursor_width>
12256 <blink_off_cursor, blink_off_cursor_width>: New fields.
12257 Consolidated from output_x, output_w32 and output_mac structs.
12258 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
12259 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros consolidated here.
12260
12261 * xdisp.c (Qbar, Qhbar, Qbox, Qhollow, Vblink_cursor_alist):
12262 Variables consolidated here.
12263 (Valternate_cursor_type, Qalternate_cursor_type): New variables.
12264 (Vcursor_in_non_selected_windows): Renamed from
12265 cursor_in_non_selected_windows and changed to Lisp_Object.
12266 (syms_of_xdisp): Define and staticpro new and moved variables.
12267 (get_specified_cursor_type): Renamed from x_specified_cursor_type;
12268 consolidated here. Recognize Qhollow setting.
12269 (set_frame_cursor_types): New function to set frame cursor types
12270 based on the frame parameters.
12271 (get_window_cursor_type): New function to calculate new cursor
12272 type and width for the specified window. Based on duplicated
12273 code consolidated here.
12274 Enhancements: cursor-in-non-selected-windows may be a cursor type,
12275 check buffer-local alternate-cursor-type and blink-cursor-alist
12276 before using built-in blink off methods.
12277
12278 * dispextern.h (cursor_in_non_selected_windows): Extern removed.
12279
12280 * lisp.h (Qcursor_in_non_selected_windows): Extern removed.
12281 (get_specified_cursor_type, get_window_cursor_type)
12282 (set_frame_cursor_types): Added prototypes.
12283
12284 * macfns.c (x_specified_cursor_type): Removed.
12285 (x_set_cursor_type): Use set_frame_cursor_types.
12286 (Qbar, Qbox): Removed.
12287 (syms_of_macfns): Don't intern or staticpro them.
12288
12289 * macterm.c (x_specified_cursor_type): Remove prototype.
12290 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
12291 (x_display_and_set_cursor): Use get_window_cursor_type.
12292 Remove unused local variables cursor_non_selected, active_cursor.
12293 Redraw cursor if hbar cursor width changes.
12294 (make_mac_frame): Set FRAME_DESIRED_CURSOR.
12295
12296 * macterm.h (enum text_cursor_kinds): Removed.
12297 (struct output_mac) <current_cursor, desired_cursor, cursor_width>
12298 <blink_off_cursor, blink_off_cursor_width>: Members removed.
12299 (FRAME_DESIRED_CURSOR): Macro removed.
12300
12301 * w32fns.c (Vblink_cursor_alist): Removed.
12302 (Qbar, Qhbar, Qbox, Qhollow): Removed.
12303 (syms_of_w32fns): Don't intern, staticpro, or define them.
12304 (x_specified_cursor_type): Removed.
12305 (x_set_cursor_type): Use set_frame_cursor_types.
12306
12307 * w32term.c (x_specified_cursor_type): Remove prototype.
12308 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
12309 (x_display_and_set_cursor): Use get_window_cursor_type.
12310 Remove unused local variables cursor_off_state.
12311 Redraw cursor if hbar cursor width changes.
12312 Changed all occurrences of w32_highlight_frame to x_highlight_frame.
12313
12314 * w32term.h (enum text_cursor_kinds): Removed.
12315 (struct output_w32) <current_cursor, desired_cursor, cursor_width>
12316 <blink_off_cursor, blink_off_cursor_width>: Members removed.
12317 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
12318 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
12319 (struct w32_display_info) <x_highlight_frame>: Renamed member from
12320 w32_highlight_frame.
12321
12322 * xfns.c (Vblink_cursor_alist): Removed.
12323 (Qbar, Qhbar, Qbox, Qhollow): Removed.
12324 (syms_of_xfns): Don't intern, staticpro, or define them.
12325 (x_specified_cursor_type): Removed.
12326 (x_set_cursor_type): Use set_frame_cursor_types.
12327
12328 * xterm.c (x_specified_cursor_type): Remove prototype.
12329 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
12330 (x_display_and_set_cursor): Use get_window_cursor_type.
12331 Remove unused local variables cursor_off_state.
12332 Redraw cursor if hbar cursor width changes.
12333
12334 * xterm.h (enum text_cursor_kinds): Removed.
12335 (struct output_x) <current_cursor, desired_cursor, cursor_width>
12336 <blink_off_cursor, blink_off_cursor_width>: Members removed.
12337 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
12338 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
12339 (x_specified_cursor_type): Remove prototype.
12340
12341 2002-08-28 Richard M. Stallman <rms@gnu.org>
12342
12343 * w32fns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
12344 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
12345 (Vblink_cursor_alist): New variable.
12346 (syms_of_w32fns): Initialize and defvar it.
12347 (x_specified_cursor_type): Recognize Qbox for filled box.
12348 Exceptions are hollow boxes.
12349 (Qbox, Qhollow): New variables.
12350 (syms_of_w32fns): Initialize and staticpro them.
12351
12352 * w32term.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
12353 New macros.
12354 (struct w32_output): New fields blink_off_cursor,
12355 blink_off_cursor_width.
12356 (FRAME_CURSOR_WIDTH): New macro.
12357
12358 * w32term.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
12359 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
12360
12361 * w32term.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
12362 for bar cursor.
12363
12364 * w32term.c (expose_overlaps): New function.
12365 (expose_window): Use it to fix the display of overlapping rows.
12366
12367 2002-08-28 Simon Josefsson <jas@extundo.com>
12368
12369 * xfns.c (Fx_open_connection): Improve help when X connection
12370 fails, xhost is insecure and xauth is better.
12371
12372 2002-08-28 Juanma Barranquero <lektu@terra.es>
12373
12374 * makefile.w32-in: Add missing dependencies on w32term.h and
12375 composite.h.
12376
12377 * emacs.c (USAGE1): Add missing newline.
12378
12379 2002-08-27 Andrew Choi <akochoi@shaw.ca>
12380
12381 * s/darwin.h [HAVE_LIBNCURSES]: Define HAVE_TERMINFO.
12382
12383 2002-08-27 Richard M. Stallman <rms@gnu.org>
12384
12385 * xfns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
12386 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
12387 (Vblink_cursor_alist): New variable.
12388 (syms_of_xfns): Initialize and defvar it.
12389 (x_specified_cursor_type): Recognize Qbox for filled box.
12390 Exceptions are hollow boxes.
12391 (Qbox, Qhollow): New variables.
12392 (syms_of_xfns): Initialize and staticpro them.
12393
12394 * xterm.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
12395 New macros.
12396 (struct x_output): New fields blink_off_cursor, blink_off_cursor_width.
12397
12398 * xterm.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
12399 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
12400
12401 * emacs.c (main): Handle --script.
12402 (USAGE1): Mention --script.
12403 (standard_args): Define sort order for --script.
12404
12405 2002-08-27 Gerd Moellmann <gerd.moellmann@t-online.de>
12406
12407 * xdisp.c (redisplay_updating_p): Variable removed.
12408 (inhibit_free_realized_faces, Qinhibit_free_realized_faces):
12409 New variables.
12410 (init_iterator): Don't free realized faces if
12411 inhibit_free_realized_faces is set.
12412 (redisplay_internal): Bind Qinhibit_free_realized_faces to nil.
12413 (syms_of_xdisp): DEFVAR_BOOL inhibit-free-realized-faces,
12414 initialize Qinhibit_free_realized_faces.
12415
12416 * dispextern.h (PRODUCE_GLYPHS): Set inhibit_free_realized_faces
12417 when iterator is adding glyphs to a glyph matrix.
12418
12419 2002-08-27 Kenichi Handa <handa@etl.go.jp>
12420
12421 * xdisp.c (get_next_display_element): In unibyte case, don't use
12422 octal form for such eight-bit characters that can be converted to
12423 multibyte char.
12424
12425 2002-08-26 Kim F. Storm <storm@cua.dk>
12426
12427 * frame.c (make_terminal_frame) [CANNOT_DUMP]: Initialize
12428 foreground and background colors. From Joe Buehler.
12429
12430 2002-08-26 Miles Bader <miles@gnu.org>
12431
12432 * bytecode.c (Fbyte_code): Fsub1 can GC, so protect it.
12433
12434 2002-08-25 Andrew Choi <akochoi@shaw.ca>
12435
12436 * emacs.c (main): Call init_mac_osx_environment if HAVE_CARBON is
12437 defined instead of MAC_OSX.
12438
12439 * s/darwin.h (select): Define select to sys_select only if
12440 HAVE_CARBON is defined.
12441 (HAVE_WORKING_VFORK): #undef it. Define vfork to fork.
12442 (DONT_REOPEN_PTY): #def it.
12443
12444 * macterm.c (XTread_socket): Remove code to call
12445 SendEventToEventTarget for keys with command modifiers when
12446 mac_command_key_is_meta is nil.
12447
12448 2002-08-24 Andreas Schwab <schwab@suse.de>
12449
12450 * eval.c (Fdefvar): Fix last change.
12451
12452 2002-08-23 Richard M. Stallman <rms@gnu.org>
12453
12454 * eval.c (Fdefvar, Fdefconst, Fdefvaralias):
12455 Record variables in load history as (defvar . VAR).
12456 (Fdefvar): Don't record in load history if no initial value.
12457 (Qdefvar): New variable.
12458 (syms_of_eval): Init and staticpro it.
12459
12460 * lread.c (syms_of_lread): Doc fix.
12461 (build_load_history): Use Fmember to see if a definition
12462 is already in the Vload_history element.
12463
12464 * process.c (Fstart_process): Remove /: from program name.
12465
12466 * emacs.c (decode_env_path): Don't add /: if file name handler
12467 has a `safe-magic' property.
12468
12469 * callproc.c (Fcall_process): Remove /: from program name.
12470
12471 2002-08-23 Stefan Monnier <monnier@cs.yale.edu>
12472
12473 * regex.c (PATFETCH): Remove the translating fetch.
12474 (PATFETCH_RAW): Rename to PATFETCH.
12475 (set_image_of_range): New fun.
12476 (SET_RANGE_TABLE_WORK_AREA): Use it.
12477 (regex_compile): Don't translate the pattern chars so eagerly.
12478 Only do it when inserting an `exactn' bytecode or when handling
12479 a char-range.
12480 (mutually_exclusive_p): Avoid empty statement.
12481
12482 2002-08-22 Kim F. Storm <storm@cua.dk>
12483
12484 * xdisp.c (redisplay_window): Do not `goto try_to_scroll' when we
12485 end up on a partially visible line; this reverts a specific part
12486 of the 2002-07-07 change by Richard M. Stallman to "fix" a nasty
12487 display error which has been reported several times now.
12488 However it introduces the problem that changes was supposed to fix.
12489 See my comments in the source if you want to debug this further.
12490
12491 2002-08-20 Kenichi Handa <handa@etl.go.jp>
12492
12493 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
12494
12495 2002-08-19 Eli Zaretskii <eliz@is.elta.co.il>
12496
12497 * msdos.c (croak): Add `void' to definition.
12498
12499 * sysdep.c (request_sigio, unrequest_sigio) [MSDOS]:
12500 Don't define them, they are defined in msdos.c.
12501
12502 * mem-limits.h [MSDOS]: Declare etext.
12503
12504 * fileio.c (Ffile_name_directory) [DOS_NT]: Don't declare `beg'
12505 `const' since CORRECT_DIR_SEPS modifies its target.
12506
12507 2002-08-19 Kim F. Storm <storm@cua.dk>
12508
12509 * keyboard.c (Fclear_this_command_keys): Add optional arg
12510 KEEP-RECORD to avoid clearing lossage when we just want to clear
12511 the current key sequence (kmacro needs this).
12512
12513 2002-08-19 Kenichi Handa <handa@localhost>
12514
12515 * composite.c (run_composition_function): Call FUNC if it is fboundp.
12516
12517 * composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
12518 cons, return Qnil.
12519
12520 2002-08-17 Richard M. Stallman <rms@gnu.org>
12521
12522 * s/sol2-5.h (BROKEN_SIGIO): Add #undef.
12523
12524 * sysdep.c [!VMS]: Include sys/files.h.
12525
12526 * editfns.c (save_restriction_restore): Defend from unchained marker.
12527
12528 * buffer.c (overlays_at): Handle extending vec uniformly.
12529 (overlays_in): Handle extending vec from length 0 as in overlays_at.
12530
12531 2002-08-15 Andrew Choi <akochoi@shaw.ca>
12532
12533 * mac.c (init_mac_osx_environment): New function.
12534
12535 * emacs.c (main) [MAC_OSX]: Call init_mac_osx_environment.
12536
12537 2002-08-14 Kim F. Storm <storm@cua.dk>
12538
12539 * macros.c (Fstart_kbd_macro): Added NO-EXEC argument to inhibit
12540 executing macro before appending to it (when used from Lisp).
12541 (Fexecute_kbd_macro): Added LOOPFUNC argument to supply function
12542 which is called prior to each iteration of macro (for kmacro.el).
12543 (Fend_kbd_macro, Fcall_last_kbd_macro): Likewise.
12544
12545 * lisp.h (Fexecute_kbd_macro): Update prototype.
12546
12547 * keyboard.c (Fcommand_execute): Update call to Fexecute_kbd_macro.
12548
12549 2002-08-14 Kenichi Handa <handa@etl.go.jp>
12550
12551 * xselect.c (QUTF8_STRING): New variable.
12552 (symbol_to_x_atom): Pay attention to QUTF8_STRING.
12553 (x_atom_to_symbol): Likewise.
12554 (x_get_local_selection): New argument local_request. If it is
12555 nonzero, call handler_fn with the second arg nil.
12556 (x_handle_selection_request): Call x_get_local_selection with
12557 local_request 0.
12558 (lisp_data_to_selection_data): Don't encode the string here.
12559 (Fx_get_selection_internal): Call x_get_local_selection with
12560 local_request 1.
12561 (syms_of_xselect): Intern and staticpro QUTF8_STRING.
12562
12563 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
12564
12565 * xterm.h (struct x_display_info): New member Xatom_UTF8_STRING.
12566
12567 2002-08-13 Richard M. Stallman <rms@gnu.org>
12568
12569 * minibuf.c (Fminibufferp): New function.
12570 (syms_of_minibuf): Defsubr it.
12571 (Fminibuffer_prompt_end): Handle non-minibuffers specially.
12572
12573 2002-08-13 Gerd Moellmann <gerd.moellmann@t-online.de>
12574
12575 * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
12576
12577 2002-08-12 Richard M. Stallman <rms@gnu.org>
12578
12579 * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
12580 [!VMS] (WCOREDUMP, WEXITSTATUS, WIFEXITED, WIFSTOPPED, WIFSIGNALED)
12581 (WSTOPSIG, WTERMSIG): Define each one independently if not defined
12582 already.
12583
12584 * buffer.c (syms_of_buffer) <fill-column>: Doc fix.
12585
12586 2002-08-11 Andrew Choi <akochoi@shaw.ca>
12587
12588 * macterm.c (XTmouse_position): Check wp with is_emacs_window.
12589 (Vmac_pass_command_to_system): New variable.
12590 (Vmac_pass_control_to_system): New variable.
12591 (do_mouse_moved): Check wp with is_emacs_window.
12592 (XTread_socket): Check window_ptr with is_emacs_window.
12593 Call FrontNonFloatingWindow instead of FrontWindow. Send keydown
12594 events back to Mac Toolbox for processing, depending on values of
12595 Vmac_pass_command_to_system and Vmac_pass_control_to_system.
12596 (syms_of_macterm): DEFVAR_LISP Vmac_pass_command_to_system and
12597 Vmac_pass_control_to_system.
12598
12599 2002-08-10 Kenichi Handa <handa@etl.go.jp>
12600
12601 * coding.c (unencodable_char_position): New function.
12602 (Funencodable_char_position): New function.
12603 (syms_of_coding): Defsubr Funencodable_char_position.
12604
12605 2002-08-10 Andrew Choi <akochoi@shaw.ca>
12606
12607 * mac.c (sys_select) [MAC_OSX]: New function.
12608
12609 * macterm.c (MakeMeTheFrontProcess): New function.
12610 (mac_initialize): Call MakeMeTheFrontProcess.
12611
12612 * s/darwin.h: Define select to sys_select.
12613
12614 2002-08-09 Richard M. Stallman <rms@gnu.org>
12615
12616 * keyboard.c (make_lispy_event): Test WINDOWSNT, not WINDOWS_NT.
12617
12618 2002-08-09 Gerd Moellmann <gerd.moellmann@t-online.de>
12619
12620 * xdisp.c (forward_to_next_line_start): Return 0 when reaching the
12621 end of the buffer.
12622
12623 2002-08-08 Ken Raeburn <raeburn@mit.edu>
12624
12625 * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
12626
12627 * puresize.h (BASE_PURESIZE): Increase to 910000.
12628
12629 2002-08-08 Kenichi Handa <handa@etl.go.jp>
12630
12631 * coding.c (Ffind_operation_coding_system): For write-region, if
12632 VISIT is a filename, make it the target.
12633
12634 2002-08-07 Richard M. Stallman <rms@gnu.org>
12635
12636 * alloc.c (mark_object): Detect long lists for debugging.
12637 (mark_object_loop_halt): New variable.
12638
12639 * s/hpux10.h (C_SWITCH_SYSTEM): #undef it.
12640
12641 * data.c (Fmake_variable_frame_local): Doc fix.
12642
12643 2002-08-01 David Ponce <david@dponce.com>
12644
12645 * w32menu.c (local_heap, local_alloc, local_free): New macros.
12646 (malloc_widget_value, free_widget_value)
12647 (w32_free_submenu_strings): Use them.
12648
12649 (push_submenu_start, push_submenu_end, push_left_right_boundary)
12650 (push_menu_pane, push_menu_item, single_keymap_panes)
12651 (single_menu_item, Fx_popup_menu, menubar_selection_callback)
12652 (single_submenu, set_frame_menubar)
12653 (w32_menu_show, w32_dialog_show): Use AREF, ASET, ASIZE.
12654
12655 (Fx_popup_menu): Don't show pop up menu until preceding one is
12656 actually cleaned up. Moved UNGCPRO outside #ifdef HAVE_MENUS block.
12657
12658 * w32menu.c: Changes adapted from xmenu.c
12659 (set_frame_menubar): First parse all submenus,
12660 then make widget_value trees from them.
12661 Don't allocate any widget_value objects
12662 until we are done with the parsing.
12663 (parse_single_submenu): New function.
12664 (digest_single_submenu): New function.
12665 (single_submenu): Function deleted, replaced by those two.
12666
12667 2002-08-04 Andrew Choi <akochoi@shaw.ca>
12668
12669 * macterm.c (XTread_socket): Check that FrontNonFloatingWindow
12670 returns a valid window pointer before proceeding for keyDown and
12671 autoKey events.
12672
12673 2002-08-03 Andrew Choi <akochoi@shaw.ca>
12674
12675 * macterm.c (USE_CARBON_EVENTS): New macro.
12676 (macCtrlKey, macShiftKey, macMetaKey, macAltKey): New macros.
12677 (x_iconify_frame): Call CollapseWindow.
12678 (Vmac_reverse_ctrl_meta): New variable.
12679 (Vmac_wheel_button_is_mouse_2): New variable.
12680 (init_mac_drag_n_drop): New function.
12681 (mac_do_receive_drag): New function.
12682 (mac_handle_service_event): New function.
12683 (init_service_handler): New function.
12684 (mac_to_emacs_modifiers): New function.
12685 (mac_event_to_emacs_modifiers): New function.
12686 (mac_get_mouse_btn): New function.
12687 (mac_convert_event_ref): New function.
12688 (XTread_socket) [USE_CARBON_EVENTS]: Call ReceiveNextEvent,
12689 SendEventToEventTarget, mac_event_to_emacs_modifiers, and
12690 mac_get_mouse_btn.
12691 (mac_initialize): Call init_mac_drag_n_drop and init_service_handler.
12692
12693 * keyboard.c: Define Qmouse_wheel, mouse_wheel_syms, and
12694 lispy_mouse_wheel_names for MAC_OSX as well as for WINDOWS_NT.
12695 (kbd_buffer_get_event): Set used_mouse_menu for MENU_BAR_EVENT and
12696 TOOL_BAR_EVENT for MAC_OS as well.
12697 (make_lispy_event): Handle MOUSE_WHEEL_EVENT for MAC_OSX as well
12698 as for WINDOWS_NT.
12699 (syms_of_keyboard): Initialize Qmouse_wheel for MAC_OSX.
12700
12701 * termhooks.h (event_kind): Define MOUSE_WHEEL_EVENT also for MAC_OSX.
12702
12703 2002-08-03 Gerd Moellmann <gerd.moellmann@t-online.de>
12704
12705 * xdisp.c (forward_to_next_line_start): Fix a condition that
12706 lead to a newline being skipped.
12707
12708 2002-08-02 Andrew Choi <akochoi@shaw.ca>
12709
12710 * mac.c (syms_of_mac): Defsubr Sx_selection_exists_p.
12711
12712 2002-08-01 Richard M. Stallman <rms@gnu.org>
12713
12714 * Makefile.in (SOME_MACHINE_OBJECTS): Add fontset.o.
12715
12716 2002-07-31 Andrew Choi <akochoi@shaw.ca>
12717
12718 * macfns.c: #undef init_process before #define-ing it.
12719
12720 * s/darwin.h: Define MAC_OS, SYMS_SYSTEM, and OTHER_FILES only if
12721 HAVE_CARBON is defined.
12722
12723 2002-07-31 Richard M. Stallman <rms@gnu.org>
12724
12725 * xmenu.c (set_frame_menubar): First parse all submenus,
12726 then make widget_value trees from them.
12727 Don't allocate any widget_value objects
12728 until we are done with the parsing.
12729 (parse_single_submenu): New function.
12730 (digest_single_submenu): New function.
12731 (single_submenu): Function deleted, replaced by those two.
12732
12733 2002-07-30 Juanma Barranquero <lektu@terra.es>
12734
12735 * w32proc.c (syms_of_ntproc): Fix docstring of
12736 `w32-get-true-file-attributes'.
12737
12738 2002-07-28 Richard M. Stallman <rms@gnu.org>
12739
12740 * s/hpux8.h (HPUX8): Define this before including hpux.h.
12741 (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide.
12742
12743 * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8.
12744
12745 * keyboard.c (make_lispy_event):
12746 Use #ifdef to test USE_TOOLKIT_SCROLL_BARS.
12747 Explicitly clear up_modifier in event->modifiers.
12748
12749 2002-07-27 Richard M. Stallman <rms@gnu.org>
12750
12751 * xterm.h (FRAME_CURSOR_WIDTH): New macro.
12752
12753 * xterm.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
12754 for bar cursor.
12755
12756 2002-07-26 Kenichi Handa <handa@etl.go.jp>
12757
12758 * coding.c (detect_coding_iso2022): While checking a byte sequence
12759 for CODING_CATEGORY_MASK_ISO_8_2, if we read one extra byte, check
12760 it in the normal loop.
12761
12762 2002-07-24 Gerd Moellmann <gerd.moellmann@t-online.de>
12763
12764 * xterm.c (expose_overlaps): New function.
12765 (expose_window): Use it to fix the display of overlapping rows.
12766
12767 * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
12768
12769 2002-07-23 Ken Raeburn <raeburn@gnu.org>
12770
12771 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
12772 since it only depends on XUINT.
12773
12774 * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
12775 EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
12776 PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
12777 Macros deleted.
12778
12779 * mem-limits.h (start_of_data): If DATA_START is defined, prefer
12780 its value over other approaches.
12781 * sysdep.c (start_of_data): Don't define the function if a macro
12782 form has been defined.
12783
12784 2002-07-23 Gerd Moellmann <gerd.moellmann@t-online.de>
12785
12786 * xdisp.c (redisplay_updating_p): New variable.
12787 (init_iterator): Don't free realized faces when
12788 redisplay_updating_p is set.
12789 (redisplay_internal): Set redisplay_updating_p while updating
12790 the display.
12791
12792 2002-07-23 Richard M. Stallman <rms@gnu.org>
12793
12794 * editfns.c (Fmessage): Treat "" like nil.
12795
12796 2002-07-23 Kenichi Handa <handa@etl.go.jp>
12797
12798 * xdisp.c (face_before_or_after_it_pos):
12799 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
12800
12801 2002-07-22 Juanma Barranquero <lektu@terra.es>
12802
12803 * callproc.c (init_callproc) [DOS_NT]:
12804 Initialize Vshared_game_score_directory to nil.
12805 (syms_of_callproc) [DOS_NT]: Likewise.
12806
12807 2002-07-22 Gerd Moellmann <gerd.moellmann@t-online.de>
12808
12809 * xdisp.c (display_line): Replace an abort with xassert.
12810
12811 2002-07-21 Richard M. Stallman <rms@gnu.org>
12812
12813 * xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
12814 and END_UNCHANGED when setting buffer_unchanged_p.
12815 Use current_matrix_up_to_date_p to decide whether to use
12816 try_cursor_movement.
12817
12818 * config.in (HAVE_SHARED_GAME_DIR): Undef deleted.
12819
12820 * epaths.in (PATH_GAME): New macro, edited by ../Makefile.in.
12821
12822 * callproc.c (init_callproc): Set up Vshared_game_score_directory.
12823 Set to nil if dir does not exist.
12824 (syms_of_callproc): Init unconditionally and simply.
12825
12826 * buffer.c (Fbuffer_list): Doc fix.
12827
12828 2002-07-21 Ken Raeburn <raeburn@gnu.org>
12829
12830 * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
12831
12832 * buffer.c (mmap_realloc): When shrinking, make sure number of
12833 pages to unmap is rounded towards zero.
12834
12835 * m/mips-siemens.h (XSETUINT, XSETPNTR): Unused macros deleted.
12836 (XSETINT): Deleted.
12837
12838 * m/att3b.h (XINT): Don't define.
12839 (VALBITS, VALMASK, XTYPE): Deleted.
12840 (DATA_SEG_BITS): Define.
12841 * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET,
12842 ARRAY_MARK_FLAG): Deleted.
12843 (DATA_SEG_BITS): Define.
12844 * m/pfa50.h (VALBITS, VALMASK, XTYPE): Deleted.
12845 (DATA_SEG_BITS): Define.
12846
12847 2002-07-20 Richard M. Stallman <rms@gnu.org>
12848
12849 * print.c (print_error_message): New args CONTEXT and CALLER.
12850 Calls changed.
12851
12852 * lisp.h (print_error_message): Declare new args.
12853
12854 * keyboard.c (cmd_error_internal): Pass Vsignaling_function
12855 and CONTEXT to print_error_message, don't print them here.
12856 For a Quit, don't use Vsignaling_function.
12857 Call message_log_maybe_newline.
12858
12859 * Makefile.in (xsmfns.o): Don't depend on lisp.h.
12860
12861 2002-07-20 Kim F. Storm <storm@cua.dk>
12862
12863 * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p.
12864
12865 2002-07-19 Ken Raeburn <raeburn@gnu.org>
12866
12867 * bytecode.c (struct byte_stack): Pointers into byte string now
12868 point to const.
12869 * callproc.c (Fcall_process): Make NEW_ARGV array hold pointer to
12870 const.
12871 * charset.h (BCOPY_SHORT): Source pointer now points to const.
12872 * coding.c (encode_eol, detect_coding, detect_eol):
12873 (decode_coding, encode_coding, detect_coding_system):
12874 Source strings now treated as const.
12875 (decode_coding_string, encode_coding_string): Use STRING_COPYIN to
12876 modify Lisp string contents.
12877 * coding.h (decode_coding, encode_coding, detect_coding,
12878 detect_eol): Declarations updated.
12879 * composite.c (compose_chars_in_text): Treat Lisp string contents
12880 as const.
12881 * dispnew.c (safe_bcopy): Source pointer now points to const.
12882 * lisp.h (STRING_COPYIN): New macro.
12883 (detect_coding_system, safe_bcopy, temp_output_buffer_setup):
12884 (internal_with_output_to_temp_buffer): Declarations updated.
12885 * print.c (temp_output_buffer_setup):
12886 (internal_with_output_to_temp_buffer): Buffer name argument is now
12887 pointer to const.
12888 * sound.c (struct sound_device): Function pointer field "write"
12889 buffer argument now points to const.
12890 (vox_write): Buffer argument points to const.
12891 * syntax.c (Fstring_to_syntax, skip_chars): Treat Lisp string
12892 contents as const.
12893 * sysdep.c (emacs_write): Buffer pointer now const.
12894 * term.c (encode_terminal_code): Buffer pointer now const.
12895 * xfaces.c (may_use_scalable_font_p): Argument now points to const.
12896 (x_face_list_fonts, x_update_menu_appearance):
12897 (hash_string_case_insensitive): Treat Lisp string contents as const.
12898
12899 2002-07-19 Juanma Barranquero <lektu@terra.es>
12900
12901 * xdisp.c (syms_of_xdisp): Remove redundant deprecation info.
12902
12903 * fileio.c (syms_of_fileio): Likewise.
12904 (Ffile_name_as_directory): Fix argument name in docstring.
12905 (file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
12906
12907 2002-07-18 Richard M. Stallman <rms@gnu.org>
12908
12909 * data.c (Fdefalias): Doc fix.
12910
12911 2002-07-17 Dave Love <fx@gnu.org>
12912
12913 * intervals.h (text_property_stickiness): Use P_.
12914
12915 * ccl.c: Remove `emacs' conditionals.
12916 (ccl_backtrace_table): Fix size spec.
12917 (ccl_driver): Fix type errors.
12918
12919 2002-07-16 Ken Raeburn <raeburn@gnu.org>
12920
12921 * alloc.c (xstrdup, make_string, make_unibyte_string)
12922 (make_multibyte_string, build_string): String pointer args now
12923 point to const.
12924 * charset.c (find_charset_in_text, c_string_width):
12925 (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
12926 * fileio.c (report_file_error):
12927 * insdel.c (copy_text, count_size_as_multibyte, insert_1):
12928 (count_combining_before, count_combining_after, insert_1_both):
12929 (insert, insert_and_inherit, insert_string):
12930 (insert_before_markers, insert_before_markers_and_inherit):
12931 * lread.c (intern, oblookup, hash_string):
12932 * minibuf.c (temp_echo_area_glyphs):
12933 * search.c (fast_c_string_match_ignore_case):
12934 * sysdep.c (emacs_open, set_file_times):
12935 * xfaces.c (xstricmp):
12936 * xdisp.c (store_frame_title, string_char_and_length):
12937 (message_dolog, message2, message2_nolog, set_message): Likewise.
12938 (set_message_1): Cast message string argument to const pointer.
12939 * editfns.c (general_insert_function): Insertion function now
12940 takes pointer to const for input data.
12941 * charset.h (find_charset_in_text, c_string_width):
12942 (parse_str_as_multibyte): Declarations updated.
12943 * dispextern.h (xstricmp): Declaration updated.
12944 * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text):
12945 (count_size_as_multibyte, count_combining_before):
12946 (count_combining_after, insert_1, insert_1_both, message_dolog):
12947 (insert, insert_and_inherit, insert_before_markers)
12948 (insert_before_markers_and_inherit, set_message, message2):
12949 (message2_dolog, build_string, make_string, make_unibyte_string):
12950 (make_multibyte_string, intern, oblookup, report_file_error):
12951 (fast_c_string_match_ignore_case, temp_echo_area_glyphs):
12952 (emacs_open, xstrdup): Declarations updated.
12953 * systime.h (set_file_times): Declaration updated.
12954
12955 * charset.c (find_charset_in_text, lisp_string_width): Use const
12956 for pointer to lisp string data.
12957 * charset.h (FETCH_STRING_CHAR_ADVANCE):
12958 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK):
12959 * coding.c (Ffind_coding_systems_region_interval):
12960 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory):
12961 (Fmake_directory_internal, Fdelete_directory):
12962 (Ffile_name_absolute_p, Fwrite_region, double_dollars):
12963 * fontset.c (font_family_registry, fs_query_fontset):
12964 (list_fontsets):
12965 * frame.c (Fframe_parameter):
12966 * keyboard.c (cmd_error_internal):
12967 * keymap.c (Fdescribe_buffer_bindings):
12968 * lread.c (complete_filename_p, openp):
12969 * minibuf.c (Fminibuffer_complete_word):
12970 * xdisp.c (string_pos_nchars_ahead, init_from_display_pos):
12971 (face_before_or_after_it_pos, next_element_from_string):
12972 (get_overlay_arrow_glyph_row, display_mode_element):
12973 (decode_mode_spec_coding):
12974 * xterm.c (same_x_server): Likewise.
12975
12976 * buffer.c (reset_buffer_local_variables): Delete "#if 0"
12977 settings of non-existent fields.
12978
12979 * editfns.c (Fstring_to_char): Don't use XSTRING/XSETSTRING to
12980 copy a lisp value.
12981
12982 * lread.c (Fintern_soft): Use string macros instead of
12983 Lisp_String fields.
12984 * keyboard.c (echo_char, parse_modifiers_uncached):
12985 (parse_solitary_modifier, Fexecute_extended_command): Likewise.
12986 * textprop.c (validate_interval_range, interval_of): Likewise.
12987
12988 * fontset.c (Fset_fontset_font): Use SDATA instead of XSTRING()->data.
12989
12990 * charset.h (FETCH_STRING_CHAR_ADVANCE)
12991 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SBYTES instead of
12992 XSTRING()->size_byte.
12993
12994 * lisp.h (SDATA, SREF): Produce rvalue.
12995 (SSET): New macro.
12996 * alloc.c (make_event_array): Use SSET for storing into a string.
12997 * buffer.c (Fother_buffer): Use SREF when retrieving a byte from
12998 a string.
12999 * casefiddle.c (casify_object): Use SSET.
13000 * charset.h (FETCH_STRING_CHAR_ADVANCE)
13001 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA when getting
13002 address of string contents.
13003 * data.c (Faref): Use SDATA.
13004 (Faset): Use SDATA, SSET.
13005 * dired.c (directory_files_internal): Use SSET.
13006 * fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
13007 (Fread_file_name): Use SREF, SSET.
13008 * fns.c (concat): Use SSET.
13009 (concat, Fdelete): Use SDATA.
13010 * insdel.c (insert_from_string_1): Use SDATA.
13011 * keyboard.c (Fevent_convert_list): Use SREF.
13012 * lread.c (Fload): Use SDATA, SSET.
13013 * macfns.c (validate_x_resource_name): Use SSET.
13014 * process.c (status_message): Use SSET.
13015 * search.c (wordify): Use SDATA.
13016 (Freplace_match): Use SREF.
13017 * w32fns.c (validate_x_resource_name): Use SSET.
13018 * xfns.c (validate_x_resource_name): Use SSET.
13019 * xterm.c (x_catch_errors, x_clear_errors): Use SSET.
13020
13021 2002-07-16 Richard M. Stallman <rms@gnu.org>
13022
13023 * s/hpux11.h (USG_SUBTTY_WORKS): Defined.
13024
13025 * xdisp.c (reconsider_clip_changes):
13026 Don't test prevent_redisplay_optimizations_p.
13027 (redisplay_internal): Test prevent_redisplay_optimizations_p
13028 along with clip_changed in some cases.
13029 (try_window_id): Likewise.
13030 (redisplay_window): New local var buffer_unchanged_p.
13031
13032 * keyboard.c (cmd_error) [HAVE_X_WINDOWS]: Maybe call cancel_houglass.
13033
13034 * process.c (create_process): Test USG_SUBTTY_WORKS.
13035 (process_send_signal): Clean up handling of GID.
13036 Detect errors in ioctls meant to set GID.
13037
13038 * window.c (temp_output_buffer_show):
13039 Don't set prevent_redisplay_optimizations_p.
13040
13041 2002-07-15 Juanma Barranquero <lektu@terra.es>
13042
13043 * eval.c (Fdefvaralias): Add docstring argument.
13044
13045 2002-07-15 Ken Raeburn <raeburn@gnu.org>
13046
13047 * lisp.h (STRING_INTERVALS): Produce rvalue.
13048 (STRING_SET_INTERVALS): New macro.
13049 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.
13050 * fns.c (Fstring_as_multibyte): Likewise.
13051 * intervals.c (balance_possible_root_interval, delete_interval)
13052 (create_root_interval, copy_intervals_to_string): Likewise.
13053 * textprop.c (set_text_properties): Likewise. Use NULL_INTERVAL
13054 instead of 0.
13055
13056 2002-07-14 Ken Raeburn <raeburn@gnu.org>
13057
13058 * lisp.h (STRING_SET_CHARS): New macro.
13059 (SCHARS, SBYTES): Produce rvalues.
13060 * dired.c (directory_files_internal): Use STRING_SET_CHARS.
13061 * fns.c (concat): Likewise.
13062 * lread.c (read_vector): Likewise.
13063
13064 * lisp.h (SMBP): Delete. All uses changed to STRING_MULTIBYTE.
13065 (STRING_SET_UNIBYTE): New macro.
13066 (SET_STRING_BYTES): Delete. Callers (all of which supplied a
13067 length of -1) changed to use STRING_SET_UNIBYTE.
13068 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
13069 casefiddle.c, category.c, ccl.c, charset.c, charset.h, coding.c,
13070 composite.c, data.c, dired.c, dispnew.c, disptab.h, doc.c,
13071 dosfns.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fn.c,
13072 fontset.c, frame.c, indent.c, insdel.c, intervals.c, keyboard.c,
13073 keymap.c, lread.c, mac.c, macfns.c, macmenu.c, macterm.c,
13074 minibuf.c, msdos.c, print.c, process.c, search.c, sound.c,
13075 sunfns.c, syntax.c, syntax.h, sysdep.c, textprop.c, undo.c,
13076 w16select.c, w32.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
13077 w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c,
13078 xselect.c, xsmfns.c, xterm.c: Most uses of XSTRING combined with
13079 STRING_BYTES or indirection changed to SCHARS, SBYTES,
13080 STRING_INTERVALS, SREF, SDATA; explicit size_byte references left
13081 unchanged for now.
13082
13083 2002-07-13 Kim F. Storm <storm@cua.dk>
13084
13085 * keyboard.c (command_loop_1): Invert check on Vmemory_full.
13086
13087 2002-07-12 Richard M. Stallman <rms@gnu.org>
13088
13089 * fileio.c (Fwrite_region): Doc fix.
13090
13091 * print.c (print_error_message): Don't handle Vsignaling_function here.
13092
13093 * keyboard.c (cmd_error_internal): Handle Vsignaling_function here.
13094 (command_loop_1): Avoid certain actions after memory-full error.
13095
13096 * eval.c (Fsignal): Don't call cancel_hourglass.
13097 For a memory-full error, don't call Vsignal_hook_function
13098 and don't set Vsignaling_function.
13099
13100 * process.c (process_send_signal): Add abort call.
13101
13102 2002-07-11 Markus Rost <rost@math.ohio-state.edu>
13103
13104 * keymap.c (Fkey_binding): Fix typo.
13105
13106 2002-07-11 Richard M. Stallman <rms@gnu.org>
13107
13108 * alloc.c (Vmemory_full): New variable.
13109 (Vmemory_signal_data): Rename from memory_signal_data.
13110 Uses changed.
13111 (syms_of_alloc): Defvar them.
13112 (memory_full, buffer_memory_full): Set Vmemory_full.
13113
13114 * lisp.h (Vmemory_full): Add declaration.
13115 (current_column, indented_beyond_p): Change declaration.
13116
13117 * indent.c (last_known_column): Declare as double, not float.
13118 (current_column, current_column_1, string_display_width)
13119 (position_indentation): Return `double'.
13120 (indented_beyond_p): Arg `column' is `double'. Callers changed.
13121
13122 * xdisp.c (message_dolog): Do nothing if Vmemory_full is non-nil.
13123 (back_to_previous_visible_line_start)
13124 (reseat_at_next_visible_line_start, next_element_from_buffer):
13125 Use `double', not `float', when calling indented_beyond_p.
13126
13127 * s/hpux11.h (BROKEN_SA_RESTART): Define.
13128
13129 * sysdep.c (sys_signal): Test BROKEN_SA_RESTART.
13130
13131 2002-07-11 Juanma Barranquero <lektu@terra.es>
13132
13133 * alloc.c, buffer.c, bytecode.c, callint.c, callproc.c, coding.c,
13134 * composite.c, dired.c, dispnew.c, editfns.c, emacs.c, eval.c,
13135 * fileio.c, fns.c, insdel.c, keyboard.c, keymap.c, lread.c, macfns.c,
13136 * macmenu.c, macros.c, minibuf.c, print.c, process.c, sound.c,
13137 * textprop.c, w32fns.c, w32menu.c, window.c, xfaces.c, xfns.c,
13138 * xmenu.c, xselect.c, xterm.c: Use SPECPDL_INDEX wherever makes sense.
13139
13140 2002-07-10 Juanma Barranquero <lektu@terra.es>
13141
13142 * lisp.h (SPECPDL_INDEX): Rename from BINDING_STACK_SIZE.
13143 All callers changed.
13144
13145 2002-07-09 Stefan Monnier <monnier@cs.yale.edu>
13146
13147 * data.c (Fdefalias): Add an optional `docstring' argument.
13148 (set_internal, Fsetq_default): Use XCAR/XCDR.
13149
13150 * composite.c (HASH_VALUE, HASH_KEY):
13151 * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
13152
13153 2002-07-09 Kenichi Handa <handa@etl.go.jp>
13154
13155 * callproc.c (Fcall_process): Fix previous change.
13156
13157 2002-07-07 Stefan Monnier <monnier@cs.yale.edu>
13158
13159 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
13160 Add support for hash-tables.
13161 (Ftry_completion): Return t even if the string appears multiple times.
13162
13163 * fns.c (Fnconc): Use XCDR.
13164 (Fprovide): Use CONSP and XCDR.
13165 (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
13166 (HASH_TABLE_SIZE): Delete: moved to lisp.h.
13167 (Fmake_hash_table): Accept `:size nil'.
13168 (Fmakehash): Delete: moved to subr.el.
13169 (syms_of_fns): Don't defsubr makehash.
13170
13171 * lisp.h (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
13172 (HASH_TABLE_SIZE): Move from fns.c.
13173
13174 2002-07-07 Richard M. Stallman <rms@gnu.org>
13175
13176 * xdisp.c (make_cursor_line_fully_visible): Don't try short scrolls.
13177 Instead just return 0 when there is something to be done.
13178 (try_scrolling): If make_cursor_line_fully_visible returns 0,
13179 retry scrolling as if cursor were off the bottom.
13180 (try_cursor_movement): If make_cursor_line_fully_visible returns 0,
13181 return CURSOR_MOVEMENT_MUST_SCROLL.
13182 (redisplay_window): If make_cursor_line_fully_visible returns 0,
13183 go to try_to_scroll.
13184
13185 * buffer.c (Fbuffer_local_value): Store current value into its binding
13186 so we get the up-to-date value for the binding that is loaded.
13187
13188 * eval.c (Fdefmacro): Doc fix.
13189
13190 2002-07-05 Dave Love <fx@gnu.org>
13191
13192 * keyboard.c (read_key_sequence): Set initial_idleness_start_time
13193 correctly.
13194
13195 * ccl.c (Vtranslation_hash_table_vector, GET_HASH_TABLE)
13196 (HASH_VALUE, CCL_LookupIntConstTbl, CCL_LookupCharConstTbl): New.
13197 (ccl_driver): Add cases for CCL_LookupIntConstTbl,
13198 CCL_LookupCharConstTbl.
13199 (syms_of_ccl): Defvar translation-hash-table-vector.
13200
13201 2002-07-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13202
13203 * xdisp.c: Remove unused variable `face'.
13204
13205 2002-07-04 Juanma Barranquero <lektu@terra.es>
13206
13207 * keyboard.c (post_command_idle_hook): Remove redundant (and inexact)
13208 obsolescence information.
13209
13210 2002-07-03 Andrew Choi <akochoi@shaw.ca>
13211
13212 * macterm.c (x_list_fonts): Fix comment. Cache fonts matching
13213 pattern. Search cache first.
13214 (init_font_name_table): Also add entry for jisx0201.1976-0 coding
13215 for Japanese font.
13216 (XLoadQueryFont): Use it.
13217
13218 2002-07-02 Richard M. Stallman <rms@gnu.org>
13219
13220 * keymap.c (Fdefine_key): Doc fix.
13221
13222 * xterm.c (x_term_init): Turn off polling around XtOpenDisplay.
13223
13224 2002-07-02 Juanma Barranquero <lektu@terra.es>
13225
13226 * keymap.c (syms_of_keymap): Fix typo.
13227
13228 2002-07-01 Andrew Choi <akochoi@shaw.ca>
13229
13230 * s/darwin.h: Define POSIX_SIGNALS.
13231
13232 * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef
13233 and FSRefMakePath to convert FSSpec returned with Apple Event to
13234 Posix pathname.
13235 (mac_initialize) [TARGET_API_MAC_CARBON]:
13236 Call init_required_apple_events and disable the `Quit' menu item
13237 provided automatically by the Carbon Toolbox.
13238
13239 2002-07-01 Dave Love <fx@gnu.org>
13240
13241 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
13242 for K&R.
13243
13244 * xterm.c: Fix prototype for K&R.
13245
13246 * term.c (costs_set): Declare static, non-initialized for pcc.
13247
13248 2002-07-01 Richard M. Stallman <rms@gnu.org>
13249
13250 * keyboard.c (timer_last_idleness_start_time): New variable.
13251 (timer_start_idle): Set that.
13252 (read_key_sequence): Use that to reset timer_idleness_start_time
13253 to previous value.
13254
13255 * window.c (Frecenter): With arg, set optional_new_start.
13256
13257 * xdisp.c (redisplay_internal): Make optional_new_start really work.
13258
13259 * minibuf.c (Fminibuffer_complete_and_exit): Move to end of
13260 buffer for completion.
13261
13262 2002-06-29 Ken Raeburn <raeburn@gnu.org>
13263
13264 * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
13265
13266 2002-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13267
13268 * keyboard.c (readable_filtered_events): New function that filters
13269 FOCUS_IN_EVENT depending on parameter.
13270 (readable_events): Calls readable_filtered_events, not filtering
13271 FOCUS_IN_EVENT.
13272 (get_filtered_input_pending): New function, filtering parameter passed
13273 to readable_filtered_events.
13274 (get_input_pending): Calls get_filtered_input_pending, not filtering
13275 FOCUS_IN_EVENT.
13276 (Finput_pending_p): Calls get_filtered_input_pending, DO filter
13277 FOCUS_IN_EVENT.
13278
13279 * xterm.h (struct x_output): Add focus_state.
13280
13281 * xterm.c (x_focus_changed): New function.
13282 (x_detect_focus_change): New function.
13283 (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
13284 EnterNotify and LeaveNotify to track X focus changes.
13285
13286 2002-06-28 Andreas Schwab <schwab@suse.de>
13287
13288 * lisp.h: Remove duplicate declaration of code_convert_string_norecord.
13289
13290 2002-06-27 Kim F. Storm <storm@cua.dk>
13291
13292 * xdisp.c: (mode_line_string_list, mode_line_string_face)
13293 (mode_line_string_face_prop): New variables.
13294 (store_mode_line_string): New function.
13295 (display_mode_element): Use store_mode_line_string to
13296 add mode-line string elements to mode_line_string_list
13297 when mode_line_string_list is non-nil.
13298 (Fformat_mode_line): Now returns propertized string by
13299 default. New arg NO-PROPS to ignore properties.
13300 (decode_mode_spec): Only add two dashes for %- in propertized
13301 mode-line string.
13302 (syms_of_xdisp): Init and staticpro mode_line_string_list.
13303
13304 2002-06-27 Stefan Monnier <monnier@cs.yale.edu>
13305
13306 * minibuf.c (minibuffer_completion_contents): Add return type.
13307
13308 2002-06-27 Juanma Barranquero <lektu@terra.es>
13309
13310 * charset.c (Fchar_bytes): Remove obsolescence info from docstring.
13311
13312 2002-06-26 Juanma Barranquero <lektu@terra.es>
13313
13314 * fileio.c (read_file_name_cleanup): Add missing return.
13315
13316 2002-06-26 Richard M. Stallman <rms@gnu.org>
13317
13318 * window.c (Frecenter): Don't set force_start flag.
13319
13320 * minibuf.c (do_completion, Fminibuffer_complete_word)
13321 (Fminibuffer_completion_help): Complete just the text before point.
13322 (minibuffer_completion_contents): New function.
13323
13324 * buffer.c (Fbury_buffer): Use frames_discard_buffer.
13325
13326 * frame.c (frames_bury_buffer): Function deleted.
13327
13328 2002-06-25 Miles Bader <miles@gnu.org>
13329
13330 * callint.c (Fcall_interactively): When checking to see if doprnt hit
13331 the end of callint_message, allow for a terminating '\0'.
13332
13333 2002-06-24 Juanma Barranquero <lektu@terra.es>
13334
13335 * w32select.c: Include composite.h
13336
13337 * w16select.c: Likewise.
13338
13339 2002-06-24 Kenichi Handa <handa@etl.go.jp>
13340
13341 * callproc.c (Fcall_process): If code detection is necessary,
13342 call detect_coding directly here.
13343
13344 * coding.c (detect_eol): Preserve coding->cmp_data.
13345
13346 * w16select.c (Fw16_get_clipboard_data):
13347 * w32fns.c (w32_to_x_font):
13348 * w32select.c (Fw32_get_clipboard_data):
13349 * xselect.c (selection_data_to_lisp_data):
13350 * xterm.c (XTread_socket): Disable composition handling.
13351
13352 2002-06-24 Stefan Monnier <monnier@cs.yale.edu>
13353
13354 * print.c (temp_output_buffer_setup): Kill all local variables.
13355
13356 2002-06-22 Stefan Monnier <monnier@cs.yale.edu>
13357
13358 * lread.c (Fread): Remove redundant and imprecise declaration.
13359
13360 * xfns.c (check_x_display_info): Use check_x_frame.
13361
13362 * .gdbinit (xprintsym): Use the new `xname' field.
13363 (xsymbol): Use it.
13364
13365 2002-06-22 Jason Rumney <jasonr@gnu.org>
13366
13367 * w32fns.c (file_dialog_callback): New function.
13368 (Fx_file_dialog): Allow selecting directories as well as files.
13369
13370 2002-06-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13371
13372 * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
13373 OpenBSD. Add support for mipseb-*-netbsd* machines.
13374
13375 2002-06-17 Andrew Choi <akochoi@shaw.ca>
13376
13377 * macterm.c (mac_scroll_area): Set foreground and backcolor to
13378 black and white before scrolling. Restore frame background and
13379 foreground color after scrolling.
13380 (do_window_update): Call XClearWindow before calling expose_frame.
13381 (make_mac_frame): Don't set FRAME_BACKGROUND_PIXEL and
13382 FRAME_FOREGROUND_PIXEL of frame.
13383
13384 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
13385 test Mac command key as <ALT> key.
13386
13387 2002-06-17 Stefan Monnier <monnier@cs.yale.edu>
13388
13389 * window.c (Fset_window_configuration): Lisp_Object/int mixup.
13390
13391 * keyboard.c (read_key_sequence): Be more careful with first_unbound.
13392 Lookup keys in function-key-map immediately so that key-translation-map
13393 can be applied earlier.
13394 Remove function_key_possible and key_translation_possible, replaced
13395 by checking `keytran_start < t'.
13396
13397 * .gdbinit (xsymbol): Use the new `xname' field.
13398
13399 2002-06-17 Andrew Choi <akochoi@shaw.ca>
13400
13401 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
13402 test Mac command key as <ALT> key.
13403
13404 * mac.c (do_applescript): Call initialize_applescript if necessary
13405 when first called. Dispose of result_desc only when there is no error.
13406 (Fdo_applescript): Use %d format specifier instead of %ld.
13407
13408 2002-06-16 Andrew Choi <akochoi@shaw.ca>
13409
13410 * macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
13411 of FrontWindow for cases keyDown and autoKey.
13412
13413 * fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
13414 Vdefault_fontset to Monaco with mac-roman coding.
13415
13416 * mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
13417 init_process before and after inclusion of Carbon/Carbon.h, resp.
13418
13419 * macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
13420 cursor_gc.
13421 (add_font_name_table_entry): New function.
13422 (init_font_name_table): Use add_font_name_table_entry; add italic,
13423 bold, and bold-italic entries for truetype fonts.
13424
13425 * xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
13426 for Mac too.
13427 (try_font_list) [MAC_OS]: If no font matches given registry, try
13428 fonts with any registry matching face_family.
13429 (realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font here.
13430
13431 * s/darwin.h: If autoconf detects the Ncurses library, define
13432 LIBS_TERMCAP to -lncurses to use it.
13433
13434 2002-06-16 Eli Zaretskii <eliz@is.elta.co.il>
13435
13436 * strftime.c [__hpux]: Include sys/_mbstate_t.h.
13437
13438 2002-06-15 Richard M. Stallman <rms@gnu.org>
13439
13440 * window.c (Fset_window_configuration): Explicitly preserve
13441 the point value that new_current_buffer had at the start.
13442
13443 2002-06-14 Juanma Barranquero <lektu@terra.es>
13444
13445 * composite.c (Fcompose_region_internal, Fcompose_string_internal):
13446 Fix typos.
13447
13448 2002-06-14 Kim F. Storm <storm@cua.dk>
13449
13450 * insdel.c (insert_1_both, insert_from_string_1)
13451 (insert_from_buffer_1): Recalculate END_UNCHANGED in case the
13452 insert happened in the end_unchanged region. Otherwise, the
13453 redisplay may be confused and duplicate the last line in the
13454 buffer [seen after save-buffer when require-final-newline==t].
13455
13456 2002-06-13 Jason Rumney <jasonr@gnu.org>
13457
13458 * w32.c (init_environment): Remove EMACSLOCKDIR.
13459 (stat): Swap _S_IFDIR and _S_IFREG.
13460
13461 2002-06-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13462
13463 * keyboard.c, macterm.c, macmenu.c, msdos.c, sysdep.c
13464 * termhooks.h, xmenu.c, xsmfns.c, xterm.h, xterm.c, w32term.c,
13465 * w32menu.c, w32inevt.c: Rename enum event_kind as follows:
13466 ascii_keystroke to ASCII_KEYSTROKE_EVENT, multibyte_char_keystroke
13467 to MULTIBYTE_CHAR_KEYSTROKE_EVENT, non_ascii_keystroke to
13468 NON_ASCII_KEYSTROKE_EVENT, timer_event to TIMER_EVENT, mouse_click
13469 to MOUSE_CLICK_EVENT, mouse_wheel to MOUSE_WHEEL_EVENT,
13470 language_change_event to LANGUAGE_CHANGE_EVENT, scroll_bar_click
13471 to SCROLL_BAR_CLICK_EVENT, w32_scroll_bar_click to
13472 W32_SCROLL_BAR_CLICK_EVENT, selection_request_event to
13473 SELECTION_REQUEST_EVENT, selection_clear_event to
13474 SELECTION_CLEAR_EVENT, buffer_switch_event to BUFFER_SWITCH_EVENT,
13475 delete_window_event to DELETE_WINDOW_EVENT, iconify_event to
13476 ICONIFY_EVENT, deiconify_event to DEICONIFY_EVENT,
13477 menu_bar_activate_event to MENU_BAR_ACTIVATE_EVENT, drag_n_drop to
13478 DRAG_N_DROP_EVENT, save_session_event to SAVE_SESSION_EVENT and
13479 no_event to NO_EVENT.
13480
13481 2002-06-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13482
13483 * macmenu.c: Remove declaration of Qmouse_click and Qevent_kind.
13484
13485 2002-06-12 Stefan Monnier <monnier@cs.yale.edu>
13486
13487 * intervals.c (textget): Don't forget to `return'.
13488 (lookup_char_property): Use XCAR/XCDR.
13489
13490 2002-06-12 Juanma Barranquero <lektu@terra.es>
13491
13492 * xdisp.c (Fformat_mode_line): Fix typo.
13493
13494 2002-06-12 Kim F. Storm <storm@cua.dk>
13495
13496 * xdisp.c (Fformat_mode_line): New function.
13497 (frame_title_buf, frame_title_buf_end, frame_title_ptr)
13498 (store_frame_title_char, store_frame_title): Use unconditionally.
13499 (init_xdisp): Defsubr Fformat_mode_line.
13500 Initialize frame_title_buf etc. unconditionally.
13501
13502 2002-06-11 Stefan Monnier <monnier@cs.yale.edu>
13503
13504 * keyboard.c (read_key_sequence):
13505 Remove prev_(fkey|keytran}_(map|start|end) since we don't want to pass
13506 things through those maps after downcasing events.
13507 Enforce that keytran_end <= fkey_start, i.e. that key-translation-map
13508 applies after function-key-map.
13509 Make sure that keytran can be done in the middle in the sequence.
13510 Be careful not to throw away events past the one we downcase.
13511
13512 * lread.c (read_integer): Remove unused var `tem'.
13513 (read1): Fix int/Lisp_Object mixup.
13514
13515 * xfaces.c (tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
13516
13517 2002-06-11 Richard M. Stallman <rms@gnu.org>
13518
13519 * keyboard.c (readable_events): Ignore any number of
13520 FOCUS_IN_EVENT events and return 0 if nothing else in buffer.
13521
13522 2002-06-09 Miles Bader <miles@gnu.org>
13523
13524 * xfaces.c (Ftty_supports_face_attributes_p): New function.
13525 (parse_rgb_list, tty_lookup_color): New functions.
13526 (tty_defined_color): Use `tty_lookup_color' to do all the work.
13527 (color_distance, Fcolor_distance): New functions.
13528 (TTY_SAME_COLOR_THRESHOLD): New macro.
13529 (Qtty_color_standard_values): New variable.
13530 (syms_of_xfaces): Initialize new vars & functions.
13531
13532 2002-06-08 Colin Walters <walters@verbum.org>
13533
13534 * textprop.c (Vchar_property_alias_alist): New variable.
13535 (syms_of_textprop) <Vchar_property_alias_alist>: DEFVAR_LISP.
13536
13537 * intervals.c (lookup_char_property): New function for looking up
13538 overlay and text properties, created from textget.
13539 (textget): Use it.
13540
13541 * intervals.h (lookup_char_property): Declare.
13542 (Vchar_property_alias_alist): Declare.
13543
13544 * buffer.c (Foverlay_get): Use lookup_char_property.
13545
13546 2002-06-07 Sam Steingold <sds@gnu.org>
13547
13548 * xselect.c (lisp_data_to_selection_data): Fix last change:
13549 *data_ret is not a Lisp string, while unibyte_string is.
13550
13551 2002-06-07 Eli Zaretskii <eliz@is.elta.co.il>
13552
13553 * xselect.c (lisp_data_to_selection_data): Fix last change:
13554 set size_ret.
13555
13556 2002-06-07 Andreas Schwab <schwab@suse.de>
13557
13558 * m/amdx86-64.h: New file.
13559
13560 2002-06-05 Eli Zaretskii <eliz@is.elta.co.il>
13561
13562 * fns.c (Fstring_make_unibyte): Doc fix.
13563
13564 * xselect.c (lisp_data_to_selection_data): If the requested type
13565 is STRING, call string_make_unibyte to encode the selected text
13566 as a string.
13567
13568 * window.c (Fset_window_hscroll): Doc fix.
13569
13570 2002-06-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13571
13572 * fileio.c (choose_write_coding_system):
13573 Call select-safe-coding-system properly.
13574
13575 2002-06-03 Richard M. Stallman <rms@gnu.org>
13576
13577 * xdisp.c (message_with_string): Error if STRING is not a string.
13578
13579 * fns.c (md5): Pass FILE arg to Vselect_safe_coding_system_function.
13580
13581 * fileio.c (choose_write_coding_system): Pass FILE arg to
13582 Vselect_safe_coding_system_function.
13583
13584 2002-06-03 Ken Raeburn <raeburn@gnu.org>
13585
13586 * buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
13587
13588 2002-06-02 Thien-Thi Nguyen <ttn@gnu.org>
13589
13590 * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
13591 * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
13592 * keymap.c (describe_command): Likewise.
13593 * minibuf.c (read_minibuf): Likewise.
13594
13595 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
13596 Cast `current_column' return value to int.
13597 (back_to_previous_visible_line_start)
13598 (reseat_at_next_visible_line_start, next_element_from_buffer):
13599 Cast `indented_beyond_p' 3rd arg to float.
13600
13601 * indent.c (last_known_column): Now a float.
13602 (current_column_1, position_indentation, current_column)
13603 (string_display_width): Return float.
13604 (Fcurrent_column): Cast `current_column' return value to int.
13605 (Fcurrent_indentation): Cast `position_indentation' retval to int.
13606 (indented_beyond_p): Third arg now a float.
13607 (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
13608
13609 * lisp.h (current_column): Now returns float.
13610 (indented_beyond_p): 3rd arg now a float.
13611
13612 2002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
13613
13614 * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
13615 is Qcompound_text_with_extensions.
13616
13617 * xselect.c (lisp_data_to_selection_data): Always set selection
13618 type as string if x_encode_text returns streingp non-NULL.
13619
13620 * s/netbsd.h: Include /usr/pkg in the run time shared library path.
13621
13622 2002-05-30 Richard M. Stallman <rms@gnu.org>
13623
13624 * window.c (Fset_window_configuration): Correct the handling
13625 of point in current buffer, to work with multiple windows.
13626
13627 2002-05-29 Colin Walters <walters@verbum.org>
13628
13629 * lread.c (Fread_from_string): Don't depend on order of evaluation
13630 for C function parameters.
13631
13632 2002-05-28 Richard M. Stallman <rms@gnu.org>
13633
13634 * xterm.c (x_display_and_set_cursor): Change the cursor in the same
13635 way for blinked-off state and for a nonselected window.
13636
13637 * window.c (window_scroll_pixel_based): Don't call Fbolp;
13638 instead, see if the new start pos is at beginning of line.
13639
13640 * fileio.c (Fwrite_region): If START is a string, don't
13641 make any annotations.
13642
13643 * eval.c (syms_of_eval): Doc fix.
13644
13645 2002-05-28 Colin Walters <walters@debian.org>
13646
13647 * emacs.c (USAGE1): Add --no-splash.
13648 (standard_args): Ditto.
13649
13650 2002-05-28 Colin Walters <walters@gnu.org>
13651
13652 * lread.c (readchar_count): New variable.
13653 (readchar): Increment it.
13654 (unreadchar): Decrement it.
13655 (read_multibyte): Decrement it.
13656 (Vread_with_symbol_positions): New variable.
13657 (Vread_symbol_positions_list): New variable.
13658 (read_internal_start): New function, created from Fread and
13659 Fread_from_string. Handle Vread_symbol_positions_list and
13660 Vread_with_symbol_positions.
13661 (readevalloop, Fread, Fread_from_string): Use it.
13662 (read1): Use readchar_count to add symbol positions to
13663 Vread_symbol_positions_list if Vread_with_symbol_positions is non-nil.
13664 (syms_of_lread): DEFVAR_LISP and initialize them.
13665
13666 * lread.c (read0, read1, read_list, read_vector, read_multibyte)
13667 (substitute_object_recurse, substitute_object_in_subtree)
13668 (substitute_in_interval): Prototype.
13669 (read_multibyte): Return c if it's less than zero.
13670
13671 2002-05-28 Kim F. Storm <storm@cua.dk>
13672
13673 * fileio.c (Fread_file_name_internal): Added brute-force
13674 speed up for using predicate file-directory-p.
13675
13676 2002-05-28 Kim F. Storm <storm@cua.dk>
13677
13678 * fileio.c (Vread_file_name_function, Vread_file_name_predicate):
13679 New variables.
13680 (syms_of_fileio): DEFVAR_LISP them.
13681 (read_file_name_cleanup): New unwind function.
13682 (Fread_file_name_internal): Only return completions satifying
13683 Vread_file_name_predicate. Temporarily unwind protect and rebind
13684 default-directory while checking completions against the predicate.
13685 (Fread_file_name): Added PREDICATE argument. Specbind it to
13686 Vread_file_name_predicate during completion.
13687 Call Vread_file_name_function to read the file name if non-nil.
13688
13689 * lisp.h (Fread_file_name): Now has 6 args.
13690
13691 * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
13692 predicate for Fread_file_name when reading directory name.
13693 Supply Qnil for predicate in other calls to Fread_file_name.
13694
13695 2002-05-26 Miles Bader <miles@gnu.org>
13696
13697 * term.c (tty_capable_p): New function.
13698 * dispextern.h (tty_capable_p): New function declaration.
13699 (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM)
13700 (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros.
13701
13702 2002-05-23 Stefan Monnier <monnier@cs.yale.edu>
13703
13704 * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
13705 (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
13706 (Vwrite_region_annotate_functions): Docstring fix.
13707
13708 2002-05-23 Kim F. Storm <storm@cua.dk>
13709
13710 * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
13711 phys_cursor's hpos is overwritten. This is still not completely
13712 correct, as it doesn't really make sense to use hpos at all to
13713 get the cursor glyph (as that is relative to the width of the
13714 characters on the line, which may have changed during the update).
13715
13716 2002-05-22 Jason Rumney <jasonr@gnu.org>
13717
13718 * w32fns.c (enumfont_t): Remove tail, make pattern a normal
13719 Lisp_Object.
13720 (enum_font_cb2, enum_font_maybe_add_to_list, w32_list_fonts):
13721 Use modified enumfont_t struct.
13722
13723 * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
13724
13725 * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
13726 Handle the `hbar' cursor type.
13727 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
13728
13729 * w32fns.c (Qhbar): New variable.
13730 (x_specified_cursor_type): Use it.
13731
13732 2002-05-21 Ken Raeburn <raeburn@gnu.org>
13733
13734 * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
13735 now, when the address is needed.
13736
13737 2002-05-21 Colin Walters <walters@gnu.org>
13738
13739 * Makefile.in (shortlisp): Add font-core.el.
13740
13741 2002-05-20 Richard M. Stallman <rms@gnu.org>
13742
13743 * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
13744
13745 * keyboard.c (read_char_minibuf_menu_prompt): Don't list
13746 equivalent key bindings here.
13747
13748 2002-05-20 Ken Raeburn <raeburn@gnu.org>
13749
13750 Change symbol structure to contain a lisp object for the symbol
13751 name:
13752 * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
13753 object field named "xname".
13754 (SYMBOL_NAME): New macro.
13755 * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
13756 name field.
13757 * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
13758 (mark_object, gc_sweep): Use symbol xname field and XSTRING
13759 instead of name field.
13760 * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
13761 SYMBOL_NAME instead of XSYMBOL and name field.
13762 * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
13763 instead of XSYMBOL and name field.
13764 * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
13765 and SYMBOL_NAME instead of XSYMBOL and name field.
13766 * coding.c (Fread_coding_system, code_convert_region1)
13767 (code_convert_string1, code_convert_string_norecord)
13768 (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
13769 XSYMBOL and name field.
13770 * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
13771 (Fmake_variable_buffer_local, Fmake_local_variable)
13772 (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
13773 of XSYMBOL and name field.
13774 * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
13775 XSYMBOL and name field.
13776 * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
13777 instead of XSYMBOL and name field.
13778 * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
13779 XSYMBOL and name field.
13780 * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
13781 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
13782 * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
13783 instead of XSYMBOL and name field.
13784 * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
13785 (parse_modifiers, apply_modifiers, Fevent_convert_list)
13786 (parse_solitary_modifier, Fexecute_extended_command):
13787 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
13788 * keymap.c (silly_event_symbol_error, Fsingle_key_description)
13789 (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
13790 of XSYMBOL and name field.
13791 (describe_command, describe_translation): Use SYMBOL_NAME and
13792 assignment instead of XSYMBOL and name field and XSETSTRING.
13793 * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
13794 instead of XSYMBOL and name field.
13795 (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
13796 name field and XSETSTRING.
13797 * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
13798 of XSYMBOL and name field.
13799 * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
13800 assignment instead of XSYMBOL and name field and XSETSTRING.
13801 * print.c (print_error_message, print_object): Use SYMBOL_NAME and
13802 XSTRING instead of XSYMBOL and name field.
13803 * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
13804 and XSTRING instead of XSYMBOL and name field.
13805 * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
13806 and XSTRING instead of XSYMBOL and name field.
13807 * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
13808 XSTRING instead of XSYMBOL and name field.
13809 * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
13810 of XSYMBOL and name field.
13811 * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
13812 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
13813
13814 2002-05-19 Ken Raeburn <raeburn@gnu.org>
13815
13816 * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
13817 and XCDR real rvalues in most configurations.
13818
13819 * buffer.c (fix_overlays_in_range, fix_overlays_before):
13820 Don't take the address of the cdr part of a cons cell; instead, track
13821 the parent cell and call XSETCDR, or set the variable for the head
13822 of the list if we haven't started down the list yet.
13823
13824 2002-05-19 Richard M. Stallman <rms@gnu.org>
13825
13826 * doc.c (reread_doc_file): Don't ask for confirmation.
13827
13828 2002-05-18 Jason Rumney <jasonr@gnu.org>
13829
13830 * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
13831 (xbm_load_image): Use it.
13832 (xbm_load): Ditto.
13833 (xbm_read_bitmap_data): Reverted to xfns.c version.
13834 From David Ponce <david@dponce.com>.
13835
13836 2002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
13837
13838 * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
13839 2.02 and later.
13840
13841 2002-05-16 Juanma Barranquero <lektu@terra.es>
13842
13843 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
13844
13845 2002-05-15 Stefan Monnier <monnier@cs.yale.edu>
13846
13847 * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
13848 meaningful test.
13849 (read_char_minibuf_menu_prompt): Fix typo.
13850
13851 2002-05-15 Eli Zaretskii <eliz@is.elta.co.il>
13852
13853 * eval.c (Fcommandp): Doc fix.
13854
13855 2002-05-13 Stefan Monnier <monnier@cs.yale.edu>
13856
13857 * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
13858 (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
13859 (Fset_keymap_parent): Gcpro a bit more.
13860 (access_keymap): Gcpro around meta_map call and around the main loop.
13861 (get_keyelt): Gcpro when following indirect references.
13862 (copy_keymap_item): New fun, extracted from Fcopy_keymap.
13863 (copy_keymap_1, Fcopy_keymap): Use it. Don't copy the parent map.
13864 (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
13865 Remove useless ad-hoc remap code.
13866
13867 2002-05-13 Richard M. Stallman <rms@gnu.org>
13868
13869 * search.c (search_buffer): Give up boyer moore search if inverse
13870 translation change charset_base.
13871
13872 2002-05-12 Eli Zaretskii <eliz@is.elta.co.il>
13873
13874 * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
13875 characters is carried over from the previous block of text, adjust
13876 coding->produced to account for the extra character.
13877
13878 2002-05-11 Andreas Schwab <schwab@suse.de>
13879
13880 * coding.c (intersection): Keep the elements of the returned list
13881 in the same order as in the first list.
13882
13883 2002-05-11 Kim F. Storm <storm@cua.dk>
13884
13885 * keymap.c (current_minor_maps): Fix resizing of cmm_maps;
13886 only update cmm_size if realloc actually succeeds.
13887 Testing with initial size of 2 elements revealed that using
13888 realloc on GNU/Linux would cause a random trap in xmalloc
13889 later on, so I rewrote the code to use malloc/bcopy/free instead
13890 of realloc.
13891
13892 2002-05-10 Jason Rumney <jasonr@gnu.org>
13893
13894 * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
13895
13896 2002-05-10 Eli Zaretskii <eliz@is.elta.co.il>
13897
13898 * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
13899 parens, to ensure correct evaluation order.
13900
13901 2002-05-10 Kim F. Storm <storm@cua.dk>
13902
13903 * keymap.c (Vemulation_mode_map_alists): New variable.
13904 (syms_of_keymap): DEFVAR_LISP it.
13905 (current_minor_maps): Process keymap alists in that list before
13906 minor-mode-overriding-map-alist and minor-mode-map-alist.
13907
13908 2002-05-09 Richard M. Stallman <rms@gnu.org>
13909
13910 * search.c (Freplace_match): Doc fix.
13911
13912 2002-05-09 Kim F. Storm <storm@cua.dk>
13913
13914 * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
13915 Enlarge cursor rectangle drawn around image with non-zero relief.
13916
13917 * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
13918 Enlarge cursor rectangle drawn around image with non-zero relief.
13919
13920 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
13921 Enlarge cursor rectangle drawn around image with non-zero relief.
13922
13923 2002-05-07 Eli Zaretskii <eliz@is.elta.co.il>
13924
13925 * xselect.c (lisp_data_to_selection_data): Don't set selection
13926 type if comes from the Lisp object's car. If the selection
13927 contains a pure ASCII text, always return QSTRING as its type.
13928
13929 2002-05-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13930
13931 * mac.c (mac-cut-function): Doc fix.
13932
13933 2002-05-05 Richard M. Stallman <rms@gnu.org>
13934
13935 * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
13936
13937 2002-05-04 Jason Rumney <jasonr@gnu.org>
13938
13939 * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
13940 for event-click-count.
13941
13942 * process.c (init_process): Only add server subfeature if we can
13943 use non-blocking I/O.
13944
13945 2002-05-04 Andrew Choi <akochoi@shaw.ca>
13946
13947 * macterm.c (XTread_socket): Call WaitNextEvent once instead of
13948 repeatedly.
13949
13950 2002-05-03 Jason Rumney <jasonr@gnu.org>
13951
13952 * process.c (Fmake_network_process): Only support server sockets
13953 when we can make them non-blocking.
13954
13955 * s/ms-w32.h (HAVE_SELECT): Define.
13956
13957 * w32.h (FILE_NDELAY): New flag.
13958
13959 * w32.c (sys_getpeername, fcntl): New functions.
13960 (_sys_read_ahead): Temporarily block on non-blocking sockets.
13961
13962 * w32proc.c: include sys/file.h.
13963
13964 2002-05-03 Colin Walters <walters@verbum.org>
13965
13966 * callproc.c (Vgame_score_directory): Renamed to
13967 Vshared_game_score_directory.
13968
13969 2002-04-30 Richard M. Stallman <rms@gnu.org>
13970
13971 * s/gnu.h [emacs]: Include stdio.h.
13972 (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
13973
13974 * eval.c (do_autoload): Error if called while preparing to dump.
13975
13976 * fns.c (Frequire): Error if need to load while preparing to dump.
13977
13978 2002-04-28 Colin Walters <walters@verbum.org>
13979
13980 * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
13981 Default to "~/.emacs.d/games".
13982
13983 2002-04-29 Stefan Monnier <monnier@cs.yale.edu>
13984
13985 * lread.c (openp): Change arg exec_only to predicate.
13986 (build_load_history): Use XCAR/XCDR.
13987 (Flocate_file_internal): New fun.
13988 (syms_of_lread): Defsubr it.
13989 (Fload): Update call to openp.
13990
13991 * lisp.h (openp): Update prototype.
13992
13993 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
13994 * w32proc.c (sys_spawnve):
13995 * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
13996 * w32.c (check_windows_init_file):
13997 * sound.c (Fplay_sound_internal):
13998 * process.c (Fstart_process):
13999 * macfns.c (x_create_bitmap_from_file, x_find_image_file):
14000 * mac.c (run_mac_command):
14001 * emacs.c (init_cmdargs):
14002 * callproc.c (Fcall_process): Update call to openp.
14003
14004 * textprop.c (remove_properties): Don't use XCAR without CONSP.
14005
14006 * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
14007
14008 2002-04-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14009
14010 * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
14011 (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
14012
14013 2002-04-28 Richard M. Stallman <rms@gnu.org>
14014
14015 * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
14016
14017 * eval.c (Fcommandp): New arg for_call_interactively.
14018 * lisp.h (Fcommandp): Declare new arg.
14019
14020 2002-04-28 Jason Rumney <jasonr@gnu.org>
14021
14022 * w32proc.c (syms_of_w32proc): Get true file attributes by default.
14023
14024 * w32.c (stat, fstat): Use file index information to generate
14025 inodes for directories where available.
14026
14027 2002-04-26 Andrew Choi <akochoi@shaw.ca>
14028
14029 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
14030 [HAVE_CARBON]: Include Mac object files.
14031
14032 * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
14033 fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
14034 termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
14035 MAC_OSX, and MAC_OS instead of macintosh.
14036
14037 * editfns.c [MAC_OS8]: Include stdio.h.
14038
14039 * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
14040
14041 * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
14042 Apple Monaco.
14043
14044 * process.c (QCfamily, QCfilte): Declare extern.
14045 (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
14046 calling select.
14047
14048 * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
14049
14050 * tparam.c [MAC_OSX]: Don't define BC and UP.
14051
14052 * config.in [HAVE_CARBON]: Add.
14053
14054 * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
14055 Move here from mac/src and mac/inc.
14056
14057 * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
14058
14059 2002-04-26 Gerd Moellmann <gerd@gnu.org>
14060
14061 * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
14062 Compute phys_cursor_width from the x position returned
14063 by x_draw_glyhs, which is cheaper.
14064 (x_display_and_set_cursor): Compute the buffer-local value
14065 of `cursor-in-non-selected-windows' only when needed.
14066
14067 2002-04-25 Gerd Moellmann <gerd@gnu.org>
14068
14069 * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
14070 cursor on a stretch glyph has a width that depends on
14071 x_stretch_cursor_p.
14072
14073 2002-04-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14074
14075 * abbrev.c (abbrev-start-location): Doc fix.
14076
14077 * indent.c (Fvertical_motion): Fix last change.
14078
14079 2002-04-25 Gerd Moellmann <gerd@gnu.org>
14080
14081 * indent.c (Fvertical_motion): Move to the start of the line
14082 containing PT before moving up or down.
14083
14084 2002-04-24 Gerd Moellmann <gerd@gnu.org>
14085
14086 * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
14087 case of writing a whole row, more or less analogous to the case of
14088 writing only parts of a row.
14089
14090 * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
14091 0 for NO_CURSOR.
14092
14093 * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
14094
14095 2002-04-23 Colin Walters <walters@verbum.org>
14096
14097 * buffer.c (syms_of_buffer): Doc fix.
14098
14099 2002-04-23 Gerd Moellmann <gerd@gnu.org>
14100
14101 * xterm.c (notice_overwritten_cursor): Handle the special case
14102 of the cursor being in the first blank non-text line at the
14103 end of a window.
14104
14105 * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
14106 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
14107 (x_display_and_set_cursor): Don't set phys_cursor_width here, for
14108 bar cursors only, to make phys_cursor_width contain what its name
14109 suggests.
14110 (notice_overwritten_cursor): Consider the cursor image erased if
14111 the output area intersects the cursor image in y-direction.
14112
14113 2002-04-23 Simon Marshall <simon@gnu.org>
14114
14115 * xfns.c (x_set_mouse_color): Change default for cross_cursor
14116 to XC_hand2.
14117
14118 2002-04-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14119
14120 * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
14121
14122 2002-04-22 Kim F. Storm <storm@cua.dk>
14123
14124 * textprop.c (remove_properties): Fixed trap for malformed plist.
14125
14126 2002-04-22 Richard M. Stallman <rms@gnu.org>
14127
14128 * cmds.c (Fend_of_line): Handle intangible text in mid line.
14129
14130 * window.c (make_window): Initialize height_fixed_p,
14131 last_cursor_off_p, and p->cursor_off_p slots.
14132
14133 2002-04-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14134
14135 * fns.c (use-dialog-box): Doc fix.
14136
14137 2002-04-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14138
14139 * xterm.c (note_mode_line_or_margin_highlight): Remove unused
14140 variables `row', `i' and `area'.
14141 (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
14142 toolkit library.
14143
14144 2002-04-19 Stefan Monnier <monnier@cs.yale.edu>
14145
14146 * xfaces.c (clear_font_table): Don't free the default font of
14147 a frame even if it's on another display.
14148 (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
14149 that could be Qt.
14150
14151 2002-04-19 Juanma Barranquero <lektu@terra.es>
14152
14153 * indent.c (Fmove_to_column): Remove unused local variable
14154 `next_boundary_byte'.
14155 (current_column_1): Likewise.
14156
14157 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
14158
14159 * msdos.c (Qhbar): New variable.
14160 (syms_of_msdos): Intern and staticpro it.
14161 (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
14162 cursor type.
14163
14164 2002-04-19 Dave Lambert <dlambert@acm.org>
14165
14166 Theses change implement an underscore-like (`hbar') cursor.
14167
14168 * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
14169
14170 * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
14171 Handle the `hbar' cursor type.
14172 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
14173
14174 * xfns.c (Qhbar): New variable.
14175 (syms_of_xfns): Intern and staticpro it.
14176 (x_specified_cursor_type): Handle `hbar' cursor.
14177
14178 * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
14179 not defined.
14180
14181 2002-04-18 Richard M. Stallman <rms@gnu.org>
14182
14183 * textprop.c (remove_properties): New arg LIST allows scanning
14184 either a list or a plist.
14185 (interval_has_some_properties_list): New function, like
14186 interval_has_some_properties using list instead of plist.
14187 All callers changed.
14188 (Fremove_list_of_text_properties): New function.
14189 (syms_of_textprop): Defsubr it.
14190
14191 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
14192
14193 * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
14194
14195 2002-04-17 Juanma Barranquero <lektu@terra.es>
14196
14197 * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
14198
14199 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
14200
14201 * window.c (coordinates_in_window): Don't report on margin area
14202 if its width is zero.
14203
14204 2002-04-16 Jason Rumney <jasonr@gnu.org>
14205
14206 * w32fns.c (Fx_file_dialog): Decode file name before using.
14207
14208 * w32term.c (construct_drag_n_drop): Likewise.
14209
14210 2002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
14211
14212 * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
14213 store load-history in pure space.
14214
14215 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
14216
14217 2002-04-16 Stefan Monnier <monnier@cs.yale.edu>
14218
14219 * xterm.c (Qlatin_1, Qutf_8): New vars.
14220 (syms_of_xterm): Initialize them.
14221 (XTread_socket): Eliminate incorrect optimization that tried to avoid
14222 decoding the output of X*LookupString.
14223 Always use latin-1 to decode the output of XLookupString.
14224 Try Xutf8LookupString if XmbLookupString failed.
14225
14226 * region-cache.c (new_region_cache): Use BEG.
14227
14228 2002-04-16 Gerd Moellmann <gerd@gnu.org>
14229
14230 * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
14231 configuration files.
14232 (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
14233 returns 0.
14234
14235 2002-04-15 Andreas Schwab <schwab@suse.de>
14236
14237 * config.in: Regenerated using autoheader.
14238
14239 * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
14240 m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
14241 m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
14242 m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
14243 m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
14244 m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
14245 m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
14246 m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
14247 m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
14248 m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
14249 m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
14250 m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
14251 m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
14252 m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
14253 m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
14254 s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
14255 STACK_DIRECTION, now set by autoconf.
14256
14257 2002-04-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14258
14259 * dispnew.c (marginal_area_string): Sort arguments.
14260
14261 * dispextern.h (marginal_area_string): Add prototype.
14262
14263 2002-04-13 Richard M. Stallman <rms@gnu.org>
14264
14265 * fileio.c (Finsert_file_contents):
14266 Don't call temp_output_buffer_setup--do just part, by hand.
14267
14268 * coding.c (run_pre_post_conversion_on_str):
14269 Don't call temp_output_buffer_setup--do just part, by hand.
14270
14271 * keyboard.c (command_loop_1): Don't call start_hourglass
14272 or cancel_hourglass when executing a macro.
14273
14274 * marker.c (count_markers): New function.
14275
14276 * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
14277 grow without limit. Move recently used elements to the front.
14278
14279 2002-04-13 Eli Zaretskii <eliz@is.elta.co.il>
14280
14281 * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
14282
14283 2002-04-12 Gerd Moellmann <gerd@gnu.org>
14284
14285 * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
14286 rows marginal areas.
14287 (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
14288 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
14289
14290 * dispnew.c (marginal_area_string): Check that glyph row is enabled.
14291
14292 2002-04-12 Dave Love <fx@gnu.org>
14293
14294 * dispnew.c (marginal_area_string): New.
14295
14296 * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
14297 (Qleft_margin, Qright_margin): Declare.
14298 (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
14299
14300 * xterm.c (note_mode_line_or_margin_highlight): Renamed from
14301 note_mode_line_highlight and extended.
14302
14303 * keyboard.c (Qleft_margin, Qright_margin): Declare.
14304 (make_lispy_event): Deal with mouse events in margins.
14305
14306 2002-04-12 Stefan Monnier <monnier@cs.yale.edu>
14307
14308 * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
14309
14310 * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
14311 than deactivating the mark if tmm is set to `lambda'.
14312 (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
14313 Use a single event for HELP_EVENT.
14314 (Fexecute_extended_command): Save last_point_position.
14315
14316 2002-04-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14317
14318 * lisp.h (Fpropertize): Add prototype.
14319
14320 * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
14321
14322 2002-04-10 Colin Walters <walters@verbum.org>
14323
14324 * config.in: Add HAVE_SHARED_GAME_DIR.
14325
14326 * callproc.c: (Vgame_score_directory): New variable.
14327 (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
14328
14329 2002-04-10 Richard M. Stallman <rms@gnu.org>
14330
14331 * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
14332
14333 2002-04-09 Stefan Monnier <monnier@cs.yale.edu>
14334
14335 * minibuf.c (read_minibuf): Use empty_string.
14336 (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
14337 Short-circuit the search as soon as it "failed".
14338 (Fall_completions): Allow lambda forms and lists of strings for alist.
14339 (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
14340 when require_match is nil.
14341 (Ftest_completion): Rename from `test_completion' and export to elisp.
14342 Call the predicate also when alist is a list.
14343 Obey Vcompletion_regexp_list.
14344 (do_completion, Fminibuffer_complete_and_exit): Use it.
14345 (Fassoc_string): Rename from `assoc_for_completion'.
14346 Allow list of strings as well and export to elisp.
14347
14348 2002-04-08 Stefan Monnier <monnier@cs.yale.edu>
14349
14350 * puresize.h (BASE_PURESIZE): Increase to 900KB.
14351
14352 2002-04-08 Juanma Barranquero <lektu@terra.es>
14353
14354 * w32.c (sys_accept): Don't hide variable `s'.
14355
14356 2002-04-05 Gerd Moellmann <gerd@gnu.org>
14357
14358 * callint.c (Fcall_interactively): Use INTEGERP instead of
14359 NUMBERP for checking Vhistory_length.
14360
14361 2002-04-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14362
14363 * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
14364 Doc fix to reflect it.
14365
14366 2002-04-04 Richard M. Stallman <rms@gnu.org>
14367
14368 * xdisp.c (display_mode_element): New arg RISKY.
14369 Disregard text props found or specified within a variable
14370 that isn't marked risky-local-variable.
14371 (Qrisky_local_variable): New variable.
14372 (syms_of_xdisp): Init and staticpro it.
14373
14374 2002-04-04 Stefan Monnier <monnier@cs.yale.edu>
14375
14376 * undo.c (record_point): New fun.
14377 (record_delete, record_insert): Use it.
14378
14379 2002-04-03 Juanma Barranquero <lektu@terra.es>
14380
14381 * doc.c (Fdocumentation): Add missing parentheses.
14382 (Fdocumentation_property): Likewise.
14383
14384 2002-04-03 Stefan Monnier <monnier@cs.yale.edu>
14385
14386 * doc.c (Fdocumentation, Fdocumentation_property): When the doc
14387 data is 0, just return nil.
14388
14389 2002-04-03 Eli Zaretskii <eliz@is.elta.co.il>
14390
14391 * msdos.c (syms_of_msdos): Fix last change with
14392 mouse_autoselect_window.
14393
14394 2002-04-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14395
14396 * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
14397 mouse_autoselect_window.
14398
14399 2002-04-02 Stefan Monnier <monnier@cs.yale.edu>
14400
14401 * keyboard.c (make_lispy_event): Handle unknown keysyms together
14402 with system-specific keysyms. Use it also for unknown function keys.
14403
14404 * doc.c (reread_doc_file): Return whether reload was attempted.
14405 (Fdocumentation, Fdocumentation_property): Don't try to reload
14406 if the doc is 0 and only ask once.
14407
14408 * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
14409
14410 2002-04-02 Eli Zaretskii <eliz@is.elta.co.il>
14411
14412 * keyboard.c (read_char): If the event was Qselect_window,
14413 restore timer_idleness_start_time to its previous value.
14414
14415 * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
14416
14417 2002-04-01 Stefan Monnier <monnier@cs.yale.edu>
14418
14419 * region-cache.c (new_region_cache): Use BEG.
14420
14421 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
14422 Use BEG and BEG_BYTE.
14423
14424 * doc.c (get_doc_string): Return nil if the location is wrong.
14425 (reread_doc_file): New fun.
14426 (Fdocumentation, Fdocumentation_property):
14427 Call it if get_doc_string fails.
14428 (Fsnarf_documentation): Make it work for a dumped Emacs.
14429
14430 * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
14431 Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
14432
14433 * charset.c (Fstring): Allow 0 arguments.
14434
14435 * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
14436
14437 * process.c (DATAGRAM_CONN_P, list_processes_1)
14438 (Fprocess_datagram_address, Fset_process_datagram_address)
14439 (Fset_network_process_options, server_accept_connection):
14440 Fix some int/Lisp_Object confusions (thank you union types).
14441
14442 2002-04-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14443
14444 * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
14445
14446 * w32term.c: Likewise.
14447 (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
14448
14449 * keyboard.c (Qselect_window): New symbol.
14450 (head_table): Use it.
14451 (keys_of_keyboard): Bound select-window event to handle-select-window.
14452 (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
14453
14454 * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
14455 (last_window): New variable.
14456 (XTread_socket): Generate SELECT_WINDOW_EVENTs.
14457 (note_mouse_movement): Remove reimplemented code in #if 0.
14458 (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
14459 Emacs windows.
14460
14461 * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
14462
14463 2002-03-31 Gerd Moellmann <gerd@gnu.org>
14464
14465 * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
14466 Callers changed.
14467
14468 2002-03-30 Richard M. Stallman <rms@gnu.org>
14469
14470 * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
14471 loop whenever it stops making progress.
14472
14473 * widget.c (set_frame_size): Don't call change_frame_size.
14474
14475 2002-03-30 Gerd Moellmann <gerd@gnu.org>
14476
14477 * dispnew.c (direct_output_for_insert):
14478 Call mark_window_display_accurate.
14479
14480 2002-03-29 Jason Rumney <jasonr@gnu.org>
14481
14482 * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
14483
14484 2002-03-29 Eli Zaretskii <eliz@is.elta.co.il>
14485
14486 * Makefile.in (lread.o): Depend on coding.h.
14487
14488 * lread.c (openp, Fload): Encode the file name before passing it
14489 to `stat', `access', and `emacs_open'.
14490 (openp): GCPRO the encoded file name. Don't recompute Lisp
14491 strings unnecessarily.
14492
14493 2002-03-29 Kim F. Storm <storm@cua.dk>
14494
14495 * fns.c (Flax_plist_put): Doc fix.
14496
14497 2002-03-28 Miles Bader <miles@gnu.org>
14498
14499 * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
14500
14501 2002-03-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14502
14503 * process.c (set-network-process-options): Add usage.
14504 (make-network-process): Doc fix.
14505
14506 2002-03-26 Eli Zaretskii <eliz@is.elta.co.il>
14507
14508 * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
14509
14510 2002-03-26 Richard M. Stallman <rms@gnu.org>
14511
14512 * fns.c (Fsubstring_no_properties): New function.
14513 (Flax_plist_get, Flax_plist_put): New functions.
14514 (syms_of_fns): defsubr them.
14515
14516 * xdisp.c (update_menu_bar): Test only update_mode_lines;
14517 don't test or alter w->update_mode_line.
14518
14519 * window.c (Fdisplay_buffer): Doc fix.
14520
14521 2002-03-24 Richard M. Stallman <rms@gnu.org>
14522
14523 * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
14524
14525 2002-03-24 Gerd Moellmann <gerd@gnu.org>
14526
14527 * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
14528 (Fdefmacro): Handle `(declare ...)'.
14529 (syms_of_eval) <Qdeclare>: Initialize and staticpro.
14530 (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
14531
14532 2002-03-24 Jason Rumney <jasonr@gnu.org>
14533
14534 * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
14535 (xbm_file_p): Add prototypes.
14536 (xbm_format, xbm_image_p): Sync with xfns.c.
14537 (reflect_byte): New function.
14538 (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
14539 (xbm_load_image): Create bitmaps with a depth of 1.
14540 (init_xfns): Enable XBM images.
14541
14542 2002-03-23 Jason Rumney <jasonr@gnu.org>
14543
14544 * w32term.c (w32_handle_tool_bar_click): Detect up and down events
14545 correctly. Do not pass up_modifier to keyboard buffer.
14546
14547 * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
14548
14549 2002-03-22 Stefan Monnier <monnier@cs.yale.edu>
14550
14551 * Makefile.in (bootstrapclean): New target.
14552 (bootstrap-temacs, bootstrap-doc): Remove.
14553 (bootstrap-emacs): Use a bog-standard `temacs'.
14554 Don't bother to build a DOC file.
14555
14556 * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
14557
14558 * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
14559 in temacs even if !CANNOT_DUMP.
14560 (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
14561
14562 * alloc.c (check_pure_size): Only output a warning.
14563
14564 2002-03-22 Jason Rumney <jasonr@gnu.org>
14565
14566 * w32fns.c (Fx_create_frame): Enable tool-bar when images are
14567 supported.
14568
14569 * w32term.c (zv_bits): Declare as short, for word alignment.
14570 (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
14571 (syms_of_w32term): Define x-use-underline-position-properties.
14572
14573 * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
14574 (clear_image_cache): Block input, fix logic, clear matrices in
14575 all frames that share this cache.
14576
14577 2002-03-22 Eli Zaretskii <eliz@is.elta.co.il>
14578
14579 * emacs.c (main): Update the Copyright year in the blurb printed
14580 by "emacs --version".
14581
14582 * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
14583
14584 * xterm.c (XTread_socket): If XK_ISO_Lock and
14585 XK_ISO_Last_Group_Lock are defined, handle keysyms between
14586 XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
14587
14588 2002-03-21 Kim F. Storm <storm@cua.dk>
14589
14590 * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
14591 menu-bar bindings in keymap and local-map properties _are_ used.
14592 But try keymap property first in accordance with 2002-01-03 patch.
14593 Added comment describing why this is not always reliable.
14594 (tool_bar_items): Ditto for tool-bar.
14595
14596 2002-03-21 Jason Rumney <jasonr@gnu.org>
14597
14598 * w32fns.c (x_clear_image_1): Disable color table code.
14599
14600 2002-03-21 Kim F. Storm <storm@cua.dk>
14601
14602 * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
14603 removed the wrong version of the DEFUN macro; fixed it.
14604
14605 * fns.c (Ffeaturep): Allow subfeature to be a list (test using
14606 Fmember rather than Fmemq).
14607 (Fprovide): Check that subfeatures is a list.
14608
14609 * process.c (QCfeature, QCdatagram): Removed variables.
14610 (QCtype, Qdatagram): New variables.
14611 (network_process_featurep): Removed function.
14612 (Fmake_network_process): Removed :feature check.
14613 Use :type 'datagram instead of :datagram t to create a datagram
14614 socket. This allows us to add other connection types (e.g. raw
14615 sockets) later in a consistent manner.
14616 (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
14617 supported subfeatures for feature make-network-process.
14618 (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
14619 Intern and staticpro QCtype and Qdatagram.
14620 (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
14621
14622 * xfns.c: (QCtype): Remove duplicate declaration and
14623 initialization (is now declared in process.c).
14624
14625 * w32fns.c: (QCtype): Remove duplicate declaration and
14626 initialization (is now declared in process.c).
14627
14628 2002-03-21 Richard M. Stallman <rms@gnu.org>
14629
14630 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
14631 (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
14632 when jumping to `fail' to avoid undoing reg changes in the
14633 last iteration of the loop.
14634 (GET_UNSIGNED_NUMBER): Skip spaces around the number.
14635
14636 * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
14637 Depend on process.h.
14638
14639 2002-03-20 Jason Rumney <jasonr@gnu.org>
14640
14641 Most of the following changes are still conditional on HAVE_IMAGES
14642 which is not set by default on Windows.
14643
14644 * emacs.c (main) [WINDOWSNT]: Call init_xfns.
14645
14646 * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
14647 (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
14648 (four_corners_best, x_clear_image_1, x_clear_image)
14649 (x_alloc_image_color, postprocess_image)
14650 (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
14651 (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
14652 (init_xfns, syms_of_w32fns): Initialize image functions and constants.
14653
14654 * w32gui.h (struct XImage): Define.
14655
14656 * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
14657 extract mouse co-ordinates.
14658
14659 2002-03-20 Jason Rumney <jasonr@gnu.org>
14660
14661 * w32.c (init_winsock): Dynamically load new server and UDP
14662 socket functions.
14663 (socket_to_fd): New function.
14664 (sys_socket): Use it.
14665 (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
14666 (sys_recvfrom, sys_sendto): New wrapper functions.
14667
14668 * process.c (QCfamily, QCfilter): Remove duplicate declaration
14669 and initialization.
14670
14671 * makefile.w32-in (LIBS): Remove $(WSOCK32).
14672
14673 2002-03-20 Eli Zaretskii <eliz@is.elta.co.il>
14674
14675 * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr):
14676 Don't use "sun" as a variable, it's a predefined constant on Sun
14677 machines.
14678
14679 2002-03-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14680
14681 * bytecode.c (Fbyte_code): Revert last change.
14682
14683 2002-03-19 Kim F. Storm <storm@cua.dk>
14684
14685 * makefile.w32-in (LIBS): Add $(WSOCK32).
14686 From David Ponce <dponce@voila.fr>.
14687
14688 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14689
14690 * process.c (wait_reading_process_input): Move variables `pname'
14691 and `pnamelen' down where they are used.
14692
14693 * bytecode.c (Fbyte_code): Discard unused computed value to
14694 prevent gcc warning.
14695
14696 * lisp.h (Fplist_member): Add prototype.
14697
14698 2002-03-18 Kim F. Storm <storm@cua.dk>
14699
14700 * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
14701 HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and HAVE_SYS_UN_H.
14702
14703 * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
14704 Remove explicit GNU_LINUX settings for datagram support.
14705
14706 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14707
14708 * process.c (Fmake_network_process): Remove unused variable `sa'.
14709 Doc fix. Add usage:.
14710 (set_socket_options): Remove unused variables `optnum' and `opttype'.
14711
14712 2002-03-17 Richard M. Stallman <rms@gnu.org>
14713
14714 * xdisp.c (cursor_type_changed): New variable.
14715 (redisplay_internal): Redisplay all windows if cursor_type_changed.
14716 Clear it when clearing windows_or_buffers_changed.
14717 (try_cursor_movement, redisplay_window, try_window_id)
14718 (try_window_reusing_current_matrix): Test cursor_type_changed
14719 along with windows_or_buffers_changed.
14720
14721 * window.h (cursor_type_changed): New variable.
14722
14723 * xfns.c (x_set_cursor_type): Set cursor_type_changed,
14724 not update_mode_lines, and always set it to 1.
14725
14726 * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
14727 if no frames needed redrawing.
14728
14729 2002-03-17 Kim F. Storm <storm@cua.dk>
14730
14731 The following changes add support for network server processes,
14732 datagram connections, and local (unix) sockets.
14733
14734 * process.h (struct Lisp_Process): New member log.
14735 Doc fix: Member command used to indicate stopped network process.
14736 Doc fix: Member childp contains plist for network process.
14737 Doc fix: Member kill_without_query is inverse of query-on-exit flag.
14738
14739 * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
14740 (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop)
14741 (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature):
14742 New variables.
14743 (NETCONN1_P): New macro.
14744 (DATAGRAM_SOCKETS): New conditional symbol.
14745 (datagram_address): New array.
14746 (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
14747 (status_message): Use concat3.
14748 (Fprocess_status): Add `listen' status to doc string. Return `stop'
14749 for a stopped network process.
14750 (Fset_process_buffer): Update contact plist for network process.
14751 (Fset_process_filter): Ditto. Don't enable input for stopped
14752 network processes. Server must listen, even if filter is t.
14753 (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
14754 New functions.
14755 (Fprocess_kill_without_query): Removed. Now defined in simple.el.
14756 (Fprocess_contact): Added KEY argument. Handle datagrams.
14757 (list_processes_1): Optionally show only processes with the query
14758 on exit flag set. Dynamically adjust column widths. Omit tty
14759 column if not needed. Report stopped network processes.
14760 Identify server and datagram network processes.
14761 (Flist_processes): New optional arg `query-only'.
14762 (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
14763 (conv_lisp_to_sockaddr, set_socket_options)
14764 (network_process_featurep, unwind_request_sigio): New helper functions.
14765 (Fprocess_datagram_address, Fset_process_datagram_address):
14766 (Fset_network_process_options): New lisp functions.
14767 (Fopen_network_stream): Removed. Now defined in simple.el.
14768 (Fmake_network_process): New lisp function. Code is based on previous
14769 Fopen_network_stream, but heavily reworked with new property list based
14770 argument list, support for datagrams, server processes, and local
14771 sockets in addition to old client-only functionality.
14772 (server_accept_connection): New function.
14773 (wait_reading_process_input): Use it to handle incoming connects.
14774 Do not enable input on a new connection if process is stopped.
14775 (read_process_output): Handle datagram sockets. Use 2k buffer for them.
14776 (send_process): Handle datagram sockets.
14777 (Fstop_process, Fcontinue_process): Apply to network processes. A stopped
14778 network process is indicated by setting command field to t .
14779 (Fprocess_send_eof): No-op if datagram connection.
14780 (Fstatus_notify): Don't read input for a stream server socket or a
14781 stopped network process.
14782 (init_process): Initialize datagram_address array.
14783 (syms_of_process): Intern and staticpro new variables, defsubr new
14784 functions.
14785
14786 2002-03-16 Jason Rumney <jasonr@gnu.org>
14787
14788 * w32fns.c (w32_to_all_x_charsets): Return correct type in
14789 startup case.
14790
14791 2002-03-16 Richard M. Stallman <rms@gnu.org>
14792
14793 * xdisp.c (redisplay_internal, redisplay_windows):
14794 Use list_of_error to call internal_condition_case_1.
14795 (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
14796 so as to catch all errors with no possibility of debugger redisplay.
14797 (list_of_error): New variable.
14798 (syms_of_xdisp): Init and staticpro it.
14799
14800 * print.c (print_object): Delete `\ ' from printed rep of frame.
14801
14802 2002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
14803
14804 * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
14805 until its implementation is fixed.
14806
14807 2002-03-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14808
14809 * xfns.c (png_load): Remove unused variable `gamma_str'.
14810
14811 2002-03-14 Richard M. Stallman <rms@gnu.org>
14812
14813 * xfns.c (x_real_positions): Handle failure in XQueryTree.
14814
14815 2002-03-14 Miles Bader <miles@gnu.org>
14816
14817 * intervals.c (adjust_for_invis_intang): New function.
14818 (set_point_both): Use `adjust_for_invis_intang' to do most of the
14819 work for dealing with invisible+intangible regions. Do so before
14820 and after both forward and backward movements, to handle both
14821 front-sticky and rear-sticky cases.
14822 * textprop.c (text_property_stickiness): Function moved here from
14823 `editfns.c'.
14824 * intervals.h (text_property_stickiness): New declaration.
14825 * editfns.c (char_property_eq): Function removed.
14826 (text_property_stickiness): Function moved to `textprop.c'.
14827
14828 2002-03-13 Jason Rumney <jasonr@gnu.org>
14829
14830 * config.in: Add STRFTIME_NO_POSIX2.
14831
14832 * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
14833 and %OX when underlying strftime does not.
14834
14835 2002-03-13 Stefan Monnier <monnier@cs.yale.edu>
14836
14837 * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
14838 Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
14839 line) to avoid annoying flicker.
14840 (xm_scroll_callback): Get rid of the now unnecessary kludge.
14841 (XTread_socket): Mark it static.
14842
14843 * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
14844
14845 2002-03-13 Kim F. Storm <storm@cua.dk>
14846
14847 * puresize.h (BASE_PURESIZE): Increase to 775000.
14848
14849 2002-03-12 Juanma Barranquero <lektu@terra.es>
14850
14851 * editfns.c (syms_of_editfns): Fix typo.
14852
14853 2002-03-12 Gerd Moellmann <gerd@gnu.org>
14854
14855 * xsmfns.c: Include stdio.h because termhooks.h needs it.
14856 Include termopt.h for interrupt_input.
14857
14858 2002-03-11 Andreas Schwab <schwab@suse.de>
14859
14860 * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
14861
14862 2002-03-11 Gerd Moellmann <gerd@gnu.org>
14863
14864 * xterm.c (note_mouse_movement): Put code for
14865 x_autoselect_window_p in #if 0.
14866
14867 * lread.c (Fload): Don't assume that message_with_string uses the
14868 string it is given like a C string.
14869
14870 2002-03-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14871
14872 * xterm.h (x_session_check_input, x_session_initialize): Declare.
14873
14874 * xterm.c: (XTread_socket): Add call to x_session_check_input and
14875 x_session_have_connection.
14876 (x_initialize): Add call to x_session_initialize.
14877
14878 * termhooks.h (enum event_kind): Add save_session_event.
14879
14880 * keyboard.c: Add Emacs event save_session_event.
14881
14882 * emacs.c (main): Add call to syms_of_xsmfns.
14883
14884 * lisp.h (syms_of_xsmfns): Declare extern.
14885
14886 * config.in: Add HAVE_X_SM.
14887
14888 * Makefile.in (LIBXT): Add -lSM -lICE
14889 if HAVE_X_SM and not USE_X_TOOLKIT.
14890 (XOBJ): New file xsmfns.c added.
14891
14892 * xsmfns.c: New file for X session management.
14893
14894 2002-03-09 Jason Rumney <jasonr@gnu.org>
14895
14896 * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
14897 read-only when setting modified time.
14898
14899 2002-03-08 Gerd Moellmann <gerd@gnu.org>
14900
14901 * xdisp.c (move_it_vertically_backward): At the end of the function,
14902 when moving forward by lines, treat terminal frames specially.
14903
14904 * keyboard.c (echo_char): Make sure to add a separator between
14905 keys even if echo_dash hasn't been called.
14906
14907 * xdisp.c: Use new string macros.
14908 (update_echo_area): Pass number of bytes to message3 instead of
14909 number of chars.
14910 (set_message_1): Don't access a string's size_byte directly.
14911 (decode_mode_spec_coding): Use number of bytes of eoltype string
14912 instead number of chars.
14913
14914 * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
14915
14916 2002-03-08 Juanma Barranquero <lektu@terra.es>
14917
14918 * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
14919 24-bit.
14920
14921 2002-03-06 Jason Rumney <jasonr@gnu.org>
14922
14923 * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
14924
14925 2002-03-06 Gerd Moellmann <gerd@gnu.org>
14926
14927 * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
14928 (cancel_echoing, echo_length, echo_truncate): Changed to
14929 work with new kboard definition.
14930 (echo_now): Use message3_nolog instead of message2_nolog.
14931
14932 * alloc.c (mark_kboards): Mark echo_string.
14933
14934 * keyboard.h (ECHOBUFSIZE): Removed.
14935 (struct kboard): Member echoptr removed, member echobuf renamed
14936 to echo_string.
14937
14938 * xdisp.c (message_with_string): Use Fformat instead of doprnt and
14939 message3 instead of message2 to display the message using STRING's
14940 text properties.
14941
14942 2002-03-05 Andreas Schwab <schwab@suse.de>
14943
14944 * xdisp.c (hscroll_margin): Change to EMACS_INT.
14945
14946 2002-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
14947
14948 * frame.c (default-frame-alist): Explain that setting it doesn't
14949 affect existing frames.
14950
14951 2002-03-05 Stefan Monnier <monnier@cs.yale.edu>
14952
14953 * indent.c (skip_invisible): Fix my brain fart.
14954
14955 * dispnew.c (sit_for): Don't wait if executing a kbd macro.
14956
14957 2002-03-04 Stefan Monnier <monnier@cs.yale.edu>
14958
14959 * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
14960 * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
14961 * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
14962 * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
14963 and variables to use EMACS_INT instead of just int.
14964
14965 * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
14966
14967 2002-03-04 Eli Zaretskii <eliz@is.elta.co.il>
14968
14969 * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
14970 environment, pass it down with corrected value.
14971
14972 2002-03-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14973
14974 * lread.c (read_filtered_event): Do not call start_hourglass
14975 before returning.
14976
14977 2002-03-04 Juanma Barranquero <lektu@terra.es>
14978
14979 * w32term.c (x_display_and_set_cursor): Fix typo.
14980
14981 2002-03-03 Richard M. Stallman <rms@gnu.org>
14982
14983 * fileio.c (Fmake_temp_name): Doc fix.
14984
14985 2002-03-03 Gary Wong <gtw@gnu.org>
14986
14987 * termcap.c [!emacs]: Replace ospeed for building standalone
14988 libtermcap, for binary compatibility.
14989
14990 * tparam.c [!emacs]: Move #define of bcopy to after string.h.
14991
14992 2002-03-03 Richard M. Stallman <rms@gnu.org>
14993
14994 * xrdb.c (file_p): Rename arg `path' to `filename'.
14995
14996 * abbrev.c (Fexpand_abbrev): Increment plist as use count
14997 only if it is an integer.
14998
14999 * xfns.c (png_load): Set screen_gamma based on f->gamma.
15000 If png_get_sRGB gives an answer, call png_set_gamma
15001 using the default image gamma value.
15002
15003 * lread.c (read1): When reading from a file, default string to
15004 multibyte only if it has some multibyte characters.
15005
15006 * print.c (print_object): Output multibyte chars 128...255
15007 using \x even if ! print_escape_multibyte.
15008
15009 * xdisp.c (display_mode_element): Move the places where
15010 bytepos, charpos, this, and lisp_string are set.
15011 Use lisp_string to set bytepos.
15012
15013 * xdisp.c (redisplay_internal):
15014 Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
15015
15016 * xdisp.c (display_mode_element): Merge properties specified with
15017 :propertize onto those that come with the string.
15018
15019 2002-03-03 Eli Zaretskii <eliz@is.elta.co.il>
15020
15021 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
15022 automatic-hscrolling. Users changed.
15023 <hscroll-margin>: Renamed from automatic-hscroll-margin.
15024 Users changed.
15025 <hscroll-step>: Renamed from automatic-hscroll-step. Users changed.
15026
15027 2002-03-02 Eli Zaretskii <eliz@is.elta.co.il>
15028
15029 * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
15030
15031 2002-03-02 Kim F. Storm <storm@cua.dk>
15032
15033 * window.c (Fminibuffer_selected_window): New function.
15034 (syms_of_window): Defsubr it.
15035
15036 2002-03-01 Kim F. Storm <storm@cua.dk>
15037
15038 * window.h (struct window): New member phys_cursor_width.
15039
15040 * window.c (make_window, replace_window): Init phys_cursor_width.
15041
15042 * xterm.c (x_display_and_set_cursor): Blink box cursor using
15043 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
15044
15045 * w32term.c (x_display_and_set_cursor): Blink box cursor using
15046 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
15047
15048 * lisp.h (GCPRO6): New macro.
15049
15050 * process.c (Fopen_network_stream): Use GCPRO6.
15051
15052 2002-03-01 Kim F. Storm <storm@cua.dk>
15053
15054 * process.c (Qconnect, Qfailed): New variables.
15055 (syms_of_process): Intern and staticpro them.
15056 (Fprocess_status): Document connect and failed return values.
15057 [NON_BLOCKING_CONNECT]: New conditional.
15058 (connect_wait_mask, num_pending_connects): New variables.
15059 (status_message): Convert Qfailed status.
15060 (Fopen_network_stream): Added support for non-blocking connect.
15061 New optional args: filter, sentinel, non_blocking. Doc updated.
15062 [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]: Merged common code.
15063 (deactivate_process): Handle pending non-blocking connect.
15064 (wait_reading_process_input): Poll for status of non-blocking
15065 connects. Exec sentinel directly when connect succeeds.
15066 (status_notify): Don't read process output if not yet connected.
15067
15068 2002-02-28 Kim F. Storm <storm@cua.dk>
15069
15070 * window.c: (minibuf_selected_window): Renamed from
15071 Vminibuf_selected_window. Users changed.
15072 (syms_of_window): Staticpro it.
15073
15074 2002-02-26 Kim F. Storm <storm@cua.dk>
15075
15076 The following changes add a new Vminibuf_selected_window variable
15077 which is similar to Vminibuf_scroll_window, but which is only set
15078 on entry to the minibuffer (from a non-minibuffer window):
15079
15080 * window.c: (Vminibuf_selected_window): New variable.
15081 (struct save_window_data): New member minibuf_selected_window.
15082 (Fset_window_configuration): Restore Vminibuf_selected_window.
15083 (Fcurrent_window_configuration): Save Vminibuf_selected_window.
15084 Set minibuf_scroll_window member to nil if minibuf_level is 0.
15085 (compare_window_configurations): Compare minibuf_selected_window.
15086
15087 * window.h: (Vminibuf_selected_window): Declare extern.
15088
15089 * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
15090 entry to minibuffer or on entry from a non-minibuffer window.
15091
15092 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
15093 Vminibuf_selected_window instead of Vminibuf_scroll_window.
15094
15095 * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
15096 instead of Vminibuf_scroll_window when deciding in which window
15097 the region should be highlighted. Consequently, the region remains
15098 highlighteded even when a completion buffer is also displayed.
15099
15100 2002-02-26 Eli Zaretskii <eliz@is.elta.co.il>
15101
15102 * fileio.c (Fsubstitute_in_file_name): Fix the change from 2002-02-08.
15103
15104 * xselect.c (Qcompound_text_with_extensions): Renamed from
15105 Qcompound_text_no_extensions.
15106 (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
15107
15108 2002-02-26 Juanma Barranquero <lektu@terra.es>
15109
15110 * w32proc.c (syms_of_ntproc): Doc fix.
15111
15112 2002-02-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15113
15114 * intervals.h: Include "dispextern.h" unconditionally.
15115
15116 2002-02-24 Jason Rumney <jasonr@gnu.org>
15117
15118 * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
15119 and disp-table.elc.
15120 (lisp): Add emacs-lisp/backquote.elc.
15121
15122 2002-02-24 Kim F. Storm <storm@cua.dk>
15123
15124 * keymap.c (Flookup_key): Fix problem in 2001-12-28 patch:
15125 The validation of the event type was too strict as it didn't
15126 allow string events; buffer names are used in bindings for
15127 menu-bar-select-buffer (see `menu-bar-update-buffers').
15128
15129 2002-02-23 Kim F. Storm <storm@cua.dk>
15130
15131 The following changes rework my patch of 2002-02-06 which
15132 added command remapping by entering the commands directly into
15133 the keymaps. Now, command remapping uses an explicit `remap'
15134 prefix in the keymaps, i.e. [remap COMMAND].
15135
15136 * keymap.c (Qremap, remap_command_vector): New variables.
15137 (is_command_symbol): Remove function.
15138 (Fdefine_key): No longer accept a symbol for KEY.
15139 Added validation of [remap COMMAND] argument for KEY.
15140 The DEF is no longer required to be a symbol when remapping a command.
15141 (Fremap_command): New function to remap command through keymaps.
15142 (Flookup_key): Perform command remapping initiated by
15143 Fremap_command directly for speed.
15144 (Fkey_binding): Use Fremap_command for command remapping.
15145 (where_is_internal): Handle new command remapping representation.
15146 (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
15147 staticpro them. Defsubr Fremap_command.
15148
15149 * keymap.h (Fremap_command): Declare extern.
15150 (is_command_symbol): Remove extern.
15151
15152 * keyboard.c (command_loop_1): Use Fremap_command for command
15153 remapping; now try command remapping for all symbols.
15154
15155 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
15156
15157 * coding.h (run_pre_post_conversion_on_str): Add prototype.
15158
15159 2002-02-23 Jason Rumney <jasonr@gnu.org>
15160
15161 * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
15162 on the string before encoding it.
15163 (Fw32_get_clipboard_data): Run post-read-conversion on the string
15164 after decoding it.
15165
15166 * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
15167
15168 2002-02-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15169
15170 * w32term.c (enter_timestamp): Remove unused static variable to
15171 prevent warning.
15172
15173 * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
15174
15175 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
15176
15177 * w16select.c (Fw16_get_clipboard_data): Fix last change.
15178
15179 * xselect.c (selection_data_to_lisp_data): Fix last change.
15180
15181 2002-02-22 Jason Rumney <jasonr@gnu.org>
15182
15183 * w32term.h (struct w32_output): New member menu_command_in_progress.
15184
15185 * w32menu.c (menubar_selection_callback): Free the menu and
15186 clear the menu_command_in_progress flag.
15187
15188 * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
15189 (menu_free_timer): New variable.
15190 (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
15191 (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
15192 <WM_EXITMENULOOP>: Delay before freeing menu. Do nothing if a
15193 menu command is in progress.
15194 <WM_COMMAND>: Set the menu_command_in_progress flag.
15195 Kill any menu_free_timer that is running.
15196
15197 * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
15198 Call ExtTextOutA rather than ExtTextOut.
15199
15200 2002-02-22 Eli Zaretskii <eliz@gnu.org>
15201
15202 * puresize.h (BASE_PURESIZE): Increase to 755000.
15203
15204 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
15205
15206 * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
15207 on the string before encoding it.
15208 (Fw16_get_clipboard_data): Run post-read-conversion on the string
15209 after decoding it.
15210
15211 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
15212
15213 Support for ICCCM Extended Segments in X selections:
15214
15215 * xselect.c <Qcompound_text_no_extensions>: New variable.
15216 (syms_of_xselect): Intern and staticpro it.
15217 (selection_data_to_lisp_data): Run post-read-conversion on decoded
15218 selection text.
15219 (lisp_data_to_selection_data): If next-selection-coding-system is
15220 compound-text-no-extensions, set the type of selection to be
15221 compound-text.
15222
15223 * xterm.h (x_encode_text): Update prototype.
15224
15225 * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
15226 callers changed. If SELECTIONP is non-zero, run the
15227 pre-write-conversion function before encoding the selection text.
15228
15229 2002-02-21 Kim F. Storm <storm@cua.dk>
15230
15231 * frame.c (syms_of_frame): Change mouse-highlight default to t.
15232
15233 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
15234 Correct composing of language-change event.
15235
15236 2002-02-20 Kim F. Storm <storm@cua.dk>
15237
15238 * keyboard.c (menu_bar_items): Don't include keymap or local-map
15239 bindings at PT when building menu (the menu is not updated often
15240 enough for this to work reliable).
15241 (tool_bar_items): Likewise.
15242 (current_active_maps): Removed unused (and buggy) function.
15243
15244 2002-02-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15245
15246 * xfns.c (gif_load): Use correct width and height for GIF images.
15247
15248 2002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
15249
15250 * floatfns.c (Fatan): Accept an optional second arg and call
15251 atan2 if passed 2 args.
15252
15253 2002-02-18 Jason Rumney <jasonr@gnu.org>
15254
15255 * w32term.c (glyph_rect): Determine the row and glyph more precisely.
15256
15257 2002-02-17 Jason Rumney <jasonr@gnu.org>
15258
15259 * w32term.c (x_autoselect_window_p): New variable.
15260 (syms_of_w32term): DEFVAR_BOOL and initialize it.
15261 (note_mouse_movement): Use it.
15262
15263 * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
15264
15265 * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
15266
15267 * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
15268 New variables.
15269 (syms_of_w32fns): Intern and staticpro them.
15270 (x_frame_parms) <"fullscreen">: New parameter.
15271 (x_fullscreen_move, x_set_fullscreen): New functions.
15272 (x_set_frame_parameters): Support Qfullscreen.
15273 (x_real_positions): Save x/y_pixels_diff frame params.
15274 (x_figure_window_size): Support full-screen frames.
15275 (Fx_create_frame): Default the fullscreen parameter.
15276
15277 * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
15278 (x_fullscreen_adjust): New functions.
15279 (w32_read_socket) <WM_WINDOWPOSCHANGED>: Don't resize to
15280 fullscreen. Call x_check_fullscreen_move, and set the
15281 want_fullscreen member of output_data.w32
15282 <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
15283
15284 * w32term.h: New enum for FULLSCREEN_* constants.
15285 (struct w32_output): New members want_fullscreen, x_pixels_diff,
15286 y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
15287 (x-fullscreen-adjust): New prototype.
15288
15289 2002-02-17 Kim F. Storm <storm@cua.dk>
15290
15291 * frame.c: (Vmouse_highlight): New variable.
15292 (syms_of_frame): DEFVAR_LISP it.
15293
15294 * frame.h: (Vmouse_highlight): Declare extern.
15295
15296 * xterm.h (struct x_display_info): Add mouse_face_hidden.
15297
15298 * xterm.c (disable_mouse_highlight): Removed variable.
15299 (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
15300 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
15301 (XTread_socket): Turn mouse_face_hidden off after mouse movement,
15302 and on after keyboard input.
15303 (x_term_init): Initialize mouse_face_hidden.
15304
15305 * msdos.h (struct display_info): Add mouse_face_hidden.
15306
15307 * msdos.c (disable_mouse_highlight): Removed variable.
15308 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
15309 (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
15310 (internal_terminal_init): Initialize mouse_face_hidden.
15311 (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
15312 and on after keyboard input.
15313
15314 * w32term.h (struct w32_display_info): Add mouse_face_hidden.
15315
15316 * w32term.c (disable_mouse_highlight): Removed variable.
15317 (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
15318 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
15319 (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
15320 and on after keyboard input.
15321 (w32_initialize_display_info): Initialize mouse_face_hidden.
15322
15323 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
15324
15325 * msdos.c (last_mouse_window): New variable.
15326 (dos_rawgetc): Fix last change--if the mouse is in the same window
15327 as recorded in last_mouse_window, don't select this window.
15328
15329 * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
15330
15331 * msdos.c (x_autoselect_window_p): New variable.
15332 (syms_of_msdos): Defvar it.
15333 (dos_rawgetc): If x_autoselect_window_p is set, select the window in
15334 which the last mouse movement occured, unless it is already selected.
15335
15336 * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
15337 New variables.
15338 (syms_of_xdisp): DEVFAR them.
15339 (hscroll_window_tree): Use automatic_hscroll_margin and
15340 Vautomatic_hscroll_step to compute the amount of window scrolling.
15341
15342 2002-02-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15343
15344 * xterm.c (x-autoselect-window): New variable.
15345 (note_mouse_movement): Use it.
15346
15347 * keyboard.c: Do not include "systime.h" twice.
15348
15349 2002-02-15 Andreas Schwab <schwab@suse.de>
15350
15351 * puresize.h (PURESIZE_RATIO): Increase to 9/5.
15352
15353 * alloc.c (NSTATICS): Increase to 1280.
15354
15355 2002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
15356
15357 * alloc.c (NSTATICS): Bump to 1026.
15358
15359 * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
15360 (Vx_super_keysym): New variables.
15361 (syms_of_xterm): DEFVAR_LISP them.
15362 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
15363 variables to determine which keys to use for the various modifiers.
15364
15365 2002-02-13 Kim F. Storm <storm@cua.dk>
15366
15367 * window.c: (Vmode_line_in_non_selected_windows): Removed.
15368 (mode_line_in_non_selected_windows): New variable.
15369 (syms_of_window): DEFVAR_BOOL it.
15370
15371 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
15372 Use mode_line_in_non_selected_windows.
15373 (mode_line_in_non_selected_windows): Declare extern.
15374 (Vmode_line_in_non_selected_windows): Removed extern.
15375
15376 2002-02-13 Richard M. Stallman <rms@gnu.org>
15377
15378 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
15379 (Fthis_single_command_keys, Fthis_single_command_raw_keys)
15380 (Fclear_this_command_keys): Doc fixes.
15381
15382 * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
15383 (update_face_from_frame_parameter): Increment face_change_count
15384 and windows_or_buffers_changed to force redisplay using changed faces.
15385
15386 * xdisp.c (QCpropertize): New variable.
15387 (mode_line_proptrans_alist): New variable.
15388 (display_mode_element): New arg PROPS; all calls changed.
15389 Implement this, for strings.
15390 Handle literal output of strings by sharing the
15391 main-line code for strings, using local var `literal'.
15392 Handle :propertize feature.
15393 (syms_of_xdisp): Initialze and staticpro QCpropertize and
15394 mode_line_proptrans_alist.
15395
15396 2002-02-11 Kim F. Storm <storm@cua.dk>
15397
15398 * window.c: (Vmode_line_in_non_selected_windows): New variable.
15399 (syms_of_window): DEFVAR_LISP it.
15400
15401 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
15402 (CURRENT_MODE_LINE_FACE_ID): Use it.
15403 (Vmode_line_in_non_selected_windows): Declare extern.
15404
15405 * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
15406 to get mode line face.
15407
15408 2002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
15409
15410 * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
15411 variables; cus-start.el doesn't need them anymore.
15412
15413 2002-02-09 Kim F. Storm <storm@cua.dk>
15414
15415 * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
15416 reduction. This fixes a display problem where stray newlines were
15417 inserted in the window (corrected by C-l). Clarified code (IMHO).
15418
15419 2002-02-09 Eli Zaretskii <eliz@is.elta.co.il>
15420
15421 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
15422
15423 * xdisp.c (display_mode_lines): Fix last change.
15424
15425 2002-02-09 Jason Rumney <jasonr@gnu.org>
15426
15427 * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
15428 match each other.
15429 (w32_load_system_font): Prevent Cleartype fonts from loading.
15430 (Fx_show_tip): Ensure tip frames are above other topmost windows.
15431
15432 2002-02-09 Kim F. Storm <storm@cua.dk>
15433
15434 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
15435 (CURRENT_MODE_LINE_HEIGHT): Use it.
15436 (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
15437
15438 * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
15439 (pos_visible_p, handle_face_prop): Likewise.
15440 (display_mode_lines): Likewise, but for the real selected window.
15441 (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
15442
15443 * xfaces.c (Qmode_line_inactive): New face variable for mode-line
15444 in non-selected windows.
15445 (realize_basic_faces): Realize it.
15446 (syms_of_term): Intern and staticpro it.
15447
15448 2002-02-08 Kim F. Storm <storm@cua.dk>
15449
15450 * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
15451 Changed mail addresses to emacs-devel@gnu.org.
15452
15453 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
15454
15455 * fileio.c (Fsubstitute_in_file_name): If the file name includes
15456 ~user, and there's no such user, don't discard everything before ~user.
15457
15458 * floatfns.c (Fround): Doc fix.
15459
15460 2002-02-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15461
15462 * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
15463
15464 2002-02-07 Stefan Monnier <monnier@cs.yale.edu>
15465
15466 * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
15467
15468 2002-02-07 Kim F. Storm <storm@cua.dk>
15469
15470 * keymap.c (where_is_internal): Only check whether definition is
15471 remapped if it fulfills is_command_symbol.
15472
15473 2002-02-07 Andreas Schwab <schwab@suse.de>
15474
15475 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
15476
15477 * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
15478
15479 2002-02-06 Kim F. Storm <storm@cua.dk>
15480
15481 * keymap.c (Fdefine_key): Allow symbol as KEY argument for
15482 defining command remapping. Doc updated.
15483 (Flookup_key): Remap command through keymap if KEY is a symbol.
15484 (is_command_symbol): New function.
15485 (Fkey_binding): Use it. New optional argument NO-REMAP.
15486 Doc updated. Callers changed. Perform command remapping via
15487 recursive call unless that arg is non-nil.
15488 (where_is_internal): New argument no_remap. Callers changed.
15489 Call recursively to find original key bindings for a remapped
15490 comand unless that arg is non-nil.
15491 (Fwhere_is_internal): New optional argument NO-REMAP.
15492 Doc updated. Callers changed. Pass arg to where_is_internal.
15493
15494 * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
15495 (is_command_symbol): Add prototype.
15496
15497 * keyboard.c (Vthis_original_command): New variable.
15498 (syms_of_keyboard): DEFVAR_LISP it.
15499 (command_loop_1): Set it, and perform command remapping.
15500
15501 2002-02-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15502
15503 * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
15504
15505 2002-02-06 Jason Rumney <jasonr@gnu.org>
15506
15507 * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
15508
15509 2002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
15510
15511 * charset.c (get_charset_id): Use if-else instead of ?:.
15512
15513 2002-02-06 Richard M. Stallman <rms@gnu.org>
15514
15515 * filelock.c (S_ISLNK): Define if not defined.
15516
15517 2002-02-03 Richard M. Stallman <rms@gnu.org>
15518
15519 * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
15520
15521 * lread.c (read1): Redesign strategy for force_multibyte and
15522 force_singlebyte. Now is_multibyte records whether read_buffer
15523 is multibyte. Encountering any multibyte character makes it so.
15524
15525 2002-02-02 Stefan Monnier <monnier@cs.yale.edu>
15526
15527 * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
15528 with the same sequence, map that sequence to f10 rather than f0.
15529
15530 2002-02-03 Andreas Schwab <schwab@suse.de>
15531
15532 * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
15533 latter never being defined on GNU/Linux.
15534
15535 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
15536
15537 * xfaces.c (realize_default_face): Don't set the weight and slant of
15538 the default face to Qnormal, unless these attributes are unspecified.
15539
15540 2002-02-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15541
15542 * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
15543 Call cancel_hourglass unconditionally.
15544
15545 * eval.c (Fsignal): Remove duplicated declaration of
15546 the variable `display_hourglass_p'.
15547
15548 2002-01-31 Richard M. Stallman <rms@gnu.org>
15549
15550 * editfns.c (region_limit): Nicer error message.
15551
15552 * coding.c (decode_composition_emacs_mule):
15553 Give up if NCOMPONENT gets too large to index `component'.
15554
15555 * callint.c (check_mark): New arg to specify clearer error message.
15556 Callers changed.
15557
15558 2002-01-27 Richard M. Stallman <rms@gnu.org>
15559
15560 * minibuf.c (Fcompleting_read): Doc fix.
15561
15562 2002-01-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15563
15564 * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
15565 (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
15566 Fix doc-strings.
15567
15568 2002-01-26 Richard M. Stallman <rms@gnu.org>
15569
15570 * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
15571
15572 * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
15573 and scroll_up_aggressively.
15574
15575 2002-01-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15576
15577 * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
15578
15579 2002-01-25 Stefan Monnier <monnier@cs.yale.edu>
15580
15581 * textprop.c (Fnext_property_change, Fnext_single_property_change)
15582 (Fprevious_property_change, Fprevious_single_property_change):
15583 Stay within the narrowed-buffer boundaries.
15584
15585 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
15586
15587 * term.c (Ftty_display_color_cells): New function.
15588 (syms_of_term): Defsubr it.
15589 (Ftty_display_color_cells, Ftty_display_color_p): Change the
15590 argument name to DISPLAY. Doc fix.
15591
15592 * dispextern.h: Add prototype for set_tty_color_mode and
15593 tty_setup_colors.
15594
15595 2002-01-24 Jason Rumney <jasonr@gnu.org>
15596
15597 * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
15598 If region left to draw is not what was expected, mark the frame as
15599 garbaged.
15600
15601 * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
15602 Combine the regions returned by BeginPaint and GetUpdateRect.
15603
15604 2002-01-23 Jason Rumney <jasonr@gnu.org>
15605
15606 * w32term.c (x_update_window_begin): Only hide caret if
15607 w32_use_visible_system_caret is set.
15608 (x_update_window_end): Only show caret if
15609 w32_use_visible_system_caret is set.
15610 (syms_of_w32term): Handle SystemParametersInfo call failing.
15611
15612 * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
15613
15614 2002-01-22 Richard M. Stallman <rms@gnu.org>
15615
15616 * unexelf.c (unexec): Define n so as to cause compilation error
15617 for the code where people have often written n instead of nn.
15618
15619 * .gdbinit (hookpost-run): Defined.
15620
15621 2002-01-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15622
15623 * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
15624
15625 2002-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15626
15627 * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
15628 if fullscreen is being set.
15629
15630 2002-01-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15631
15632 * minibuf.c (Fminibuffer_contents)
15633 (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
15634 (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
15635
15636 2002-01-21 Richard M. Stallman <rms@gnu.org>
15637
15638 * window.c (check_frame_size): Fix minimum height calculation.
15639
15640 2002-01-20 Ken Raeburn <raeburn@gnu.org>
15641
15642 * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
15643 height before comparison.
15644 (WINDOW_WANTS_HEADER_LINE_P): Likewise.
15645
15646 2002-01-20 Jason Rumney <jasonr@gnu.org>
15647
15648 * w32term.c (w32_system_caret_width): Remove.
15649 (w32_use_visible_system_caret): New user flag.
15650 (syms_of_w32term): DEFVAR_BOOL it. Initialize based on whether
15651 Windows reports a screen reader running.
15652 (x_update_window_begin): Hide the system caret.
15653 (x_update_window_end): Show the system caret.
15654 (x_display_and_set_cursor): Don't draw a cursor when
15655 w32_use_visible_system_caret is set. Do not adjust width.
15656
15657 * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
15658 (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
15659 <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
15660 the user requests it. Use system default width when creating.
15661 <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
15662
15663 * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
15664 New window messages.
15665
15666 2002-01-20 Richard M. Stallman <rms@gnu.org>
15667
15668 * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
15669
15670 2002-01-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15671
15672 * doprnt.c (doprnt1): Fix typos in error call.
15673
15674 2002-01-20 Eli Zaretskii <eliz@is.elta.co.il>
15675
15676 * unexelf.c (unexec) [__sgi]: Support the .got sections.
15677
15678 2002-01-20 Jason Rumney <jasonr@gnu.org>
15679
15680 * w32term.c (w32_native_per_char_metric): Don't trust the metrics
15681 that Windows returns. If a double check fails, try to guess how
15682 ExtTextOut is going to act.
15683
15684 * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
15685 in place of stricmp.
15686 (w32_list_synthesized_fonts): Removed.
15687 (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
15688 (struct enumfont_t): New element; list.
15689 (enum_font_cb2): List all style and charset variations of a font.
15690 (Fw32_select_font): New optional argument; include_proportional.
15691 Exclude vertical fonts. Exclude proportional fonts unless
15692 include_proportional is non-nil.
15693 (w32_enable_synthesized_fonts): Change to a boolean.
15694 (Fw32_send_sys_command): Doc fix.
15695
15696 2002-01-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15697
15698 * dispnew.c (update_frame): Move the variable `tem' to the block
15699 where it is used.
15700
15701 2002-01-19 Jason Rumney <jasonr@gnu.org>
15702
15703 * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
15704 call to face-set-after-frame-default.
15705
15706 2002-01-18 Richard M. Stallman <rms@gnu.org>
15707
15708 * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
15709 (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
15710
15711 2002-01-17 Richard M. Stallman <rms@gnu.org>
15712
15713 * window.c (enlarge_window): When exceeding size of parent,
15714 directly delete all the siblings instead of trying to resize it.
15715
15716 2002-01-17 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15717
15718 * term.c (set_tty_color_mode): Remove unused variable `tem'.
15719
15720 2002-01-16 Henrik Enberg <henrik@enberg.org>
15721
15722 * lread.c (init_lread): Move the installed-lisp dirs later in the path.
15723
15724 2002-01-16 Kim F. Storm <storm@cua.dk>
15725
15726 * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
15727 is invisible. This can happen if cursor is on top line of a
15728 window, and we switch to a buffer with a header line.
15729
15730 * w32term.c (x_erase_phys_cursor): Ditto.
15731
15732 2002-01-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15733
15734 * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
15735 `dont_resize' only when used.
15736
15737 * xdisp.c: Remove forgotten extern declaration of `Qimage'.
15738
15739 2002-01-15 Eli Zaretskii <eliz@is.elta.co.il>
15740
15741 * xdisp.c (display_mode_element): When computing charpos, depend
15742 on multibyteness of elt, not the text in field.
15743
15744 2002-01-15 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15745
15746 * buffer.c (Fkill_all_local_variables):
15747 Increment `update_mode_lines' only once.
15748
15749 2002-01-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15750
15751 * lisp.h (adjust_after_replace_noundo)
15752 (Fupdate_coding_systems_internal): Add prototypes.
15753
15754 * sound.c (Fplay_sound): Initialize header_size also for :data case.
15755
15756 2002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
15757
15758 Support for the --color command-line argument and tty-color-mode
15759 frame parameter:
15760
15761 * term.c (tty_default_color_capabilities, tty_setup_colors)
15762 (set_tty_color_mode): New functions.
15763 (term_init): Call tty_default_color_capabilities.
15764 (Qtty_color_mode_alist): New variable.
15765 (syms_of_term): Intern and staticpro it.
15766
15767 * frame.c (store_frame_param): Call set_tty_color_mode for termcap
15768 frames.
15769 (do_switch_frame): For termcap frames, switch the tty
15770 color mode as specified by the frame's parameters.
15771 (Qtty_color_mode): New variable.
15772 (syms_of_frame): Intern and staticpro it.
15773
15774 * emacs.c (USAGE2): Add the --color option.
15775 (standard_args): Ditto.
15776
15777 2002-01-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15778
15779 * xterm.h (struct x_output): New members want_fullscreen,
15780 x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
15781 y_pixels_outer_diff.
15782 New enum for FULLSCREEN_* constants.
15783 (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
15784 is NULL.
15785 (x_fullscreen_adjust): Add prototype.
15786
15787 * emacs.c (USAGE2): Add the new full-screen arguments.
15788 (standard_args): Ditto.
15789
15790 * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
15791 New variables.
15792 (syms_of_xfns): Intern and staticpro them.
15793 (x_frame_parms) <"fullscreen">: New parameter.
15794 (x_fullscreen_move, x_set_fullscreen): New functions.
15795 (x_set_frame_parameters): Support for Qfullscreen.
15796 (x_real_positions): More accurate computation of the frame position.
15797 (x_figure_window_size): Support full-screen frames.
15798 (Fx_create_frame): Default the fullscreen parameter.
15799
15800 * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
15801 (XTread_socket) <Expose>: Call x_check_fullscreen.
15802 <ConfigureNotify>: Don't resize to fullscreen.
15803 Call x_check_fullscreen_move, and set the want_fullscreen member of
15804 output_data.x.
15805
15806 2002-01-13 Jason Rumney <jasonr@gnu.org>
15807
15808 * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
15809 for mice with more than 3 buttons.
15810
15811 * w32term.c (parse_button): New parameter xbutton. Callers changed.
15812 (w32_read_socket): Handle new "XBUTTON" messages.
15813
15814 * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
15815 (syms_of_w32fns): DEFVAR_BOOL it.
15816 (w32_wnd_proc): Handle new "XBUTTON" messages.
15817
15818 2002-01-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15819
15820 * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
15821
15822 2002-01-13 Andreas Schwab <schwab@suse.de>
15823
15824 * xterm.c (x_load_font): Never set fonts_changed_p to zero.
15825
15826 2002-01-12 Andreas Schwab <schwab@suse.de>
15827
15828 * .gdbinit (xbuffer): Remove address operator since data is now a
15829 pointer.
15830
15831 2002-01-11 Richard M. Stallman <rms@gnu.org>
15832
15833 * insdel.c (adjust_after_replace_noundo): New function.
15834
15835 * coding.c (code_convert_region): Don't copy old text if undo disabled.
15836
15837 2002-01-09 Jason Rumney <jasonr@gnu.org>
15838
15839 * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
15840 when checking for multiple frames.
15841
15842 2002-01-08 Richard M. Stallman <rms@gnu.org>
15843
15844 * window.c (delete_window): Rewrite the code for changing the
15845 selected window to handle the case where WINDOW is not a leaf.
15846
15847 2002-01-07 Eli Zaretskii <eliz@is.elta.co.il>
15848
15849 * process.c (send_process): Set src_multibyte to 1 after the call
15850 top setup_coding_system, not before the call.
15851
15852 2002-01-07 Jason Rumney <jasonr@gnu.org>
15853
15854 * xmenu.c (set_frame_menubar, xmenu_show):
15855 (xdialog_show): Initialize wv->help to Qnil.
15856
15857 * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
15858 (w32_dialog_show): Initialize wv->help to Qnil.
15859
15860 2002-01-06 Jason Rumney <jasonr@gnu.org>
15861
15862 * xmenu.c (single_submenu): Initialize wv->help to Qnil.
15863
15864 * w32menu.c (w32_menu_display_help): Revert last change.
15865
15866 * xmenu.c (menu_highlight_callback): Revert last change.
15867
15868 2002-01-06 Andreas Schwab <schwab@suse.de>
15869
15870 * insdel.c (make_gap_larger): Make sure buffer size does not
15871 overflow range of int.
15872
15873 2002-01-05 Jason Rumney <jasonr@gnu.org>
15874
15875 * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
15876 OVERLAPS_P.
15877
15878 * w32menu.c (w32_menu_display_help): Hide any tooltip window.
15879
15880 * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
15881 to the left or to the right of the pointer, put it against
15882 the left screen edge.
15883 (x_frame_parms): Add missing braces around initializer.
15884
15885 * w32term.c (x_setup_relief_colors): Don't compute an image's
15886 background color if it doesn't have a Pixmap.
15887 (notice_overwritten_cursor): Don't depend on
15888 output_cursor and updated_area. Compare pixel coordinates with
15889 window's cursor pixel coordinates.
15890 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
15891 Call notice_overwritten_cursor with new arg list.
15892 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
15893 unconditionally.
15894 (x_draw_image_relief): Use predefined macro instead of
15895 constant when the value of `tool_bar_button_relief' is negative.
15896
15897 * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
15898
15899 2002-01-04 Richard M. Stallman <rms@gnu.org>
15900
15901 * xmenu.c (menu_highlight_callback): Hide any tooltip window.
15902
15903 2002-01-03 Richard M. Stallman <rms@gnu.org>
15904
15905 * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
15906 (Fkey_binding): Try the `keymap' property map first.
15907 (Fdescribe_buffer_bindings): Show `keymap' property bindings before
15908 minor mode bindings.
15909
15910 2002-01-03 Kim F. Storm <storm@cua.dk>
15911
15912 * keyboard.c (read_key_sequence): Fix cast of submaps arg to bcopy.
15913
15914 2002-01-02 Richard M. Stallman <rms@gnu.org>
15915
15916 * keyboard.c (read_key_sequence): Handle the keymap property
15917 before minor mode maps.
15918
15919 * editfns.c (Fformat): Update thissize from field_width
15920 based on the actual width, in the string case.
15921
15922 2002-01-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
15923
15924 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
15925 when used as truth value to prevent gcc warnings.
15926
15927 * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
15928 * w32proc.c: Include <config.h>.
15929
15930 2002-01-01 Andreas Schwab <schwab@suse.de>
15931
15932 * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
15933 not EMACS_INT, to make them compatible with DEFVAR_INT.
15934 * lisp.h (max_specpdl_size): Adjust declaration.
15935
15936 2002-01-01 Richard M. Stallman <rms@gnu.org>
15937
15938 * print.c (print_object): Test print_escape_nonascii only for
15939 unibyte strings.
15940 (PRINTPREPARE): Once again bind Qprint_escape_nonascii
15941 when outputting to a multibyte buffer.
15942
15943 2001-12-29 Richard M. Stallman <rms@gnu.org>
15944
15945 * print.c (print_object): In multibyte string, use hex escapes.
15946 Use octal only for unibyte strings.
15947 (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
15948
15949 * lread.c (read_escape): New arg BYTEREP for reporting whether
15950 escape forces unibyte or multibyte.
15951 (read1): When reading a string, take note of that info.
15952
15953 2001-12-29 Ken Raeburn <raeburn@gnu.org>
15954
15955 * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
15956 comparison to test lisp value returned by Fget.
15957
15958 2001-12-29 Richard M. Stallman <rms@gnu.org>
15959
15960 * lisp.h (max_specpdl_size): Add declaration.
15961
15962 * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
15963
15964 * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
15965 Handle modifier bits. Correct typo in error message.
15966
15967 2001-12-28 Richard M. Stallman <rms@gnu.org>
15968
15969 * abbrev.c: Use the plist of an abbrev for multiple params if nec.
15970 (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
15971 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
15972 Update calls to Fdefine_abbrev.
15973 (write_abbrev): Update for changed data format.
15974 Don't list "system" abbrevs.
15975 (Fexpand_abbrev): Update use count with new data format.
15976 (describe_abbrev): Update for changed data format.
15977 (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
15978
15979 * config.in (HAVE_MBSINIT): Add #undef.
15980
15981 * strftime.c (mbsinit): Define as no-op if not available.
15982
15983 * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
15984 (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
15985
15986 * keymap.c (Flookup_key): Error message if key has wrong data type.
15987 (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
15988 (exclude_key): New variable.
15989
15990 2001-12-28 Gerd Moellmann <gerd@gnu.org>
15991
15992 * xterm.c (x_setup_relief_colors): Don't compute an image's
15993 background color if it doesn't have a Pixmap.
15994
15995 * xterm.c (notice_overwritten_cursor): Don't depend on
15996 output_cursor and updated_area. Compare pixel coordinates with
15997 window's cursor pixel coordinates.
15998 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
15999 Call notice_overwritten_cursor with new arg list.
16000 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
16001 unconditionally.
16002
16003 * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
16004 height of the cursor line to the amount to scroll.
16005
16006 2001-12-27 Richard M. Stallman <rms@gnu.org>
16007
16008 * intervals.c (set_point_both): The position after an invisible,
16009 intangible character is not an acceptable stopping point.
16010
16011 2001-12-27 Ken Raeburn <raeburn@gnu.org>
16012
16013 * window.c (enlarge_window): In new preserve_before code, convert
16014 CURBEG from lisp object to integer before doing arithmetic.
16015
16016 2001-12-27 Richard M. Stallman <rms@gnu.org>
16017
16018 * bytecode.c (Fbyte_code): Undo previous change.
16019
16020 2001-12-26 Kim F. Storm <storm@cua.dk>
16021
16022 * keyboard.c (record_char): Ignore duplicate help-echo events only
16023 separated by mouse-movement. When tracking mouse, only record
16024 first and last mouse-movement event in same window.
16025 Don't record mouse-movement events in keyboard macros.
16026
16027 2001-12-25 Richard M. Stallman <rms@gnu.org>
16028
16029 * window.c (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
16030 (Fenlarge_window): New arg PRESERVE_BEFORE.
16031
16032 * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
16033 instead of Fstring_as_unibyte.
16034
16035 2001-12-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16036
16037 The following changes remove mocklisp support:
16038
16039 * mocklisp.h, mocklisp.c: Files removed.
16040
16041 * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
16042 `Qmocklisp' and `Qmocklisp_arguments'.
16043 Remove prototype of syms_of_mocklisp.
16044
16045 * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
16046
16047 * callint.c: Do not include mocklisp.h.
16048 (Fcall_interactively): Do not test for mocklisp case.
16049
16050 * eval.c: Remove variables `Qmocklisp_arguments',
16051 `Vmocklisp_arguments' and `Qmocklisp'. Remove prototype of ml_apply.
16052 (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
16053 Do not test for mocklisp case.
16054 (Fwhile): Remove unused variable `tem'.
16055 (syms_of_eval): Remove variable `moclisp-arguments'.
16056
16057 * data.c (wrong_type_argument): Remove mocklisp case.
16058
16059 * doc.c (Fdocumentation): Remove mocklisp case.
16060
16061 * emacs.c (main): Do not call syms_of_mocklisp.
16062
16063 2001-12-21 Richard M. Stallman <rms@gnu.org>
16064
16065 * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
16066 to the left or to the right of the pointer, put it against
16067 the left screen edge.
16068
16069 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
16070
16071 * Makefile.in (distclean): Remove .gdbinit if we are building
16072 outside the source tree.
16073
16074 2001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
16075
16076 * w32.c (emacs_root_dir): New function.
16077
16078 * msdos.c (emacs_root_dir): New function.
16079
16080 * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
16081 of the current drive as the fallback for default_directory.
16082
16083 * dired.c (file_name_completion): Run the elements of
16084 completion-ignored-extensions through ENCODE_FILE.
16085
16086 * lisp.h (scmp): Remove prototype, since it's now a static
16087 function private to dired.c.
16088
16089 2001-12-18 Richard M. Stallman <rms@gnu.org>
16090
16091 * dired.c (scmp): Function moved from minibuf.c.
16092 Delete multibyte handling--used only on encoded strings.
16093
16094 * minibuf.c (scmp): Function moved to dired.c.
16095
16096 * fns.c (merge): Add QUIT call.
16097
16098 2001-12-18 Dave Love <fx@gnu.org>
16099
16100 * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
16101 language/georgian.el.
16102
16103 2001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
16104
16105 * Makefile.in (lisp, shortlisp): Synchronize with changes to
16106 lisp/Makefile.in:DONTCOMPILE.
16107
16108 2001-12-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16109
16110 * xdisp.c (window_box_height): Do not return negative values.
16111 From Gerd Moellmann <gerd@gnu.org>.
16112
16113 * keyboard.c (head_table): Add missing braces around initializer.
16114
16115 * term.c (keys): Likewise.
16116
16117 * xfns.c (x_frame_parms, visual_classes): Likewise.
16118
16119 2001-12-17 Sam Steingold <sds@gnu.org>
16120
16121 * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
16122 patch (COMPOSING_P, not COMPOSING).
16123
16124 2001-12-17 Richard M. Stallman <rms@gnu.org>
16125
16126 * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
16127
16128 * coding.c (code_convert_region): Update coding->cmp_data->char_offset
16129 before calling decode_coding.
16130
16131 * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
16132
16133 * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
16134 instead of only for COMPOSITION_DISABLED.
16135
16136 2001-12-16 Richard M. Stallman <rms@gnu.org>
16137
16138 * alloc.c (pure_alloc): After overflow, allocate just a small block.
16139
16140 * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
16141
16142 * buffer.h (struct buffer): New field `display_error_modiff'.
16143 * buffer.c (reset_buffer): Initialize `display_error_modiff'.
16144
16145 * window.c (Frecenter): Clear display_error_modiff field.
16146
16147 * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
16148 Call redisplay_window, but not if display_error_modiff field says no.
16149 (redisplay_window_error): New function.
16150 (displayed_buffer): New variable.
16151 (redisplay_internal, redisplay_windows): Call the new functions
16152 instead of redisplay_window directly.
16153
16154 2001-12-15 Richard M. Stallman <rms@gnu.org>
16155
16156 * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
16157
16158 2001-12-14 Andrew Innes <andrewi@gnu.org>
16159
16160 * makefile.w32-in (EMACSLOADPATH): Define.
16161 ($(EMACS)): Run `list-load-path-shadows' after dumping Emacs.
16162 (bootstrap-temacs): Remove dependency on bootstrap-clean.
16163
16164 2001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
16165
16166 * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
16167 parameter have a numeric value all the time.
16168
16169 * w32fns.c (x_report_frame_params): Likewise.
16170
16171 2001-12-12 Richard M. Stallman <rms@gnu.org>
16172
16173 * fileio.c (Fwrite_region): Doc fix.
16174
16175 * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
16176 (redisplay_internal): Call clear_image_cache only for window terminals.
16177
16178 2001-12-12 Gerd Moellmann <gerd@gnu.org>
16179
16180 * xdisp.c (move_it_vertically_backward): Change heuristic
16181 for the case that we didn't move far enough initially.
16182
16183 * window.c (Frecenter): Simplify computation in the case of window
16184 system frames and ARG < 0; use window_box_height.
16185
16186 2001-12-11 Richard M. Stallman <rms@gnu.org>
16187
16188 * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
16189 * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
16190
16191 2001-12-11 Andrew Innes <andrewi@gnu.org>
16192
16193 * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
16194 arg is negative.
16195
16196 2001-12-11 Richard M. Stallman <rms@gnu.org>
16197
16198 * m/hp800.h: Split the __hpux conditional into the parts
16199 that are right for GNU/Linux too and the parts that are not.
16200 Use the former if GNU_LINUX.
16201 (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
16202
16203 * s/gnu-linux.h (GNU_LINUX): Defined.
16204
16205 2001-12-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16206
16207 * macros.c, msdos.c, w16select.c: Change doc-string comments to
16208 `new style' [w/`doc:' keyword].
16209
16210 2001-12-10 Jason Rumney <jasonr@gnu.org>
16211
16212 * w32menu.c (w32_free_submenu_strings): Clear menu item struct
16213 before using.
16214
16215 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16216
16217 * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
16218 keyword].
16219
16220 2001-12-09 Eli Zaretskii <eliz@is.elta.co.il>
16221
16222 * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
16223
16224 * s/hpux10.h (srand48): Don't undefine.
16225
16226 2001-12-09 Jason Rumney <jasonr@gnu.org>
16227
16228 * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
16229 Add comment to explain where the struct came from.
16230 (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
16231 (add_menu_item): Process pop-up menus first to avoid memory leak.
16232 (add_menu_item, w32_menu_display_help): Use `help' field as
16233 Lisp_Object.
16234 (w32_free_submenu_strings): Only free owner-drawn strings.
16235
16236 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16237
16238 * COPYING: Moved back.
16239
16240 * charset.c (char_to_string_1, translate_char, Fdefine_charset):
16241 Add parentheses around && within ||.
16242
16243 * indent.c (compute_motion): Likewise.
16244
16245 * intervals.c (merge_properties_sticky): Likewise.
16246
16247 * coding.c (setup_coding_system, shrink_encoding_region)
16248 (Fdecode_sjis_char): Likewise.
16249
16250 2001-12-07 Andreas Schwab <schwab@suse.de>
16251
16252 * xdisp.c (display_mode_element): Don't read past end of string if
16253 it ends with '%'.
16254
16255 * alloc.c (inhibit_garbage_collection): Don't exceed value an int
16256 can hold.
16257
16258 * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum):
16259 Rename from most_positive_fixnum and most_negative_fixnum, resp., and
16260 type changed to Lisp_Object.
16261 (syms_of_data): DEFVAR_LISP them.
16262
16263 2001-12-07 Richard M. Stallman <rms@gnu.org>
16264
16265 * callproc.c (init_callproc): Set Vdata_directory based on the source
16266 location whenever Emacs was run uninstalled.
16267
16268 2001-12-06 Paul Eggert <eggert@twinsun.com>
16269
16270 * config.in (HAVE_WORKING_VFORK): New #undefs.
16271 * process.c (create_process):
16272 Use HAVE_WORKING_VFORK, not HAVE_VFORK.
16273 * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
16274 * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
16275 * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
16276 * m/intel386.h (HAVE_VFORK): Likewise.
16277 * m/mips-siemens.h (HAVE_VFORK): Likewise.
16278 * m/mips.h (HAVE_VFORK): Likewise.
16279 * s/freebsd.h (vfork): Remove #define.
16280 * s/lynxos.h (HAVE_VFORK): Remove #undef.
16281 * s/usg5-4-2.h: Fix comment about vfork.
16282
16283 2001-12-06 Richard M. Stallman <rms@gnu.org>
16284
16285 * s/hpux10.h (random): Add undef.
16286 (HAVE_RANDOM): Define it just once.
16287
16288 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
16289
16290 * eval.c: Undo last change: the standard syntax is not wanted.
16291
16292 2001-12-06 Eli Zaretskii <eliz@is.elta.co.il>
16293
16294 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
16295 scroll bars of the frame before deleting the frame itself. If the
16296 frame has a widget, delete the frame with XtDestroyWidget, and do
16297 not call XDestroyWindow before that.
16298
16299 2001-12-06 Kim F. Storm <storm@cua.dk>
16300
16301 * xfns.c (x_report_frame_params): Return actual fringe widths.
16302
16303 * w32fns.c (x_report_frame_params): Return actual fringe widths.
16304
16305 2001-12-05 Andrew Innes <andrewi@gnu.org>
16306
16307 * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
16308 excessively large.
16309
16310 * insdel.c (make_gap_larger): New function.
16311 (make_gap_smaller): New function.
16312 (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]:
16313 Call make_gap_smaller if arg is negative.
16314
16315 2001-12-04 Stefan Monnier <monnier@cs.yale.edu>
16316
16317 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
16318 Pass a dummy argument when calling interrupt_signal.
16319 (parse_menu_item): Mark disabled items before checking for empty def.
16320 (read_char_minibuf_menu_prompt): Make safety more visible.
16321 (read_key_sequence): Add a `first_unbound' variable.
16322 Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
16323 unbound prefix as soon as we can detect it.
16324
16325 * doc.c (Fsnarf_documentation): Add prototype.
16326 (get_doc_string): Handle negative arguments.
16327 (Fdocumentation): Use AREF and ASIZE.
16328 Move the calls to get_doc_string to a single place.
16329 Don't confuse an interactive-spec for a docstring reference.
16330 (Fdocumentation_property): Take advantage of the fact that
16331 get_doc_string now ignores the sign of the docstring position.
16332
16333 * eval.c: Use standard syntax for usage in docstrings.
16334
16335 2001-12-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16336
16337 * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief' an option.
16338
16339 2001-12-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16340
16341 * xterm.c (x_draw_image_relief): Use predefined macro instead of
16342 constant when the value of `tool_bar_button_relief' is negative.
16343
16344 2001-12-02 Richard M. Stallman <rms@gnu.org>
16345
16346 * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
16347 (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
16348
16349 * fileio.c (read_non_regular): Delete Fsignal call.
16350
16351 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
16352
16353 * lisp.h (run_hook_list_with_args): Undo last change.
16354
16355 2001-12-01 Gerd Moellmann <gerd@gnu.org>
16356
16357 * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
16358
16359 2001-12-01 Jason Rumney <jasonr@gnu.org>
16360
16361 * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
16362
16363 * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
16364 [!WM_MOUSELEAVE]: Define.
16365
16366 * w32menu.c (current_popup_menu, get_menu_item_info):
16367 (set_menu_item_info): New vars.
16368 (set_frame_menubar): Doc fix clarifying GC interaction with menus.
16369 (w32_menu_show): Set current_popup_menu.
16370 (add_menu_item): Allocate new strings for owner-drawn menu items
16371 and help strings.
16372 Use owner-draw for disabled menu items again.
16373 (w32_menu_display_help): Ignore owner-drawn items and popup menus.
16374 (w32_free_submenu_strings, w32_free_menu_strings): New functions.
16375
16376 * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
16377 (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
16378 <WM_EXITMENULOOP>: Free menu strings.
16379 <WM_MOUSELEAVE>: Stop tracking mouse.
16380 (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
16381
16382 * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
16383 and mouse face.
16384
16385 2001-12-01 Kim F. Storm <storm@cua.dk>
16386
16387 The following changes add left-fringe and right-fringe
16388 frame parameters to adjust fringe widths, or remove one or
16389 both fringes.
16390
16391 * frame.h (struct frame): Remove trunc_area_pixel_width and
16392 trunc_area_cols fields.
16393 (Qleft_fringe, Qright_fringe): Declare.
16394 (FRAME_RIGHT_FRINGE_WIDTH): New macro.
16395
16396 * frame.c (Qleft_fringe, Qright_fringe): New vars.
16397 (syms_of_frame): Initialize them.
16398
16399 * window.c (coordinates_in_window): Handle separate left and right
16400 fringe widths.
16401
16402 * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
16403 and fringe_cols fields.
16404 (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
16405 (FRAME_X_FRINGE_COLS): Use fringe_cols field.
16406 (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
16407 (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
16408 (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
16409 (x_compute_fringe_widths): Add prototype.
16410
16411 * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
16412 fill fringe evenly with small dashes.
16413 (x_draw_fringe_bitmap): Clear background if necessary. Align and
16414 clip the new ZV bitmap to avoid jitter between rows.
16415 (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
16416 background. Don't draw fringe bitmaps if fringe width is zero.
16417 (x_compute_fringe_widths): New function.
16418 (x_new_font, x_set_window_size_1): Use it.
16419
16420 * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
16421 (x_set_frame_parameters): Process `font' parameter before other
16422 parameters as fringe widths depend on it.
16423 (x_set_fringe_width): New function.
16424 (x_figure_window_size): Use x_compute_fringe_widths.
16425 (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
16426 parameters.
16427
16428 * widget.c (set_frame_size): Use x_compute_fringe_widths.
16429 (EmacsFrameSetCharSize): Ditto.
16430
16431 * w32term.h: Merged changes from xterm.h.
16432 * w32term.c: Merged changes from xterm.c.
16433 * w32fns.c: Merged changes from xfns.c.
16434
16435 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16436
16437 * COPYING: Removed.
16438
16439 2001-11-29 Dave Love <fx@gnu.org>
16440
16441 * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
16442 extra extra slot.
16443 (detect_coding_mask): Fix call of detect_coding_iso2022.
16444
16445 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16446
16447 * fileio.c (file-name-coding-system)
16448 (default-file-name-coding-system): Doc fix (links to referenced
16449 variables added).
16450
16451 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
16452
16453 * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
16454 Add dummy uses of gcproN variables.
16455
16456 * category.c (describe_category, describe_category_1)
16457 (Fdescribe_categories): Remove. (Moved to lisp/help-fns.el.)
16458 (syms_of_category): Don't defsubr Sdescribe_categories.
16459
16460 2001-11-28 Richard M. Stallman <rms@gnu.org>
16461
16462 * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
16463
16464 * Makefile.in (lispdir): New variable, referring to build dir.
16465 (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
16466
16467 2001-11-28 Andrew Innes <andrewi@gnu.org>
16468
16469 * w32menu.c (w32_menu_display_help): Actually add the new argument
16470 OWNER.
16471
16472 2001-11-28 Jason Rumney <jasonr@gnu.org>
16473
16474 * w32menu.c (add_menu_item): Do not use owner-draw for disabled
16475 menu items. From David Ponce <dponce@wanadoo.fr>.
16476 (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
16477 conditionally.
16478 (w32_menu_display_help): New argument OWNER. Rewritten to store a
16479 help event in the owner frame's keyboard buffer.
16480
16481 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
16482 (Fx_show_tip): Don't subtract last width from row width.
16483
16484 * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
16485 (w32_read_socket): Use EQ to compare frames.
16486
16487 2001-11-28 Gerd Moellmann <gerd@gnu.org>
16488
16489 * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
16490 OVERLAPS_P.
16491
16492 2001-11-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16493
16494 * xdisp.c (message_dolog): Remove unused variables `gcpro2',
16495 `gcpro3' and `gcpro4'.
16496
16497 * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
16498
16499 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
16500
16501 * ccl.c: Use AREF and ASIZE.
16502
16503 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
16504
16505 * lisp.h (run_hook_list_with_args): Remove.
16506 (LIST_END_P): Fix call to wrong_type_argument.
16507 (make_fixnum_or_float): Use EMACS_INT rather than int.
16508
16509 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
16510
16511 * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
16512 (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
16513
16514 * eval.c: Use AREF and ASIZE.
16515 (Ffetch_bytecode): Add the file name to the error message.
16516
16517 * fileio.c (Ffind_file_name_handler): Give precedence to handlers
16518 which match the end of the file-name.
16519 (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
16520 is not a valid env var, but leave it as is instead.
16521
16522 * keymap.c (access_keymap): Handle t bindings like nil bindings.
16523 Make nil bindings in char-tables transparent.
16524 (store_in_keymap): Turn a nil binding into a t binding for char-tables.
16525
16526 2001-11-26 Richard M. Stallman <rms@gnu.org>
16527
16528 * textprop.c (set_text_properties_1): Allow START, END in either order.
16529 Do nothing if range is empty.
16530
16531 * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
16532
16533 * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
16534 (clean): Not here.
16535
16536 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
16537
16538 * textprop.c (set_text_properties_1): Clearly mark that the
16539 interval should not be empty.
16540
16541 * intervals.c (graft_intervals_into_buffer):
16542 Don't call set_text_properties_1 on an empty interval.
16543
16544 2001-11-25 Richard M. Stallman <rms@gnu.org>
16545
16546 * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
16547
16548 * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
16549 don't lose the data in it.
16550
16551 2001-11-25 Juanma Barranquero <lektu@terra.es>
16552
16553 * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
16554
16555 * buffer.c (Fkill_buffer): Likewise.
16556
16557 * print.c (temp_output_buffer_setup): Likewise.
16558
16559 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
16560
16561 * xfaces.c (merge_face_heights): Coerce back to int explicitly.
16562
16563 2001-11-25 Eli Zaretskii <eliz@is.elta.co.il>
16564
16565 * window.c (Fset_window_vscroll): Doc fix. From Kalle Olavi
16566 Niemitalo <kon@iki.fi>.
16567
16568 2001-11-25 Jason Rumney <jasonr@gnu.org>
16569
16570 * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
16571
16572 * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
16573 (Fx_show_tip): Block input during frame creation.
16574 (Fx_show_tip, Fx_hide_tip): Enable.
16575
16576 2001-11-24 Richard M. Stallman <rms@gnu.org>
16577
16578 * lread.c (Fload): Detect recursive load error for more than 3
16579 nestings of the same file.
16580 (Vrecursive_load_depth_limit): Variable deleted.
16581 (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
16582
16583 2001-11-24 Jason Rumney <jasonr@gnu.org>
16584
16585 * xfns.c (compute_tip_xy): Initialize root_x and root_y from
16586 mouse position if either left or top is not specified.
16587
16588 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
16589 <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
16590 (my_create_tip_window, Fx_show_tip): Adjust size for external border.
16591 (my_create_tip_window): Assign tip_window.
16592 (x_create_tip_frame): Use same defaults as X.
16593 (compute_tip_xy): Remove unused variable. Use full screen width.
16594 (Fx_show_tip): Do not double height. Call ShowWindow directly.
16595
16596 * w32term.c (x_after_update_window_line): Doc fix.
16597 (w32_read_socket): Doc fix. Avoid SET_FRAME_GARBAGED for tip
16598 frames.
16599 <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
16600
16601 * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
16602 for all Windowed systems.
16603
16604 2001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
16605
16606 * msdos.c (IT_clear_screen): If the frame's faces are not yet
16607 realized, use the initial screen colors to clear the screen.
16608
16609 2001-11-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16610
16611 * textprop.c (Fset_text_properties): Remove unused variables
16612 `unchanged', `prev_changed', `s' and `len'.
16613
16614 * search.c (Freplace_match): Remove unused variable `inslen'.
16615
16616 * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
16617
16618 2001-11-22 Jason Rumney <jasonr@gnu.org>
16619
16620 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
16621 (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
16622 (my_create_tip_window): New function.
16623 (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
16624 (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
16625
16626 2001-11-20 Jason Rumney <jasonr@gnu.org>
16627
16628 * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
16629 (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
16630
16631 * w32fns.c (Vw32_system_coding_system): Remove.
16632 (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
16633
16634 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
16635
16636 * fileio.c (Fwrite_region): Move choose_write_coding_system to
16637 after build_annotations.
16638
16639 * syntax.c (describe_syntax): Add dummy arg.
16640 (describe_syntax_1): Update call to describe_vector.
16641
16642 * category.c (describe_category): Add dummy arg.
16643 (describe_category_1): Update call to describe_vector.
16644
16645 * keymap.c (Fdescribe_vector): Add `describer' parameter.
16646 (describe_command, describe_translation): Add dummy second param.
16647 (describe_map): Call elt_describer with two arguments.
16648 (describe_vector_princ): Add `fun' parameter.
16649 Call it instead of the hardcoded `princ'.
16650 (describe_vector): Add arg `args'.
16651 Pass it as a new second argument to elt_describer.
16652
16653 * keymap.h (describe_vector): Update prototype.
16654
16655 * frame.c: Don't include keymap.h any more.
16656 (keys_of_frame): Remove.
16657
16658 * lisp.h (keys_of_frame): Remove declaration.
16659
16660 * emacs.c (main): Don't call `keys_of_frame' any more.
16661
16662 2001-11-14 Andreas Schwab <schwab@suse.de>
16663
16664 * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
16665 if defined, 0 otherwise.
16666 (MAP_FAILED): Define if not defined and use it to test mmap failure.
16667 (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
16668
16669 2001-11-19 Richard M. Stallman <rms@gnu.org>
16670
16671 * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
16672
16673 2001-11-18 Jason Rumney <jasonr@gnu.org>
16674
16675 * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
16676 (x_draw_bar_cursor): If the background color of the glyph under
16677 the cursor equals the frame's cursor color, use the glyph's
16678 foreground color for drawing the bar cursor.
16679 (x_after_update_window_line): Clear internal border in different
16680 circumstances.
16681 (w32_set_vertical_scroll_bar): Check for width and height > 0.
16682 (w32_draw_relief_rect): Correct relief by 1 pixel.
16683 (x_set_glyph_string_background_width):
16684 Set extends_to_end_of_line_p if the row's fill_line_p is set and
16685 drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
16686 (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
16687 if cursor_in_non_selected_windows is false.
16688 (show_mouse_face): Clean up. Recognize overwritten cursor differently.
16689 (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
16690 Notice if cursor gets overwritten.
16691 (notice_overwritten_cursor): Renamed from
16692 note_overwritten_text_cursor. Rewritten to take glyph widths
16693 into account, and to take X positions as parameters.
16694 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
16695 around call to x_draw_glyphs.
16696 (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
16697 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
16698 color to use for image glyph reliefs.
16699 (x_draw_image_relief): Accept zero tool_bar_button_relief.
16700 (glyph_rect): Remove unused variable `area'.
16701
16702 * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
16703 some items.
16704 (x_set_internal_border_width): Set frame garbaged when window
16705 doesn't exist yet.
16706 (Fx_create_frame): Accept zero tool_bar_button_relief.
16707 (x_clear_image_1, four_corners_best, image_background)
16708 (image_background_transparent): New functions.
16709 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
16710 (gs_format): Add `:background' entry.
16711 (lookup_image): Set IMG's background color if specified.
16712 (pbm_load, xbm_load_image, png_load): Set IMG's background field
16713 when appropriate.
16714 (x_clear_image_1): Reset `background_valid' and
16715 `background_transparent_valid' fields.
16716 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
16717 calculating it here. Set IMG's background_transparent field.
16718 (enum xpm_keyword_index): Add XPM_BACKGROUND.
16719 (enum png_keyword_index): Add PNG_BACKGROUND.
16720 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
16721 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
16722 (enum gif_keyword_index): Add GIF_BACKGROUND.
16723 (enum gs_keyword_index): Add GS_BACKGROUND.
16724 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
16725 Pre-calculate image background color where necessary.
16726 (x_create_x_image_and_pixmap, xbm_load, gs_load):
16727 Use display info's n_cbits entry for screen depth.
16728 (Fx_show_tip): Remove unused variables `buffer', `top',
16729 `left', `max_width' and `max_height'.
16730
16731 * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
16732
16733 2001-11-18 Gerd Moellmann <gerd@gnu.org>
16734
16735 * puresize.h (BASE_PURESIZE): Increase to 750000.
16736
16737 2001-11-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16738
16739 * frame.c (Fframe_live_p): Doc fix.
16740
16741 2001-11-18 Richard M. Stallman <rms@gnu.org>
16742
16743 * xdisp.c (message_dolog_marker1, message_dolog_marker2)
16744 (message_dolog_marker3): New static variables hold three markers.
16745 (syms_of_xdisp): Initialize and staticpro them.
16746 (message_dolog): Use message_dolog_marker1..3 instead of
16747 allocating markers each time. Unchain them when done.
16748
16749 2001-11-17 Richard M. Stallman <rms@gnu.org>
16750
16751 * doc.c (Fsnarf_documentation): Doc fix.
16752
16753 2001-11-17 Andreas Schwab <schwab@suse.de>
16754
16755 * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
16756
16757 2001-11-17 Richard M. Stallman <rms@gnu.org>
16758
16759 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
16760
16761 2001-11-17 Jason Rumney <jasonr@gnu.org>
16762
16763 * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
16764
16765 2001-11-17 Gerd Moellmann <gerd@gnu.org>
16766
16767 * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
16768 with invalid position.
16769
16770 2001-11-16 Richard M. Stallman <rms@gnu.org>
16771
16772 * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
16773
16774 * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
16775 * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
16776 * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
16777
16778 * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
16779
16780 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
16781
16782 * fileio.c (build_annotations): Split off the tail.
16783 (build_annotations_2): New fun. Extracted from build_annotations.
16784 (Fwrite_region): Split the call to build_annotations into two
16785 calls to build_annotations and build_annotations_2.
16786
16787 2001-11-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16788
16789 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
16790 clear_waiting_for_input with argument.
16791
16792 * xterm.h (x_update_cursor): Remove duplicated prototype.
16793
16794 * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
16795
16796 * xterm.c (waiting_for_input): Remove unnecessary declaration.
16797
16798 * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
16799
16800 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
16801
16802 * fileio.c (choose_write_coding_system): New fun, extracted
16803 from Fwrite_region.
16804 (Fwrite_region): Use it.
16805
16806 * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
16807 (funcall_lambda, run_hook_with_args): Make static and add prototype.
16808 (ml_apply, find_handler_clause): Add prototype.
16809
16810 2001-11-16 Eli Zaretskii <eliz@gnu.org>
16811
16812 * config.in: Add #undef HAVE_COFF_H.
16813
16814 * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
16815 Required for ISC 4.1.
16816
16817 2001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
16818
16819 * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
16820 Andrew Wiseman <a.wiseman@btclick.com>.
16821
16822 2001-11-16 Kim F. Storm <storm@cua.dk>
16823
16824 The following changes are made to clean up the various internal
16825 references to the fringes to actually use the term `fringe' for
16826 them. Previously, they were called `flags areas', `bitmap areas',
16827 `left/right side of windows', or implicitly as `flags' or
16828 `bitmaps':
16829
16830 * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
16831 Comments fixed. Use renamed symbols.
16832
16833 * dispnew.c: Comment fix. Use renamed symbols.
16834
16835 * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
16836 (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
16837 (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
16838
16839 * msdos.c: Comment fix.
16840
16841 * w32fns.c: Use renamed symbols.
16842
16843 * w32term.c: Comment fixes. Use renamed symbols.
16844 (fringe_bitmap_type): Renamed from bitmap_type.
16845 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
16846 (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
16847 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
16848
16849 * w32term.h: Comment fixes. Use renamed symbols.
16850 (fringes_extra): Renamed from flags_areas_extra.
16851 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
16852 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
16853 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
16854 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
16855 (FRAME_X_LEFT_FRINGE_WIDTH):
16856 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
16857 (FRAME_X_RIGHT_FRINGE_WIDTH):
16858 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
16859
16860 * widget.c: Use renamed symbols.
16861
16862 * window.c: Comment fixes. Use renamed symbols.
16863 (coordinates-in-window-p): Doc fix.
16864
16865 * xdisp.c: Comment fixes. Use renamed symbols.
16866
16867 * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
16868
16869 * xfns.c: Use renamed symbols.
16870
16871 * xterm.c: Comment fixes. Use renamed symbols.
16872 (fringe_bitmap_type): Renamed from bitmap_type.
16873 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
16874 (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
16875 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
16876
16877 * xterm.h: Comment fixes. Use renamed symbols.
16878 (fringes_extra): Renamed from flags_areas_extra.
16879 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
16880 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
16881 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
16882 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
16883 (FRAME_X_LEFT_FRINGE_WIDTH):
16884 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
16885 (FRAME_X_RIGHT_FRINGE_WIDTH):
16886 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
16887
16888 2001-11-15 Jason Rumney <jasonr@gnu.org>
16889
16890 * w32menu.c (add-menu-item): Make help_echo and radio buttons
16891 work for most menu items. From David Ponce
16892 <david.ponce@wanadoo.fr>.
16893
16894 2001-11-15 Gerd Moellmann <gerd@gnu.org>
16895
16896 * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
16897 Some x_set_* function expect to be called even if old and new
16898 value are equal.
16899
16900 * xdisp.c (build_desired_tool_bar_string): Accept zero
16901 tool_bar_button_relief.
16902
16903 * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
16904
16905 * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
16906
16907 * xterm.c (x_draw_bar_cursor): If the background color of the
16908 glyph under the cursor equals the frame's cursor color, use
16909 the glyph's foreground color for drawing the bar cursor.
16910
16911 * dispnew.c (direct_output_forward_char): Fix character/byte
16912 position comparison.
16913
16914 2001-11-15 Miles Bader <miles@gnu.org>
16915
16916 * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
16917 (Fdelete_field, Ffield_string, Ffield_string_no_properties):
16918 Update arguments to find_field.
16919 (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
16920 (Fconstrain_to_field): Use LIMIT arg to shorten search time.
16921 * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
16922 * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
16923
16924 2001-11-14 Richard M. Stallman <rms@gnu.org>
16925
16926 * editfns.c (Fpropertize): Allow call with 1 arg.
16927
16928 * dispextern.h (image_background, image_background_transparent):
16929 Conditionalize on HAVE_X_WINDOWS.
16930
16931 2001-11-13 Richard M. Stallman <rms@gnu.org>
16932
16933 * print.c (Fprin1_to_string): Doc fix.
16934
16935 * sunfns.c (Fsun_change_cursor_icon): Doc fix.
16936
16937 * floatfns.c (Fceiling, Ffloor): Doc fixes.
16938
16939 * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
16940
16941 * fileio.c (Ffile_accessible_directory_p): Doc fix.
16942
16943 * eval.c (syms_of_eval): Doc fix.
16944
16945 * coding.c (syms_of_coding): Doc fix.
16946
16947 * doc.c (Fsnarf_documentation): Doc fix.
16948
16949 * dispnew.c (syms_of_display): Doc fix.
16950
16951 * category.c (Fget_unused_category): Doc fix.
16952
16953 * buffer.c (syms_of_buffer): Doc fixes.
16954
16955 2001-11-14 Eli Zaretskii <eliz@is.elta.co.il>
16956
16957 * print.c (prin1, print): Doc fix.
16958
16959 2001-11-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16960
16961 * fontset.h: Remove declarations of variables
16962 `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
16963
16964 * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
16965 `Vclip_large_size_font'.
16966
16967 2001-11-13 Jason Rumney <jasonr@gnu.org>
16968
16969 * w32fns.c: Doc fix.
16970
16971 2001-11-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
16972
16973 * xfaces.c (Fface_attributes_as_vector): Doc fix.
16974
16975 * fns.c: Doc fix.
16976
16977 * emacs.c: Doc fix.
16978
16979 * coding.c: Doc fix.
16980
16981 * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
16982 * fontset.c, insdel.c, keymap.c: Change doc-string comments to
16983 `new style' [w/`doc:' keyword].
16984
16985 2001-11-12 Richard M. Stallman <rms@gnu.org>
16986
16987 * xterm.c (XTread_socket): Don't update focus for EnterNotify or
16988 LeaveNotify events. Only FocusIn and FocusOut do that now.
16989 (x_display_and_set_cursor): Do display hollow cursors in active
16990 minibuffer windows when they are not selected.
16991
16992 2001-11-12 Jason Rumney <jasonr@gnu.org>
16993
16994 * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
16995 * w32term.c: Change doc-string comments to `new style'
16996 [w/`doc:' keyword]. Doc fixes.
16997
16998 * w32fns.c: Don't define max.
16999 (Fx_open_connection): Only execute once.
17000
17001 2001-11-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17002
17003 * ccl.c: Change macros to use do-while block instead of if-else.
17004 Use braces to follow GNU Coding Standards.
17005
17006 2001-11-11 Richard M. Stallman <rms@gnu.org>
17007
17008 * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
17009
17010 * lread.c (read_escape): Use end_of_file_error for reporting eof.
17011
17012 * insdel.c (replace_range): Use adjust_markers_for_replace
17013 instead of adjust_markers_for_delete and adjust_markers_for_insert.
17014
17015 * intervals.h (set_text_properties, set_text_properties_1): Declare.
17016
17017 * textprop.c (set_text_properties_1): New subroutine
17018 broken out of set_text_properties.
17019 (set_text_properties): Use set_text_properties_1.
17020
17021 * intervals.c (graft_intervals_into_buffer):
17022 Use set_text_properties_1 to clear out properties.
17023
17024 * search.c (Freplace_match): Use replace_range to insert
17025 and delete. Don't request property inheritance from
17026 surrounding text.
17027
17028 2001-11-10 Jason Rumney <jasonr@gnu.org>
17029
17030 * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
17031 vertical fonts. Allow them if face name is explicitly specified.
17032 Do not give up if we find a font that cannot be converted to an xlfd.
17033
17034 2001-11-10 Gerd Moellmann <gerd@gnu.org>
17035
17036 * unexelf.c (unexec): Use mmap/munmap to allocate buffers
17037 instead of malloc/free.
17038
17039 2001-11-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17040
17041 * xfaces.c (merge_face_vectors): Use braces to follow GNU
17042 Coding Standards.
17043 (Finternal_set_lisp_face_attribute): Likewise.
17044
17045 * buffer.c (Fbury_buffer): Likewise.
17046
17047 * indent.c (current_column_1): Remove unused variable `prev_col'.
17048
17049 * coding.c (encode_coding): Use precomputed value of `src'.
17050 (encode_coding): Remove unused variable `src_end'.
17051 (code_convert_region): Remove unused variables `count'.
17052
17053 2001-11-07 Jason Rumney <jasonr@gnu.org>
17054
17055 * w32term.c (x_display_and_set_cursor): Do not move system caret
17056 if cursor_glyph is NULL.
17057
17058 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17059
17060 * keymap.c (access_keymap): Fix compilation error.
17061
17062 2001-11-07 Miles Bader <miles@gnu.org>
17063
17064 * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
17065
17066 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17067
17068 * intervals.c (graft_intervals_into_buffer):
17069 Remove #ifdef'd-out code.
17070 (graft_intervals_into_buffer): Remove unused variable `middle'.
17071
17072 * lread.c (Feval_region): Remove obsolete #ifdef'd-out
17073 code (eval-current-buffer).
17074 Change doc-string comments to `new style' [w/`doc:' keyword].
17075
17076 2001-11-06 Richard M. Stallman <rms@gnu.org>
17077
17078 * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
17079
17080 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
17081
17082 * lread.c (read1): Fix behavior with nested backquoting.
17083
17084 * keyboard.c (make_lispy_event): Check integerness and fix
17085 Lisp_Object/int mixup.
17086
17087 2001-11-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17088
17089 * fns.c (copy_hash_table): Remove unused variable `v'.
17090
17091 * fontset.c (fontset_font_pattern): Remove unused variable
17092 `family_registry'.
17093
17094 * indent.c (current_column_1): Remove unused variable `prev_col'.
17095
17096 2001-11-05 Richard M. Stallman <rms@gnu.org>
17097
17098 * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
17099
17100 * buffer.c (Fkill_buffer): Don't delete auto save file
17101 if buffer is modified.
17102
17103 2001-11-05 Andrew Innes <andrewi@gnu.org>
17104
17105 * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
17106 CHECK_NUMBER_CDR.
17107
17108 2001-11-05 Richard M. Stallman <rms@gnu.org>
17109
17110 * unexelf.c (unexec): Minor changes; clean up comments.
17111
17112 2001-11-05 Sam Steingold <sds@gnu.org>
17113
17114 * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
17115
17116 2001-11-05 Andreas Schwab <schwab@suse.de>
17117
17118 * sound.c (sound_perror): Save errno from being clobbered.
17119
17120 2001-11-05 Dale Hagglund <rdh@yottayotta.com>
17121
17122 * unexelf.c (unexec): Don't use `mmap'. Instead, read and write
17123 the program image directly.
17124
17125 2001-11-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17126
17127 * buffer.h (Fbuffer_local_value): Add prototype.
17128
17129 2001-11-04 Richard M. Stallman <rms@gnu.org>
17130
17131 * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
17132 and CHECK_BUFFER.
17133
17134 * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
17135 (record_char): Likewise.
17136
17137 * keyboard.c (make_lispy_event): Don't insist a drag event must
17138 move to a different buffer position. Instead, check for moving at
17139 least double_click_fuzz.
17140
17141 * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
17142
17143 * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
17144
17145 * indent.c (current_column_1, Fmove_to_column): Separate the code
17146 for display-table glyphs from the code for buffer text, to fix
17147 bugs in the former.
17148
17149 2001-11-04 Michael Welsh Duggan <md5i@cs.cmu.edu>
17150
17151 * buffer.c (Fbuffer_local_value): New function.
17152 (syms_of_buffer): Defsubr it.
17153
17154 * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
17155 value of `cursor-in-non-selected-windows'.
17156
17157 * lisp.h (Qcursor_in_non_selected_windows): New declaration.
17158 * xdisp.c (Qcursor_in_non_selected_windows): New variable.
17159 (syms_of_xdisp): Initialize it.
17160
17161 2001-11-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17162
17163 * xfns.c (Fx_create_frame): Doc fix.
17164
17165 * coding.c: Change doc-string comments to `new style' [w/`doc:'
17166 keyword].
17167
17168 * eval.c (top_level_value, top_level_set): Remove commented and
17169 #ifdef'd-out code.
17170 (Fdefvar): Fix usage in doc-string.
17171
17172 2001-11-03 Richard M. Stallman <rms@gnu.org>
17173
17174 * xfns.c: Include unistd.h, if it exists.
17175
17176 * editfns.c: Move the include of ctype.h after unistd.h.
17177
17178 * gmalloc.c: Test BROKEN_PROTOTYPES.
17179
17180 2001-11-03 Ken Raeburn <raeburn@gnu.org>
17181
17182 * lisp.h (CHECK_STRING_CAR): New macro.
17183 * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
17184 treating XCAR and XCDR as lvalues.
17185 (openp): Use CHECK_STRING_CAR.
17186 (read_list): Use XSETCDR instead of treating XCDR as lvalue.
17187
17188 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
17189
17190 * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
17191 (SIGMASKTYPE): Define.
17192
17193 * syssignal.h (sigunblock): Don't define if already defined.
17194
17195 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17196
17197 * eval.c (debugger_may_continue, Vdebug_ignored_errors)
17198 (call_debugger, Fcondition_case, skip_debugger, unbind_to):
17199 Fix typos in comments.
17200
17201 * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
17202 and #ifdef'd-out code.
17203 Fix and reindent comments.
17204
17205 * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
17206
17207 * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
17208 argument `i' in macros.
17209
17210 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
17211 `i' in macros.
17212
17213 * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
17214 (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
17215 (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
17216 (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
17217 (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
17218 (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
17219 (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
17220 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
17221 in macros.
17222
17223 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
17224 * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
17225 * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
17226 * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
17227 * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
17228 * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
17229 * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
17230 * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
17231 * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
17232 (remove unused second argument).
17233
17234 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
17235
17236 * syntax.c (describe_syntax): New wrapper.
17237 (Finternal_describe_syntax_value): Rename from describe_syntax.
17238 Don't insert space at front and \n at the end.
17239 (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
17240
17241 * regex.c (re_wctype): Try to fix some warnings.
17242 (regcomp, regexec): Don't forget the __restrict.
17243
17244 2001-11-02 Richard M. Stallman <rms@gnu.org>
17245
17246 * textprop.c (Fget_char_property): Doc fix.
17247
17248 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17249
17250 * process.c (Fstart_process): Add usage to doc-string.
17251
17252 * data.c (Fsetq_default): Ditto.
17253
17254 * callint.c (Finteractive): Ditto.
17255
17256 2001-11-01 Stefan Monnier <monnier@cs.yale.edu>
17257
17258 * macros.c: Don't include keymap.h any more.
17259
17260 2001-11-01 Richard M. Stallman <rms@gnu.org>
17261
17262 * data.c (Fmake_local_variable): Doc fix.
17263
17264 * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
17265 (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
17266
17267 * keymap.c (Fdescribe_buffer_bindings): Print character property
17268 bindings along with or instead of the buffer local map.
17269 Make the overriding maps override what they should.
17270
17271 2001-11-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17272
17273 * window.c (grow_mini_window): Fix typo in comment.
17274
17275 2001-11-01 Gerd Moellmann <gerd@gnu.org>
17276
17277 * xterm.c (x_scroll_bar_create): Check for width and height > 0.
17278 (XTset_vertical_scroll_bar): Likewise.
17279
17280 * xfns.c (x_build_heuristic_mask): Use four_corners_best
17281 instead of IMAGE_BACKGROUND.
17282
17283 * xfns.c (four_corners_best): Reindent.
17284
17285 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
17286 Handle :box so that it is possible to specify sexprs.
17287
17288 2001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
17289
17290 * s/hpux11.h: New file.
17291
17292 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17293
17294 * emacs.c (USAGE1): Show command line option --no-window-system
17295 instead of --no-windows in usage.
17296 (standard_args): Rename --no-windows to --no-window-system.
17297 (bug_reporting_address): Follow Emacs coding conventions.
17298
17299 * eval.c (Fcommandp): Doc fix.
17300 Change doc-string comments to `new style' [w/`doc:' keyword].
17301
17302 * frame.c (Fframe_live_p): Doc fix.
17303
17304 * buffer.c (selective-display-ellipses): Doc fix.
17305
17306 2001-10-31 Gerd Moellmann <gerd@gnu.org>
17307
17308 * lread.c (to_multibyte): Fix computation of new read_buffer_size.
17309
17310 * xfaces.c (realize_x_face): If C is not a single-byte character,
17311 set the face's colors_copied_bitwise_p instead of the defaulted_p
17312 members which have a different meaning.
17313 (free_face_colors): Do nothing for a face whose colors have been
17314 copied bitwise.
17315
17316 * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
17317
17318 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17319
17320 * marker.c, mocklisp.c: Change doc-string comments to `new style'
17321 [w/`doc:' keyword].
17322
17323 2001-10-31 Gerd Moellmann <gerd@gnu.org>
17324
17325 * fns.c (require_unwind): Return Lisp_Object.
17326
17327 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17328
17329 * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
17330 (last-input-char): Revert doc-string to be the same as the
17331 doc-string of `last-input-event'.
17332
17333 * xdisp.c: Fix typos in comments.
17334
17335 2001-10-31 Gerd Moellmann <gerd@gnu.org>
17336
17337 * window.c (grow_mini_window): Handle case that the root
17338 window is already smaller than the nominal mininum height.
17339
17340 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
17341
17342 * emacs.c (main): Don't call keys_of_macros any more.
17343
17344 * lisp.h (keys_of_macros): Remove.
17345
17346 * macros.c (keys_of_macros): Remove.
17347
17348 * xfaces.c (Fface_attribute_relative_p): Declare args.
17349
17350 2001-10-30 Jason Rumney <jasonr@gnu.org>
17351
17352 * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
17353 (enum_font_cb2): Ignore fonts with vertical orientation.
17354
17355 2001-10-30 Richard M. Stallman <rms@gnu.org>
17356
17357 * keyboard.c (Finput_pending_p): Doc fix.
17358
17359 2001-10-30 Gerd Moellmann <gerd@gnu.org>
17360
17361 * xterm.c (x_after_update_window_line): Don't run the code
17362 clearing in borders for rows whose visible height is 0.
17363
17364 * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
17365 resized_p flag is set. If not set, use the much less flickering
17366 method previously used.
17367
17368 * dispnew.c (change_frame_size_1): Set frame's resized_p.
17369
17370 * frame.h (struct frame) <resized_p>: New member.
17371
17372 * lread.c (to_multibyte): Ensure read_buffer is at least twice
17373 as large as the number of bytes to convert.
17374
17375 * lread.c (to_multibyte): New function.
17376 (read1): Use it.
17377
17378 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
17379
17380 * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
17381
17382 2001-10-30 Gerd Moellmann <gerd@gnu.org>
17383
17384 * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
17385 (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
17386 if the row's fill_line_p is set and drawing the last glyph with
17387 DRAW_IMAGE_{RAISED,SUNKEN}.
17388
17389 * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
17390
17391 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
17392
17393 * xmenu.c: Include coding.h and charset.h.
17394 (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
17395 (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
17396 (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
17397 Explicitly set wv->help. Use `TRUE' rather than `True'.
17398 (menu_help_callback): Use empty_string.
17399
17400 * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
17401 (Fx_popup_dialog): Explicitly init f.
17402 (w32_menu_display_help): Use empty_string.
17403
17404 2001-10-29 Richard M. Stallman <rms@gnu.org>
17405
17406 * fns.c (Frequire): Detect recursive try to require the same
17407 feature 3 or more levels deep, and get error.
17408 (require_unwind): New subroutine.
17409 (require_nesting_list): New variable.
17410 (syms_of_fns): Init and staticpro it.
17411
17412 * print.c (print_object): Clarify indication of insertion type.
17413
17414 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
17415
17416 * coding.c (syms_of_coding): Document that locale-coding-system is
17417 used for decoding input on X.
17418
17419 * window.c (Fscroll_left, Fscroll_right): Doc fix.
17420
17421 2001-10-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17422
17423 * keyboard.c (Finput_pending_p): Fix typo in doc-string.
17424 (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
17425
17426 2001-10-29 Gerd Moellmann <gerd@gnu.org>
17427
17428 * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
17429 use NO_CURSOR if cursor_in_non_selected_windows is false.
17430
17431 * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
17432 the slant attribute if FRAME is t.
17433
17434 * xfns.c (x_set_internal_border_width): Set frame garbaged
17435 when X window doesn't exist yet.
17436
17437 * xterm.c (x_after_update_window_line): Clear internal border
17438 in different circumstances.
17439
17440 * xterm.c (XTread_socket) <KeyPress>: Don't use
17441 STRING_CHAR_AND_LENGTH if nchars == nbytes. From Kenichi Handa
17442 <handa@etl.go.jp>.
17443
17444 2001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
17445
17446 * m/ibms390.h: New file. From Adam Thornton
17447 <athornton@sinenomine.net>.
17448
17449 2001-10-28 Gerd Moellmann <gerd@gnu.org>
17450
17451 * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
17452
17453 * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
17454 a loop counter.
17455
17456 2001-10-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17457
17458 * emacs.c: Use argv[0] instead of "emacs" when -t was specified.
17459
17460 * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
17461 keyword].
17462 Fix typos in comments.
17463
17464 * emacs.c (bug_reporting_address): New function.
17465 Use it when displaying usage message.
17466
17467 * minibuf.c (read_minibuf): Remove unused external declaration of
17468 variable `Qread_only'.
17469
17470 * keymap.c (access_keymap): Remove unused variable `charset'.
17471
17472 2001-10-28 Miles Bader <miles@gnu.org>
17473
17474 * xfaces.c (merge_face_heights): Handle TO being relative as well.
17475 Remove #ifdef'd-out code.
17476 (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
17477 (syms_of_xfaces): Initialize them.
17478
17479 2001-10-27 Jason Rumney <jasonr@gnu.org>
17480
17481 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
17482 <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
17483 position using the system caret.
17484
17485 * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
17486 (w32_system_caret_height, w32_system_caret_x)
17487 (w32_system_caret_y): New variables for tracking system caret.
17488 (w32_initialize): Initialize them.
17489 (x_display_and_set_cursor): Make system caret follow the active cursor.
17490
17491 * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
17492 New messages types.
17493
17494 * w32term.c (note_mouse_highlight): Clear old help_echo.
17495
17496 2001-10-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17497
17498 * xterm.c: Fix typo in a comment.
17499
17500 * emacs.c: Fix typos in comments.
17501 Remove unnecessary spaces.
17502 Change doc-string comments to `new style' [w/`doc:' keyword].
17503 (USAGE2): Fix typos in usage string.
17504
17505 * xterm.c: Fix typo in a comment.
17506
17507 * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
17508 emacs.c.
17509
17510 2001-10-27 Gerd Moellmann <gerd@gnu.org>
17511
17512 * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
17513 instead of 1/2 line_height in the heuristic for skipping
17514 farther backward when target_y was not reached.
17515
17516 * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
17517 Display errno only if non-zero.
17518 (sound_warning): New function.
17519 (vox_configure): Don't treat failing to set sample rate as error.
17520 (various places): Improve error messages.
17521
17522 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
17523
17524 * fileio.c (Faccess_file): Run the argument filename through
17525 Fexpand_file_name, before using it.
17526
17527 * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
17528 ring-bell-function. Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
17529
17530 2001-10-26 Gerd Moellmann <gerd@gnu.org>
17531
17532 * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
17533
17534 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
17535 Fix clearing in the case of scroll bars on the right.
17536
17537 2001-10-26 Juanma Barranquero <lektu@terra.es>
17538
17539 * w32gui.h (XImage): Add a dummy typedef.
17540
17541 2001-10-26 Gerd Moellmann <gerd@gnu.org>
17542
17543 * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
17544
17545 2001-10-25 Eli Zaretskii <eliz@is.elta.co.il>
17546
17547 * frame.c (Fframe_parameter): Fix last change.
17548
17549 * fileio.c: Revert last change (which removed old commented-out
17550 version of expand-file-name). Add a comment that explains why
17551 this old version should not be removed.
17552
17553 2001-10-25 Gerd Moellmann <gerd@gnu.org>
17554
17555 * frame.c (Fframe_parameter): Fix a bug whereby some
17556 ``artificial'' frame parameters, like `minibuffer' were not
17557 obtained by calling Fframe_parameters.
17558
17559 * xterm.c (show_mouse_face): Clean up. Recognize overwritten
17560 cursor differently.
17561
17562 * xdisp.c (move_it_vertically_backward): Compute line height
17563 differently. Add heuristic to try to be more compatible to 20.x.
17564
17565 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
17566
17567 * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
17568
17569 * editfns.c (text_property_stickiness): Fix Lisp_Object used as
17570 boolean.
17571
17572 2001-10-25 Miles Bader <miles@gnu.org>
17573
17574 * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
17575 BG is a pointer to a structure, not a structure.
17576 (gif_format, png_format): Add missing commas.
17577
17578 2001-10-24 Richard M. Stallman <rms@gnu.org>
17579
17580 * xfaces.c (Fface_attributes_as_vector): New function.
17581 (syms_of_xfaces): Defsubr it.
17582
17583 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17584
17585 * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
17586 variable `area'.
17587
17588 2001-10-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17589
17590 * search.c (scan_newline): Remove unused variable `selective_display'.
17591
17592 2001-10-25 Miles Bader <miles@gnu.org>
17593
17594 * dispextern.h (struct image): Add `background',
17595 `background_valid', and `background_transparent' fields.
17596 (image_background, image_background_transparent): New declarations.
17597 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
17598 * xfns.c (image_background, image_background_transparent)
17599 (four_corners_best): New functions.
17600 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
17601 (gs_format): Add `:background' entry.
17602 (lookup_image): Set IMG's background color if specified.
17603 (pbm_load, xbm_load_image, png_load): Set IMG's background field
17604 when appropriate.
17605 (x_clear_image_1): Reset `background_valid' and
17606 `background_transparent_valid' fields.
17607 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
17608 calculating it here. Set IMG's background_transparent field.
17609 (enum xpm_keyword_index): Add XPM_BACKGROUND.
17610 (enum png_keyword_index): Add PNG_BACKGROUND.
17611 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
17612 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
17613 (enum gif_keyword_index): Add GIF_BACKGROUND.
17614 (enum gs_keyword_index): Add GS_BACKGROUND.
17615 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
17616 Pre-calculate image background color where necessary.
17617 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
17618 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
17619 color to use for image glyph reliefs.
17620
17621 2001-10-24 Gerd Moellmann <gerd@gnu.org>
17622
17623 * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
17624 in full-width rows.
17625
17626 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
17627 Fix clearing of area not covered by scroll bar.
17628
17629 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17630
17631 * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
17632 and `real_start'.
17633 (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
17634 (glyph_rect): Remove unused variable `area'.
17635
17636 2001-10-24 Gerd Moellmann <gerd@gnu.org>
17637
17638 * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
17639
17640 * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
17641 (row_containing_pos): Take additional argument DY.
17642 Treat rows ending in middle of char differently.
17643 (display_line): Handle tabs on window systems differently.
17644
17645 * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
17646 with additional argument.
17647
17648 * dispextern.h (row_containing_pos): Adjust prototype.
17649
17650 * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
17651 (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
17652 (try_window_id, try_window_reusing_current_matrix)
17653 (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
17654 (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
17655
17656 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17657
17658 * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
17659 gnuemacs).
17660 (HAVE_BOXES): Fix typo in comment.
17661 (push_menu_pane): Fix typo in comment.
17662
17663 * xdisp.c: (display_prop_string_p): Remove unused local declaration
17664 of `Qwhen'.
17665 (single_display_prop_string_p): Remove unused local declarations
17666 of `Qwhen' and `Qmargin'.
17667 (string_buffer_position): Remove unused variable `around'.
17668 (store_frame_title): Remove unused variable `width'.
17669
17670 * window.c: Don't define max.
17671 (coordinates_in_window): Remove unused variable `uy'.
17672
17673 * widget.c: Don't define max.
17674
17675 * process.c: Don't define max.
17676 (create_process): Remove unused variable `buffer'.
17677
17678 2001-10-23 Gerd Moellmann <gerd@gnu.org>
17679
17680 * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
17681
17682 2001-10-23 Eli Zaretskii <eliz@is.elta.co.il>
17683
17684 * xfaces.c (Finternal_set_lisp_face_attribute)
17685 [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
17686 frame is on a windowed display.
17687
17688 2001-10-23 Gerd Moellmann <gerd@gnu.org>
17689
17690 * dispnew.c (sync_window_with_frame_matrix_rows):
17691 Fix handling of windows which aren't full-width, fix handling
17692 of marginal areas.
17693
17694 * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
17695
17696 2001-10-23 Andreas Schwab <schwab@suse.de>
17697
17698 * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
17699 LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
17700
17701 2001-10-23 Gerd Moellmann <gerd@gnu.org>
17702
17703 * xterm.c (x_draw_glyphs): Remove parameters READ_START and
17704 REAL_END. Notice if cursor gets overwritten.
17705 (notice_overwritten_cursor): Take X positions as parameters.
17706 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
17707 around call to x_draw_glyphs.
17708
17709 2001-10-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17710
17711 * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
17712 instead of C) and usage.
17713
17714 * editfns.c (char-to-string): Fix argument names (use CHAR instead
17715 of C) and usage.
17716
17717 * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
17718 `left', `max_width' and `max_height'.
17719
17720 2001-10-23 Gerd Moellmann <gerd@gnu.org>
17721
17722 * xdisp.c (display_line): For a tab continued to the next line,
17723 set row's ends_in_middle_of_char_p.
17724
17725 2001-10-22 Gerd Moellmann <gerd@gnu.org>
17726
17727 * xdisp.c (display_line): Fix computation of continuation lines
17728 width for TABs.
17729
17730 2001-10-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17731
17732 * xdisp.c (build_desired_tool_bar_string): Remove unused variable
17733 `Qlaplace'.
17734
17735 * fileio.c: Remove unused code.
17736
17737 2001-10-22 Miles Bader <miles@gnu.org>
17738
17739 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
17740 (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
17741 Remove `DOC_STRINGS_IN_COMMENTS' cases.
17742
17743 2001-10-21 Jason Rumney <jasonr@gnu.org>
17744
17745 * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
17746
17747 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
17748
17749 * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
17750 (Finsert_string): Avoid the multi-line string literals warning.
17751
17752 2001-10-22 Miles Bader <miles@gnu.org>
17753
17754 * doc.c (Vhelp_manyarg_func_alist): Variable removed.
17755 (Fdocumentation): Don't use it.
17756 (syms_of_doc): Don't initialize it.
17757
17758 * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
17759 * print.c (Fwith_output_to_temp_buffer): Likewise.
17760 * window.c (Fsave_window_excursion): Likewise.
17761 * editfns.c (Fsave_excursion, Fsave_current_buffer)
17762 (Fsave_restriction): Likewise.
17763 * eval.c (Frun_hooks, Frun_hook_with_args)
17764 (Frun_hook_with_args_until_failure)
17765 (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
17766 (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
17767 (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
17768 (Funwind_protect, Fcondition_case): Likewise.
17769 * coding.c (Ffind_operation_coding_system): Likewise.
17770 * keyboard.c (Ftrack_mouse): Likewise.
17771
17772 2001-10-21 Miles Bader <miles@gnu.org>
17773
17774 * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
17775 (Fmake_hash_table): Add usage: string to doc string.
17776 * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
17777 (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
17778 (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
17779 * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
17780 (Fml_prefix_argument_loop): Likewise.
17781
17782 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17783
17784 * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
17785
17786 * sysdep.c (init_sys_modes): Change doc-string comments to `new
17787 style' [w/`doc:' keyword].
17788
17789 * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
17790 * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
17791 comments to `new style' [w/`doc:' keyword].
17792
17793 2001-10-21 Jason Rumney <jasonr@gnu.org>
17794
17795 * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
17796
17797 * w32term.c (remember_mouse_glyph): New function.
17798 (w32_mouse_position): Use it.
17799 (note_mouse_movement): If the mouse moved off the glyph, remember
17800 its new position.
17801
17802 * w32term.h (struct w32_output): Correct spelling of x_compatible.
17803 (w32_display_info): Add mouse_face_overlay.
17804
17805 * w32term.c (notice_overwritten_cursor): Renamed from
17806 note_overwritten_text_cursor. Rewritten to take glyph widths into
17807 account.
17808 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
17809 (fast_find_string_pos): New function.
17810 (fast_find_position): Return the correct vpos. Add parameter
17811 STOP. In the final row, stop before glyphs having STOP as object.
17812 Don't consider glyphs that are not from a buffer.
17813 (fast_find_position) [0]: Add a presumably more correct version
17814 for after 21.1.
17815 (expose_window_tree, expose_frame): Don't compute intersections here.
17816 (expose_window): Do it here instead.
17817 (expose_window_tree, expose_window, expose_line): Return 1 when
17818 overwriting mouse-face.
17819 (expose_window): If W is the window currently being updated, mark
17820 the frame garbaged.
17821 (expose_frame): If mouse-face was overwritten, redo it.
17822 (x_use_underline_position_properties): New variable.
17823 (syms_of_xterm): DEFVAR_BOOL it.
17824 (x_draw_glyph_string): Add comment to use it in future.
17825 (x_draw_glyph_string): Restore clipping after drawing box.
17826 Fix a computation of the underline position.
17827 (w32_get_glyph_string_clip_rect): Minor cleanup.
17828 (x_fill_stretch_glyph_string): Remove an assertion.
17829 (x_produce_glyphs): Don't convert multibyte characters
17830 to unibyte characters in unibyte buffers.
17831 (cursor_in_mouse_face_p): New function.
17832 (x_draw_stretch_glyph_string): Use it to choose a different GC
17833 when drawing a cursor within highlighted text. Don't draw
17834 background again if it has already been drawn.
17835 (x_draw_glyph_string_box): Don't draw a full-width
17836 box just because the glyph row's full_width_p flag is set.
17837 (x_draw_glyphs): Fix computation of rightmost x for
17838 full-width rows.
17839 (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
17840 (w32_draw_relief_rect): Extend left shadow to the bottom and left;
17841 change bottom shadow accordingly. Some cleanup.
17842 (x_update_window_end): Handle overwritten mouse face
17843 also for tool bar windows.
17844 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
17845 DRAW is DRAW_IMAGE_RAISED.
17846 (clear_mouse_face): Return 1 if text with mouse face was
17847 actually redrawn. Make the function static.
17848 Reset dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
17849 optimize away highlighting if we pass over that same overlay again.
17850 (note_mouse_highlight): Call mouse_face_overlay_overlaps
17851 to detect a case where we have to highlight a different region
17852 despite not having left the currently highlighted region.
17853 Set mouse_face_overlay in the x_display_info. Avoid changing the
17854 mouse pointer shape when show_mouse_face has already done it, or
17855 there is no need. Handle mouse-face and help-echo in strings.
17856 (glyph_rect): New function.
17857 (w32_mouse_position): Use it to raise the threshold for mouse
17858 movement event generation.
17859 (w32_initialize_display_info): Initialize the x_display_info's
17860 mouse_face_overlay.
17861 (w32_set_vertical_scroll_bar): Don't clear a zero height
17862 or width area.
17863 (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
17864 a widget to zero height.
17865
17866 * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
17867 Protect unibyte strings created by replacing their multibyte
17868 equivalents in menu_items.
17869 (w32_menu_show): Don't overwrite an item's name with its key
17870 description in case the description is a multibyte string.
17871 (single_submenu): Some cleanup.
17872
17873 * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
17874 (postprocess_image): New function.
17875 (lookup_image): Call it for all image types except PostScript.
17876 (x_kill_gs_process): Call postprocess_image.
17877 (tiff_error_handler, tiff_warning_handler): New functions.
17878 (tiff_load): Install them as handlers.
17879 (x_kill_gs_process): Recognize if someone has cleared the image
17880 cache under us.
17881 (valid_image_p): Protect better against invalid image
17882 specifications. Previous code could signal an error.
17883 (Fx_hide_tip, Fshow_tip): Doc fix.
17884 (Fv_max_tooltip_size): New variable.
17885 (syns_of_xfns): DEFVAR_LISP it.
17886 (Fx_show_tip): Add parameter TEXT. Set the tip frame's root
17887 window buffer to *tip* right after creating the frame. Set frame's
17888 window_width. Use a maximum tooltip size specified by
17889 Vx_max_tooltip_size, if that has valid contents.
17890 (compute_tip_xy): Add parameters WIDTH and HEIGHT.
17891 Make sure the tooltip is completely visible.
17892 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
17893 (Fx_create_frame): Adjust the frame's height for presence
17894 of the tool bar before calling x_figure_window_size.
17895 (x_set_tool_bar_lines): Clear the tool bar window's current matrix
17896 when the window gets smaller.
17897 (x_set_foreground_color): Set frame's cursor_pixel.
17898 (x_set_foreground_color, x_set_background_color): Cleaned up.
17899 (x_set_font): Handle case of x_new_fontset returning the same name
17900 as before, although there was a change in fontsets.
17901
17902 2001-10-21 Miles Bader <miles@gnu.org>
17903
17904 * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
17905 (Flogxor): Add usage: string to doc string.
17906 * charset.c (Fstring): Likewise.
17907 * callproc.c (Fcall_process_region, Fcall_process): Likewise.
17908 * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
17909
17910 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
17911
17912 * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
17913
17914 * alloc.c: Reindent DEFUNs with doc: keywords.
17915
17916 * abbrev.c (Finsert_abbrev_table_description): Reindent.
17917
17918 * frame.c: Change doc-string comments to `new style' [w/`doc:'
17919 keyword].
17920
17921 See ChangeLog.9 for earlier changes.
17922
17923 ;; Local Variables:
17924 ;; coding: iso-2022-7bit
17925 ;; End:
17926
17927 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
17928 Copying and distribution of this file, with or without modification,
17929 are permitted provided the copyright notice and this notice are preserved.
17930
17931 ;;; arch-tag: 5dcc435f-4038-4141-b3bf-5be51cd76bd4