94fdc7a2e4d1da067cdcd26022079dcc99410042
[bpt/emacs.git] / src / ChangeLog
1 2007-09-04 Jason Rumney <jasonr@gnu.org>
2
3 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
4
5 * keyboard.c (discard_mouse_events): Discard it.
6 (make_lispy_event): Translate it to a lisp event.
7 (lispy_wheel_names): Add wheel-left and right events.
8 (syms_of_keyboard): Enlarge wheel_syms.
9
10 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
11 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
12
13 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
14
15 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
16 from WM_MOUSEHWHEEL.
17 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
18
19 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
20 terminal.
21
22 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
23 keyboard for the terminal.
24
25 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
26
27 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
28 (Vresume_tty_hook): Rename from Vresume_tty_functions.
29 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
30 and resume-tty-function to resume-tty-hook.
31 (Fsuspend_tty, Fresume_tty): Use new names.
32
33 2007-09-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
34
35 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
36 if it starts with "n:".
37
38 2007-08-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
39
40 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
41
42 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
43
44 * frame.h:
45 * frame.c (Qterm_environment_variable): Remove.
46 (syms_of_frame): Don't init and staticpro it.
47
48
49 * callproc.c (getenv_internal): Remove special case for $TERM.
50
51 * callproc.c (Vinitial_environment): New variable.
52 (set_initial_environment): Initialize it.
53 (syms_of_callproc): Declare it.
54 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
55 TERM under which a process runs is never related to the TERM in which
56 Emacs is running.
57
58 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
59
60 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
61 * s/darwin.h: ... do it here.
62
63 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
64
65 * lisp.h (set_initial_environment): Rename from set_global_environment.
66
67 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
68 removed by mistake on the multi-tty branch.
69
70 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
71 (Fmodify_frame_parameters): Return a value.
72
73 * image.c (png_load): Comment-out var only used in commented-out code.
74
75 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
76 before passing it to mark_object.
77
78 * xfaces.c (internal_resolve_face_name): Return a value.
79 (internal_resolve_face_name, resolve_face_name_error): Comment out.
80
81 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
82 (x_icon): Comment-out var only used in commented-out code.
83
84 2007-08-29 Romain Francoise <romain@orebokech.com>
85
86 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
87 QUIT hasn't been provided.
88
89 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
90
91 * callproc.c (child_setup, getenv_internal): Use the
92 display-environment-variable and term-environment-variable frame
93 params.
94 (set_initial_environment): Initialise Vprocess_environment.
95
96 * config.in: Disable multi-keyboard support on a mac.
97
98 * frame.c (Qterm_environment_variable)
99 (Qdisplay_environment_variable): New variables.
100 (syms_of_frame): Intern and staticpro them.
101 (Fmake_terminal_frame): Disable output method test.
102
103 * frame.h: Declare them here.
104
105 * macfns.c (x_set_mouse_color): Get rif from the frame.
106 (x_set_tool_bar_lines): Don't use updating_frame.
107 (mac_window): Add 2 new parameters for consistency with other systems.
108 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
109 frame parameters following what is done in X11 and w32. Don't use
110 FRAME_MAC_DISPLAY_INFO.
111 (Fx_open_connection, start_hourglass): Remove window-system check.
112 (x_create_tip_frame): Get the keyboard from the terminal.
113
114 * macmenu.c: Reorder includes.
115 (Fx_popup_menu): Use terminal specific mouse_position_hook.
116
117 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
118 terminal parameter.
119 (x_clear_frame): Add a frame parameter.
120 (note_mouse_movement): Get rif from the frame.
121 (mac_term_init): Initialize the terminal.
122 (mac_initialize): Make static and move terminal initialization ...
123 (mac_create_terminal): ... to this new function.
124
125 * macterm.h (struct mac_display_info): Add terminal.
126 (mac_initialize): Delete declaration.
127
128 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
129
130 * sysdep.c: Comment out text after #endif.
131
132 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
133 is defined. Better initialize ttys in windows. Use terminal
134 specific mouse_position_hook.
135
136 * termhooks.h (union display_info): Add mac_display_info.
137
138 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
139 Set the default minibuffer frame, window_system and the rest of the
140 frame parameters following what is done in X11.
141
142 * w32term.c (w32_initialize): Make static.
143
144 * xselect.c (x_handle_selection_clear): Only access
145 terminal->kboard when MULTI_KBOARD is defined.
146
147 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
148 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
149
150 2007-08-29 Jason Rumney <jasonr@gnu.org>
151
152 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
153 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
154
155 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
156 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
157
158 * keyboard.c (restore_kboard_configuration): Only define when
159 MULTI_KBOARD defined.
160
161 * makefile.w32-in: Update dependancies from Makefile.in
162 (OBJ1): Add terminal.$(O)
163
164 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
165 Don't define function body.
166 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
167
168 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
169
170 * w32.c (request_sigio, unrequest_sigio): Remove.
171
172 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
173 (w32con_clear_frame, w32con_clear_end_of_line)
174 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
175 (w32con_delete_glyphs, w32con_set_terminal_window)
176 (scroll_line, w32_sys_ring_bell): Add frame arg.
177 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
178 Add terminal arg.
179 (PICK_FRAME): Remove.
180 (w32con_write_glyphs): Use frame specific terminal coding.
181 (one_and_only_w32cons): New global variable.
182 (initialize_w32_display): Use it for storing hooks.
183 (create_w32cons_output): New function.
184
185 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
186 arg a frame.
187
188 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
189 Set window_system.
190 (x_set_tool_bar_lines): Don't use updating_frame.
191 (Fx_create_frame): Set terminal and ref count.
192 (Fx_open_connection): Remove window-system check.
193
194 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
195
196 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
197 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
198 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
199 Add frame arg.
200 (x_delete_terminal, w32_create_terminal): New functions.
201 (w32_term_init): Create a terminal.
202 (w32_initialize): Move terminal specific initialization to
203 w32_create_terminal.
204
205 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
206 (w32_clear_rect, w32_clear_area): Use background from frame.
207 (w32_display_info): Add terminal.
208 (w32_sys_ring_bell, x_delete_display): Declare here.
209
210 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
211
212 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
213
214 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
215
216 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
217 Fix get_named_tty calls for the controlling tty.
218
219 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
220
221 * term.c (dissociate_if_controlling_tty)[USG]: Fix parse error.
222
223 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
224
225 * term.c (tty_insert_glyphs): Add missing first parameter.
226
227 2007-08-29 Karoly Lorentey <karoly@lorentey.hu>
228
229 * buffer.c (Fbuffer_list, Fbury_buffer):
230 Take frame->buried_buffer_list into account.
231
232 * cm.c (current_tty): New variable, for cmputc().
233 (cmputc): Use it.
234 (cmcheckmagic): Add tty parameter, look up terminal streams there.
235 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
236 (cmgoto): Add tty parameter. Pass it on to calccost().
237 Use emacs_tputs() instead of tputs().
238
239 * cm.h (emacs_tputs): New macro to set current_tty, and then call
240 tputs().
241 (current_tty): New variable, for cmputc().
242 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
243
244 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
245 (internal_condition_case, internal_condition_case_1)
246 (internal_condition_case_2): Don't abort when x_catching_errors.
247
248 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
249 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
250 prevent crashes caused by bogus longjmps in read_char.
251
252 * keymap.h (Fset_keymap_parent): Add EXFUN.
253
254 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
255 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
256 Remove redundant definition.
257
258 * macfns.c (x_set_mouse_color, x_make_gc):
259 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
260
261 * w32term.c (x_free_frame_resources):
262 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
263 (w32_initialize): Use the accessor macros for terminal characteristics.
264
265 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
266 Use the accessor macros for terminal characteristics.
267 * msdos.c (internal_terminal_init): Use the accessor macros for
268 terminal characteristics.
269 (ScreenVisualBell, internal_terminal_init):
270 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
271
272 * termopts.h (no_redraw_on_reenter): Declare.
273
274 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
275 (mark_terminals, mark_ttys): Declare.
276 (Fgarbage_collect): Call them.
277 (mark_object): Mark buried_buffer_list.
278
279 * prefix-args.c: Include stdlib.h for exit.
280
281 * syssignal.h: Add comment.
282
283 * indent.c: Include stdio.h.
284
285 * window.h (Vinitial_window_system): Declare.
286 (Vwindow_system): Delete declaration.
287
288 * fontset.c (Finternal_char_font): Use FRAME_RIF.
289
290 * image.c (lookup_image): Don't initialize `c' until the xasserts
291 have been run.
292
293 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
294 FRAME_FOREGROUND_PIXEL.
295
296 * print.c (print_preprocess): Don't lose print_depth levels while
297 iterating.
298
299 * widget.c (update_from_various_frame_slots):
300 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
301
302 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
303 frames.
304 (window_internal_height): Remove bogus make_number call.
305 (init_window_once): Call make_terminal_frame with two zero parameters.
306
307 * fileio.c (Fread_file_name): Update comment.
308
309 * callint.c (Fcall_interactively):
310 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
311 Make sure it is correctly unwound.
312
313 * xsmfns.c (x_session_close): New function.
314
315 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
316 Delete declarations.
317
318 * xterm.h: Remove declaration for x_fully_uncatch_errors.
319 (x_output): Remove background_pixel and foreground_pixel fields.
320 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
321 (x_delete_device):
322 (x_session_close): Declare.
323
324 * lread.c: Include setjmp.h. Update declaration of `read_char'.
325 (read_filtered_event): Call `read_char' with a local
326 `wrong_kboard_jmpbuf'.
327
328 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
329 Don't call single_kboard_state. Use FRAME_RIF.
330
331 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
332 systems.
333
334 * lisp.h (set_process_environment): Rename to `set_global_environment'.
335 (Fframe_with_environment, Fset_input_meta_mode)
336 (Fset_quit_char): EXFUN.
337 (x_create_device, tty_output, terminal, tty_display_info): Declare.
338 (init_sys_modes, reset_sys_modes): Update prototypes.
339 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
340
341 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
342 Vlocal_key_translation_map, and Vkeyboard_translate_table.
343 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
344 Delete declarations.
345 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
346 (temporarily_switch_to_single_kboard, tty_read_avail_input):
347 New declarations.
348
349 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
350 already does that during init_display(). Call syms_of_keymap
351 before syms_of_keyboard. Call `syms_of_terminal'.
352 Call set_initial_environment, not set_process_environment.
353 (shut_down_emacs): Call reset_all_sys_modes() instead of
354 reset_sys_modes().
355
356 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
357 (internal_resolve_face_name, resolve_face_name_error): New functions.
358 (resolve_face_name): Protect against loops and errors thrown by Fget.
359 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
360 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
361
362 * scroll.c: Replace CURTTY() with local variables throughout the
363 file (where applicable).
364 (calculate_scrolling, calculate_direct_scrolling)
365 (scrolling_1, scroll_cost): Use the accessor macros for terminal
366 characteristics.
367
368 * keymap.c (Vfunction_key_map): Remove.
369 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
370 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
371 (Vkey_translation_map): Remove.
372 (syms_of_keymap): Remove DEFVAR for key-translation-map.
373 (Fdescribe_buffer_bindings):
374 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
375 Update for terminal-local key-translation-map.
376
377 * Makefile.in (callproc.o): Update dependencies.
378 (lisp, shortlisp): Add termdev.elc.
379 (obj): Add terminal.o.
380 (terminal.o): Add dependencies.
381 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
382 (data.o, fns.o): Add termhooks.h dependency.
383 (SOME_MACHINE_LISP): Add dnd.elc.
384 (minibuf.o): Fix typo.
385 Update dependencies.
386
387 * data.c (do_symval_forwarding, store_symval_forwarding)
388 (find_symbol_value): Use the selected frame's keyboard, not
389 current_kboard.
390
391 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
392 Vwindow_system.
393
394 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
395 Fmenu_bar_open.
396 (syms_of_xmenu): Update defsubr.
397 (mouse_position_for_popup, Fx_popup_menu)
398 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
399 (set_frame_menubar, free_frame_menubar)
400 (create_and_show_popup_menu, xmenu_show, )
401 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
402 an X frame.
403
404 * xselect.c (x_own_selection): Abort if not an X frame.
405 (some_frame_on_display): Check if it is an X frame.
406 (x_handle_selection_clear): Deal with MULTI_KBOARD.
407
408 * coding.c: Include frame.h and termhooks.h.
409 (terminal_coding, keyboard_coding): Delete.
410 (Fset_terminal_coding_system_internal):
411 (Fset_keyboard_coding_system_internal):
412 (Fkeyboard_coding_system):
413 (Fterminal_coding_system): Add a terminal parameter.
414 Get terminal_coding from the terminal.
415 (init_coding_once): Don't call setup_coding_system here.
416
417 * dispextern.h (set_scroll_region, turn_off_insert)
418 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
419 (tty_clear_end_of_line, tty_setup_colors)
420 (delete_tty, updating_frame)
421 (produce_special_glyphs, produce_glyphs, write_glyphs)
422 (insert_glyphs): Remove.
423 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
424 (tty_turn_off_highlight, get_tty_size): Add declaration.
425 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
426
427 * frame.h (enum output_method): Add output_initial.
428 (struct x_output): Delete.
429 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
430 Access foreground_pixel and background_pixel directly from the frame.
431 (tty_display): Delete.
432 (struct frame): Add buried_buffer_list, foreground_pixel,
433 background_pixel and terminal. Delete kboard
434 (union output_data): Add tty.
435 (FRAME_KBOARD): Get the kboard from the terminal.
436 (FRAME_INITIAL_P): New macro.
437 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
438 (Qterm_environment_variable, Qdisplay_environment_variable)
439 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
440 New declarations.
441
442 * termchar.h (tty_output, tty_display_info): New structures.
443 (tty_list): Declare.
444 (FRAME_TTY, CURTTY): New macros.
445 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
446 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
447 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
448 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
449
450 * callproc.c: Include frame.h and termhooks.h, for terminal
451 parameters.
452 (add_env): New function.
453 (child_setup): Use it.
454 (child_setup, getenv_internal): Handle the new Vprocess_environment.
455 (getenv_internal): Fix get_terminal_param call.
456 (Fgetenv_internal, egetenv): Update doc.
457 (syms_of_callproc): Initialize Vprocess_environment to nil.
458 Register and initialize them. Remove obsolete defvars. Update doc
459 strings.
460 (child_setup): Handle Vlocal_environment_variables.
461 (getenv_internal): Add terminal parameter.
462 Handle Vlocal_environment_variables.
463 (Fgetenv_internal): Add terminal parameter.
464 (child_setup, getenv_internal, Fgetenv_internal): Store the local
465 environment in a frame (not terminal) parameter. Update doc strings.
466 (set_initial_environment): Rename from set_global_environment.
467 Store Emacs environment in initial frame parameter.
468
469 * xdisp.c (redisplay_internal): Update references to
470 `previous_terminal_frame'.
471 (display_mode_line, Fformat_mode_line): Replace calls to
472 `push_frame_kboard' with `push_kboard'.
473 (get_glyph_string_clip_rects): Add extra parentheses and
474 braces to prevent compiler warnings.
475 (calc_pixel_width_or_height): Add xassert to check that the
476 frame is alive. Don't call `lookup_image' on a termcap frame.
477 (message2_nolog, message3_nolog, redisplay_internal)
478 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
479 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
480 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
481 (Fx_display_pixel_width, Fx_display_pixel_height)
482 (Fx_display_planes, Fx_display_color_cells)
483 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
484 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
485 (Fx_display_backing_store, Fx_display_visual_class)
486 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
487 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
488
489 * xfns.c (x_set_foreground_color x_set_background_color)
490 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
491 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
492 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
493 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
494 terminal that is being deleted.
495 (Fx_create_frame): Use `store_frame_param' to set `window-system'
496 frame parameter, and make sure it overrides any user-supplied setting.
497 (Fx_close_connection, Fx_synchronize): Unify argument names with
498 the rest of the DEFUNs.
499
500 * dispnew.c (Fsend_string_to_terminal): Update call to
501 `get_tty_terminal'.
502 (Fredraw_frame, Fsend_string_to_terminal)
503 (Fsend_string_to_terminal, init_display): User FRAME_RIF,
504 FRAME_TERMCAP_P and FRAME_TTY.
505 (window_change_signal): Don't believe width/height values that are
506 impossibly small.
507 (Vinitial_window_system): Rename from Vwindow_system.
508 (termscript, Wcm, rif): Delete.
509
510 * termhooks.h (struct terminal): New struct containing the
511 previously global text display hooks and new members NAME,
512 DELETED and PARAM_ALIST.
513 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
514 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
515 (FRAME_RIF): New macros.
516 (get_terminal_param, get_device): New declarations.
517 (termscript): Delete declaration.
518
519 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
520 (XTflash, x_free_frame_resources, x_scroll_bar_create)
521 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
522 FRAME_FOREGROUND_PIXEL.
523 (x_fully_uncatch_errors): Disable definition.
524 (x_scroll_bar_expose): Fix reference to foreground pixel.
525 (XTread_socket): Disable loop on all X displays.
526 (x_delete_terminal): Don't set terminal->deleted and let
527 delete_terminal delete the frames on the terminal.
528 (x_delete_display): Doc update to reflect changes in
529 delete_terminal.
530 (x_display_info) <terminal>: Move member earlier in the struct.
531 (x_delete_terminal): Use terminal->deleted. Delete all frames on
532 the display explicitly.
533 (deleting_tty): Remove old variable.
534 (Fsuspend_tty): Call clear_tty_hooks.
535 (Fresume_tty, init_tty): Call set_tty_hooks.
536 (clear_tty_hooks, set_tty_hooks): New functions.
537 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
538 errors on X frames.
539 (x_catch_errors_unwind): Abort if x_error_message is NULL.
540 (handle_one_xevent): Initialize `f' to NULL.
541 (x_delete_device, x_create_device): New functions.
542 (XTset_terminal_modes, XTreset_terminal_modes)
543 (XTread_socket, x_connection_closed, x_term_init)
544 (x_term_init, x_delete_display): Add terminal parameter.
545 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
546 X connections.
547
548 * frame.c (Fframep): Deal with output_initial.
549 (Qbuffer_predicate, Qbuffer_list, Qburied_buffer_list, Qtty)
550 (Qtty_type, Qwindow_system, Qenvironment)
551 (Qterm_environment_variable, Qdisplay_environment_variable): New vars.
552 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
553 (make_terminal_frame): Don't create frames on a terminal that is
554 being deleted.
555 (make_terminal_frame): Use FRAME_BACKGROUND_PIXEL and
556 FRAME_FOREGROUND_PIXEL.
557 (store_frame_param): Check for found_for_frame before calling XFRAME.
558 (Fmake_terminal_frame): Handle NULL tty names correctly.
559 (syms_of_frame): Enhance doc string of `default-frame-alist'.
560 (Fdelete_frame): Remove unused variable `count'.
561 (Qenvironment): New variable.
562 (Fdelete_frame): Don't allow other frames to refer to a deleted
563 frame in their 'environment parameter.
564 (Fframe_with_environment): New function.
565 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
566 (get_future_frame_param): New function.
567 (Fmake_terminal_frame): Use it.
568
569 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
570 * sysdep.c (reset_sys_modes): Update for renames.
571
572 * keyboard.c (tty_read_avail_input): New function.
573 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
574 (syms_of_keyboard): Defsubr them.
575 (Fset_input_meta_mode, Fset_quit_char): New functions.
576 (Fset_input_mode): Split to above functions.
577
578 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
579 parameter. Use it in call to `read_char'.
580 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
581 Set wrong_kboard_jmpbuf correctly in recursive calls.
582 Use current_kboard to access Vkeyboard_translate_table.
583 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
584 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
585 Update longjmp invocations. Remember the original current_kboard,
586 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
587 changes it. Comment out unnecessary calls to
588 `record_single_kboard_state' and `any_kboard_state'.
589 Update recursive calls.
590 (wrong_kboard_jmpbuf): Remove global variable.
591 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
592 Handle deleted interrupted_kboards correctly; that is a legal
593 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
594 and read_char calls. Abort if interrupted_kboard died in read_char.
595 (any_kboard_state, single_kboard_state)
596 (push_frame_kboard): Remove function.
597 (pop_kboard): Switch out of single_kboard mode if the kboard has
598 been deleted. Remove unused variable. Help debugging by not
599 changing current_kboard unnecessarily. Set current_kboard to the
600 kboard of the selected frame when the stored kboard object has
601 been deleted before pop_kboard.
602 (temporarily_switch_to_single_kboard): Change first parameter to a
603 frame pointer. Throw an error when caller wants to change kboards
604 while in single_kboard mode. Don't push_kboard if we weren't in
605 single kboard state. Don't pop_kboard if we popped into any
606 kboard state.
607 (restore_kboard_configuration): Abort if pop_kboard changed the
608 kboard in single_kboard mode. Call pop_kboard only after setting
609 up single_kboard mode.
610 (Frecursive_edit): Switch to single_kboard mode only in nested
611 command loops.
612 (cmd_error, command_loop, command_loop_1, timer_check):
613 Comment out unnecessary call to `any_kboard_state' and
614 `record_single_kboard_state'.
615 (delete_kboard): Exit single_kboard mode if we have just deleted
616 that kboard. Use FRAME_KBOARD.
617 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
618 `fatal_error_signal'.
619 (record_single_kboard_state): Don't push_kboard if we weren't in
620 single kboard state. Don't pop_kboard if we popped into any
621 kboard state.
622 (push_frame_kboard): Rename to push_kboard.
623 (kbd_buffer_get_event): Use FRAME_TERMINAL.
624 (read_avail_input): Read input from all terminals.
625 (mark_kboards): Also mark Vkeyboard_translate_table.
626 (kbd_buffer_store_event_hold): Simplify condition.
627 (read_key_sequence): Reinitialize fkey and keytran at each replay.
628 (Vkeyboard_translate_table): Move to struct kboard.
629 (init_kboard): Initialize Vkeyboard_translate_table.
630 (syms_of_keyboard): Use DEFVAR_KBOARD to define
631 Vkeyboard_translate_table. Update doc strings. Update docs of
632 local-function-key-map and function-key-map.
633
634 * terminal.c: New file.
635
636 * term.c: Include errno.h.
637 (Vring_bell_function, device_list, initial_device)
638 (next_device_id, ring_bell, update_begin, update_end)
639 (set_terminal_window, cursor_to, raw_cursor_to)
640 (clear_to_end, clear_frame, clear_end_of_line)
641 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
642 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
643 (syms_of_term): Move their initialization to terminal.c.
644 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
645 (Ftty_display_color_cells)
646 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
647 (init_tty, maybe_fatal): New functions.
648 (Ftty_type): Return nil if terminal is not on a tty instead of
649 throwing an error. Doc update.
650 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
651 Doc update. Initialize new subrs and variables.
652 (delete_tty): Use terminal->deleted.
653 (tty_set_terminal_modes): Rename from set_terminal_modes.
654 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
655 (set_scroll_region): Rename to `tty_set_scroll_region'.
656 (turn_on_insert): Rename to `tty_turn_on_insert'.
657 (turn_off_insert): Rename to `tty_turn_off_insert'.
658 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
659 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
660 (toggle_highligh): Rename to `tty_toggle_highlight'.
661 (background_highlight): Rename to `tty_background_highlight'.
662 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
663 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
664 (tty_set_scroll_region, tty_background_highlight)
665 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
666 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
667 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
668 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
669 Add static modifier.
670 (tty_reset_terminal_modes, tty_set_terminal_window)
671 (tty_set_scroll_region, tty_background_highlight)
672 (tty_highlight_if_desired, tty_cursor_to)
673 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
674 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
675 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
676 renames.
677
678 2007-08-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
679
680 * keyboard.c: Qrtl is new.
681 (parse_tool_bar_item): Handle :rtl keyword.
682 (syms_of_keyboard): Intern :rtl keyword.
683
684 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
685
686 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
687 so no Lisp code is executed.
688 (file_for_image, find_rtl_image): New functions.
689 (xg_get_image_for_pixmap): Use file_for_image
690 (update_frame_tool_bar): If direction is RTL, use RTL image if
691 defined. Use Gtk stock images if defined.
692
693 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
694
695 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
696 for nonexistent or zero-width glyph in composition glyph.
697
698 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
699
700 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
701
702 * xdisp.c (Finvisible_p): New function.
703 (syms_of_xdisp): defsubr it.
704
705 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
706
707 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
708 Doc fixes.
709
710 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
711
712 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
713
714 2007-08-24 Martin Rudalics <rudalics@gmx.at>
715
716 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
717 whether decoding has modified buffer contents.
718
719 2007-08-24 Jason Rumney <jasonr@gnu.org>
720
721 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
722 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
723 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
724 (init_svg_functions) [HAVE_NTGUI]: New function.
725 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
726 (svg_load_image): Use them.
727 (svg_load_image) [HAVE_NTGUI]: Implement background.
728
729 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
730
731 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
732 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
733 (LIBX): Remove @RSVG_LIBS@.
734 (LIBES): Add $(RSVG_LIBS).
735
736 * image.c (svg_load_image): Blend with specified background if exists.
737 Use IMAGE_BACKGROUND. Add Mac OS Support.
738
739 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
740 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
741 Remove macros.
742 [MAC_OSX] (socket_callback): Do nothing.
743 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
744 ReceiveNextEvent.
745 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
746 socket_callback.
747 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
748
749 2007-08-22 Glenn Morris <rgm@gnu.org>
750
751 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
752
753 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
754
755 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
756
757 * image.c: Add support for SVG images. Some additional comments
758 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
759 (svg_image_p): New function to test for SVG image.
760 (svg_load): New function to load SVG image.
761 (svg_load_image): New function, helper for svg_load.
762 (Qsvg): New Lisp_object.
763 (svg_keyword_index): New enum.
764 (svg_format): New static `image_keyword' struct.
765 (svg_type): New static `image_type' struct.
766 (librsvg/rsvg.h): Include it.
767
768 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
769
770 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
771
772 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
773
774 * lread.c (Qold_style_backquotes): New var.
775 (syms_of_lread): Init and staticpro it.
776 (load_warn_old_style_backquotes): New fun.
777 (Fload): Use them to warn about old style backquotes.
778 (end_of_file_error, Fload): Remove unused vars.
779
780 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
781
782 * lread.c (Vold_style_backquotes): New var.
783 (syms_of_lread): Init and export it to Elisp.
784 (read1): Set it when we find an old-style (back)quote.
785
786 2007-08-22 Jason Rumney <jasonr@gnu.org>
787
788 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
789
790 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
791
792 * puresize.h (BASE_PURESIZE): Increase to 1140000.
793
794 2007-08-19 Richard Stallman <rms@gnu.org>
795
796 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
797
798 2007-08-19 Andreas Schwab <schwab@suse.de>
799
800 * alloc.c (pure): Round PURESIZE up.
801
802 2007-08-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
803
804 * xterm.c (handle_one_xevent): Remove check that mouse click is in
805 active frame.
806
807 2007-08-16 Richard Stallman <rms@gnu.org>
808
809 * eval.c (Fcommandp): Add parens to clarify.
810
811 * minibuf.c (Fall_completions): Use enum for type of table.
812
813 * emacs.c (USAGE2): Improve text.
814
815 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
816
817 * term.c (tty_default_color_capabilities): Declare static
818 variables in file scope, to avoid HPUX compiler problem.
819
820 2007-08-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
821
822 * gtkutil.c (update_frame_tool_bar): Use -1 as index
823 to gtk_toolbar_insert.
824
825 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
826
827 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
828
829 * insdel.c (reset_var_on_error): New fun.
830 (signal_before_change, signal_after_change):
831 Use it to reset (after|before)-change-functions to nil in case of error.
832 Bind inhibit-modification-hooks to t.
833 Don't bind (after|before)-change-functions to nil while they run.
834
835 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
836
837 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
838 filling pixmap with stippled background.
839
840 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
841
842 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
843 Don't use invisible frame as parent window for repositioning.
844
845 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
846
847 * print.c (new_backquote_output): Rename from old_backquote_output.
848 (print): Inverse its logic (according to its name) so as to match the
849 behavior of new_backquote_flag in lread.c.
850
851 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
852
853 * gmalloc.c (posix_memalign): New function.
854
855 * macterm.c (frame_highlight, frame_unhighlight): Don't call
856 ActivateControl/DeactivateControl here.
857 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
858 frame-notice-user-settings is non-nil.
859 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
860 for kEventParamFMFontStyle.
861 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
862 mac_pass_command_to_system and mac_pass_control_to_system here.
863 (XTread_socket): Call ActivateControl/DeactivateControl here.
864 (XTread_socket) [TARGET_API_MAC_CARBON]:
865 Check mac_pass_command_to_system and mac_pass_control_to_system here.
866 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
867 for window repositioning.
868
869 2007-08-08 Glenn Morris <rgm@gnu.org>
870
871 * Replace `iff' in doc-strings and comments.
872
873 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
874
875 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
876
877 2007-08-07 Martin Rudalics <rudalics@gmx.at>
878
879 * fileio.c (Finsert_file_contents): Run format-decode and
880 after_insert_file_functions on entire buffer when REPLACE is
881 non-nil and inhibit modification_hooks and point_motion_hooks.
882 For consistency, run after_insert_file_functions iff something
883 got inserted. Move signal_after_change and update_compositions
884 after code running after_insert_file_functions. Make sure that
885 undo_list doesn't record intermediate steps of the decoding process.
886
887 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
888
889 * emacs.c (main)
890 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
891 Call malloc_enable_thread on interactive startup.
892
893 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
894 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
895 [USE_PTHREAD]: Conditionalize with it.
896 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
897 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
898 New functions.
899
900 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
901
902 * xdisp.c (redisplay_window): When restoring original buffer
903 position, make sure it is still valid.
904
905 * image.c (png_load): Ignore png-supplied background color.
906
907 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
908
909 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
910 Use kCFAbsoluteTimeIntervalSince1970.
911
912 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
913 New variable.
914 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
915 event loop should be quit.
916 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
917 Quit dialog event loop if quit_dialog_event_loop is set.
918
919 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
920 (Selection): New typedef. Use instead of ScrapRef.
921 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
922 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
923 (mac_clear_selection): Rename from clear_scrap.
924 (get_flavor_type_from_symbol): New argument SEL and subsume function of
925 scrap_has_target_type. All uses changed.
926 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
927 (mac_selection_has_target_p): New functions.
928 (mac_put_selection_value): Rename from put_scrap_string.
929 (mac_get_selection_value): Rename from get_scrap_string.
930 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
931 (put_scrap_private_timestamp, scrap_has_target_type)
932 (get_scrap_private_timestamp): Remove functions.
933 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
934 (x_own_selection, x_get_local_selection):
935 Use mac_valid_selection_value_p.
936 (x_own_selection): Don't use put_scrap_private_timestamp.
937 Record OWNERSHIP-INFO into Vselection_alist instead.
938 (x_get_local_selection): Don't check type if request is local.
939 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
940 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
941
942 2007-08-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
943
944 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
945 add comment explaining why.
946
947 2007-08-03 Richard Stallman <rms@gnu.org>
948
949 * fileio.c (Fvisited_file_modtime): Use make_time.
950
951 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
952
953 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
954 build.
955
956 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
957
958 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
959
960 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
961
962 * puresize.h (BASE_PURESIZE): Increase to 1130000.
963
964 2007-07-30 Richard Stallman <rms@gnu.org>
965
966 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
967
968 2007-07-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
969
970 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
971
972 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
973
974 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
975 remote default-directory.
976
977 * buffer.c (mode-line-format): Update doc string.
978
979 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
980
981 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
982 scroll bar gap.
983 (x_scroll_bar_create): Set bar->fringe_extended_p.
984 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
985 on frame edge. Check fringe background extension. Don't clear
986 extended fringe background area.
987
988 * w32term.h (struct scroll_bar): New member fringe_extended_p.
989 (w32_fill_area): Enclose multiple statements with do ... while (0).
990
991 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
992 Extend fringe background to scroll bar gap.
993 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
994 Set bar->fringe_extended_p.
995 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
996 Put leftmost/rightmost scroll bars on frame edge. Check fringe
997 background extension. Don't clear extended fringe background area.
998
999 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
1000 New member fringe_extended_p.
1001
1002 2007-07-25 Glenn Morris <rgm@gnu.org>
1003
1004 * Relicense all FSF files to GPLv3 or later.
1005
1006 * COPYING: Switch to GPLv3.
1007
1008 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
1009
1010 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
1011
1012 * data.c (Finteractive_form): Check for the presence of an
1013 `interactive-form' symbol property more thoroughly.
1014
1015 * data.c (Finteractive_form): Use an `interactive-form' property if
1016 present, analogous to the function-documentation property.
1017
1018 2007-07-24 Jason Rumney <jasonr@gnu.org>
1019
1020 * w32fns.c (x_real_positions): Get real position from OS instead of
1021 calculating it.
1022
1023 2007-07-23 Jason Rumney <jasonr@gnu.org>
1024
1025 * filelock.c (current_lock_owner): Allow for @ sign in username.
1026
1027 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
1028
1029 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
1030 remote default-directory.
1031
1032 * buffer.c (mode-line-format): Describe above case in doc string.
1033
1034 2007-07-20 Eli Zaretskii <eliz@gnu.org>
1035
1036 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
1037 Define if not defined.
1038
1039 2007-07-18 Jason Rumney <jasonr@gnu.org>
1040
1041 * w32proc.c (w32_executable_type): Handle 64 bit executables.
1042
1043 2007-07-18 Richard Stallman <rms@gnu.org>
1044
1045 * data.c (Fsetq_default): Doc fix.
1046
1047 * eval.c (Fsetq): Doc fix.
1048
1049 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
1050
1051 * coding.c (Ffind_operation_coding_system):
1052 * eval.c (For, Fand): Doc fixes.
1053 Reported by Johan Bockg\e,Ae\e(Brd.
1054
1055 2007-07-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1056
1057 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
1058
1059 * xterm.h: Declare x_ewmh_activate_frame.
1060
1061 * xterm.c (x_ewmh_activate_frame): New function.
1062 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
1063
1064 2007-07-17 Martin Rudalics <rudalics@gmx.at>
1065
1066 * window.c (Fdisplay_buffer): If largest or LRU window is the
1067 only window, split it even if it is not eligible for splitting.
1068 This restores the original behavior broken by the 2007-07-15
1069 change.
1070
1071 2007-07-17 Glenn Morris <rgm@gnu.org>
1072
1073 * abbrev.c (abbrev_check_chars): New function.
1074 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
1075 Call abbrev_check_chars to check abbrev characters are word
1076 constituents. Doc fix.
1077
1078 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
1079
1080 * process.c (Fstart_process, Fmake_network_process)
1081 (read_process_output): Fix up last changes.
1082
1083 2007-07-16 Eli Zaretskii <eliz@gnu.org>
1084
1085 * makefile.w32-in (clean): Don't delete *~.
1086
1087 2007-07-16 Andreas Schwab <schwab@suse.de>
1088
1089 * window.c (Fdisplay_buffer): Use NILP.
1090 (Fset_window_scroll_bars): Likewise.
1091
1092 2007-07-15 Martin Rudalics <rudalics@gmx.at>
1093
1094 * window.c (window_min_size_2): New function.
1095 (window_min_size_1, size_window, Fdisplay_buffer)
1096 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
1097 windows without mode- or header-lines when window-min-height is
1098 too small.
1099 (size_window): Reset nodelete_p after testing it, following an
1100 earlier note by Kim F. Storm.
1101 (display_buffer): Do not set split_height_threshold to twice the
1102 value of window_min_height to avoid changing the value of a
1103 customizable variable. Rather explicitly check whether the
1104 height of the window that shall be splitted is at least as large
1105 as split_height_threshold.
1106
1107 2007-07-14 Jason Rumney <jasonr@gnu.org>
1108
1109 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
1110
1111 2007-07-14 Richard Stallman <rms@gnu.org>
1112
1113 * eval.c (maybe_call_debugger): New function.
1114 (find_handler_clause): Use maybe_call_debugger.
1115 Call it when the handler says `debug'.
1116 Eliminate DEBUGGER_VALUE_PTR.
1117 (Fsignal): Eliminate debugger_value.
1118 (Qdebug): New variable.
1119 (syms_of_eval): Initialize it.
1120
1121 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
1122
1123 * eval.c (Fprogn):
1124 * keyboard.c (Ftrack_mouse):
1125 * print.c (Fwith_output_to_temp_buffer):
1126 * window.c (Fsave_window_excursion): Doc fix.
1127
1128 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
1129
1130 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
1131
1132 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
1133
1134 * process.h (struct Lisp_Process): Turn slots infd, outfd,
1135 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
1136 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
1137 read_output_delay, and read_output_skip from Lisp_Objects to ints.
1138 Remove unused encoding_carryover.
1139 * process.c: Adjust all functions accordingly.
1140
1141 2007-07-12 Richard Stallman <rms@gnu.org>
1142
1143 * term.c: Include unistd.h only if HAVE_UNISTD_H.
1144
1145 2007-07-11 Jason Rumney <jasonr@gnu.org>
1146
1147 * makefile.w32-in (LIBS): Include OLE32.
1148
1149 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
1150 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
1151
1152 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
1153
1154 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
1155 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
1156 from a Lisp_Object into a bare pointer.
1157 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
1158 Adjust the code correspondingly.
1159
1160 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
1161
1162 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
1163 (term_show_mouse_face): Remove unused var `j'.
1164 (handle_one_term_event): Remove unused vars `i' and `j'.
1165 Don't cast return value of ttyname since it's not necessary.
1166
1167 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
1168
1169 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
1170 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
1171
1172 * fns.c (map_char_table): Use an array of int for `indices' rather than
1173 an array of Lisp_Objects (which are only ever integers anyway).
1174 (Fmap_char_table): Update caller.
1175 * lisp.h: Update prototype.
1176 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
1177 * fontset.c (Ffontset_info):
1178 * casetab.c (set_case_table): Update callers.
1179
1180 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
1181
1182 * keymap.c (struct accessible_keymaps_data)
1183 (struct where_is_internal_data): New structures.
1184 (accessible_keymaps_1, where_is_internal_1): Use them to change
1185 interface to adhere to the one used by map_keymap.
1186 (Faccessible_keymaps, where_is_internal): Use map_keymap.
1187 (accessible_keymaps_char_table, where_is_internal_2): Remove.
1188
1189 * keymap.h (map_keymap_function_t): More informative prototype.
1190
1191 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
1192
1193 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
1194 (looking_at_1): Don't change search_regs and last_thing_searched
1195 if `inhibit-changing-match-data' is non-nil.
1196 (string_match_1, search_buffer, set_search_regs): Likewise.
1197 (syms_of_search): Add Lisp level definition for
1198 `inhibit-changing-match-data' and set it to nil.
1199 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
1200 start and end of the match, instead of using values in search_regs.
1201
1202 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
1203
1204 * minibuf.c (Fcompleting_read): New value `confirm-only'
1205 for `require-match'.
1206
1207 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
1208
1209 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
1210 part of the 2007-06-27 change to syms_of_fileio.
1211
1212 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1213
1214 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
1215 Check WINDOWP before using XWINDOW. Consolidate return statements.
1216
1217 2007-06-27 Richard Stallman <rms@gnu.org>
1218
1219 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
1220
1221 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
1222
1223 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
1224
1225 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1226
1227 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
1228 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
1229 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
1230 (_free_internal, memalign): Use them.
1231 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
1232 Initialize to PTHREAD_MUTEX_INITIALIZER.
1233 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
1234 (morecore_nolock): Rename from morecore. All uses changed.
1235 Use only nolock versions of internal allocation functions.
1236 (_malloc_internal_nolock, _realloc_internal_nolock)
1237 (_free_internal_nolock): New functions created from
1238 _malloc_internal, _realloc_internal, and _free_internal.
1239 (_malloc_internal, _realloc_internal, _free_internal): Use them.
1240 Copy hook value to automatic variable before its use.
1241 (memalign): Copy hook value to automatic variable before its use.
1242
1243 2007-06-26 Kenichi Handa <handa@m17n.org>
1244
1245 * coding.c (Ffind_operation_coding_system): Docstring improved.
1246 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
1247
1248 2007-06-25 David Kastrup <dak@gnu.org>
1249
1250 * keymap.c (Fcurrent_active_maps): Add `position' argument.
1251 (Fwhere_is_internal): Adjust call to `current-active-maps' to
1252 cater for additional parameter.
1253
1254 * keymap.h: Adjust number of parameters to `current-active-maps'.
1255
1256 * doc.c (Fsubstitute_command_keys): Adjust call of
1257 `current-active-maps'.
1258
1259 2007-06-25 David Kastrup <dak@gnu.org>
1260
1261 * callint.c (Fcall_interactively): Make the parsing of interactive
1262 specs somewhat more readable.
1263
1264 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1265
1266 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
1267 to scroll bar gap also when bitmap fills fringe. Draw only foreground
1268 if extended background has already been filled.
1269
1270 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1271
1272 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
1273 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
1274
1275 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
1276 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
1277 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
1278 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
1279 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
1280 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
1281 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
1282 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
1283 Run timers during dialog popup.
1284 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
1285
1286 2007-06-21 Jason Rumney <jasonr@gnu.org>
1287
1288 * image.c (convert_mono_to_color_image): Swap fore and background.
1289
1290 2007-06-20 Jason Rumney <jasonr@gnu.org>
1291
1292 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
1293 (w32_free_bdf_font): Unmap memory not handle.
1294
1295 2007-06-20 Sam Steingold <sds@gnu.org>
1296
1297 * gmalloc.c (__morecore): Fix the declaration to comply with the
1298 definition.
1299
1300 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
1301
1302 * w32term.c (w32_delete_display): Remove leftover declaration.
1303 (w32_define_cursor, w32_initialize): Make static.
1304
1305 * w32.c (_wsa_errlist): Fix typo in error message.
1306 (init_environment): Ignore any environment variable from the
1307 registry having a null value.
1308
1309 2007-06-20 Glenn Morris <rgm@gnu.org>
1310
1311 * Makefile.in (LIBGIF): Default to -lgif.
1312
1313 2007-06-17 Jason Rumney <jasonr@gnu.org>
1314
1315 * w32menu.c (add_menu_item): Don't use multibyte string functions on
1316 unicode strings.
1317
1318 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
1319
1320 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
1321 Fix typo in docstring.
1322
1323 2007-06-16 Eli Zaretskii <eliz@gnu.org>
1324
1325 * w32menu.c (add_menu_item): Escape `&' characters in menu items
1326 and their keybindings.
1327
1328 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
1329
1330 * composite.c (update_compositions): Fix last fix.
1331
1332 2007-06-14 Jason Rumney <jasonr@gnu.org>
1333
1334 * w32.c (get_process_times_fn): New function pointer.
1335 (globals_of_w32): Intialize it if present in kernel32.dll.
1336 (w32_get_internal_run_time): New function.
1337
1338 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
1339
1340 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
1341
1342 * composite.c (update_compositions): Check the validness of
1343 compositions.
1344
1345 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1346
1347 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
1348 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
1349
1350 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
1351 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
1352
1353 * macgui.h (USE_MAC_TOOLBAR): New define.
1354
1355 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
1356 Return immediately unless popup is activated.
1357
1358 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
1359 background to scroll bar gap.
1360 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
1361 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
1362 scroll bars on frame edge. Check fringe background extension.
1363 Don't clear extended fringe background area.
1364 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
1365 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
1366 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
1367 [USE_MAC_TOOLBAR]: New macros.
1368 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
1369 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
1370 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
1371 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
1372 [USE_MAC_TOOLBAR]: New functions.
1373 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
1374 manually if previous repositioning has failed.
1375 (mac_handle_keyboard_event): Use precomputed event kind.
1376 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
1377 as tool bar item click. Handle mouse movement over tool bar items.
1378
1379 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
1380 toolbar_win_gravity.
1381 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
1382 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
1383 Add externs.
1384
1385 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
1386 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
1387
1388 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
1389
1390 * image.c (search_image_cache): Remove unused variable.
1391
1392 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
1393
1394 * xfns.c, xmenu.c: Link to xaw3d if available.
1395
1396 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1397
1398 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
1399 frame_foreground and frame_background.
1400
1401 * image.c (lookup_image): Save frame foreground and background colors.
1402 (search_image_cache): Check if saved and current frame colors match.
1403
1404 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
1405
1406 * regex.c (regex_compile): Remove the `regnum' counter.
1407 Use bufp->re_nsub instead. Add support for \(?N:RE\).
1408
1409 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
1410
1411 * term.c: Include intervals.h to declare Fget_text_property.
1412
1413 2007-06-10 Jason Rumney <jasonr@gnu.org>
1414
1415 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
1416
1417 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
1418
1419 * callint.c (Fcall_interactively):
1420 * editfns.c (Fdelete_and_extract_region):
1421 * fileio.c (Fread_file_name):
1422 * fns.c (Fmapconcat):
1423 * keyboard.c (cmd_error_internal):
1424 * keymap.c (Fkey_description):
1425 * lread.c (openp):
1426 * minibuf.c (read_minibuf):
1427 * search.c (wordify):
1428 * sunfns.c (sel_read):
1429 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
1430 * xfns.c (x_default_scroll_bar_color_parameter):
1431 * xmenu.c (menu_help_callback):
1432 * xselect.c (Fx_get_atom_name):
1433 * xterm.c (x_term_init): Use empty_unibyte_string.
1434
1435 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
1436
1437 * alloc.c (init_strings): Initialize canonical empty strings.
1438 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
1439 canonical empty string when the requested size is 0.
1440
1441 * emacs.c (empty_unibyte_string): Rename from empty_string.
1442 (empty_multibyte_string): New canonical empty string.
1443 (syms_of_emacs): Don't initialize empty_string.
1444
1445 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
1446 string, if appropriate.
1447 (empty_unibyte_string, empty_multibyte_string): New externs.
1448 (empty_string): Remove extern.
1449
1450 * lread.c (syms_of_lread): Use empty_unibyte_string.
1451
1452 2007-06-07 Jason Rumney <jasonr@gnu.org>
1453
1454 * s/ms-w32.h: Don't define HAVE_TZNAME.
1455
1456 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
1457
1458 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1459
1460 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
1461
1462 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
1463 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
1464
1465 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
1466 Don't call next handler.
1467 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
1468 Remove argument. Install handler to application.
1469 (set_frame_menubar): Don't change deep_p.
1470 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
1471 FRAME_OUTER_TO_INNER_DIFF_Y.
1472 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
1473 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
1474 [HAVE_DIALOGS]: New macros.
1475 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
1476 Use them.
1477 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
1478
1479 * macselect.c [MAC_OSX] (install_service_handler): Rename from
1480 init_service_handler. All callers changed. Return OSStatus value.
1481
1482 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
1483 All callers changed so as not to call SetPortWindowPort.
1484 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
1485 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
1486 mac_draw_string_common.
1487 (mac_draw_image_string_qd): Likewise.
1488 (mac_draw_string_common): Use them. Add INLINE.
1489 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
1490 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
1491 GetGlobalMouse.
1492 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
1493 and FRAME_OUTER_TO_INNER_DIFF_Y.
1494 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
1495 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
1496 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
1497 repositioning window to mac_handle_window_event.
1498 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
1499 saving window location to mac_handle_window_event
1500 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
1501 (install_menu_target_item_handler): Remove argument in extern.
1502 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
1503 Also accept command events.
1504 (do_keystroke): New function created from XTread_socket.
1505 (init_command_handler): Remove functions.
1506 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
1507 and save window location by kEventWindowShowing and kEventWindowHiding
1508 handlers here. Don't call next handler for window state change and
1509 focus events.
1510 (mac_handle_application_event, mac_handle_keyboard_event)
1511 [TARGET_API_MAC_CARBON]: New functions.
1512 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
1513 kEventWindowShowing and kEventWindowHiding events. Move installation
1514 of mouse, font, text input and menu target item handlers to
1515 install_application_handler.
1516 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
1517 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
1518 New function.
1519 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
1520 Register it.
1521 (XTread_socket) [TARGET_API_MAC_CARBON]:
1522 Consolidate SendEventToEventTarget calls.
1523 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
1524 Move application activation handler to mac_handle_application_event.
1525 Move keyboard handler to mac_handle_keyboard_event.
1526 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
1527 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
1528 init_command_handler. Call install_application_handler.
1529
1530 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
1531 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
1532
1533 2007-06-07 Glenn Morris <rgm@gnu.org>
1534
1535 * emacs.c (main): Use `emacs-copyright' in --version output.
1536
1537 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
1538
1539 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
1540
1541 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1542
1543 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
1544
1545 * macgui.h: Replace WindowPtr with WindowRef.
1546
1547 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
1548 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
1549 Replace ControlHandle with ControlRef.
1550 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
1551
1552 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
1553 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
1554 Replace ControlHandle with ControlRef.
1555 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
1556 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
1557
1558 * macterm.h (struct scroll_bar): Rename member control_handle_low
1559 and control_handle_high to control_ref_low and control_ref_high.
1560 All uses changed.
1561 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
1562 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
1563 respectively. All uses changed.
1564 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
1565 (install_window_handler, remove_window_handler): Replace WindowPtr
1566 with WindowRef in externs.
1567
1568 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
1569
1570 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
1571
1572 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
1573
1574 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
1575
1576 * frame.c (Fmouse_position, Fmouse_pixel_position):
1577 Condition on HAVE_GPM too.
1578
1579 * term.c (term_mouse_highlight): Remove unused variables.
1580 (Fterm_open_connection): Set gpm_zerobased to 1.
1581 (term_mouse_movement, term_mouse_click, handle_one_term_event):
1582 Use zero based co-ordinates.
1583 (handle_one_term_event): Report a drag as mouse movement too.
1584
1585 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
1586
1587 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
1588
1589 * image.c (search_image_cache): New function. Require background
1590 color match if background color is unspecified in the image spec.
1591 (uncache_image, lookup_image): Use it.
1592
1593 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
1594
1595 * window.c (Fshrink_window): Reflow docstring.
1596
1597 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
1598
1599 * Version 22.1 released.
1600
1601 2007-06-01 Richard Stallman <rms@gnu.org>
1602
1603 * xfns.c (x_encode_text): Add GCPRO.
1604
1605 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1606
1607 * xfns.c (x_set_name_internal): Save encoded name before
1608 x_encode_text in case string data is relocated.
1609
1610 2007-05-31 Richard Stallman <rms@gnu.org>
1611
1612 * buffer.c (syms_of_buffer): Doc fix.
1613
1614 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
1615
1616 * sysdep.c (init_sys_modes): Add rather than replace with
1617 O_NONBLOCK.
1618
1619 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
1620 term_mouse_moveto.
1621
1622 * termhooks.h (term_mouse_moveto): New extern.
1623
1624 * term.c (mouse_face_window): Rename...
1625 (Qmouse_face_window): ...to this.
1626 (term_show_mouse_face, term_clear_mouse_face)
1627 (term_mouse_highlight): Use Qmouse_face_window.
1628 (term_mouse_moveto): New function.
1629 (term_mouse_position): Make it work.
1630 (syms_of_term): Uncomment assignment to mouse_position_hook.
1631 Staticpro Qmouse_face_window.
1632
1633 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1634
1635 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
1636 around current_column call.
1637
1638 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
1639
1640 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
1641 * xdisp.c (next_element_from_buffer):
1642 * window.c (delete_window):
1643 * term.c (term_mouse_highlight):
1644 * msdos.c (getdefdir):
1645 * macterm.c (mac_create_bitmap_from_bitmap_data)
1646 (init_font_name_table):
1647 * fns.c (Fsxhash):
1648 * data.c (Fmake_local_variable):
1649 * ccl.c (ccl_driver): Likewise.
1650
1651 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1652
1653 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
1654 Call mac_wakeup_from_rne on window size change.
1655
1656 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
1657
1658 * image.c (uncache_image): Fix typo.
1659
1660 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
1661
1662 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
1663
1664 2007-05-22 Richard Stallman <rms@gnu.org>
1665
1666 * xterm.c (x_connection_closed): Remove NO_RETURN.
1667
1668 2007-05-22 Martin Rudalics <rudalics@gmx.at>
1669
1670 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
1671
1672 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
1673
1674 * image.c (uncache_image): New function.
1675 (Fimage_refresh): New function.
1676
1677 2007-05-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1678
1679 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
1680
1681 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
1682
1683 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
1684 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
1685
1686 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
1687
1688 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
1689 conditional on [HAVE_GPM_H].
1690
1691 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
1692
1693 * syntax.c (skip_chars): Update syntax-table only after we checked that
1694 the new location is valid.
1695
1696 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1697
1698 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
1699 mac_get_window_bounds.
1700
1701 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
1702
1703 * Makefile.in (LIBGPM): Allow it to be set from configure.
1704 If set then link Emacs with it.
1705
1706 * config.in: Regenerate.
1707
1708 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
1709 New externs.
1710
1711 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
1712 Include gpm.h.
1713 (handle_one_term_event, term_gpm): New externs.
1714
1715 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
1716 and allow it to be interrupted by SIGIO.
1717
1718 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
1719 (wait_reading_process_output): Wait on gpm_fd too.
1720 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
1721 (add_gpm_wait_descriptor_called_flag): New variable.
1722 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
1723
1724 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
1725 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
1726 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
1727 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
1728 (make_lispy_event): Add case GPM_CLICK_EVENT.
1729 (read_avail_input): Handle mouse input.
1730
1731 * term.c (write_glyphs_with_face): New function.
1732 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
1733 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
1734 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
1735 (mouse_face_face_id, term_gpm, pos_x, pos_y)
1736 (last_mouse_x, last_mouse_y): New variables.
1737 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
1738 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
1739 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
1740 (Fterm_close_connection): New functions.
1741 (term_init): Initialise mouse_face_window.
1742
1743 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
1744
1745 * xdisp.c (redisplay_window): If first window line is a
1746 continuation line, recompute the new window start instead of
1747 recentering.
1748
1749 2007-05-18 Glenn Morris <rgm@gnu.org>
1750
1751 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
1752 Suggested by Alfred M. Szmidt <ams@gnu.org>.
1753
1754 2007-05-17 Glenn Morris <rgm@gnu.org>
1755
1756 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
1757
1758 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1759
1760 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
1761 dead key repeat and up events.
1762
1763 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
1764
1765 * image.c (pbm_load): Check image size for monochrome pbm.
1766
1767 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
1768
1769 * xterm.c (XTread_socket): Revert last change.
1770
1771 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
1772
1773 * image.c (pbm_load): Correctly check image size for greyscale pbm.
1774
1775 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
1776
1777 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
1778
1779 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
1780 mixup (YAILOM).
1781
1782 2007-05-07 Andreas Schwab <schwab@suse.de>
1783
1784 * keymap.c (Flookup_key): Fix typo in last change.
1785
1786 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
1787
1788 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
1789 mapping for unibyte strings.
1790
1791 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1792
1793 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
1794 (Fx_popup_dialog) [MAC_OSX]: Likewise.
1795
1796 2007-04-29 Richard Stallman <rms@gnu.org>
1797
1798 * insdel.c (replace_range): For undo, record insertion first.
1799
1800 2007-04-29 Andreas Schwab <schwab@suse.de>
1801
1802 * lisp.h (VECSIZE): Use OFFSETOF.
1803
1804 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1805
1806 * xdisp.c (try_window_reusing_current_matrix): Fix number of
1807 disabled lines.
1808
1809 2007-04-28 Richard Stallman <rms@gnu.org>
1810
1811 * lread.c (read_escape): In a string, \s is always space.
1812
1813 2007-04-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1814
1815 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
1816
1817 * gtkutil.c (xg_update_menubar, create_menus): Create empty
1818 submenu for menu bar items.
1819
1820 2007-04-24 Chong Yidong <cyd@stupidchicken.com>
1821
1822 * Branch for 22.1.
1823
1824 2007-04-24 Chong Yidong <cyd@stupidchicken.com>
1825
1826 * xdisp.c (redisplay_window): Use BEG_UNCHANGED and END_UNCHANGED
1827 values of the actual window.
1828
1829 2007-04-23 Richard Stallman <rms@gnu.org>
1830
1831 * process.c (Fstart_process): Doc fix.
1832
1833 2007-04-23 Eli Zaretskii <eliz@gnu.org>
1834
1835 * process.c (Fstart_process): Doc fix.
1836
1837 2007-04-22 Richard Stallman <rms@gnu.org>
1838
1839 * abbrev.c (Fdefine_abbrev): Doc fix.
1840
1841 * keymap.c (Fdefine_key): Minor doc fix.
1842
1843 2007-04-21 Glenn Morris <rgm@gnu.org>
1844
1845 * keymap.c (Fdefine_key): Fix info ref in doc string.
1846
1847 2007-04-20 Glenn Morris <rgm@gnu.org>
1848
1849 * sysdep.c (init_system_name): Don't accept localhost.localdomain.
1850
1851 2007-04-19 Juanma Barranquero <lekktu@gmail.com>
1852
1853 * minibuf.c (Fminibuffer_contents, Fminibuffer_contents_no_properties)
1854 (Fminibuffer_completion_contents, Fdelete_minibuffer_contents):
1855 Doc fixes.
1856
1857 2007-04-16 Chong Yidong <cyd@stupidchicken.com>
1858
1859 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay):
1860 Set garbaged flag in presence of window margins.
1861 (showing_window_margins_p): New function.
1862
1863 * xdisp.c (cursor_row_p): Only end row on newline if it's a
1864 display string. Suggested by Lennart Borgman.
1865
1866 2007-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1867
1868 * alloc.c (mem_insert): Set min_heap_address and max_heap_address
1869 if they are not yet initialized.
1870
1871 2007-04-15 Chong Yidong <cyd@stupidchicken.com>
1872
1873 * xdisp.c (redisplay_window): When deciding whether or not to
1874 recenter, don't use the reset values of BEG_UNCHANGED and
1875 END_UNCHANGED.
1876
1877 2007-04-13 Kim F. Storm <storm@cua.dk>
1878
1879 * buffer.c (Fkill_buffer): gcpro BUF during kill_buffer_processes
1880 and check that buffer is still alive upon return.
1881
1882 2007-04-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1883
1884 * macterm.c [!TARGET_API_MAC_CARBON]: Include Displays.h.
1885 (mac_screen_config_changed): New variable.
1886 (mac_handle_dm_notification, init_dm_notification_handler)
1887 (mac_get_screen_info): New functions.
1888 [MAC_OS8] (main): Call init_dm_notification_handler.
1889 (mac_initialize) [MAC_OSX]: Likewise.
1890 (XTread_socket): Call mac_get_screen_info if screen config changed.
1891 (mac_initialized): Make static.
1892 (mac_initialize_display_info): Remove function.
1893 (mac_term_init): Call mac_get_screen_info. Add partial contents of
1894 mac_initialize_display_info.
1895
1896 2007-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1897
1898 * mac.c (xrm_get_preference_database, Fmac_get_preference)
1899 [TARGET_API_MAC_CARBON]: Use CFPreferencesAppSynchronize.
1900
1901 * macterm.c [TARGET_API_MAC_CARBON] (mac_post_mouse_moved_event):
1902 Use GetGlobalMouse instead of GetMouse and LocalToGlobal.
1903 (mac_initialize_display_info) [MAC_OSX]: Use CGRectZero.
1904 (mac_initialize_display_info) [!MAC_OSX]: dpyinfo->height and
1905 dpyinfo->width are those of whole screen.
1906
1907 2007-04-10 Chong Yidong <cyd@stupidchicken.com>
1908
1909 * xdisp.c (note_mode_line_or_margin_highlight): Don't decrement
1910 glyph pointer before start of glyph row.
1911
1912 2007-04-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1913
1914 * s/darwin.h (__restrict, struct kboard): Remove outdated workarounds.
1915 (C_SWITCH_SYSTEM): Remove `-I../mac/src'.
1916
1917 2007-04-09 Martin Rudalics <rudalics@gmx.at>
1918
1919 * indent.c (Fmove_to_column): Set next_boundary with correct start pt.
1920
1921 2007-04-08 Richard Stallman <rms@gnu.org>
1922
1923 * xdisp.c (syms_of_xdisp) <message-log-max>: Default 100.
1924
1925 2007-04-07 Chong Yidong <cyd@stupidchicken.com>
1926
1927 * editfns.c (Ftranspose_regions): Validate interval before setting
1928 text properties.
1929
1930 2007-04-03 Eli Zaretskii <eliz@gnu.org>
1931
1932 * emacs.c (main): Fix instructions for building Emacs for profiling.
1933
1934 2007-04-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1935
1936 * gtkutil.c (xg_update_menubar): Call g_list_next after moving
1937 menu bar item.
1938
1939 2007-04-02 Juanma Barranquero <lekktu@gmail.com>
1940
1941 * print.c (Fprin1_to_string): Use macro SPECPDL_INDEX.
1942
1943 2007-04-01 Chong Yidong <cyd@stupidchicken.com>
1944
1945 * keymap.c (Fcommand_remapping): New optional argument.
1946 (where_is_internal): Use new keymaps argument.
1947 (Fkey_binding): Caller changed.
1948
1949 * keyboard.c (command_loop_1): Caller changed.
1950
1951 2007-03-31 Eli Zaretskii <eliz@gnu.org>
1952
1953 * window.c (Fget_lru_window): Doc fix.
1954
1955 2007-03-30 Chong Yidong <cyd@stupidchicken.com>
1956
1957 * undo.c (Fprimitive_undo): Give clearer error message when trying
1958 to change text properties outside accessible part of buffer.
1959
1960 2007-03-29 Kim F. Storm <storm@cua.dk>
1961
1962 * process.c (wait_reading_process_output) [HAVE_PTYS]:
1963 When EIO happens, clear channel from descriptor masks before raising
1964 SIGCHLD signal to avoid busy loop between read and sigchld_handler.
1965 (sigchld_handler): Remove sleep (2007-03-11 & 2007-03-26 changes).
1966
1967 2007-03-29 Juanma Barranquero <lekktu@gmail.com>
1968
1969 * buffer.c (Fset_buffer_major_mode): Check that BUFFER is valid.
1970
1971 * process.c (Fformat_network_address): Return nil when the
1972 argument vector contains invalid values.
1973
1974 2007-03-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1975
1976 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Define USE_PTHREAD.
1977 [USE_PTHREAD]: Include pthread.h.
1978 (malloc_init_once_control, _malloc_mutex) [USE_PTHREAD]: New variables.
1979 (malloc_initialize_1): New function created from __malloc_initialize.
1980 (__malloc_initialize): Use it.
1981 (LOCK, UNLOCK): New macros to make malloc etc. thread safe.
1982 (_malloc_internal, _free_internal, _realloc_internal): Use them.
1983
1984 * lread.c (readchar): Extend BLOCK_INPUT block to ferror/clearerr.
1985
1986 2007-03-27 Juanma Barranquero <lekktu@gmail.com>
1987
1988 * process.c (Fformat_network_address): Make args array big enough
1989 to format IPv6 addresses.
1990
1991 2007-03-27 Glenn Morris <rgm@gnu.org>
1992
1993 * m/hp800.h: Restore HP-UX support (removed 2007-01-29).
1994
1995 2007-03-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1996
1997 * macfns.c (Fx_display_mm_height, Fx_display_mm_width): Scale whole
1998 screen size in pixels by millimeters per pixel of main display.
1999
2000 * macselect.c (get_scrap_target_type_list, x_own_selection):
2001 Move assignments outside predicate macros.
2002 (Vselection_converter_alist): Doc fix.
2003
2004 * macterm.c (create_text_encoding_info_alist): Move assignments
2005 outside predicate macros.
2006 (mac_initialize_display_info) [MAC_OSX]: dpyinfo->height and
2007 dpyinfo->width are those of whole screen.
2008
2009 2007-03-26 Sam Steingold <sds@gnu.org>
2010
2011 * process.c (sigchld_handler): Delay by 1ms instead of 1s to
2012 alleviate sluggishness (the original problem is still fixed).
2013
2014 2007-03-25 Kim F. Storm <storm@cua.dk>
2015
2016 * intervals.c (merge_properties): Use explicit loop instead of
2017 Fplist_member to avoid QUIT. Don't use Fcdr.
2018 (intervals_equal): Likewise. Rewrite loop to perform length check
2019 on the fly rather than calling Flength. Don't use Fcar.
2020
2021 2007-03-24 Eli Zaretskii <eliz@gnu.org>
2022
2023 * editfns.c (Fgoto_char): Doc fix.
2024
2025 * indent.c (Findent_to): Doc fix.
2026
2027 2007-03-24 Chong Yidong <cyd@stupidchicken.com>
2028
2029 * editfns.c (Ftranspose_regions): Use set_text_properties_1
2030 instead of Fset_text_properties to avoid GC. Signal after change.
2031
2032 2007-03-24 Eli Zaretskii <eliz@gnu.org>
2033
2034 * xfns.c (Fx_show_tip): Doc fix.
2035
2036 * macfns.c (Fx_show_tip): Doc fix.
2037
2038 * w32fns.c (Fx_show_tip): Doc fix.
2039
2040 2007-03-23 Kim F. Storm <storm@cua.dk>
2041
2042 * intervals.c (merge_properties, intervals_equal):
2043 Use Fplist_member instead of Fmemq to find properties.
2044
2045 2007-03-23 Glenn Morris <rgm@gnu.org>
2046
2047 * unexhp9k800.c: Restore file with clarified legal status.
2048 * m/sr2k.h: Restore since dependency unexhp9k800.c is restored.
2049
2050 2007-03-22 Chong Yidong <cyd@stupidchicken.com>
2051
2052 * widget.c (EmacsFrameSetCharSize): Catch X errors.
2053
2054 2007-03-22 Kenichi Handa <handa@m17n.org>
2055
2056 * fileio.c (Fcopy_file): Call barf_or_query_if_file_exists with
2057 non-encoded file name.
2058 (Frename_file): Likewise.
2059 (Fadd_name_to_file): Likewise.
2060 (Fmake_symbolic_link): Likewise.
2061
2062 2007-03-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2063
2064 * Makefile.in (alloca.o, gtkutil.o): Depend on systime.h.
2065 (dired.o, editfns.o, fileio.o, msdos.o): Depend on atimer.h.
2066 (dosfns.o, window.o, fns.o, macselect.o): Depend on atimer.h and
2067 systime.h.
2068 (term.o, print.o, lread.o): Depend on blockinput.h, atimer.h, and
2069 systime.h.
2070 (macfns.o): Remove duplicate dependency on systime.h.
2071
2072 * dispnew.c (Fopen_termscript): Add BLOCK_INPUT around fclose.
2073 (Fsend_string_to_terminal): Add BLOCK_INPUT around fwrite.
2074
2075 * fileio.c (do_auto_save_unwind): Add BLOCK_INPUT around fclose.
2076 (Fdo_auto_save): Add BLOCK_INPUT around fwrite.
2077
2078 * keyboard.c (record_char): Add BLOCK_INPUT around fwrite.
2079 (Fopen_dribble_file): Add BLOCK_INPUT around fclose.
2080
2081 * lread.c: Include blockinput.h.
2082 (readchar, Fget_file_char): Add BLOCK_INPUT around getc.
2083 (unreadchar): Add BLOCK_INPUT around ungetc.
2084 (load_unwind): Add BLOCK_INPUT around fclose.
2085
2086 * print.c: Include blockinput.h.
2087 (Fredirect_debugging_output): Add BLOCK_INPUT around fclose.
2088
2089 * process.c (Fmake_network_process) [HAVE_GETADDRINFO]:
2090 Clear immediate_quit before calling freeaddrinfo.
2091 Add BLOCK_INPUT around freeaddrinfo.
2092
2093 * term.c: Include blockinput.h.
2094 (write_glyphs, insert_glyphs): Add BLOCK_INPUT around fwrite.
2095
2096 2007-03-19 Richard Stallman <rms@gnu.org>
2097
2098 * keyboard.c (NUM_RECENT_KEYS): Bump up to 300.
2099
2100 * buffer.c (syms_of_buffer): Doc fix.
2101
2102 2007-03-18 Chong Yidong <cyd@stupidchicken.com>
2103
2104 * image.c (pbm_load): Signal error for invalid image size.
2105
2106 2007-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2107
2108 * macterm.c (note_mouse_movement): Don't return immediately for
2109 LeaveNotify case.
2110
2111 * macmenu.c (popup_activated_flag): New variable.
2112 (x_activate_menubar, mac_menu_show): Set it during menu tracking.
2113 (popup_activated): New function.
2114
2115 * xdisp.c (redisplay_internal, note_mouse_highlight):
2116 Check popup_activated for MAC_OS.
2117
2118 2007-03-17 Juanma Barranquero <lekktu@gmail.com>
2119
2120 * buffer.c (syms_of_buffer) <buffer-display-table>: Doc fix.
2121 Reported by Nikolaj Schumacher <n_schumacher@web.de>.
2122
2123 2007-03-17 Richard Stallman <rms@gnu.org>
2124
2125 * dired.c (file_name_completion): gcpro NAME.
2126
2127 2007-03-17 Chong Yidong <cyd@stupidchicken.com>
2128
2129 * xdisp.c (try_window_id): Increment matrix positions if the
2130 buffer's byte count has increased, but not the character count.
2131
2132 2007-03-12 Andreas Schwab <schwab@suse.de>
2133
2134 * lisp.h: Declare check_obarray.
2135
2136 * process.c (Fdelete_process): Properly handle deletion of first
2137 element of deleted_pid_list.
2138 (create_process): Declare pid as pid_t.
2139
2140 2007-03-12 Kim F. Storm <storm@cua.dk>
2141
2142 * process.c (sigchld_handler): Change type of pid to pid_t.
2143 Scan deleted_pid_list explicitly to avoid using Fmember which don't
2144 know about mark bits and make_fixnum_or_float which may malloc.
2145 Reported by Andreas Schwab.
2146
2147 * keyboard.c (read_key_sequence): Store original event into keybuf
2148 when replaying sequence with local keymap(s) from string.
2149
2150 2007-03-12 Glenn Morris <rgm@gnu.org>
2151
2152 * editfns.c (Fdecode_time, Fencode_time): Doc fix ("daylight
2153 savings" to "daylight saving").
2154
2155 2007-03-11 Sam Steingold <sds@gnu.org>
2156
2157 * process.c (sigchld_handler): Sleep before wait3 to avoid a busyloop.
2158
2159 2007-03-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2160
2161 * macfns.c (Fx_server_vendor): Change vendor string to "Apple Inc.".
2162
2163 2007-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2164
2165 * macterm.c [USE_CARBON_EVENTS] (mac_handle_mouse_event):
2166 Ignore mouse wheel movement on title bar or tool bar.
2167
2168 2007-03-10 Chong Yidong <cyd@stupidchicken.com>
2169
2170 * keyboard.c (help_form_saved_window_configs): New var.
2171 (read_char_help_form_unwind): New function.
2172 (read_char): Don't restore window configuration if a mouse click
2173 arrives while the help form is being displayed.
2174
2175 2007-03-10 Kim F. Storm <storm@cua.dk>
2176
2177 * xdisp.c (redisplay_window): Don't automatically select a new window
2178 start for a contination line during mouse-click.
2179
2180 2007-03-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2181
2182 * xterm.c (handle_one_xevent): Ignore buttons > 3 for the tool bar.
2183
2184 2007-03-09 Juanma Barranquero <lekktu@gmail.com>
2185
2186 * keymap.c (Fdescribe_buffer_bindings): Check that BUFFER is valid.
2187
2188 2007-03-08 Richard Stallman <rms@gnu.org>
2189
2190 * keyboard.c (syms_of_keyboard): Doc fix.
2191
2192 2007-03-08 Chong Yidong <cyd@stupidchicken.com>
2193
2194 * minibuf.c (Ftry_completion): Don't short circuit if
2195 completion-ignore-case is non-nil.
2196
2197 2007-03-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2198
2199 * macfns.c (mac_set_scroll_bar_width, mac_frame_parm_handlers):
2200 Undo 2006-03-06 changes.
2201
2202 * macterm.c (XTset_vertical_scroll_bar) [MAC_OSX]: Don't show scroll
2203 bar if its width is smaller than that of Aqua small scroll bar.
2204
2205 2007-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
2206
2207 * minibuf.c (read_minibuf): Bind inhibit-read-only a bit longer so as
2208 to handle correctly prompts with read-only property.
2209
2210 2007-03-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2211
2212 * sound.c (wav_play): Check header->data_length to see how much we
2213 shall read.
2214 (alsa_period_size): Convert ALSA period size in frames to bytes.
2215 (alsa_write): Return if frames is zero.
2216
2217 2007-03-06 Kenichi Handa <handa@m17n.org>
2218
2219 * xselect.c (Vselection_coding_system): Documentation improved.
2220
2221 2007-03-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2222
2223 * macterm.c (x_scroll_bar_create, XTread_socket): Replace #if
2224 USE_TOOLKIT_SCROLL_BARS with #ifdef USE_TOOLKIT_SCROLL_BARS.
2225 (x_set_window_size): Call SET_FRAME_GARBAGED. Clear window if
2226 internal border width has changed.
2227
2228 * macterm.h (struct mac_output): New member `internal_border_width'.
2229
2230 2007-03-04 Richard Stallman <rms@gnu.org>
2231
2232 * window.c (Fdisplay_buffer): Doc fix.
2233
2234 2007-03-03 Glenn Morris <rgm@gnu.org>
2235
2236 * Makefile.in: Don't clear out LIB_X11_LIB, since XFT_LIBS does
2237 not include -lX11 on Solaris.
2238
2239 2007-03-02 Stuart D. Herring <herring@lanl.gov>
2240
2241 * keymap.c (Fkey_binding): Don't consider one-element lists as events.
2242
2243 2007-03-01 Kenichi Handa <handa@m17n.org>
2244
2245 * process.c (send_process_object): Check the process status and
2246 signal an error if something is wrong.
2247
2248 2007-02-28 Chong Yidong <cyd@stupidchicken.com>
2249
2250 * insdel.c (Fcombine_after_change_execute): Return nil if
2251 combine_after_change_buffer has been invalidated.
2252
2253 2007-02-25 Dan Nicolaescu <dann@ics.uci.edu>
2254
2255 * m/xtensa.h: New file.
2256
2257 2007-02-24 Nick Roberts <nickrob@snap.net.nz>
2258
2259 * .gdbinit (xprintstr): Ensure GDB (> 6.6) prints symbol name
2260 as strings and not character arrays.
2261
2262 2007-02-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2263
2264 * macterm.c [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_drag)
2265 (x_set_toolkit_scroll_bar_thumb): Add bar->min_handle as margin to
2266 scroll bar handle size in order to avoid `scroll backward' problem.
2267 (x_scroll_bar_create, XTset_vertical_scroll_bar)
2268 [USE_TOOLKIT_SCROLL_BARS]: Initialize bar->min_handle.
2269
2270 * macterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
2271 New member `min_handle'.
2272
2273 2007-02-23 Kim F. Storm <storm@cua.dk>
2274
2275 * print.c (print): Reset print_number_index if Vprint_number_table
2276 is nil.
2277
2278 2007-02-23 Eli Zaretskii <eliz@gnu.org>
2279
2280 * w32.c (stat, get_long_basename, is_unc_volume): Use _mbspbrk
2281 instead of strpbrk.
2282
2283 2007-02-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2284
2285 * macmenu.c (mac_menu_show): Call unbind_to early. Use variable
2286 `menu_item_selection' as in W32 version.
2287 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Add explicit
2288 braces to avoid ambiguous `else'.
2289
2290 * macterm.c (mac_display_info_for_display): Remove function.
2291 (mac_flush_display_optional) [USE_CG_DRAWING]: New function.
2292 (x_redisplay_interface) [USE_CG_DRAWING]: Set it as handler for
2293 flush_display_optional.
2294 [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_press):
2295 New argument MOUSE_POS. All uses changed. Set bar->dragging to
2296 negative integer if scroll bar handle is pressed.
2297 [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_release):
2298 Negative bar->dragging means scroll bar handle is not dragged.
2299 [USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_handle_drag): Get initial
2300 offset of scroll bar handle from negative bar->dragging.
2301 (XTread_socket) [USE_TOOLKIT_SCROLL_BARS]: Modifiers for scroll
2302 bar click is compared against mapped one. Set down/up_modifier
2303 for scroll bar click event with control key.
2304
2305 * macterm.h (x_display_info_for_display): Remove extern.
2306 (SCROLL_BAR_UNPACK, SET_SCROLL_BAR_CONTROL_HANDLE): Don't limit
2307 value to be unpacked to 32-bit on LP64 model.
2308
2309 2007-02-23 Kenichi Handa <handa@m17n.org>
2310
2311 * process.c (send_process_object_unwind): New function.
2312 (send_process_object): New function.
2313 (Fprocess_send_region): Call send_process_object.
2314 (Fprocess_send_string): Likewise.
2315
2316 2007-02-22 Jason Rumney <jasonr@gnu.org>
2317
2318 * w32menu.c (w32_menu_show): Mark the frame's menu as inactive
2319 when popup menu finishes.
2320
2321 * w32fns.c (menubar_in_use): New flag.
2322 (w32_wnd_proc) <WM_INITMENU, WM_EXITMENULOOP, WM_TIMER, WM_COMMAND>:
2323 Use it.
2324
2325 * w32menu.c (Fx_popup_menu): Don't free menu strings here.
2326 (w32_menu_show): Do it here instead.
2327
2328 * w32fns.c (w32_wnd_proc) <WM_INITMENU>: Set menubar_active frame
2329 parameter.
2330
2331 * w32menu.c (current_popup_menu): Make available globally.
2332 (menubar_selection_callback): Free menu strings before pushing the
2333 menu event into the keyboard buffer. Remove menu_command_in_progress.
2334
2335 * w32fns.c (current_popup_menu): Use from w32menu.c.
2336 (w32_wnd_proc) <WM_EXITMENULOOP, WM_TIMER>: Use menubar_active
2337 and current_popup_menu to determine whether a menubar menu has
2338 been cancelled.
2339
2340 * w32term.h (w32_output): Remove menu_command_in_progress.
2341
2342 2007-02-22 Kim F. Storm <storm@cua.dk>
2343
2344 * dispnew.c (update_frame, update_single_window): Set force_p here if
2345 redisplay_dont_pause is set or Vredisplay_preemption_period is nil...
2346 (update_window, update_frame_1): ... instead of here.
2347 (update_text_area): Clear mouse face on header lines.
2348
2349 2007-02-21 Kim F. Storm <storm@cua.dk>
2350
2351 * minibuf.c (Fassoc_string): Doc fix. Allow symbol for KEY too.
2352
2353 2007-02-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2354
2355 * macterm.c (WINDOW_RESOURCE, TERM_WINDOW_RESOURCE): Remove macros.
2356 [USE_MAC_TSM] (mac_handle_text_input_event): Remove unused variable
2357 `mapped_modifiers'.
2358 (XTread_socket) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1020]: Use Keyboard
2359 Layout Services routines to get current Unicode keyboard layout.
2360
2361 2007-02-20 Chong Yidong <cyd@stupidchicken.com>
2362
2363 * frame.c (x_set_screen_gamma): Apply gamma value to the frame's
2364 bgcolor.
2365
2366 2007-02-19 Kim F. Storm <storm@cua.dk>
2367
2368 * minibuf.c (Fassoc_string): Allow symbols as keys.
2369
2370 * w32term.c (w32_set_scroll_bar_thumb): Don't resize scroll-bar
2371 handle while dragging, except when we get close to eob.
2372 Fix position and size calculations so we don't scroll backwards
2373 just by clicking on the handle.
2374
2375 2007-02-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2376
2377 * Makefile.in (${emacsapp}Contents/Resources/Emacs.rsrc)
2378 [HAVE_CARBON]: Remove target.
2379 (macosx-app) [HAVE_CARBON]: Don't depend on it.
2380
2381 2007-02-17 Juanma Barranquero <lekktu@gmail.com>
2382
2383 * callproc.c (syms_of_callproc) <doc-directory>:
2384 <configure-info-directory>:
2385 (Fgetenv_internal): Fix typos in docstrings.
2386
2387 * doc.c (Fsubstitute_command_keys): Fix typo in docstring.
2388
2389 2007-02-16 Andreas Schwab <schwab@suse.de>
2390
2391 * frame.c (Fmodify_frame_parameters): Return a value.
2392
2393 * editfns.c (Fformat): Add support for '+' flag.
2394 * doprnt.c (doprnt1): Likewise. Fix overflow checking.
2395
2396 2007-02-14 Chong Yidong <cyd@stupidchicken.com>
2397
2398 * s/umips.h: Unused file removed.
2399
2400 2007-02-14 Juanma Barranquero <lekktu@gmail.com>
2401
2402 * xfaces.c (Fcolor_distance): Don't continue checking a color for
2403 errors after it has been correctly parsed as an RGB list.
2404
2405 2007-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2406
2407 * xterm.c (do_ewmh_fullscreen): Also check for _NET_WM_STATE_FULLSCREEN.
2408
2409 2007-02-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2410
2411 * macfns.c (Fx_focus_frame): Move current process to foreground if
2412 it is not.
2413 [TARGET_API_MAC_CARBON] (Fx_file_dialog): Replace #if MAC_OSX with
2414 #ifdef MAC_OSX.
2415 (Fmac_set_font_panel_visible_p) [USE_MAC_FONT_PANEL]: Rename from
2416 Fmac_set_font_panel_visibility. All uses changed. Rename argument
2417 VISIBLE to FLAG.
2418
2419 * macterm.c (MakeMeTheFrontProcess) [MAC_OSX]: Remove function.
2420 (mac_initialize) [MAC_OSX]: Call SetFrontProcess instead of
2421 MakeMeTheFrontProcess.
2422
2423 2007-02-12 Chong Yidong <cyd@stupidchicken.com>
2424
2425 * frame.c (x_set_screen_gamma): Clear face cache.
2426
2427 2007-02-11 Juanma Barranquero <lekktu@gmail.com>
2428
2429 * buffer.c (Fgenerate_new_buffer_name, Fbuffer_modified_tick):
2430 Reflow docstrings.
2431
2432 2007-02-10 Eli Zaretskii <eliz@gnu.org>
2433
2434 * window.c (Fwindow_height, Fwindow_hscroll)
2435 (Fwindow_redisplay_end_trigger, Fwindow_point, Fwindow_start)
2436 (Fwindow_end, Fwindow_display_table, Fwindow_text_height):
2437 Document the effect of WINDOW arg being nil.
2438
2439 2007-02-08 Kim F. Storm <storm@cua.dk>
2440
2441 * minibuf.c (read_minibuf): Fix 2007-01-30 change.
2442 Use Qlambda as interim value of Vminibuffer_completing_file_name.
2443 (Fcompleting_read): Use non-filename maps if value is Qlambda (or Qnil).
2444 (syms_of_minibuf) <minibuffer-completing-file-name>: Document lambda.
2445
2446 2007-02-07 Juanma Barranquero <lekktu@gmail.com>
2447
2448 * makefile.w32-in ($(TRES)): Use literal "../nt/emacs.rc" instead
2449 of $(ALL_DEPS).
2450
2451 2007-02-07 Eli Zaretskii <eliz@gnu.org>
2452
2453 * makefile.w32-in ($(TRES)): Depend on stamp_BLD, since $(TRES) is
2454 put into $(BLD).
2455
2456 2007-02-06 Chong Yidong <cyd@stupidchicken.com>
2457
2458 * frame.c (Fmodify_frame_parameters): Don't bind
2459 Qinhibit_default_face_x_resources, which has no effect.
2460 (Qinhibit_default_face_x_resources): Symbol deleted.
2461
2462 2007-02-03 Eli Zaretskii <eliz@gnu.org>
2463
2464 * indent.c (Fmove_to_column): Document that the argument COLUMN is
2465 taken from prefix numeric argument.
2466
2467 2007-02-03 Juanma Barranquero <lekktu@gmail.com>
2468
2469 * lread.c (syms_of_lread) <load-history>: Doc fix.
2470
2471 2007-01-29 Andreas Seltenreich <uwi7@rz.uni-karlsruhe.de> (tiny change)
2472
2473 * xterm.c [!USE_TOOLKIT_SCROLL_BARS] (x_scroll_bar_expose):
2474 Use the foreground color of the scroll-bar face when drawing
2475 the scroll-bar's border.
2476
2477 2007-02-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2478
2479 * xterm.c (do_ewmh_fullscreen): Check that what != NULL before
2480 calling wm_supports.
2481
2482 2007-02-01 Juanma Barranquero <lekktu@gmail.com>
2483
2484 * lread.c (syms_of_lread) <user-init-file>: Doc fix.
2485 Wording by Eli Zaretskii.
2486
2487 2007-01-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2488
2489 * gtkutil.c (update_frame_tool_bar): Initialize h/vmargin to 0.
2490
2491 2007-01-30 Richard Stallman <rms@gnu.org>
2492
2493 * minibuf.c (read_minibuf):
2494 Save and clear Vminibuffer_completing_file_name.
2495 (read_minibuf_unwind): Restore it.
2496 (Vminibuffer_completion_table, Qminibuffer_completion_table)
2497 (Vminibuffer_completion_predicate, Qminibuffer_completion_predicate)
2498 (Vminibuffer_completion_confirm, Qminibuffer_completion_confirm)
2499 (Vminibuffer_completing_file_name): Definitions moved up.
2500
2501 2007-01-29 Chong Yidong <cyd@stupidchicken.com>
2502
2503 * m/hp800.h: Restore, removing HP-UX support.
2504
2505 2007-01-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2506
2507 * Makefile.in: Use a variable, XFT_LIBS, instead #define LIB_X11_LIB.
2508
2509 2007-01-28 Richard Stallman <rms@gnu.org>
2510
2511 * minibuf.c (Ftry_completion, Fall_completions)
2512 (Fcompleting_read, Ftest_completion):
2513 Rename arg ALIST or TABLE to COLLECTION.
2514
2515 2007-01-27 Chong Yidong <cyd@stupidchicken.com>
2516
2517 * unexhp9k800.c: Remove due to lack of legal papers.
2518
2519 * m/sr2k.h, m/hp800.h: Remove due to dependence on above.
2520
2521 2007-01-27 Eli Zaretskii <eliz@gnu.org>
2522
2523 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Doc fix.
2524
2525 * minibuf.c (Fcompleting_read): Doc fix.
2526
2527 2007-01-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2528
2529 * gtkutil.c (xg_initialize): Call XftInit if HAVE_XFT.
2530
2531 * Makefile.in: Use XFT_LIBS if defined.
2532
2533 2007-01-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2534
2535 * alloc.c (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Use
2536 BLOCK_INPUT/UNBLOCK_INPUT.
2537
2538 * blockinput.h (interrupt_input_blocked): Declare volatile.
2539
2540 * keyboard.c (interrupt_input_blocked): Declare volatile.
2541
2542 * syssignal.h (SIGNAL_THREAD_CHECK): Use pthread_equal.
2543
2544 2007-01-24 Kim F. Storm <storm@cua.dk>
2545
2546 * keymap.c (describe_map): Don't consider prefix keys to be shadowed.
2547
2548 2007-01-23 Juanma Barranquero <lekktu@gmail.com>
2549
2550 * editfns.c (Finsert_char): Doc fix.
2551 (Fget_internal_run_time, Fdecode_time): Fix typos in docstrings.
2552
2553 2007-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2554
2555 * macselect.c [TARGET_API_MAC_CARBON] (mac_do_receive_drag):
2556 Don't pass keyboard modifiers to mac_store_drag_event, but put
2557 them as kEventParamKeyModifiers Apple event parameter.
2558
2559 2007-01-21 Chong Yidong <cyd@stupidchicken.com>
2560
2561 * xdisp.c (try_window): Revert previous change.
2562
2563 * dispnew.c (update_text_area): Revert 2006-09-17 change.
2564 Always redraw non-mode-line rows with mouse-face.
2565
2566 2007-01-20 Chong Yidong <cyd@stupidchicken.com>
2567
2568 * xdisp.c (try_window): Clear mouse-face highlights first.
2569
2570 * window.c (set_window_buffer): Revert 2006-11-22 change.
2571
2572 2007-01-20 Eli Zaretskii <eliz@gnu.org>
2573
2574 * .gdbinit (ppt, xtype, xmisctype, xint, xptr, xmarker, xframe)
2575 (xbuffer, xcons, xcar, xcdr): Fix doc strings.
2576
2577 2007-01-20 Chong Yidong <cyd@stupidchicken.com>
2578
2579 * keyboard.c (read_key_sequence): Extract local map only if the
2580 given position is in an accessible buffer region.
2581
2582 2007-01-19 Nick Roberts <nickrob@snap.net.nz>
2583
2584 * .gdbinit: Reformat documentation so that first sentence
2585 displays properly with "help user-defined" (like apropos).
2586
2587 2007-01-18 Bruno Haible <bruno@clisp.org> (tiny change)
2588
2589 * epaths.in: Move PATH_DOC from local/info to local/share/info.
2590
2591 2007-01-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2592
2593 * macmenu.c (create_and_show_dialog) [TARGET_API_MAC_CARBON]:
2594 Create movable modal window instead of movable alert window.
2595 (create_and_show_dialog) [!MAC_OSX]: Use DeactivateControl instead
2596 of DisableControl.
2597
2598 * macselect.c (Fmac_resume_apple_event): Set error number when
2599 descriptor type of reply is non-null.
2600
2601 2007-01-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2602
2603 * macmenu.c (create_and_show_dialog) [TARGET_API_MAC_CARBON]:
2604 Use DisableControl for disabled items. Set default button to first
2605 enabled one. Use icon of application in execution.
2606
2607 2007-01-13 Eli Zaretskii <eliz@gnu.org>
2608
2609 * process.c (Fdelete_process, Fprocess_id, sigchld_handler):
2610 Copy PID into EMACS_INT to avoid GCC warnings.
2611
2612 * fns.c (maybe_resize_hash_table): Copy new size of hash table
2613 into EMACS_INT to avoid GCC warnings.
2614
2615 * editfns.c (Fuser_uid, Fuser_real_uid): Copy values returned by
2616 geteuid and getuid into EMACS_INT to avoid GCC warnings.
2617
2618 * dired.c (Ffile_attributes): Fix last change.
2619
2620 2007-01-12 Eli Zaretskii <eliz@gnu.org>
2621
2622 * dired.c (Ffile_attributes): Copy some members of `struct stat'
2623 into int's to avoid GCC warnings about limited range of short in
2624 arguments to FIXNUM_OVERFLOW_P.
2625
2626 2007-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2627
2628 * macmenu.c (HAVE_DIALOGS): Define if TARGET_API_MAC_CARBON.
2629 (mac_handle_dialog_event, install_dialog_event_handler)
2630 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: New functions.
2631 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
2632 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH)
2633 (DIALOG_MAX_INNER_WIDTH, DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
2634 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
2635 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
2636 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
2637 (DIALOG_ICON_TOP_MARGIN) [TARGET_API_MAC_CARBON]: New macros.
2638 (mac_dialog) [TARGET_API_MAC_CARBON]: Remove function.
2639 (mac_dialog_show) [TARGET_API_MAC_CARBON]: Use create_and_show_dialog.
2640
2641 * macterm.c (x_free_frame_resources) [USE_CG_DRAWING]:
2642 Call mac_prepare_for_quickdraw.
2643 (quit_char, make_ctrl_char) [TARGET_API_MAC_CARBON]: Move externs
2644 outside #ifdef MAC_OSX.
2645 (mac_quit_char_key_p) [TARGET_API_MAC_CARBON]: Move function
2646 outside #ifdef MAC_OSX.
2647 (mac_check_bundle) [MAC_OSX]: Remove unused function.
2648
2649 * macterm.h (mac_quit_char_key_p): Move extern outside #ifdef MAC_OSX.
2650 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Parenthesize definitions.
2651
2652 2007-01-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2653
2654 * alloc.c (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Use pthread_equal,
2655 block/unblock SIGIO.
2656
2657 2007-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
2658
2659 * editfns.c (Fformat): Allow integer-format to work with floats of size
2660 larger than most-positive-fixnum (but still smaller than MAXINT).
2661
2662 * dired.c (Ffile_attributes): Use floats for large uids/gids.
2663
2664 2007-01-09 Eli Zaretskii <eliz@gnu.org>
2665
2666 * emacs.c (syms_of_emacs) <path-separator>: Doc fix.
2667
2668 2007-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2669
2670 * callproc.c (Fcall_process_region) [HAVE_MKSTEMP]: Add BLOCK_INPUT
2671 around mkstemp.
2672
2673 * image.c (XDrawLine) [MAC_OS]: Remove macro.
2674 (XCreateGC_pixmap) [!HAVE_NTGUI]: Likewise.
2675 (x_disable_image) [!HAVE_NTGUI]: Use XCreateGC instead of
2676 XCreateGC_pixmap.
2677
2678 * macgui.h (Display): Typedef to opaque type.
2679
2680 * macmenu.c (mac_dialog_modal_filter) [MAC_OSX]: New function.
2681 (Fx_popup_dialog) [MAC_OSX]: Use standard alert if called from
2682 Fmessage_box, Fyes_or_no_p, or Fy_or_n_p.
2683 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030] (menu_quit_handler):
2684 Use mac_quit_char_key_p.
2685
2686 * macterm.c (XDrawLine): Rename from mac_draw_line_to_pixmap.
2687 (XCreateGC): Change type of 2nd argument to void *.
2688 (XFreeGC) [USE_CG_DRAWING && MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
2689 Fix last change.
2690 (mac_to_emacs_modifiers): Change return type to int.
2691 [USE_CARBON_EVENTS] (mac_event_to_emacs_modifiers): Likewise.
2692 (mac_mapped_modifiers): New function.
2693 (XTread_socket): Use it.
2694 [USE_TSM] (mac_handle_text_input_event): Likewise.
2695 (do_window_update) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
2696 (mac_quit_char_modifiers, mac_quit_char_keycode) [MAC_OSX]:
2697 Remove variables.
2698 (mac_determine_quit_char_modifiers, init_quit_char_handler)
2699 [MAC_OSX]: Remove functions.
2700 (make_ctrl_char) [MAC_OSX]: Add extern.
2701 (mac_quit_char_key_p) [MAC_OSX]: New function.
2702 (mac_initialize) [MAC_OSX]: Don't call init_quit_char_handler.
2703
2704 * macterm.h (FONT_MAX_WIDTH): Remove unused macro.
2705 (XCreateGC): Change type in extern.
2706 (XDrawLine): Rename from mac_draw_line_to_pixmap.
2707 (mac_quit_char_key_p) [MAC_OSX]: Add extern.
2708
2709 2007-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2710
2711 * keyboard.c (init_keyboard): Initialize interrupt_input_blocked and
2712 interrupt_input_pending.
2713
2714 * xterm.h (x_display_info): New: net_supported_atoms,
2715 nr_net_supported_atoms and net_supported_window.
2716
2717 * xterm.c (last_user_time): New variable.
2718 (handle_one_xevent): Set last_user_time from events that have Time.
2719 Set net_supported_window to 0 when reparented.
2720 (wm_supports): New function.
2721 (do_ewmh_fullscreen): Use wm_supports to check for _NET_WM_STATE.
2722 (x_term_init): Initialize net_supported_atoms, nr_net_supported_atoms
2723 and net_supported_window.
2724
2725 2007-01-05 Kim F. Storm <storm@cua.dk>
2726
2727 * indent.c (Fvertical_motion): Fix it overshoot check for overlay
2728 strings without embedded newlines immediately followed by newline.
2729
2730 2007-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2731
2732 * editfns.c (Fformat_time_string, Fdecode_time, Fencode_time)
2733 (Fcurrent_time_string, Fcurrent_time_zone): Add BLOCK_INPUT around
2734 gmtime/localtime/emacs_memftimeu/mktime.
2735
2736 * mac.c (Fmac_set_file_creator): Use MAC_EMACS_CREATOR_CODE
2737 instead of 'EMAx'.
2738 [!MAC_OSX] (sys_open, sys_creat, sys_fopen): Likewise.
2739
2740 * macgui.h (struct _XGC) [USE_CG_DRAWING
2741 && MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New members cg_fore_color
2742 and cg_back_color.
2743
2744 * macmenu.c (Vshow_help_function) [TARGET_API_MAC_CARBON]: Add extern.
2745 (restore_show_help_function, menu_target_item_handler)
2746 [TARGET_API_MAC_CARBON]: New functions.
2747 (install_menu_target_item_handler): New function.
2748 (add_menu_item) [TARGET_API_MAC_CARBON]: Set help string as menu
2749 item property.
2750
2751 * macterm.c (CG_SET_FILL_COLOR_MAYBE_WITH_CGCOLOR)
2752 (CG_SET_FILL_COLOR_WITH_GC_FOREGROUND)
2753 (CG_SET_FILL_COLOR_WITH_GC_BACKGROUND)
2754 (CG_SET_STROKE_COLOR_MAYBE_WITH_CGCOLOR)
2755 (CG_SET_STROKE_COLOR_WITH_GC_FOREGROUND): New macros.
2756 (mac_cg_color_space_rgb) [USE_CG_DRAWING]: New variable.
2757 (mac_cg_color_black) [USE_CG_DRAWING
2758 && MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New variable.
2759 (init_cg_color) [USE_CG_DRAWING]: New function.
2760 (mac_draw_line, mac_draw_rectangle) [USE_CG_DRAWING]: Use
2761 CG_SET_STROKE_COLOR_WITH_GC_FOREGROUND instead of CG_SET_STROKE_COLOR.
2762 (mac_erase_rectangle, mac_clear_window, mac_draw_cg_image)
2763 (mac_fill_rectangle, mac_draw_image_string_cg) [USE_CG_DRAWING]:
2764 Use CG_SET_FILL_COLOR_WITH_GC_FOREGROUND or
2765 CG_SET_FILL_COLOR_WITH_GC_BACKGROUND instead of CG_SET_FILL_COLOR.
2766 (mac_draw_string_common) [MAC_OSX && USE_ATSUI]: Likewise.
2767 (XCreateGC, XFreeGC, XSetForeground, XSetBackground) [USE_CG_DRAWING
2768 && MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Use gc->cg_fore_color and/or
2769 gc->cg_back_color.
2770 (install_drag_handler, remove_drag_handler): Make extern.
2771 (install_menu_target_item_handler): Add extern.
2772 (install_window_handler): Call install_menu_target_item_handler.
2773 [MAC_OS8] (main): Use MAC_EMACS_CREATOR_CODE instead of 'EMAx'.
2774 (mac_initialize) [USE_CG_DRAWING]: Call init_cg_color.
2775
2776 * macterm.h (MAC_EMACS_CREATOR_CODE): New enumerator.
2777
2778 2007-01-04 Juanma Barranquero <lekktu@gmail.com>
2779
2780 * window.c (Fwindow_end): Fix use of >= operator.
2781
2782 2007-01-03 Richard Stallman <rms@gnu.org>
2783
2784 * window.c (Fwindow_end): Check BUF_OVERLAY_MODIFF like BUF_MODIFF.
2785
2786 2007-01-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2787
2788 * gtkutil.h (xg_menu_item_cb_data_): Remove highlight_id and
2789 unhighlight_id.
2790
2791 * gtkutil.c (menuitem_highlight_callback): Invoked widget is the
2792 parent of the menu item. Get menu item widget from event.
2793 (xg_create_one_menuitem, xg_update_menu_item): highlight_id and
2794 unhighlight_id has been removed.
2795 (create_menus): Connect enter/leave-notify-event to the menu instead
2796 of individual items.
2797
2798 2006-12-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2799
2800 * gtkutil.c (update_frame_tool_bar): Connect create-menu-proxy with
2801 xg_tool_bar_menu_proxy.
2802 (xg_tool_bar_menu_proxy): New function.
2803 (xg_tool_bar_proxy_callback): New function.
2804
2805 2006-12-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2806
2807 * gtkutil.c (xg_tool_bar_button_cb): Save last modifier on widget.
2808 (xg_tool_bar_callback): Remove check for button.
2809 (update_frame_tool_bar): Put an event box in the tool bar and a button
2810 in the event box. Attach enter/leave-notify-event to the event box.
2811
2812 2006-12-30 Richard Stallman <rms@gnu.org>
2813
2814 * keymap.c (Fdefine_key): Doc fix.
2815
2816 2006-12-29 Kim F. Storm <storm@cua.dk>
2817
2818 * frame.h (struct frame): New member minimize_tool_bar_window_p.
2819
2820 * xdisp.c (auto_resize_tool_bars_p): Replace with ...
2821 (Vauto_resize_tool_bars): ... this.
2822 (syms_of_xdisp): DEFVAR_LISP and initialize it. Update doc string
2823 to describe new value `grow-only', and use of C-l.
2824 (display_tool_bar_line): Only use default face for border below
2825 toolbar if not grow-only (to get acceptable visual appearence).
2826 Explicitly set visible_height for empty toolbar lines.
2827 (redisplay_tool_bar): Handle `grow-only' setting. Check and clear
2828 minimize_tool_bar_window_p flag.
2829
2830 * window.c (Frecenter): Set minimize_tool_bar_window_p flag
2831 when called without arg to redraw with minimum toolbar height.
2832 Update doc string.
2833
2834 2006-12-29 Jason Rumney <jasonr@gnu.org>
2835
2836 * s/ms-w32.h (tzname): Do not define in msvc8.
2837 (utime): Do not define in msvc8.
2838
2839 * regex.c (regerror): Change parameter name err_code.
2840
2841 2006-12-26 Richard Stallman <rms@gnu.org>
2842
2843 * search.c (Fsearch_forward): Doc fix.
2844
2845 * callint.c (Finteractive): Doc fix.
2846
2847 2006-12-25 Kim F. Storm <storm@cua.dk>
2848
2849 * s/ms-w32.h (BROKEN_DATAGRAM_SOCKETS): Define it.
2850
2851 2006-12-23 Eli Zaretskii <eliz@gnu.org>
2852
2853 * keyboard.c (some_mouse_moved): Fix last change.
2854
2855 2006-12-22 Eli Zaretskii <eliz@gnu.org>
2856
2857 * callproc.c (syms_of_callproc) <shell-file-name>: Doc fix.
2858
2859 2006-12-22 Mark Davies <mark@mcs.vuw.ac.nz>
2860
2861 * m/amdx86-64.h, m/hp800.h: Add support for NetBSD.
2862 * m/sh3el.h: New file.
2863
2864 2006-12-22 Eli Zaretskii <eliz@gnu.org>
2865
2866 * makefile.w32-in (emacs, temacs): Depend on stamp_BLD instead of
2867 $(BLD).
2868 ($(OBJ0) $(OBJ1) $(WIN32OBJ)): New dependency on stamp_BLD.
2869 (bootstrap-temacs): Pass $(XMFLAGS) to sub-make.
2870 ($(OBJ0) $(OBJ1) $(WIN32OBJ)): Add lastfile.$(O) and firstfile.$(O).
2871 (clean): Delete stamp_BLD.
2872
2873 2006-12-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2874
2875 * macfns.c (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
2876 Call mac_update_proxy_icon also when buffer modification flag changed.
2877 [TARGET_API_MAC_CARBON] (mac_update_proxy_icon): Don't update alias,
2878 but compare FSRef/FSSpec of resolved alias.
2879
2880 2006-12-21 Kim F. Storm <storm@cua.dk>
2881
2882 * w32.c (_sys_wait_accept): Fix handle leak.
2883
2884 2006-12-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2885
2886 * sound.c: Include <alsa/asoundlib.h> if ALSA_SUBDIR_INCLUDE is
2887 defined.
2888
2889 2006-12-20 Kim F. Storm <storm@cua.dk>
2890
2891 * s/ms-w32.h (BROKEN_NON_BLOCKING_CONNECT): Define it.
2892
2893 2006-12-19 Juanma Barranquero <lekktu@gmail.com>
2894
2895 * keyboard.c (syms_of_keyboard) <double-click-time>:
2896 * mac.c (Fmac_code_convert_string):
2897 * search.c (Fsearch_forward): Doc fixes.
2898
2899 2006-12-19 Kim F. Storm <storm@cua.dk>
2900
2901 Rework 2006-12-04 change. A SIGUSR1 (SIGUSR2) signal now generates
2902 a sigusr1 event instead of [signal usr1] sequence, and signal events
2903 are now supposed to be handled via special-event-map.
2904
2905 * keyboard.c (kbd_buffer_store_event_hold): Undo 2006-12-04 change.
2906 (make_lispy_event): Don't generate Qsignal prefix for code 0.
2907 Abort if signal code is unknown.
2908 (store_user_signal_events): Don't make Qsignal prefix (code 0).
2909 (Qsignal): Move declaration back to process.c.
2910 (syms_of_keyboard): Don't intern or staticpro it here.
2911
2912 * process.c (Qsignal): Declare here.
2913 (syms_of_process): Intern or staticpro it.
2914
2915 * emacs.c (main): Rename user signals to sigusr1 and sigusr2.
2916
2917 * .gdbinit: Pass on SIGUSR1 and SIGUSR2 to Emacs.
2918
2919 2006-12-19 Juanma Barranquero <lekktu@gmail.com>
2920
2921 * buffer.c (syms_of_buffer) <buffer-display-table>:
2922 <scroll-up-aggressively, scroll-down-aggressively>: Doc fixes.
2923
2924 2006-12-17 Richard Stallman <rms@gnu.org>
2925
2926 * fileio.c (Fread_file_name_internal): Pass Vread_file_name_predicate
2927 to Ffile_name_completion.
2928
2929 * dired.c (file_name_completion): New arg PREDICATE. Some cleanup.
2930 (Ffile_name_completion): New arg PREDICATE.
2931
2932 2006-12-17 Juanma Barranquero <lekktu@gmail.com>
2933
2934 * buffer.c (Fkill_buffer): Doc fix.
2935 (syms_of_buffer) <kill-buffer-query-functions>: Doc fix.
2936
2937 2006-12-16 Juanma Barranquero <lekktu@gmail.com>
2938
2939 * minibuf.c (Ftry_completion): Check that obarray buckets are symbols.
2940
2941 2006-12-16 Eli Zaretskii <eliz@gnu.org>
2942
2943 * w32fns.c (w32-window-exists-p): New function.
2944 (syms_of_w32fns): Defsubr it.
2945
2946 * prefix-args.c [STDC_HEADERS]: Include stdlib.h.
2947
2948 2006-12-16 Juanma Barranquero <lekktu@gmail.com>
2949
2950 * minibuf.c (Ftry_completion): Use `check_obarray' if ALIST is a vector.
2951
2952 2006-12-15 Eli Zaretskii <eliz@gnu.org>
2953
2954 * emacs.c (USAGE3): Clarify documentation of --color.
2955
2956 2006-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2957
2958 * mac.c (wakeup_from_rne_enabled_p) [TARGET_API_MAC_CARBON]:
2959 New variable.
2960 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE): New macros.
2961 [!MAC_OSX] (select): Use them.
2962 [MAC_OSX] (select_and_poll_event, sys_select): Likewise.
2963 (mac_wakeup_from_rne) [TARGET_API_MAC_CARBON]: New function.
2964
2965 * macfns.c (mac_atsu_font_face_attributes) [USE_ATSUI]: Add extern.
2966 (Fmac_atsu_font_face_attributes) [USE_ATSUI]: New function.
2967 (syms_of_macfns) [USE_ATSUI]: Defsubr it.
2968
2969 * macselect.c [TARGET_API_MAC_CARBON] (mac_do_receive_drag):
2970 Use mac_wakeup_from_rne instead of mac_post_mouse_moved_event.
2971
2972 * macterm.c (mac_query_char_extents) [USE_ATSUI]: Don't call
2973 ATSUGetGlyphBounds if not necessary.
2974 (Vmac_atsu_font_table) [USE_ATSUI]: Remove variable.
2975 (syms_of_macterm) [USE_ATSUI]: Don't defvar it.
2976 (fm_get_style_from_font, atsu_find_font_from_family_name)
2977 (atsu_find_font_family_name, mac_atsu_font_face_attributes)
2978 [USE_ATSUI]: New functions.
2979 (init_font_name_table) [USE_ATSUI]: Use atsu_find_font_family_name.
2980 (mac_load_query_font) [USE_ATSUI]: Use atsu_find_font_from_family_name.
2981 Don't get metrics for Latin-1 right half characters.
2982 (mac_load_query_font): Don't load font if space width is not positive.
2983 [TARGET_API_MAC_CARBON] (mac_store_event_ref_as_apple_event):
2984 Use mac_wakeup_from_rne instead of mac_post_mouse_moved_event.
2985 (XTread_socket): Call SelectWindow when unfocused frame is clicked.
2986
2987 * macterm.h (mac_wakeup_from_rne) [TARGET_API_MAC_CARBON]: Add extern.
2988
2989 2006-12-15 Kim F. Storm <storm@cua.dk>
2990
2991 * keyboard.c (ignore_mouse_drag_p): New global var.
2992 (some_mouse_moved): Return 0 if it is non-zero.
2993 (make_lispy_event): Generate click event on mouse up if
2994 ignore_mouse_drag_p is non-zero, even if mouse moved.
2995 Clear ignore_mouse_drag_p on mouse down/up.
2996
2997 * xdisp.c (redisplay_window): Set ignore_mouse_drag_p if tool-bar
2998 is resized to avoid generating a mouse drag event.
2999
3000 2006-12-14 Juanma Barranquero <lekktu@gmail.com>
3001
3002 * w32fns.c (w32_wnd_proc): Force non-tooltip frames to respect the
3003 minimum tracking size. Remove non-working old hack to do the same.
3004
3005 2006-12-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3006
3007 * emacs.c (handle_user_signal): Move function to keyboard.c.
3008 (main): Use add_user_signal for SIGUSR1 and SIGUSR2.
3009
3010 * keyboard.c (make_lispy_event): Use find_user_signal_name.
3011 (read_avail_input): Store pending user signal events.
3012 (struct user_signal_info): New struct.
3013 (user_signals): New variable.
3014 (add_user_signal, store_user_signal_events)
3015 (find_user_signal_name): New functions.
3016 (handle_user_signal): Move function from emacs.c. Don't store
3017 USER_SIGNAL_EVENT here, but increment number of pending signals.
3018
3019 * keyboard.h (add_user_signals): Add extern.
3020
3021 2006-12-11 Juanma Barranquero <lekktu@gmail.com>
3022
3023 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
3024 <default-scroll-up-aggressively, default-scroll-down-aggressively>:
3025 <line-spacing, left-margin>: Doc fixes.
3026
3027 * xdisp.c (syms_of_xdisp) <mode-line-inverse-video>: Doc fix.
3028
3029 2006-12-10 Kim F. Storm <storm@cua.dk>
3030
3031 * xdisp.c (show_mouse_face): Never use text cursor in tool-bar.
3032
3033 2006-12-10 Juanma Barranquero <lekktu@gmail.com>
3034
3035 * abbrev.c (syms_of_abbrev) <last-abbrev-text>:
3036 * buffer.c (syms_of_buffer) <default-major-mode>:
3037 * keymap.c (Flookup_key):
3038 * lread.c (Feval_buffer, Feval_region):
3039 * macterm.c (syms_of_macterm) <x-use-underline-position-properties>:
3040 <x-underline-at-descent-line, mac-emulate-three-button-mouse>:
3041 * marker.c (Fmarker_insertion_type):
3042 * minibuf.c (syms_of_minibuf) <minibuffer-completion-table>:
3043 * msdos.c (syms_of_msdos) <delete-exited-processes>:
3044 * w32term.c (syms_of_w32term) <x-use-underline-position-properties>:
3045 <x-underline-at-descent-line>:
3046 * xdisp.c (format-mode-line):
3047 * xterm.c (syms_of_xterm) <x-use-underline-position-properties>:
3048 <x-underline-at-descent-line>: Doc fixes.
3049
3050 2006-12-10 Andreas Schwab <schwab@suse.de>
3051
3052 * systime.h (EMACS_GET_TIME): Remove check for
3053 HAVE_STRUCT_TIMEZONE which is never defined.
3054
3055 2006-12-10 Alan Mackenzie <acm@muc.de>
3056
3057 * syntax.c (Fpartial_parse_sexp): Correct Docco: Elt 8 of the
3058 result is now neither the last elt nor optional for OLDSTATE.
3059
3060 2006-12-09 Eli Zaretskii <eliz@gnu.org>
3061
3062 * process.c (Fsignal_process): Doc fix. Use XFLOAT_DATA to
3063 extract the process ID from a Lisp float.
3064
3065 2006-12-09 Chong Yidong <cyd@stupidchicken.com>
3066
3067 * xterm.c (XTframe_raise_lower): Comment out _NET_ACTIVE_WINDOW code.
3068
3069 2006-12-08 Eli Zaretskii <eliz@gnu.org>
3070
3071 * frame.h (PIX_TYPE): Redefine as `unsigned long', for 64-bit
3072 platforms where long is 64-bit.
3073
3074 * msdos.h (PIX_TYPE): Redefine as `unsigned long'.
3075
3076 2006-12-08 NAKAJI Hiroyuki <nakaji@jp.freebsd.org> (tiny change)
3077
3078 * m/amdx86-64.h: Add support for Solaris 10 on x86-64.
3079
3080 2006-12-08 Kenichi Handa <handa@m17n.org>
3081
3082 * xterm.c (x_query_font): Use xstricmp instead off strcasecmp.
3083
3084 2006-12-08 Juanma Barranquero <lekktu@gmail.com>
3085
3086 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
3087
3088 2006-12-07 Kim F. Storm <storm@cua.dk>
3089
3090 * process.c (parse_signal): Use xstricmp instead of strcasecmp.
3091 (Fsignal_process): Don't use strncasecmp.
3092
3093 2006-12-05 Glenn Morris <rgm@gnu.org>
3094
3095 * abbrev.c (Qforce): New Lisp_Object.
3096 (Fdefine_abbrev): Do not overwrite non-system abbrevs with system
3097 abbrevs, unless 'force is applied.
3098 (syms_of_abbrev): Add Qforce.
3099
3100 2006-12-04 Kim F. Storm <storm@cua.dk>
3101
3102 * process.c (parse_signal): Rename macro from handle_signal.
3103 (Fsignal_process): Also accept lower-case variants of signal
3104 names (to align with signal names generated by Emacs itself).
3105
3106 * emacs.c (handle_USR1_signal, handle_USR2_signal): Replace by...
3107 (handle_user_signal): ... this, which generates two USER_SIGNAL_EVENTs
3108 first with code == 0 [signal] and one with code == sig number.
3109 (main): Use it as handler for SIGUR1 and SIGUSR2.
3110
3111 * keyboard.c (kbd_buffer_store_event_hold): Don't throw-on-input
3112 if first event in [signal xxx] sequence.
3113 (lispy_user_signals, Qusr1_signal, Qusr2_signal): Remove.
3114 (syms_of_keyboard): Don't intern and staticpro them.
3115 (Qsignal): Declare here.
3116 (syms_of_keyboard): Intern and staticpro it.
3117 (make_lispy_event): Use it. Intern symbols on the fly for other
3118 USER_SIGNAL_EVENTs events.
3119
3120 * process.c (Qsignal): Declare extern.
3121 (syms_of_process): Don't intern/staticpro it here.
3122
3123 * process.c (read_process_output): Abort if carryover < 0.
3124
3125 2006-12-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3126
3127 * config.in: Regenerate.
3128
3129 * fileio.c [__NetBSD__]: Don't define `unix'.
3130 (Funix_sync, syms_of_fileio): Use `#ifdef HAVE_SYNC' instead of
3131 `#ifdef unix'.
3132
3133 2006-12-04 Glenn Morris <rgm@gnu.org>
3134
3135 * Makefile.in (version): New variable, set by configure.
3136 (bootstrapclean, mostlyclean): Also remove emacs-${version}.
3137
3138 2006-12-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3139
3140 * gtkutil.c (update_frame_tool_bar): Handle modifying a toolbar item
3141 without an image.
3142
3143 2006-12-01 Eli Zaretskii <eliz@gnu.org>
3144
3145 * w32fns.c (Fw32_shell_execute): Doc fix.
3146
3147 2006-11-30 Chong Yidong <cyd@stupidchicken.com>
3148
3149 * xdisp.c (move_it_to): Correctly count tab glyphs for continued
3150 lines ending in tab.
3151
3152 2006-11-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3153
3154 * xterm.c (x_raise_frame): Move setting of _NET_ACTIVE_WINDOW
3155 property ...
3156 (XTframe_raise_lower): ... to here.
3157
3158 2006-11-30 Kenichi Handa <handa@m17n.org>
3159
3160 * regex.c (regex_compile): Fix previous change.
3161
3162 2006-11-29 Juanma Barranquero <lekktu@gmail.com>
3163
3164 * sound.c (Fplay_sound_internal): Remove spurious newline in docstring.
3165
3166 2006-11-28 Chong Yidong <cyd@stupidchicken.com>
3167
3168 * config.in: Regenerate.
3169
3170 2006-11-28 Kenichi Handa <handa@m17n.org>
3171
3172 * regex.c (regex_compile): Don't call SET_LIST_BIT with a
3173 multibyte character.
3174
3175 2006-11-27 Chong Yidong <cyd@stupidchicken.com>
3176
3177 * s/aix4-2.h: Undefine _NO_PROTO. Suggested by Joe Buehler.
3178
3179 2006-11-27 Kim F. Storm <storm@cua.dk>
3180
3181 * window.c (set_window_buffer): Refactor recent changes.
3182
3183 2006-11-27 Jason Rumney <jasonr@gnu.org>
3184
3185 * w32term.c (w32_msg_worker): Declare correctly.
3186 (w32_initialize): Don't cast w32_msg_worker.
3187
3188 * w32fns.c (w32_msg_worker): Define as WINAPI and arg as void pointer.
3189
3190 2006-11-26 Chong Yidong <cyd@stupidchicken.com>
3191
3192 * m/amdx86-64.h: Look for standard libs in /usr/lib64 only if that
3193 directory exists.
3194
3195 2006-11-25 Eli Zaretskii <eliz@gnu.org>
3196
3197 * w16select.c (Fw16_set_clipboard_data): Fix the call to sit_for
3198 as per the calling sequence change on 2006-07-11.
3199
3200 2006-11-25 Chong Yidong <cyd@stupidchicken.com>
3201
3202 * window.c (set_window_buffer): Use BLOCK_INPUT.
3203
3204 2006-11-24 Juanma Barranquero <lekktu@gmail.com>
3205
3206 * fns.c (substring_both): Add missing address operator.
3207
3208 2006-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
3209
3210 * fns.c: Use AREF/ASIZE macros.
3211 (concat): Provide the full ANSI prototype.
3212
3213 2006-11-24 Juanma Barranquero <lekktu@gmail.com>
3214
3215 * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
3216
3217 2006-11-23 William Smith <William.Smith@global360.com> (tiny change)
3218
3219 * strftime.c (HAVE_SYS__MBSTATE_T_H): Fix typo.
3220
3221 2006-11-22 Alfred M. Szmidt <ams@gnu.org> (tiny change)
3222
3223 * s/openbsd.h (LD_SWITCH_SYSTEM): Remove /usr/pkg/lib and
3224 /usr/pkg/lib from the library search path.
3225 (LD_SWITCH_X_DEFAULT): New macro.
3226
3227 2006-11-22 Chong Yidong <cyd@stupidchicken.com>
3228
3229 * window.c (set_window_buffer): Clear mouse highlight if it is in
3230 this window.
3231
3232 2006-11-21 Chong Yidong <cyd@stupidchicken.com>
3233
3234 * xfaces.c (realize_default_face): Check if the default font name
3235 exists on this display before trying to use it.
3236
3237 2006-11-21 Richard Stallman <rms@gnu.org>
3238
3239 * fileio.c: Break line before &&, not after.
3240
3241 2006-11-20 Eli Zaretskii <eliz@gnu.org>
3242
3243 * fns.c (concat) [!__GNUC__]: Add prototype.
3244
3245 2006-11-20 Kenichi Handa <handa@m17n.org>
3246
3247 * fileio.c (Fread_file_name_internal): Use SBYTES (not SCHARS) to
3248 check the tailing slash of a filename.
3249
3250 2006-11-20 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp> (tiny change)
3251
3252 * indent.c (Fvertical_motion): Include composition in the case of
3253 overshoot expected.
3254
3255 2006-11-19 Andreas Schwab <schwab@gnu.org>
3256
3257 * xfaces.c (Fdisplay_supports_face_attributes_p): Initialize supports.
3258
3259 * xmenu.c (Fx_popup_menu): Initialize selection.
3260
3261 2006-11-18 Andreas Schwab <schwab@suse.de>
3262
3263 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Update call to mark_memory.
3264
3265 2006-11-17 Tetsurou Okazaki <okazaki@be.to> (tiny change)
3266
3267 * xterm.c (do_ewmh_fullscreen): Declare variable before XSETFRAME
3268 to avoid gcc 2.96 error.
3269
3270 2006-11-17 NIIMI Satoshi <sa2c@sa2c.net> (tiny change)
3271
3272 * search.c (simple_search): In the loop of backward searching,
3273 check also the byte position against the limit.
3274
3275 2006-11-14 Romain Francoise <romain@orebokech.com>
3276
3277 * minibuf.c (Fcompleting_read): Fix typo in docstring.
3278
3279 2006-11-14 Kenichi Handa <handa@m17n.org>
3280
3281 * coding.c (code_convert_region): Initialize coding->heading_ascii.
3282 (decode_coding_string, code_convert_region): Likewise.
3283
3284 2006-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3285
3286 * config.in: Regenerate.
3287
3288 * macfns.c (Fx_display_mm_height, Fx_display_mm_width)
3289 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030
3290 && MAC_OS_X_VERSION_MIN_REQUIRED == 1020]: Check if
3291 CGDisplayScreenSize is available.
3292
3293 * macmenu.c (menu_quit_handler, install_menu_quit_handler):
3294 Replace `#ifdef HAVE_CANCELMENUTRACKING' with
3295 `#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1030'.
3296 (install_menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030
3297 && MAC_OS_X_VERSION_MIN_REQUIRED == 1020]: Check if
3298 CancelMenuTracking is available.
3299
3300 * macterm.c [USE_CG_TEXT_DRAWING] (mac_draw_image_string_cg)
3301 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030
3302 && MAC_OS_X_VERSION_MIN_REQUIRED == 1020]: Check if
3303 CGContextShowGlyphsWithAdvances is available.
3304
3305 2006-11-13 Jason Rumney <jasonr@gnu.org>
3306
3307 * s/ms-w32.h: Define HAVE_INET_SOCKETS.
3308
3309 2006-11-13 Nozomu Ando <nand@mac.com>
3310
3311 * alloc.c (mark_memory): New argument OFFSET. All uses changed.
3312 Fix address calculations for case END < START.
3313 (mark_stack): Impose Lisp_Object alignment on jmp_buf.
3314
3315 2006-11-12 Juanma Barranquero <lekktu@gmail.com>
3316
3317 * coding.c (Fencode_sjis_char, Fencode_big5_char):
3318 Improve argument/docstring consistency.
3319
3320 * editfns.c (Fmessage): Doc fixes.
3321
3322 * process.c (syms_of_process) <delete-exited-processes>: Doc fix.
3323
3324 2006-11-12 Chong Yidong <cyd@stupidchicken.com>
3325
3326 * xmenu.c (popup_activated): Define outside HAVE_MENUS.
3327
3328 2006-11-12 Romain Francoise <romain@orebokech.com>
3329
3330 * xselect.c (selection-coding-system): Fix docstring.
3331
3332 2006-11-12 Juanma Barranquero <lekktu@gmail.com>
3333
3334 * category.c (Fchar_category_set): Improve arg/docstring consistency.
3335
3336 * data.c (Flogxor):
3337 * fns.c (Frandom, Flength, Fsafe_length, Fstring_bytes)
3338 (Fstring_equal, Fcompare_strings, Fstring_lessp, Fcopy_sequence)
3339 (Fstring_make_unibyte): Fix typos in docstrings.
3340
3341 2006-11-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3342
3343 * xterm.h (struct x_display_info): Fix indentation.
3344
3345 * xterm.c (do_ewmh_fullscreen, XTfullscreen_hook): New functions.
3346 (x_check_fullscreen): Call do_ewmh_fullscreen.
3347 (x_initialize): Set fullscreen_hook to XTfullscreen_hook.
3348
3349 * frame.c (x_set_fullscreen): Call fullscreen_hook if set.
3350
3351 * term.c: Define fullscreen_hook.
3352 (syms_of_term): Initialize fullscreen_hook to NULL.
3353
3354 * termhooks.h: Add fullscreen_hook.
3355
3356 2006-11-08 Juanma Barranquero <lekktu@gmail.com>
3357
3358 * bytecode.c (Fbyte_code):
3359 * data.c (Fmakunbound): Use SYMBOL_CONSTANT_P macro.
3360
3361 2006-11-06 Juanma Barranquero <lekktu@gmail.com>
3362
3363 * lread.c (syms_of_lread):
3364 * xsmfns.c (syms_of_xsmfns): Fix typo in docstring.
3365
3366 2006-11-06 Martin Rudalics <rudalics@gmx.at>
3367
3368 * macmenu.c (Fmenu_or_popup_active_p): Define outside HAVE_MENUS.
3369
3370 * w32menu.c (Fmenu_or_popup_active_p): Define outside HAVE_MENUS.
3371 Return nil if building without menus.
3372
3373 * xmenu.c (Fmenu_or_popup_active_p): Define outside HAVE_MENUS.
3374 Return nil if building without menus.
3375
3376 2006-11-05 Mark Davies <mark@mcs.vuw.ac.nz> (tiny change)
3377
3378 * s/netbsd.h (POSIX_SIGNALS): Define.
3379
3380 2006-11-05 Martin Rudalics <rudalics@gmx.at>
3381
3382 * macmenu.c (Fmenu_or_popup_active_p): New function.
3383 (syms_of_macmenu): Defsubr it.
3384
3385 * w32menu.c (Fmenu_or_popup_active_p): New function.
3386 (syms_of_w32menu): Defsubr it.
3387 (popup_activated_flag, popup_activated): Remove.
3388
3389 * xdisp.c (note_mouse_highlight) [HAVE_NTGUI]: Don't bother to
3390 check popup_activated.
3391
3392 * xmenu.c (Fmenu_or_popup_active_p): New function.
3393 (syms_of_xmenu): Defsubr it.
3394
3395 2006-11-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3396
3397 * unexmacosx.c (malloc_cookie): Remove unused variable.
3398 (region_list_head, region_list_tail, lca, nlc, infile_lc_highest_addr)
3399 (text_seg_lowest_offset, mh, curr_header_offset, infd, outfd)
3400 (emacs_zone, data_segment_old_fileoff, data_segment_scp)
3401 (num_unexec_regions, unexec_regions): Make variables static.
3402 (print_regions, find_emacs_zone_regions): Make static.
3403 (unexec_region_info): New typedef.
3404 (unexec_regions): Change type from vm_range_t[] to unexec_region_info[].
3405 All uses changed.
3406 (unexec_regions_recorder): Subtract size of trailing null pages from
3407 filesize. Show filesize.
3408 (unexec_regions_merge): Don't merge if null pages of preceding region
3409 is not too small. Use long format in printf.
3410 (copy_segment, copy_data_segment): Show filesize.
3411 (copy_data_segment): Write filesize bytes of region data.
3412 Adjust filesize in segment command accordingly.
3413 (dump_it): Use long format in printf.
3414
3415 2006-11-05 Juanma Barranquero <lekktu@gmail.com>
3416
3417 * dosfns.c (Finsert_startup_screen):
3418 * fns.c (Ffeaturep, syms_of_fns):
3419 * frame.c (syms_of_frame): Fix typos in docstrings.
3420
3421 * unexcw.c (unexec): Fix typo in output message.
3422
3423 2006-11-04 Ralf Angeli <angeli@caeruleus.net>
3424
3425 * w32fns.c (w32_createwindow): Remove code for handling -geometry
3426 command line option and `initial-frame-alist' which is superfluous
3427 after the last change to `w32_createwindow'.
3428
3429 2006-11-04 Slawomir Nowaczyk <slawek@cs.lth.se> (tiny change)
3430
3431 * w32proc.c (sys_wait): Only wait for processes with fd<0.
3432 Others should be handled by sys_select instead. Fixes problems
3433 with (progn (start-process "" nil "ls") (call-process "ls")).
3434
3435 2006-11-04 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
3436
3437 * xmenu.c (Fmenu_bar_open): Declare variable before BLOCK_INPUT to
3438 avoid gcc 2.95 error.
3439
3440 2006-11-04 Chong Yidong <cyd@stupidchicken.com>
3441
3442 * gtkutil.c (update_frame_tool_bar): If icon image is invalid and
3443 wicon is null, insert an empty button.
3444
3445 2006-11-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3446
3447 * xterm.c (x_raise_frame): Send _NET_ACTIVE_WINDOW when raising the
3448 window.
3449
3450 2006-11-02 Juanma Barranquero <lekktu@gmail.com>
3451
3452 * emacs.c (Fkill_emacs): Fix typo in docstring.
3453
3454 2006-11-02 Nozomu Ando <nand@mac.com>
3455
3456 * unexmacosx.c (mach_header, segment_command, vm_region, section)
3457 [_LP64]: New defines.
3458 (VM_REGION_BASIC_INFO_COUNT, VM_REGION_BASIC_INFO, LC_SEGMENT)
3459 (MH_MAGIC) [_LP64]: Redefine.
3460 (delta): Remove variable.
3461 (curr_file_offset, pagesize): New variables.
3462 (ROUNDUP_TO_PAGE_BOUNDARY): New macro.
3463 (data_segment_old_fileoff): Initialize explicitly.
3464 (print_region, unexec_regions_recorder, print_load_command_name)
3465 (copy_segment, copy_data_segment): Use long format in printf.
3466 (MAX_UNEXEC_REGIONS): Increase to 400.
3467 (unexec_regions_recorder): Don't warn too many regions here.
3468 (find_emacs_zone_regions): Warn too many regions here.
3469 (print_load_command_name) [_LP64]: Show correct load command name.
3470 (copy_segment, copy_data_segment): Use variable `curr_file_offset'.
3471 Show starting virtual memory address. Don't show ending file offset.
3472 (copy_symtab, copy_dysymtab, copy_twolevelhints): New argument DELTA.
3473 (dump_it): Use new local variable `linkedit_delta' and pass to them.
3474 Error if trying to handle multiple DATA segments.
3475 (unexec): Initialize variable `pagesize'.
3476
3477 2006-11-01 Juanma Barranquero <lekktu@gmail.com>
3478
3479 * eval.c (Fcatch): Doc fix.
3480
3481 2006-10-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3482
3483 * image.c [MAC_OS] (image_load_qt_1, xpm_scan, xpm_make_color_table_v)
3484 (xpm_put_color_table_v, xpm_get_color_table_v, xpm_make_color_table_h)
3485 (xpm_put_color_table_h, xpm_get_color_table_h, xpm_str_to_color_key)
3486 (xpm_load_image): Add const qualifier to arguments.
3487 [MAC_OS] (xpm_color_key_strings): Make static const.
3488
3489 * mac.c (create_apple_event_from_event_ref)
3490 (create_apple_event_from_drag_ref, skip_white_space, parse_comment)
3491 (parse_include_file, parse_binding, parse_component)
3492 (parse_resource_name, parse_value, parse_resource_line)
3493 (xrm_merge_string_database, xrm_get_resource)
3494 (xrm_get_preference_database): Add const qualifier to arguments.
3495 [MAC_OSX] (sys_select): Make variable `context' static const.
3496
3497 * macfns.c (mac_color_map): Make static const.
3498 (mac_color_map_lookup): Add const qualifier to arguments.
3499
3500 * macmenu.c (install_menu_quit_handler): Make variable `typesList'
3501 static const.
3502 (name_is_separator): Add const qualifier to arguments.
3503
3504 * macselect.c (init_service_handler): Make variable `specs' static
3505 const.
3506
3507 * macterm.c (mac_create_bitmap_from_bitmap_data): Make variable
3508 `swap_nibbles' static const.
3509 (atsu_get_text_layout_with_text_ptr): Make variables `lengths',
3510 `tags', `sizes', `values' static const.
3511 (mac_draw_string_common): Make variables `context' static.
3512 Make variables `tags', `sizes', and `values' static const.
3513 (pcm_get_status, x_detect_focus_change, x_scroll_bar_handle_click)
3514 (xlfdpat_create, xlfdpat_block_match_1, xlfdpat_match)
3515 (mac_to_x_fontname, parse_x_font_name, add_mac_font_name)
3516 (mac_do_list_fonts, is_fully_specified_xlfd, do_grow_window)
3517 (mac_store_event_ref_as_apple_event, mac_make_rdb): Add const
3518 qualifier to arguments.
3519 (xlfd_scalable_fields, keycode_to_xkeysym_table)
3520 (fn_keycode_to_keycode_table): Make static const.
3521 (mac_load_query_font): Make variables `tags', `sizes', `values',
3522 `types', and `selectors' static const.
3523 (mac_handle_command_event, mac_handle_window_event):
3524 Make variables `names' and `types' static const.
3525 (init_command_handler, install_window_handler): Make variables
3526 `specs*' static const.
3527 (mac_handle_font_event, mac_handle_text_input_event)
3528 (mac_store_service_event): Make variables `names' and `types'
3529 const. Make variables `names_*' and `types_*' static const.
3530
3531 * macterm.h (create_apple_event_from_event_ref)
3532 (create_apple_event_from_drag_ref, xrm_merge_string_database)
3533 (xrm_get_resource, xrm_get_preference_database): Add const
3534 qualifier to arguments in externs.
3535
3536 2006-10-31 Kenichi Handa <handa@m17n.org>
3537
3538 * xfns.c (xic_create_xfontset): Fix previous change.
3539
3540 2006-10-30 Chong Yidong <cyd@stupidchicken.com>
3541
3542 * s/openbsd.h (LD_SWITCH_SYSTEM): Add /usr/pkg/lib and
3543 /usr/pkg/lib to library search path.
3544
3545 2006-10-29 Mark Davies <mark@mcs.vuw.ac.nz> (tiny change)
3546
3547 * ralloc.c (relinquish): Use a long for excess space counter to
3548 handle 64-bit case correctly.
3549
3550 2006-10-29 Jeramey Crawford <jeramey@jeramey.com>
3551
3552 * m/amdx86-64.h: Add defines for OpenBSD x86-64.
3553
3554 2006-10-29 Juanma Barranquero <lekktu@gmail.com>
3555
3556 * window.c (Fdisplay_buffer): Fix typo in docstring.
3557
3558 2006-10-27 Ben North <ben@redfrontdoor.org> (tiny change)
3559
3560 * w32term.c (x_draw_glyph_string_foreground): Set background mode
3561 to TRANSPARENT before using overstrike to simulate bold faces.
3562
3563 * xfaces.c (best_matching_font): Fix logic to decide whether to
3564 use overstriking to simulate bold-face (it was reversed).
3565
3566 2006-10-23 Kim F. Storm <storm@cua.dk>
3567
3568 * xdisp.c (remember_mouse_glyph): Do nothing if glyphs are not
3569 initialized.
3570
3571 * keyboard.c (read_char): Make an element (t . EVENT) in
3572 unread-command-events add EVENT to the current command's key sequence.
3573 (syms_of_keyboard) <unread-command-events>: Update doc.
3574
3575 2006-10-21 Richard Stallman <rms@gnu.org>
3576
3577 * minibuf.c (Vread_expression_map): Define here.
3578 (Qread_expression_history): New variable.
3579 (syms_of_minibuf): Initialize them.
3580 (Feval_minibuffer): Use Vread_expression_map and
3581 Qread_expression_history.
3582
3583 2006-10-21 Kenichi Handa <handa@m17n.org>
3584
3585 * xfns.c (xic_create_fontsetname): If ADSTYLE field is not a wild
3586 card, change it to "*".
3587 (xic_create_xfontset): Call XCreateFontSet for each single
3588 fontname in fontsetname.
3589
3590 2006-10-19 Chong Yidong <cyd@stupidchicken.com>
3591
3592 * callint.c (callint_message): Convert to a Lisp string.
3593 (syms_of_callint): Initialize it.
3594 (callint_message_size): Var deleted.
3595 (Fcall_interactively): Use Fformat instead of doprnt to construct
3596 prompt string.
3597
3598 2006-10-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3599
3600 * xdisp.c (display_mode_line): Clear enabled_p flag on mode-line row.
3601
3602 2006-10-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3603
3604 * macfns.c (Vmac_carbon_version_string) [TARGET_API_MAC_CARBON]:
3605 New variable.
3606 (syms_of_macfns) [TARGET_API_MAC_CARBON]: Defvar it.
3607
3608 2006-10-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3609
3610 * xselect.c (x_handle_selection_request): If the converted_selection
3611 is nil or XCDR (converted_selection) is nil, decline the request.
3612
3613 2006-10-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3614
3615 * gtkutil.c (get_utf8_string): Remove warnings with casts.
3616 (xg_tool_bar_button_cb): Ditto.
3617 (xg_tool_bar_callback): Ditto.
3618
3619 2006-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3620
3621 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay): Remove unused
3622 variable ch_dim.
3623 (adjust_frame_glyphs_for_window_redisplay): Likewise. Don't allocate
3624 menu bar window matrices on non-X systems.
3625
3626 * mac.c (Fmac_get_preference, Fmac_code_convert_string): Add GCPROs.
3627
3628 * macterm.c (mac_query_char_extents): Don't return glyph ID if layout
3629 adjustment is needed.
3630 (mac_load_query_font): Check if width and height are positive.
3631
3632 2006-10-14 Richard Stallman <rms@gnu.org>
3633
3634 * sysdep.c (init_sys_modes): Delete DEFVAR_LISP in the wrong place.
3635
3636 2006-10-13 Chong Yidong <cyd@stupidchicken.com>
3637
3638 * xdisp.c (decode_mode_spec): Ignore %c and %l constructs in frame
3639 title.
3640
3641 2006-10-12 Chong Yidong <cyd@stupidchicken.com>
3642
3643 * keymap.c (Fkey_binding): Check Lisp_Object types before doing
3644 XCAR and XINT.
3645
3646 2006-10-12 Romain Francoise <romain@orebokech.com>
3647
3648 * image.c (xbm_read_bitmap_data): Delete extra semicolon.
3649
3650 2006-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
3651
3652 * eval.c: Include xterm.h for x_fully_uncatch_errors and friends.
3653
3654 * dispextern.h: Declare x_create_bitmap_from_xpm_data.
3655
3656 * xterm.c (x_check_expected_move): Remove unused var `count'.
3657
3658 * xmenu.c (syms_of_xmenu): Use Ffset rather than Fdefalias, since
3659 Fdefalias is not declared in any *.h file.
3660
3661 2006-10-09 Chong Yidong <cyd@stupidchicken.com>
3662
3663 * dispnew.c (sit_for): Sit forever if TIMEOUT is t.
3664
3665 * keyboard.c (command_loop_1): Handle non-number values of
3666 `minibuffer-message-timeout'.
3667 (Fexecute_extended_command): Fix typo.
3668
3669 * minibuf.c (temp_echo_area_glyphs): Sit for
3670 `minibuffer-message-timeout' seconds.
3671
3672 2006-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3673
3674 * macterm.c (mac_draw_image_string, mac_draw_image_string_16):
3675 Add argument OVERSTRIKE_P.
3676 (mac_draw_string_common, mac_draw_image_string_cg): Likewise.
3677 Support overstrike.
3678 (mac_draw_string, mac_draw_string_16): Remove functions.
3679 (x_draw_glyph_string_foreground): Use overstrike when needed.
3680 (x_draw_composite_glyph_string_foreground): Likewise.
3681 Use mac_draw_image_string_16 instead of mac_draw_string_16.
3682 (mac_load_query_font): Rename from XLoadQueryFont. Take argument
3683 F instead of DPY. All uses changed. Don't save/restore font.
3684
3685 2006-10-07 Ralf Angeli <angeli@caeruleus.net>
3686
3687 * w32fns.c (w32_createwindow): Honour left and top positions if
3688 supplied explicitly.
3689
3690 2006-10-06 Kim F. Storm <storm@cua.dk>
3691
3692 * xdisp.c (pos_visible_p): Fix value when EOB is visible.
3693
3694 2006-10-05 Chong Yidong <cyd@stupidchicken.com>
3695
3696 * frame.c (Qinhibit_face_set_after_frame_default): New var.
3697 (syms_of_frame): Initialize it.
3698 (x_set_frame_parameters): Avoid resetting :font attributes to the
3699 new-frame defaults.
3700
3701 2006-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
3702
3703 * lisp.h (clear_regexp_cache): Declare.
3704
3705 * search.c (compile_pattern): Only check `cp->syntax_table' if needed.
3706 (compile_pattern_1): Remember `used_syntax' in `cp->syntax_table'.
3707 (clear_regexp_cache): Only flush those regexps which depend on
3708 a syntax-table.
3709
3710 * regex.c (regex_compile): Set the new `used_syntax' bit.
3711
3712 * regex.h: Remove file local variables.
3713 (struct re_pattern_buffer): New field `used_syntax'.
3714
3715 2006-10-03 Kim F. Storm <storm@cua.dk>
3716
3717 * process.c (list_processes_1): Run sentinels before removing dead
3718 processes. Also remove `closed' network connections.
3719
3720 2006-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
3721
3722 * xdisp.c (handle_fontified_prop): Don't fontify at EOB.
3723
3724 2006-09-30 Eli Zaretskii <eliz@gnu.org>
3725
3726 * config.in: Regenerated.
3727
3728 2006-09-29 Juri Linkov <juri@jurta.org>
3729
3730 * buffer.c (syms_of_buffer): Reorder coding systems in the
3731 docstring of %z to the real order displayed in the modeline.
3732
3733 2006-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
3734
3735 * keymap.c (Fdefine_key): Yet another int/Lisp_Object mixup (YAILOM).
3736
3737 2006-09-26 Chong Yidong <cyd@stupidchicken.com>
3738
3739 * indent.c (Fvertical_motion): Do move back if the Lisp string
3740 being displayed contains newlines.
3741
3742 2006-09-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3743
3744 * macterm.c (mac_compute_glyph_string_overhangs, XLoadQueryFont)
3745 [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw before QDTextBounds.
3746
3747 2006-09-26 Kenichi Handa <handa@m17n.org>
3748
3749 * keymap.c (Fsingle_key_description): For an invalid char, return
3750 "Invalid char code NNNNN".
3751
3752 2006-09-25 Chong Yidong <cyd@stupidchicken.com>
3753
3754 * callint.c (Fcall_interactively): Doc fix.
3755
3756 2006-09-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3757
3758 * macterm.c (x_underline_at_descent_line): New variable.
3759 (syms_of_macterm): DEFVAR_BOOL it.
3760 (x_draw_glyph_string): Use it.
3761 (XLoadQueryFont): Calculate min_bounds.descent and max_bounds.descent.
3762
3763 2006-09-25 Kenichi Handa <handa@m17n.org>
3764
3765 * keymap.c (Fsingle_key_description): Return unique names for
3766 generic characters.
3767
3768 2006-09-24 Richard Stallman <rms@gnu.org>
3769
3770 * search.c (compile_pattern_1): Don't BLOCK_INPUT.
3771
3772 2006-09-24 Eli Zaretskii <eliz@gnu.org>
3773
3774 * makefile.w32-in ($(BLD)/fns.$(O), $(BLD)/w32proc.$(O)):
3775 Depend on nt/inc/langinfo.h and nt/inc/nl_types.h.
3776
3777 * w32proc.c (nl_langinfo): New function.
3778
3779 * w32fns.c (w32-pass-alt-to-system, w32-alt-is-meta)
3780 (w32-pass-lwindow-to-system, w32-enable-num-lock)
3781 (w32-enable-caps-lock, w32-scroll-lock-modifier)
3782 (w32-lwindow-modifier, w32-rwindow-modifier)
3783 (w32-apps-modifier, w32-mouse-button-tolerance): Doc fix.
3784
3785 2006-09-23 Juanma Barranquero <lekktu@gmail.com>
3786
3787 * minibuf.c (Finternal_complete_buffer, Fread_minibuffer)
3788 (Fdisplay_completion_list): Fix typos in docstrings.
3789
3790 2006-09-23 Romain Francoise <romain@orebokech.com>
3791
3792 * s/gnu-linux.h (MAIL_USE_FLOCK): Check for HAVE_LIBLOCKFILE too.
3793
3794 2006-09-23 Kenichi Handa <handa@m17n.org>
3795
3796 * keymap.c (Fmap_keymap): Docstring mentions about generic character.
3797
3798 2006-09-22 Stefan Monnier <monnier@iro.umontreal.ca>
3799
3800 * regex.c (analyse_first): For eight-bit-control chars, mark both the
3801 char's value and its leading byte in the fastmap.
3802 (re_search_2): When fast-scanning without translation, be careful to
3803 check that we only match the leading byte of a multibyte char.
3804
3805 * charset.h (PREV_CHAR_BOUNDARY): Make it work from within a char's
3806 byte sequence.
3807 (AT_CHAR_BOUNDARY): New macro.
3808
3809 2006-09-22 Kenichi Handa <handa@m17n.org>
3810
3811 * fns.c (optimize_sub_char_table): Don't optimize a sub-char-table
3812 whose default value is non-nil.
3813
3814 2006-09-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3815
3816 * gtkutil.c (xg_get_file_with_chooser): Only show C-l help for
3817 Gtk+ versions < 2.10.
3818
3819 * xfns.c (syms_of_xfns): Fix typo in help text for
3820 x-gtk-file-dialog-help-text.
3821
3822 2006-09-21 Kim F. Storm <storm@cua.dk>
3823
3824 * fns.c (Fmemq): Refill doc string.
3825 (Fmemql): New defun, like memq but using eql.
3826 (syms_of_fns): Defsubr it.
3827
3828 2006-09-20 Kim F. Storm <storm@cua.dk>
3829
3830 * xdisp.c (pos_visible_p): CHARPOS < 0 means return info for
3831 last visible glyph in window.
3832
3833 * window.c (Fset_window_hscroll, Fwindow_line_height):
3834 Doc fix. Use "off-window" instead of "off-screen".
3835 (Fpos_visible_in_window_p): Likewise.
3836 If POS is t, return info for last visible glyph in window.
3837
3838 2006-09-19 Chong Yidong <cyd@stupidchicken.com>
3839
3840 * search.c (struct regexp_cache): New entry syntax_table.
3841 (compile_pattern_1): Set it.
3842 (syms_of_search): Initialize it.
3843 (compile_pattern): Require the syntax_table entry of the cache
3844 element to match the current syntax table entry.
3845
3846 2006-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
3847
3848 * window.c (Fwindow_end): Fix recent change.
3849
3850 2006-09-19 Kim F. Storm <storm@cua.dk>
3851
3852 * window.c (Fset_window_hscroll, Fpos_visible_in_window_p):
3853 Doc fix. Use "off-screen" instead of "invisible".
3854 (Fwindow_line_height): Make line numbers 0-based. Make line arg
3855 optional; if nil, use current cursor row. Handle text terminals
3856 properly. Return nil if non-interactive or pseudo-window.
3857
3858 2006-09-19 Stefan Monnier <monnier@iro.umontreal.ca>
3859
3860 * keymap.c: Include alloca.h if available.
3861 (Fkey_binding): Only use AREF after checking it's a vector.
3862 Remove unused var `window'.
3863
3864 2006-09-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3865
3866 * emacs.c (shut_down_emacs) [!subprocesses]: Don't set
3867 inhibit_sentinels.
3868
3869 * mac.c [!MAC_OSX] (select): Fix argument name.
3870
3871 * macmenu.c (enum mac_menu_kind, min_menu_id): New enumerator and
3872 menu ID for Apple menu.
3873 (menubar_selection_callback): Remove function.
3874 (find_and_call_menu_selection): New function from xmenu.c.
3875 (x_activate_menubar): Use it.
3876 (set_frame_menubar): Don't use f->output_data.mac->menubar_active.
3877
3878 * macterm.c (menubar_selection_callback): Remove extern.
3879 (M_APPLE): Change to 234.
3880 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Make non-static.
3881 (do_menu_choice): Remove function.
3882
3883 * macterm.h (struct mac_output): Remove member menubar_active.
3884 (do_menu_choice): Remove extern.
3885 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Add extern.
3886
3887 2006-09-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3888
3889 * xfns.c (syms_of_xfns): Rename x_gtk_show_chooser_help_text to
3890 x_gtk_file_dialog_help_text.
3891
3892 * gtkutil.c (xg_uses_old_file_dialog): Rename x-use-old-gtk-file-dialog
3893 to x-gtk-use-old-file-dialog.
3894 (xg_get_file_with_chooser): Rename x_gtk_show_chooser_help_text to
3895 x_gtk_file_dialog_help_text.
3896
3897 * xfns.c (syms_of_xfns): Ditto.
3898
3899 2006-09-18 Kim F. Storm <storm@cua.dk>
3900
3901 * window.c (Fwindow_line_visibility): Remove.
3902 (Fwindow_line_height): New defun replacing it.
3903 (syms_of_window): Defsubr it.
3904
3905 2006-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3906
3907 * mac.c (SELECT_USE_CFSOCKET) [MAC_OSX]: Set default to 1.
3908 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]: Fix pointer type.
3909
3910 2006-09-17 Jay Belanger <belanger@truman.edu>
3911
3912 * gmalloc.c:
3913 * md5.c:
3914 * md5.h:
3915 * strftime.c: Replace "GNU Library General Public License" by "GNU
3916 General Public License" throughout.
3917
3918 2006-09-17 Kim F. Storm <storm@cua.dk>
3919
3920 * dispnew.c (update_text_area): Undo 2000-07-18 change.
3921 Always redrawing whole row if line has mouse-face in it causes
3922 excessive flickering of the mode line.
3923
3924 2006-09-17 Chong Yidong <cyd@stupidchicken.com>
3925
3926 * search.c (clear_regexp_cache): New function.
3927
3928 * syntax.c (Fmodify_syntax_entry): Clear regexp cache.
3929
3930 2006-09-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3931
3932 * gtkutil.c (xg_get_file_with_chooser):
3933 Check x-gtk-show-chooser-help-text before adding the help text.
3934
3935 * xfns.c (syms_of_xfns): New variable: x-gtk-show-chooser-help-text.
3936
3937 * gtkutil.c (get_utf8_string): Try harder to convert to UTF8. Gtk+
3938 will simply crash if we fail.
3939
3940 2006-09-16 Richard Stallman <rms@gnu.org>
3941
3942 * regex.c (re_compile_pattern): Set gl_state.current_syntax_table.
3943
3944 2006-09-15 Kim F. Storm <storm@cua.dk>
3945
3946 * window.c (Fwindow_line_visibility): New defun for line-move-partial.
3947 (syms_of_window): Defsubr it.
3948 (Fwindow_end): Use window's buffer rather than current buffer.
3949
3950 2006-09-15 Jay Belanger <belanger@truman.edu>
3951
3952 * COPYING: Replace "Library Public License" by "Lesser Public
3953 License" throughout.
3954
3955 2006-09-15 David Kastrup <dak@gnu.org>
3956
3957 * Makefile.in (keymap.o): Add "keymap.h" and "window.h" dependencies.
3958
3959 * keymap.c: include "window.h".
3960 (Fcommand_remapping): New optional POSITION argument.
3961 (Fkey_binding): New optional POSITION argument. Completely rework
3962 handling of mouse clicks to get the same order of keymaps as
3963 `read-key-sequence' and heed POSITION. Also temporarily switch
3964 buffers to location of mouse click and back.
3965
3966 * keyboard.c (command_loop_1): Adjust call of `Fcommand_remapping'
3967 for additional argument.
3968 (parse_menu_item): Adjust call of `Fkey_binding' for additional
3969 argument.
3970 (read_key_sequence): If there are both `local-map' and `keymap'
3971 text properties at some buffer position, heed both.
3972
3973 * keymap.h: Declare additional optional arguments of
3974 `Fcommand_remapping' and `Fkey_binding'.
3975
3976 2006-09-15 Juanma Barranquero <lekktu@gmail.com>
3977
3978 * indent.c (Fcurrent_column, Findent_to): Fix typos in docstring.
3979
3980 2006-09-14 Andreas Schwab <schwab@suse.de>
3981
3982 * print.c: Whitespace fixup.
3983
3984 2006-09-14 Kim F. Storm <storm@cua.dk>
3985
3986 * xdisp.c (produce_image_glyph): Automatically crop wide images at
3987 right window edge so we can draw the cursor on the same row to
3988 avoid confusing redisplay by placing the cursor outside the visible
3989 window area.
3990
3991 2006-09-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3992
3993 * xterm.c (x_initialize): Don't install Xt event timer here.
3994 (x_timeout_atimer_activated_flag): New var.
3995 (x_activate_timeout_atimer): New function to install Xt timer.
3996 (x_send_scroll_bar_event, x_process_timeouts): Use it.
3997
3998 * xmenu.c (x_menu_set_in_use, popup_activate_callback)
3999 (create_and_show_popup_menu, create_and_show_dialog): Use it.
4000
4001 * xterm.h (x_activate_timeout_atimer): Add prototype.
4002
4003 2006-09-13 Richard Stallman <rms@gnu.org>
4004
4005 * print.c (print_string): When printcharfun is t,
4006 copy string contents and call strout on the copy.
4007
4008 * keyboard.c (read_char): If end_time specified, don't put the
4009 event into this_command_keys.
4010 (read_key_sequence): If Voverriding_terminal_local_map is specified,
4011 don't check Voverriding_local_map at all.
4012
4013 2006-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4014
4015 * textprop.c (Fnext_property_change, Fnext_single_property_change)
4016 (Fprevious_property_change, Fprevious_single_property_change):
4017 Avoid changing limit, so we can correctly catch the case where the
4018 property is constant up to limit.
4019
4020 2006-09-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4021
4022 * macfns.c (mac_window) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
4023 * macterm.c (XTread_socket) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
4024 Undo 2006-09-08 change.
4025
4026 2006-09-11 Chong Yidong <cyd@stupidchicken.com>
4027
4028 * keymap.c (Fkey_binding): Use string position for string objects.
4029
4030 2006-09-11 Kim F. Storm <storm@cua.dk>
4031
4032 * keymap.c (Fkey_binding): Fix last change.
4033
4034 * editfns.c (Fmessage): Recommend using (message "%s" ...).
4035
4036 2006-09-10 Chong Yidong <cyd@stupidchicken.com>
4037
4038 * keymap.c (Fkey_binding): Check for local keymap for mouse click
4039 events.
4040
4041 2006-09-10 Kim F. Storm <storm@cua.dk>
4042
4043 * keyboard.c (Finput_pending_p): Check Vunread_input_method_events
4044 and Vunread_post_input_method_events.
4045
4046 * dispnew.c (Fredisplay): Document return value.
4047
4048 2006-09-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4049
4050 * xfns.c (Fx_close_connection): Call xg_display_close when USE_GTK.
4051
4052 * gtkutil.c (xg_display_close): Always change default display if needed,
4053 check for < Gtk+ version 2.10 before calling gdk_display_close.
4054
4055 2006-09-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4056
4057 * mac.c [MAC_OSX] (sys_select): Check argument `nfds' more rigidly.
4058 Make variable `ofds' static. Remove variable `maxfd'.
4059
4060 * macfns.c (Fx_file_dialog): Remove unused variable `f'.
4061 Call check_mac.
4062
4063 * macmenu.c (Vmenu_updating_frame, syms_of_macmenu):
4064 * w32menu.c (Vmenu_updating_frame, syms_of_w32menu):
4065 Apply 2006-09-08 change for xmenu.c.
4066
4067 * xfns.c (Fx_file_dialog): Call check_x.
4068
4069 2006-09-10 Kim F. Storm <storm@cua.dk>
4070
4071 * xdisp.c (get_window_cursor_type): Use hollow cursor on
4072 non-transparent images.
4073
4074 2006-09-09 Eli Zaretskii <eliz@gnu.org>
4075
4076 * editfns.c (Fsystem_name): Mention "host" in the doc string.
4077 (syms_of_editfns) <system-name>: Likewise.
4078
4079 2006-09-08 Martin Rudalics <rudalics@gmx.at>
4080
4081 * xdisp.c (mouse_autoselect_window): Remove.
4082 (Vmouse_autoselect_window): New variable. DEFVAR_LISP it.
4083
4084 * dispextern.h (mouse_autoselect_window): Remove extern.
4085 (Vmouse_autoselect_window): Add extern.
4086
4087 * macterm.c (XTread_socket): Test Vmouse_autoselect_window
4088 instead of mouse_autoselect_window.
4089
4090 * msdos.c (dos_rawgetc): Likewise.
4091
4092 * w32term.c (w32_read_socket): Likewise.
4093
4094 * xterm.c (handle_one_xevent): Likewise.
4095
4096 2006-09-08 Richard Stallman <rms@gnu.org>
4097
4098 * xdisp.c (Vmenu_updating_frame): Define here.
4099 (syms_of_xdisp): DEFVAR it here.
4100 (update_menu_bar): Always return hooks_run.
4101 Set Vmenu_updating_frame.
4102
4103 * xdisp.c (redisplay_internal): Test Vinhibit_redisplay
4104 before calculating SELECTED_FRAME.
4105
4106 * xmenu.c (Vmenu_updating_frame): Don't define here.
4107 (syms_of_xmenu): Don't DEFVAR it here.
4108
4109 * xterm.c (x_error_quitter): For BadName error, just return.
4110
4111 * eval.c (find_handler_clause): Give up on debugger if INPUT_BLOCKED_P.
4112
4113 * casetab.c (init_casetab_once): Call set_case_table.
4114
4115 * emacs.c (shut_down_emacs): Set inhibit_sentinels.
4116
4117 * process.c (inhibit_sentinels): New variable.
4118 (exec_sentinel): Test inhibit_sentinels.
4119 (init_process): Initialize it.
4120
4121 * process.h (inhibit_sentinels): Add decl.
4122
4123 * search.c (looking_at_1, string_match_1, search_command):
4124 Make syntax table's canon table point to eqv table.
4125
4126 2006-09-08 Andreas Schwab <schwab@suse.de>
4127
4128 * print.c (strout): Fix whitespace.
4129
4130 2006-09-08 Kim F. Storm <storm@cua.dk>
4131
4132 * xterm.c (x_draw_glyph_string): Fix 2006-08-24 change.
4133
4134 2006-09-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4135
4136 * mac.c [!MAC_OSX]: Don't include keyboard.h.
4137 [!MAC_OSX] (select): Try detect_input_pending before ReceiveNextEvent
4138 in the same BLOCK_INPUT block, in case that some input has already
4139 been read asynchronously. Pretend to be interrupted by a signal
4140 if some input is available.
4141 [MAC_OSX] (select_and_poll_event, sys_select): Likewise.
4142 (SELECT_POLLING_PERIOD_USEC) [SELECT_USE_CFSOCKET]: Change to 100000.
4143 Now used for ReceiveNextEvent timeout instead of select timeout.
4144 (EVENT_CLASS_SOCK) [SELECT_USE_CFSOCKET]: Remove macro.
4145 [SELECT_USE_CFSOCKET] (socket_callback): Add non-blocking connect
4146 support. Quit event loop.
4147 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]: Add non-blocking
4148 connect support. Reuse previously allocated CFRunLoopSource.
4149 (Fmac_process_hi_command) [TARGET_API_MAC_CARBON]: New function.
4150 (syms_of_mac) [TARGET_API_MAC_CARBON]: Defsubr it.
4151
4152 * macfns.c (mac_window) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
4153 Specify kWindowAsyncDragAttribute.
4154
4155 * macterm.c (mac_handle_origin_change, mac_handle_size_change)
4156 (mac_get_ideal_size): New functions.
4157 (x_set_offset, x_set_window_size, x_make_frame_visible)
4158 (do_zoom_window, mac_handle_window_event, XTread_socket): Use them.
4159 (install_window_handler, mac_handle_window_event)
4160 [USE_CARBON_EVENTS]: Handle kEventWindowGetIdealSize and
4161 kEventWindowBoundsChanged.
4162 (XTread_socket) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Don't call
4163 DragWindow.
4164
4165 2006-09-07 Andreas Schwab <schwab@suse.de>
4166
4167 * m/ibms390x.h (START_FILES, LIB_STANDARD): Override to
4168 use lib64 instead of lib.
4169
4170 2006-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
4171
4172 * Makefile.in: Avoid double quotes when possible.
4173
4174 2006-09-06 Kenichi Handa <handa@m17n.org>
4175
4176 * editfns.c (Fformat_time_string): Use make_unibyte_string to make
4177 a Lisp string from the result of emacs_memftimeu call.
4178
4179 2006-09-06 Kim F. Storm <storm@cua.dk>
4180
4181 * xdisp.c (pos_visible_p): Remove exact_mode_line_heights_p arg;
4182 so calculate heights even when pos-visible-in-window-p is called
4183 with partially = t. Don't overshoot last_visible_y in move_it_to.
4184 Return row height and row number in new rowh and vpos args.
4185 (cursor_row_fully_visible_p): First line is always "fully visible".
4186 (try_window): Don't clear matrix if vscrolled.
4187
4188 * lisp.h (pos_visible_p): Update prototype.
4189
4190 * window.c (Fpos_visible_in_window_p): Adapt to new pos_visible_p.
4191 Return row height and row number for partially visible rows.
4192 Modify return value to a 2 element list for fully visible rows and
4193 6 for partially visible row.
4194 (window_scroll_pixel_based): Use pos_visible_p directly instead of
4195 Fpos_visible_in_window_p. Fix auto vscrolling for partially
4196 visible lines. Only vscroll backwards if already vscrolled
4197 forwards. Unconditionally vscroll forwards if PT is first (and
4198 only) line. Set new window start instead of scrolling at
4199 start/end of tall line.
4200
4201 2006-09-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4202
4203 * macterm.c (install_window_handler, mac_handle_window_event)
4204 [USE_CARBON_EVENTS]: Handle kEventWindowClose.
4205 [USE_MAC_TSM] (mac_handle_text_input_event): Set modifiers for
4206 ASCII keystroke event.
4207
4208 2006-09-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4209
4210 * gtkutil.c (xg_get_file_with_chooser): Don't mention specific keys in
4211 the file chooser message. Only call gtk_file_chooser_set_current_name
4212 when action is SAVE.
4213
4214 2006-09-04 Andreas Schwab <schwab@suse.de>
4215
4216 * Makefile.in: Double all single and back quotes in C-style
4217 comments to help fontifier.
4218
4219 2006-09-03 Jason Rumney <jasonr@gnu.org>
4220
4221 * w32.c (shutdown_handler): New function to exit cleanly on shutdown.
4222 (globals_of_w32): Register it as a signal handler.
4223
4224 2006-09-02 Juri Linkov <juri@jurta.org>
4225
4226 * marker.c (Fmarker_position): Doc fix.
4227
4228 2006-09-03 Eli Zaretskii <eliz@gnu.org>
4229
4230 * window.c (syms_of_window) <split-height-threshold>:
4231 <window-min-height, window-min-width>: Doc fix.
4232
4233 2006-09-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4234
4235 * gtkutil.c (xg_get_file_with_chooser): Change file chooser message
4236 for writing files. Call gtk_file_chooser_set_current_name to keep
4237 default filename.
4238
4239 * minibuf.c (Finternal_complete_buffer): Move after DEFUN:s it calls.
4240
4241 2006-09-02 Jindrich Makovicka <makovick@gmail.com> (tiny change)
4242
4243 * fns.c (concat) [__GNUC__]: Declare with
4244 `__attribute__((noinline))'.
4245
4246 * eval.c (apply1, call2) [__GNUC__]: Declare with
4247 `__attribute__((noinline))'.
4248
4249 2006-09-02 Stuart D. Herring <herring@lanl.gov>
4250
4251 * minibuf.c (Finternal_complete_buffer): New function.
4252 (syms_of_minibuf): Defsubr it.
4253 (Fread_buffer): Use it, instead of Vbuffer_alist.
4254
4255 2006-09-01 Martin Rudalics <rudalics@gmx.at>
4256
4257 * buffer.h (struct buffer_text): New field chars_modiff.
4258 (CHARS_MODIFF, BUF_CHARS_MODIFF): New macros.
4259 * buffer.c (Fbuffer_chars_modified_tick): New function returning
4260 value of BUF_CHARS_MODIFF.
4261 (syms_of_buffer): Defsubr it.
4262 (Fget_buffer_create): Initialize BUF_CHARS_MODIFF.
4263 * insdel.c (modify_region): New argument preserve_chars_modiff.
4264 Set CHARS_MODIFF to MODIFF provided preserve_chars_modiff is zero.
4265 (insert_1_both, insert_from_string_1, insert_from_buffer_1)
4266 (adjust_after_replace, adjust_after_replace_noundo)
4267 (replace_range, replace_range_2, del_range_2): Reset CHARS_MODIFF.
4268 * lisp.h (modify_region): Add fourth argument in extern.
4269 * casefiddle.c (casify_region): Call modify_region with fourth
4270 argument zero to assert that CHARS_MODIFF is updated.
4271 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
4272 (Ftranspose_regions): Likewise.
4273 * textprop.c (Fadd_text_properties, Fset_text_properties)
4274 (Fremove_text_properties, Fremove_list_of_text_properties):
4275 Call modify_region with fourth argument 1 to avoid that
4276 CHARS_MODIFF is updated.
4277
4278 2006-08-31 Richard Stallman <rms@gnu.org>
4279
4280 * editfns.c (Fformat): Don't sign-extend for %o or %x.
4281
4282 2006-08-29 Chong Yidong <cyd@stupidchicken.com>
4283
4284 * indent.c (Fvertical_motion): Don't move back if we were
4285 displaying a Lisp string, either.
4286
4287 2006-08-28 Kim F. Storm <storm@cua.dk>
4288
4289 * xdisp.c (get_window_cursor_type) [!HAVE_WINDOW_SYSTEM]:
4290 Don't attempt to replace cursor on image glyphs.
4291
4292 2006-08-28 Kenichi Handa <handa@m17n.org>
4293
4294 * coding.c (Fdetect_coding_region, Fdetect_coding_string):
4295 Fix docstring about ISO-2022 control characters.
4296
4297 2006-08-28 Kim F. Storm <storm@cua.dk>
4298
4299 * xdisp.c (get_window_cursor_type): Replace BOX cursor on images
4300 with a hollow box cursor if image is larger than 32x32 (or the default
4301 frame font if that is bigger). Replace any other cursor on images
4302 with hollow box cursor, as redisplay doesn't support bar and hbar
4303 cursors on images.
4304
4305 2006-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4306
4307 * alloc.c (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Undo previous
4308 change. Move mutex lock/unlock operations inside BLOCK_INPUT.
4309
4310 * dired.c (directory_files_internal_unwind, directory_files_internal)
4311 (file_name_completion): Add BLOCK_INPUT around opendir/closedir.
4312
4313 * image.c [MAC_OS] (image_load_qt_1): Use ComponentResult instead
4314 of OSErr.
4315
4316 * keyboard.c (in_sighandler): Remove variable.
4317 (Fcurrent_idle_time): Add missing `doc:'.
4318 (input_available_signal, init_keyboard): Undo previous change.
4319
4320 * keyboard.h (in_sighandler): Remove extern.
4321
4322 * mac.c (create_apple_event_from_event_ref, select)
4323 (Fmac_get_file_creator, Fmac_get_file_type, Fmac_set_file_creator)
4324 (Fmac_set_file_type, cfstring_create_normalized)
4325 (mac_get_system_locale, select_and_poll_event, sys_select):
4326 Use OSStatus instead of OSErr.
4327
4328 * macfns.c [TARGET_API_MAC_CARBON] (mac_update_proxy_icon):
4329 Don't use FRAME_FILE_NAME. Use (FS)UpdateAlias.
4330 (Fx_create_frame): Apply 2006-07-03 for xfns.c.
4331
4332 * macselect.c (get_scrap_from_symbol, clear_scrap, put_scrap_string)
4333 (put_scrap_private_timestamp, scrap_has_target_type, get_scrap_string)
4334 (get_scrap_private_timestamp, get_scrap_target_type_list)
4335 (x_own_selection, x_get_foreign_selection)
4336 (Fx_disown_selection_internal, Fx_selection_owner_p)
4337 (Fx_selection_exists_p): Use OSStatus instead of OSErr.
4338
4339 * macterm.c (mac_draw_string_common, mac_query_char_extents)
4340 (x_iconify_frame, XLoadQueryFont, install_window_handler)
4341 (mac_handle_command_event, init_command_handler, init_menu_bar):
4342 Use OSStatus instead of OSErr.
4343 (x_free_frame_resources) [TARGET_API_MAC_CARBON]: Don't use
4344 FRAME_FILE_NAME.
4345 (x_query_font): Apply 2006-08-04 change for xterm.c.
4346 (Qhi_command): Rename from Qhicommand. All uses changed.
4347
4348 * macterm.h (struct mac_output) [TARGET_API_MAC_CARBON]: Remove member
4349 file_name.
4350 (FRAME_FILE_NAME): Remove macro.
4351 (install_window_handler, create_apple_event_from_event_ref):
4352 Return OSStatus instead of OSErr.
4353
4354 2006-08-26 Kim F. Storm <storm@cua.dk>
4355
4356 * buffer.c (Fset_buffer_multibyte):
4357 * editfns.c (Fcurrent_time, Fget_internal_run_time):
4358 * macfns.c (Fxw_color_values):
4359 * w32fns.c (Fxw_color_values):
4360 * xfns.c (Fxw_color_values): Simplify; use list3.
4361
4362 * fileio.c (Fmake_directory_internal, Fdelete_directory)
4363 (Fdelete_file): Simplify; use list1.
4364 (Frename_file, Fadd_name_to_file, Fmake_symbolic_link):
4365 Simplify; remove NO_ARG_ARRAY stuff, use list2.
4366
4367 2006-08-25 Richard Stallman <rms@gnu.org>
4368
4369 * buffer.c (Fswitch_to_buffer): Fix previous change.
4370
4371 2006-08-25 Kim F. Storm <storm@cua.dk>
4372
4373 * keyboard.c (Fcurrent_idle_time): Simplify.
4374
4375 2006-08-25 Richard Stallman <rms@gnu.org>
4376
4377 * fns.c (sxhash_string): Rotate properly; don't lose bits.
4378
4379 2006-08-24 Francesc Rocher <francesc.rocher@gmail.com>
4380
4381 * xdisp.c (overline_margin): New variable.
4382 (x_produce_glyphs): Use it.
4383 (syms_of_xdisp): DEFVAR_INT it.
4384
4385 * xterm.c (x_underline_at_descent_line): New variable.
4386 (syms_of_xterm): DEFVAR_BOOL it.
4387 (x_draw_glyph_string): Use it.
4388 Draw underline and overline up to the end of line if the face
4389 extends to the end of line.
4390
4391 * macterm.c: Likewise.
4392
4393 * w32term.c: Likewise.
4394
4395 2006-08-24 Nick Roberts <nickrob@snap.net.nz>
4396
4397 * buffer.c (Fswitch_to_buffer): Move buffer to front of
4398 buffer-alist if necessary.
4399
4400 2006-08-22 Kim F. Storm <storm@cua.dk>
4401
4402 * xdisp.c (update_tool_bar): Redisplay toolbar also when only
4403 number of items changes.
4404
4405 2006-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
4406
4407 * buffer.c (Fset_buffer_multibyte): Record proper undo entry.
4408
4409 2006-08-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4410
4411 * keyboard.c: Clarify difference between in_sighandler and
4412 handling_signal.
4413
4414 2006-08-21 Kim F. Storm <storm@cua.dk>
4415
4416 * macterm.c (x_draw_stretch_glyph_string):
4417 * w32term.c (x_draw_stretch_glyph_string):
4418 * xterm.c (x_draw_stretch_glyph_string): It is ok to draw a
4419 stretch glyph in left marginal areas on header and mode lines.
4420
4421 2006-08-21 Kenichi Handa <handa@m17n.org>
4422
4423 * keyboard.c (syms_of_keyboard): Docstring of
4424 Vunread_post_input_method_events and Vunread_input_method_events
4425 fixed.
4426
4427 2006-08-20 Chong Yidong <cyd@stupidchicken.com>
4428
4429 * keyboard.c (show_help_echo): Preserve mouse movement flag if
4430 tracking mouse.
4431
4432 2006-08-20 Richard Stallman <rms@gnu.org>
4433
4434 * xfaces.c (load_pixmap): Add quotes in error message.
4435
4436 * keyboard.c (Fcurrent_idle_time): New function.
4437 (syms_of_keyboard): defsubr it.
4438
4439 2006-08-18 Nick Roberts <nickrob@snap.net.nz>
4440
4441 * window.c (Fset_window_fringes): Do nothing on a tty.
4442 (Fwindow_fringes): Put ? operator after the line break.
4443
4444 2006-08-16 Andreas Schwab <schwab@suse.de>
4445
4446 * print.c (debug_output_compilation_hack): Fix return type.
4447
4448 2006-08-16 Richard Stallman <rms@gnu.org>
4449
4450 * print.c (debug_output_compilation_hack): New function.
4451
4452 2006-08-16 Kenichi Handa <handa@m17n.org>
4453
4454 * fileio.c (choose_write_coding_system): Use LF for end-of-line
4455 in auto-saving.
4456
4457 2006-08-15 Chong Yidong <cyd@stupidchicken.com>
4458
4459 * keyboard.c (read_char): Don't change idle timer state at all if
4460 end_time is supplied.
4461
4462 2006-08-15 Kenichi Handa <handa@m17n.org>
4463
4464 * coding.c (ONE_MORE_BYTE_CHECK_MULTIBYTE): New arg RET. If SRC
4465 is exhausted, return with RET.
4466 (detect_coding_emacs_mule, detect_coding_iso2022)
4467 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8)
4468 (detect_coding_utf_16, detect_coding_ccl): Adjusted for the above
4469 change.
4470
4471 2006-08-14 Chong Yidong <cyd@stupidchicken.com>
4472
4473 * keyboard.c (read_char): Don't reset idle timers if a time limit
4474 is supplied.
4475
4476 2006-08-14 Kim F. Storm <storm@cua.dk>
4477
4478 * .gdbinit (pitx): Print iterator position.
4479 Limit stack dump in case iterator is not initialized.
4480
4481 2006-08-12 Eli Zaretskii <eliz@gnu.org>
4482
4483 * frame.c (Fmouse_position, Fmouse_pixel_position)
4484 (Fset_mouse_position, Fset_mouse_pixel_position): Doc fix.
4485
4486 2006-08-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4487
4488 * xselect.c (Fx_register_dnd_atom): New function.
4489 (syms_of_xselect): Defsubr it.
4490 (x_handle_dnd_message): Check that message_type is in
4491 dpyinfo->x_dnd_atoms before generating lisp event.
4492
4493 * xterm.h (struct x_display_info): Add x_dnd_atoms* to keep track
4494 of drag and drop Atoms.
4495
4496 * xterm.c (x_term_init): Initialize dpyinfo->x_dnd_atoms*.
4497
4498 2006-08-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4499
4500 * keyboard.c: Define in_sighandler.
4501 (input_available_signal): Set in_sighandler.
4502 (init_keyboard): Initialize in_sighandler.
4503
4504 * keyboard.h: Declare in_sighandler.
4505
4506 * alloc.c (UNBLOCK_INPUT_ALLOC, BLOCK_INPUT_ALLOC): Use in_sighandler
4507 to check if mutex should be locked or not.
4508
4509 2006-08-09 Richard Stallman <rms@gnu.org>
4510
4511 * keyboard.c (keyremap_step): No-op if fkey->parent = nil.
4512 (read_key_sequence): Always start fkey.start and fkey.end at 0,
4513 and likewise for keytran.
4514
4515 2006-08-09 Kenichi Handa <handa@m17n.org>
4516
4517 * coding.c (syms_of_coding): Improve the docstring
4518 of file-coding-system-alist.
4519
4520 2006-08-07 Andreas Schwab <schwab@suse.de>
4521
4522 * puresize.h (BASE_PURESIZE): Increase to 1120000.
4523
4524 2006-08-06 Chong Yidong <cyd@stupidchicken.com>
4525
4526 * buffer.c (Vchange_major_mode_hook, Qchange_major_mode_hook): New vars.
4527 (Fkill_all_local_variables): Use it.
4528 (syms_of_buffer): Defvar it.
4529
4530 2006-08-05 Eli Zaretskii <eliz@gnu.org>
4531
4532 * w32.c (w32_valid_pointer_p): New function.
4533
4534 * w32.h: Add prototype for w32_valid_pointer_p.
4535
4536 * alloc.c: Include w32.h.
4537 (valid_lisp_object_p) [WINDOWSNT]: Call w32_valid_pointer_p to do
4538 the job.
4539
4540 * keyboard.c (kbd_buffer_get_event): Return Qnil when current time
4541 is exactly equal to end_time, not only when it is past that.
4542
4543 2006-08-04 Chong Yidong <cyd@stupidchicken.com>
4544
4545 * keyboard.c (read_char): Rebalance specpdl after receiving jump.
4546
4547 * process.c: Reapply 2006-08-01 change.
4548
4549 2006-08-04 Eli Zaretskii <eliz@gnu.org>
4550
4551 * w32fns.c (w32_query_font): Fix last change: use stricmp.
4552
4553 2006-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4554
4555 * editfns.c (Fsubst_char_in_region): Redo the setup work after running
4556 the before-change-functions since they may have altered the buffer.
4557
4558 2006-08-04 Ralf Angeli <angeli@caeruleus.net>
4559
4560 * w32fns.c (w32_createwindow): Handle -geometry command line option
4561 and the geometry settings in the Registry.
4562
4563 2006-08-04 Kenichi Handa <handa@m17n.org>
4564
4565 * w32fns.c (w32_query_font): Compare names by ignoring case.
4566
4567 * xterm.c (x_query_font): Compare names by ignoring case.
4568
4569 2006-08-03 Jason Rumney <jasonr@gnu.org>
4570
4571 * w32menu.c (w32_menu_show, w32_dialog_show): Call Fsignal to quit
4572 when no option selected.
4573
4574 2006-08-03 Chong Yidong <cyd@stupidchicken.com>
4575
4576 * process.c: Revert last change.
4577
4578 2006-08-01 Kim F. Storm <storm@cua.dk>
4579
4580 * process.c (wait_reading_process_output_unwind): New function.
4581 Restores waiting_for_user_input_p to saved value.
4582 (wait_reading_process_output): Unwind protect waiting_for_user_input_p
4583 instead of save/restore old value on stack.
4584
4585 2006-07-30 Thien-Thi Nguyen <ttn@gnu.org>
4586
4587 * editfns.c: Undo 2006-06-27 change.
4588
4589 2006-07-29 Eli Zaretskii <eliz@gnu.org>
4590
4591 * coding.c (Ffind_operation_coding_system): Revert the change from
4592 2006-05-29.
4593
4594 * alloc.c [WINDOWSNT]: Include fcntl.h, to fix last change.
4595
4596 2006-07-28 Richard Stallman <rms@gnu.org>
4597
4598 * xfaces.c (lookup_named_face, Fdisplay_supports_face_attributes_p):
4599 Add conditional aborts for clarity.
4600
4601 * xdisp.c (update_menu_bar): New arg HOOKS_RUN. Callers changed.
4602 Used to avoid running the hooks over and over for each frame.
4603 (prepare_menu_bars): Pass value from update_menu_bar
4604 as HOOKS_RUN of next call.
4605
4606 * keyboard.c (safe_run_hooks_1): Don't crash if Vrun_hooks is nil.
4607
4608 2006-07-28 Kim F. Storm <storm@cua.dk>
4609
4610 * alloc.c (valid_pointer_p): New function (from valid_lisp_object_p).
4611 (valid_lisp_object_p): Use it to check for valid SUBRP obj.
4612
4613 2006-07-26 Chong Yidong <cyd@stupidchicken.com>
4614
4615 * keyboard.c (read_char): New arg END_TIME specifying timeout.
4616 All callers changed. Turn off echoing if END_TIME is non-NULL.
4617 (kbd_buffer_get_event): New arg END_TIME.
4618
4619 * lread.c (read_filtered_event): New arg SECONDS to wait until.
4620 (Fread_char, Fread_event, Fread_char_exclusive): New arg SECONDS.
4621
4622 * lisp.h: Update read-char, read-event, and read_filtered_event
4623 prototypes.
4624
4625 * keyboard.h: Include systime.h. Update read_char prototype.
4626
4627 2006-07-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4628
4629 * alloc.c (find_string_data_in_pure): New function.
4630 (make_pure_string): Use it to reuse existing string data if possible.
4631
4632 * puresize.h (BASE_PURESIZE): Decrease to 1102000.
4633
4634 2006-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
4635
4636 * keymap.c (Fdefine_key): If the key binding definition looks like an
4637 XEmacs-style key sequence, convert it to Emacs's format.
4638
4639 2006-07-22 Ralf Angeli <angeli@caeruleus.net>
4640
4641 * w32fns.c (w32_createwindow): If `left' and/or `top' frame
4642 parameters are bound to some values, use that instead of
4643 CW_USEDEFAULT.
4644
4645 2006-07-21 Eli Zaretskii <eliz@gnu.org>
4646
4647 * w32.c (convert_time): Use explicit long double constants to
4648 ensure long double arithmetics is used throughout.
4649
4650 2006-07-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4651
4652 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp): New vars.
4653 (init_alloc_once): Initialize them.
4654 (pure_alloc): Allocate non-Lisp objects from the end of pure storage
4655 without alignment.
4656
4657 * puresize.h (BASE_PURESIZE): Decrease to 1141000.
4658
4659 2006-07-18 Francis Litterio <franl@world.std.com>
4660
4661 * w32term.c (x_calc_absolute_position): Fix frame positioning
4662 with negative X/Y coordinates.
4663
4664 2006-07-18 Dan Nicolaescu <dann@ics.uci.edu>
4665
4666 * xterm.c (x_connection_closed, x_error_quitter): Mark as NO_RETURN.
4667
4668 * textprop.c (text_read_only): Likewise.
4669
4670 * lread.c (end_of_file_error): Likewise.
4671
4672 * lisp.h (circular_list_error, memory_full, buffer_memory_full):
4673 Likewise.
4674
4675 * eval.c (unwind_to_catch): Likewise.
4676
4677 * buffer.h (buffer_slot_type_mismatch): Likewise.
4678
4679 2006-07-18 Kim F. Storm <storm@cua.dk>
4680
4681 Cleanup Fsignal calls that never returns; now only use it for Qquit.
4682
4683 * eval.c (xsignal): New func. Like Fsignal, but marked no-return.
4684 (xsignal0, xsignal1, xsignal2, xsignal3): New no-return functions.
4685 (signal_error): New no-return function (from xfaces.c).
4686 (Fthrow): Use xsignal2 instead of Fsignal + abort.
4687 (error): Use xsignal1 instead of Fsignal + abort.
4688 (FletX, Flet, grow_specpdl): Use signal_error.
4689 (Feval, Ffuncall, funcall_lambda): Use xsignal1, xsignal2.
4690
4691 * alloc.c (buffer_memory_full, memory_full): Use xsignal. Remove loop.
4692 (list1): New function.
4693
4694 * lisp.h (list1): Add EXFUN.
4695 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error):
4696 Add prototypes. Mark them as no-return.
4697
4698 * buffer.c (Fbuffer_local_value, Fbarf_if_buffer_read_only):
4699 Use xsignal1.
4700
4701 * callint.c (check_mark): Use xsignal0.
4702
4703 * casefiddle.c (casify_object): wrong_type_argument is no-return.
4704
4705 * cmds.c (Fforward_char, Fdelete_char): Use xsignal0.
4706
4707 * coding.c (Fcheck_coding_system): Use xsignal1. Remove loop.
4708 (Fdefine_coding_system_internal): Use xsignal1.
4709
4710 * data.c (circular_list_error): Use xsignal.
4711 (wrong_type_argument): Use xsignal2. Don't care about return value.
4712 (args_out_of_range, args_out_of_range_3): Use xsignal2, xsignal3.
4713 Remove loop around Fsignal.
4714 (indirect_variable, Fsymbol_value, set_internal, Fdefault_value)
4715 (indirect_function, Findirect_function, Fstring_to_number)
4716 (Fmakunbound, Ffmakunbound, Fsymbol_function, Ffset): Use xsignal1.
4717 (arith_driver, float_arith_driver, Frem, Fmod, arith_error):
4718 Use xsignal0.
4719
4720 * doc.c (Fdocumentation): Use xsignal1.
4721
4722 * editfns.c (region_limit, Fget_internal_run_time): Use xsignal0.
4723
4724 * fileio.c (report_file_error): Use xsignal.
4725 (barf_or_query_if_file_exists, Fcopy_file, Fdelete_file)
4726 (Finsert_file_contents): Use xsignal2.
4727 (syms_of_fileio): Use list2, list3.
4728
4729 * floatfns.c (arith_error, range_error, domain_error): Use xsignal2.
4730 (range_error2, domain_error2): Use xsignal3.
4731 (rounding_driver, fmod_float): Use xsignal0.
4732 (float_error): Use xsignal1.
4733 (matherr): Use xsignal.
4734
4735 * fns.c (Flength): wrong_type_argument is no-return.
4736 (hashfn_user_defined, Fmake_hash_table): Use signal_error.
4737 (Fmd5): Use xsignal1.
4738
4739 * frame.c (x_set_line_spacing, x_set_screen_gamma): Use signal_error.
4740
4741 * keyboard.c (recursive_edit_1): Use xsignal1.
4742
4743 * keymap.c (Fmap_keymap): Use xsignal1.
4744
4745 * lread.c (Fload): Use xsignal2, signal_error.
4746 (end_of_file_error): Use xsignal0, xsignal1.
4747 (read0): Use xsignal1.
4748 (invalid_syntax): New error function marked no-return.
4749 (read_integer, read1, read_list): Use it.
4750
4751 * macselect.c (x_get_local_selection): Use signal_error.
4752
4753 * msdos.c (Fmsdos_set_mouse_buttons): Use xsignal2.
4754
4755 * search.c (compile_pattern_1): Use xsignal1.
4756 (signal_failure): Remove (was only called once).
4757 (search_command): Use xsignal1 instead of signal_failure.
4758
4759 * syntax.c (scan_lists): Use xsignal3.
4760
4761 * textprop.c (text_read_only): Use xsignal0, xsignal1.
4762
4763 * unexsol.c (unexec): Use xsignal.
4764
4765 * window.c (window_scroll_pixel_based, window_scroll_line_based):
4766 Use xsignal0.
4767
4768 * xfaces.c (signal_error): Move to eval.c.
4769 (resolve_face_name): Use xsignal1.
4770
4771 * xfns.c (x_decode_color): Use signal_error.
4772
4773 * xselect.c (x_get_local_selection, copy_multiple_data)
4774 (x_get_window_property_as_lisp_data)
4775 (lisp_data_to_selection_data, CHECK_CUT_BUFFER)
4776 (Fx_get_cut_buffer_internal): Use signal_error.
4777
4778 2006-07-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4779
4780 * macterm.c (XTread_socket): Undo previous change.
4781
4782 2006-07-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4783
4784 * macterm.c (keycode_to_xkeysym): Remove function. All uses now
4785 directly lookup keycode_to_xkeysym_table.
4786 [USE_MAC_TSM] (mac_handle_text_input_event): Don't construct
4787 ASCII_KEYSTROKE_EVENT for non-zero keycode_to_xkeysym_table entries.
4788 (XTread_socket): Use character codes to construct keypad key events.
4789 (mac_initialize_display_info) [MAC_OSX]: Use CGDisplaySamplesPerPixel.
4790 (x_delete_display): Apply 2006-07-04 change for xterm.c.
4791
4792 2006-07-17 Richard Stallman <rms@gnu.org>
4793
4794 * keyboard.c (Vcommand_error_function): New variable.
4795 (syms_of_keyboard): Defvar it.
4796 (cmd_error_internal): Simplify, and handle Vcommand_error_function.
4797
4798 * dispnew.c (init_display): Mention DISPLAY as well as TERM in err msg.
4799
4800 2006-07-17 Kim F. Storm <storm@cua.dk>
4801
4802 * xdisp.c (handle_single_display_spec): Ensure the right value of
4803 it->position is saved by push_it.
4804 (pop_it): Restore it->object for GET_FROM_BUFFER and GET_FROM_STRING.
4805 (reseat_1): Don't setup it->object twice.
4806 (set_iterator_to_next): No need to set it->object after pop_it.
4807 (move_it_to): Explicitly check to see if last move reached to_charpos.
4808
4809 2006-07-17 Thien-Thi Nguyen <ttn@gnu.org>
4810
4811 * xdisp.c (display_mode_line): Preserve match data.
4812
4813 2006-07-14 Kim F. Storm <storm@cua.dk>
4814
4815 * w32.c (pfn_WSACreateEvent, pfn_WSACloseEvent): New func ptrs.
4816 (init_winsock): Load them. Use ws2_32.dll.
4817 (sys_listen): Undo last change. Just set FILE_LISTEN flag.
4818 (sys_accept): Undo last change. Instead, set child status to
4819 STATUS_READ_ACKNOWLEDGED and reset char_avail event so next
4820 sys_select will wakeup the reader thread.
4821 (_sys_wait_accept): New function used by reader thread to wait for
4822 an incoming connection on a server socket.
4823
4824 * w32.h (_sys_read_ahead, _sys_wait_accept): Add prototypes.
4825
4826 * w32proc.c (reader_thread): Use _sys_wait_accept to wait on a
4827 server socket (FILE_LISTEN flag).
4828
4829 2006-07-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4830
4831 * sound.c (alsa_init): Call snd_pcm_close after successful snd_pcm_open.
4832
4833 2006-07-14 Kim F. Storm <storm@cua.dk>
4834
4835 * w32.c: Fix high cpu load for server sockets.
4836 (pfn_WSAEventSelect): New function ptr.
4837 (init_winsock): Load it.
4838 (sys_listen): Set FILE_LISTEN flag. Set event mask for socket's
4839 char_avail event object to FD_ACCEPT.
4840 (sys_accept): Check FILE_LISTEN flag. Set event mask on new
4841 socket's char_avail event object to FD_READ|FD_CLOSE.
4842
4843 * w32.h (FILE_LISTEN): New filedesc flag value.
4844
4845 2006-07-13 Kim F. Storm <storm@cua.dk>
4846
4847 * bytecode.c (Fbyte_code): Use CAR, CDR for Bcar, Bcdr.
4848 Use CAR_SAFE, CDR_SAFE for Bcar_safe, Bcdr_safe.
4849 Simplify loops and use CAR for Bnth and Belt.
4850
4851 * data.c (Findirect_function): Optimize for no indirection.
4852
4853 * eval.c (Fthrow): Remove loop around Fsignal.
4854 (Feval, Fapply, Ffuncall): Optimize for no function indirection.
4855 Use original function name in all signaled errors.
4856 Simplify Fsignal calls (no return).
4857 (funcall_lambda): Simplify Fsignal calls (no return).
4858
4859 2006-07-13 Andreas Schwab <schwab@suse.de>
4860
4861 * syntax.c (scan_sexps_forward): Use EMACS_INT for out_bytepos and
4862 out_charpos.
4863
4864 2006-07-13 Kenichi Handa <handa@m17n.org>
4865
4866 * editfns.c (Fformat): Fix calculation of text property positions
4867 of format string.
4868
4869 2006-07-12 Kim F. Storm <storm@cua.dk>
4870
4871 * lisp.h (CHECK_TYPE): New macro for generic type checking.
4872 (CAR_SAFE, CDR_SAFE): New macros.
4873 (ARRAYP, CHECK_ARRAY): New macros.
4874 (CHECK_VECTOR_OR_STRING, CHECK_SUBR): New macros.
4875 (CHECK_WINDOW_CONFIGURATION): New macro.
4876 (CHECK_LIST_CONS, CHECK_LIST_END): New checks for list traversal.
4877 (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
4878 (CHECK_STRING, CHECK_STRING_CAR, CHECK_CONS, CHECK_SYMBOL)
4879 (CHECK_CHAR_TABLE, CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE)
4880 (CHECK_BUFFER, CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS)
4881 (CHECK_NUMBER, CHECK_NATNUM, CHECK_MARKER, CHECK_OVERLAY)
4882 (CHECK_NUMBER_COERCE_MARKER, CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
4883 (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER): Use CHECK_TYPE.
4884
4885 * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET):
4886 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Use CHECK_TYPE.
4887
4888 * callint.c (Fcall_interactively):
4889 * casefiddle.c (casify_object):
4890 * editfns.c (general_insert_function):
4891 * fns.c (Flength, Felt, Ffillarray):
4892 * data.c (Fcar, Fcdr): Remove loop around wrong_type_argument.
4893
4894 * data.c (wrong_type_argument): Remove loop around Fsignal.
4895 (Farrayp, Fsequencep): Use ARRAYP.
4896 (Fcar): Use CAR.
4897 (Fcar_safe): Use CAR_SAFE.
4898 (Fcdr): Use CDR.
4899 (Fcdr_safe): Use CDR_SAFE.
4900 (Fsetcar, Fsetcdr): Use CHECK_CONS.
4901 (Fsubr_arity, Fsubr_name): Use CHECK_SUBR.
4902 (Faset): Use CHECK_ARRAY.
4903
4904 * fns.c (Felt): Use CHECK_ARRAY.
4905 (concat): Use CHECK_NUMBER.
4906 (Fsubstring, substring_both): Use CHECK_VECTOR_OR_STRING.
4907 (Fmemq): Use CHECK_LIST.
4908 (Fassq, Fassoc, Frassq, Frassoc): Use CAR.
4909 (assq_no_quit): Use CAR_SAFE.
4910 (Fnthcdr, Fmember, Fdelq, Fdelete, Fnreverse, Fnconc):
4911 Use CHECK_LIST_CONS.
4912 (Freverse, Fplist_get, Flax_plist_get): Use CHECK_LIST_END.
4913
4914 * bytecode.c (Fbyte_code): Use CHECK_VECTOR.
4915
4916 * casetab.c (check_case_table):
4917 * category.c (check_category_table):
4918 * marker.c (Fcopy_marker):
4919 * syntax.c (check_syntax_table):
4920 * xfaces.c (load_pixmap): Use CHECK_TYPE.
4921
4922 * fns.c (Fcopy_sequence, concat):
4923 * fringe.c (Fdefine_fringe_bitmap):
4924 * lread.c (check_obarray): Cleanup wrong_type_argument use.
4925
4926 * keyboard.c (access_keymap_keyremap): Use ARRAYP.
4927
4928 * keymap.c (Fdefine_key, Flookup_key):
4929 * macros.c (Fstart_kbd_macro): Use CHECK_VECTOR_OR_STRING.
4930
4931 * mac.c (Fmac_get_preference): Use CHECK_LIST_END.
4932
4933 * search.c (Fset_match_data): Use CHECK_LIST.
4934
4935 * sunfns.c (sun_item_create): Use CHECK_LIST_CONS.
4936
4937 * window.c (Fwindow_configuration_frame, Fset_window_configuration):
4938 (compare_window_configurations): Use CHECK_WINDOW_CONFIGURATION.
4939
4940 2006-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4941
4942 * Makefile.in (dired.o, editfns.o, fileio.o): Depend on blockinput.h.
4943
4944 * dired.c: Include blockinput.h.
4945 (Ffile_attributes): Add BLOCK_INPUT around getpwuid/getgrgid.
4946
4947 * editfns.c: Include blockinput.h.
4948 (Fuser_login_name, Fuser_full_name): Add BLOCK_INPUT around
4949 getpwuid/getpwnam.
4950
4951 * fileio.c: Include blockinput.h.
4952 (Fexpand_file_name, search_embedded_absfilename): Add BLOCK_INPUT
4953 around getpwnam.
4954 (search_embedded_absfilename): Remove spurious xfree.
4955
4956 2006-07-11 Kim F. Storm <storm@cua.dk>
4957
4958 * dispnew.c (sit_for): Reduce number of args from 5 to 3.
4959 Now just one TIMEOUT arg that can be a Lisp float or Lisp int.
4960 Combine args DISPLAY and INITIAL_DISPLAY into one arg DO_DISPLAY.
4961 Signal error if TIMEOUT is not a number.
4962 Undo 2006-06-14 change for non-preemptive display if TIMEOUT < 0.
4963 The rework of sit_for args also fixes several incorrect Qt args
4964 which should have been 1.
4965 (Fredisplay): Pass 1 instead of Qt to swallow_events and
4966 detect_input_pending_run_timers.
4967
4968 * lisp.h (sit_for): Update prototype.
4969 (Fredisplay): Add EXFUN.
4970
4971 * dispextern.h (sit_for): Remove prototype.
4972
4973 * callint.c (Fcall_interactively):
4974 * minibuf.c (temp_echo_area_glyphs):
4975 * keyboard.c (command_loop_1, read_char, Fexecute_extended_command):
4976 * fileio.c (Fdo_auto_save): Update/simplify sit_for calls.
4977
4978 2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
4979
4980 * syntax.c (forw_comment): Also use EMACS_INT for buffer positions.
4981
4982 2006-07-11 Kim F. Storm <storm@cua.dk>
4983
4984 * dispnew.c (Fredisplay): Add FORCE argument to force redisplay when
4985 input is available. Fix test for redisplay_dont_pause non-nil.
4986 Specbind redisplay-dont-pause to t if FORCE non-nil.
4987
4988 2006-07-10 Chong Yidong <cyd@stupidchicken.com>
4989
4990 * puresize.h (BASE_PURESIZE): Increment to 1211000.
4991
4992 * dispnew.c (Fredisplay): New function, equivalent to (sit-for 0).
4993 (Fsit_for): Function deleted.
4994
4995 * keyboard.c (command_loop_1, Fexecute_extended_command):
4996 Call sit_for instead of Fsit_for.
4997
4998 * minibuf.c (temp_echo_area_glyphs): Likewise.
4999
5000 2006-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
5001
5002 * syntax.c (Fforward_comment): Revert the reversion.
5003 (back_comment, scan_lists): Also use EMACS_INT for buffer positions.
5004
5005 2006-07-09 John Paul Wallington <jpw@pobox.com>
5006
5007 * syntax.c (Fforward_comment): Revert previous change.
5008
5009 2006-07-09 Kim F. Storm <storm@cua.dk>
5010
5011 * window.c (Fforce_window_update): Doc fix.
5012
5013 2006-07-08 Stephen Gildea <gildea@stop.mail-abuse.org>
5014
5015 * fileio.c (do_auto_save_make_dir): Make the auto-save-list-file
5016 directory unreadable for better user privacy.
5017
5018 2006-07-07 Stefan Monnier <monnier@iro.umontreal.ca>
5019
5020 * syntax.c (Fforward_comment): Fix int-32 vs EMACS_INT-64 mixup.
5021
5022 * lread.c (read_filtered_event): Remove `register' qualifier because it
5023 causes compilation problem with gcc-4.0.2-20051125 on amd64.
5024 (readevalloop): Remove unused var `bpos'.
5025 Yet another int/Lisp_Object mixup (YAILOM).
5026
5027 2006-07-07 Eli Zaretskii <eliz@gnu.org>
5028
5029 * keyboard.c (Fexecute_extended_command): Mention the argument
5030 PREFIXARG in the doc string.
5031
5032 2006-07-07 Kim F. Storm <storm@cua.dk>
5033
5034 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
5035
5036 2006-07-05 Chong Yidong <cyd@stupidchicken.com>
5037
5038 * insdel.c (prepare_to_modify_buffer): For an indirect buffer, do
5039 clash detection using the base buffer.
5040
5041 * puresize.h (BASE_PURESIZE): Increment to 1210500.
5042
5043 2006-07-04 Kim F. Storm <storm@cua.dk>
5044
5045 * xterm.c (x_delete_display): Don't free or derefence NULL pointers.
5046
5047 2006-07-04 Kenichi Handa <handa@m17n.org>
5048
5049 * fontset.c (Fset_overriding_fontspec_internal): Check if we need
5050 to update Voverriding_fontspec_alist.
5051
5052 2006-07-03 Richard Stallman <rms@gnu.org>
5053
5054 * xfns.c (Fx_create_frame): Move unwind_create_frame setup down.
5055
5056 * xfaces.c (Fface_attribute_relative_p): Doc fix.
5057
5058 * textprop.c (Fget_char_property_and_overlay): Doc fix.
5059
5060 * eval.c (Fdefvaralias): Doc fix.
5061
5062 2006-07-03 Kim F. Storm <storm@cua.dk>
5063
5064 * dispnew.c (sit_for): Fix preempt condition.
5065
5066 2006-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
5067
5068 * lread.c (read_filtered_event): Treat select-window just like
5069 switch-frame.
5070
5071 2006-07-02 Kim F. Storm <storm@cua.dk>
5072
5073 * xdisp.c (display_tool_bar_line): Skip glyphs which are too big
5074 to ever fit the tool-bar,
5075 (MAX_FRAME_TOOL_BAR_HEIGHT): New macro.
5076 (tool_bar_lines_needed): Use unused mode-line row as temp_row.
5077 (redisplay_tool_bar): Only clear desired matrix if we actually
5078 change the tool-bar window height. Only try to make the tool-bar
5079 window bigger if there is actually room for it.
5080
5081 2006-06-30 Ralf Angeli <angeli@caeruleus.net>
5082
5083 * w32term.c (x_make_frame_visible): Use SystemParametersInfo with
5084 SPI_GETWORKAREA to find the dimensions of the screen work area,
5085 and adjust vertical position of the frame in order to avoid being
5086 covered by the task bar.
5087
5088 * w32fns.c (w32_createwindow): Use CW_USEDEFAULT instead of
5089 f->left_pos and SH_SHOW instead of f->top_pos in the call to
5090 CreateWindow. Record the actual position in f->left_pos and
5091 f->top_pos.
5092
5093 2006-06-30 John Paul Wallington <jpw@pobox.com>
5094
5095 * w32console.c (syms_of_ntterm) <w32-use-full-screen-buffer>:
5096 Doc fix - default value has changed.
5097
5098 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5099
5100 * mac.c [!TARGET_API_MAC_CARBON]: Don't include FixMath.h or Scrap.h.
5101
5102 * macfns.c (Fx_create_frame): Apply 2006-06-24 change for xfns.c.
5103
5104 * macgui.h (USE_MAC_TSM) [TARGET_API_MAC_CARBON]: Set default to 1.
5105
5106 * macterm.c (Qeql): Add extern.
5107 (x_set_mouse_pixel_position) [MAC_OSX]: Use CGWarpMouseCursorPosition.
5108 (fm_style_face_attributes_alist) [USE_ATSUI]: New variable.
5109 (syms_of_macterm) [USE_ATSUI]: Initialize and staticpro it.
5110 Change keys of Vmac_atsu_font_table from strings to numbers.
5111 (fm_style_to_face_attributes) [USE_ATSUI]: New function.
5112 (init_font_name_table) [USE_ATSUI]: Use it.
5113 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: New variable.
5114 (syms_of_macterm) [USE_MAC_TSM]: Initialize and staticpro it.
5115 [USE_MAC_TSM] (mac_tsm_resume): Restore script and language codes
5116 only when saved_ts_script_language_on_focus coincides with
5117 Vmac_ts_script_language_on_focus.
5118 [USE_MAC_TSM] (mac_tsm_suspend): Save value of
5119 Vmac_ts_script_language_on_focus to saved_ts_script_language_on_focus.
5120 (XTread_socket) [USE_MAC_TSM]: Add Mac OS Classic support.
5121 [USE_MAC_TSM] (mac_handle_text_input_event, init_tsm): Likewise.
5122
5123 2006-06-27 Chong Yidong <cyd@stupidchicken.com>
5124
5125 * editfns.c (Fdelete_field, Ffield_string, Ffield_beginning)
5126 (Ffield_string_no_properties, Ffield_end): Mention
5127 args-out-of-range error condition in docstring.
5128
5129 2006-06-27 Kim F. Storm <storm@cua.dk>
5130
5131 * xdisp.c (handle_composition_prop): Set stop_charpos before push_it.
5132
5133 2006-06-25 Kim F. Storm <storm@cua.dk>
5134
5135 * s/gnu-linux.h (SIGNALS_VIA_CHARACTERS): Define for Linux kernel
5136 version 2.4 and later.
5137
5138 2006-06-24 Chong Yidong <cyd@stupidchicken.com>
5139
5140 * xfns.c (Fx_create_frame): Set font parameter directly instead of
5141 using x_default_parameter, since x_get_args clears the parm alist.
5142
5143 2006-06-24 Eli Zaretskii <eliz@gnu.org>
5144
5145 * dired.c (directory_files_internal) [WINDOWSNT]: Find files
5146 case-insensitively.
5147
5148 2006-06-24 Aidan Kehoe <kehoea@parhasard.net>
5149
5150 * lread.c (read_escape): When an unknown Unicode code point is
5151 encountered as a string or character escape, signal an error.
5152
5153 2006-06-23 Kim F. Storm <storm@cua.dk>
5154
5155 * .gdbinit (pitx): Dump iterator stack.
5156
5157 * xdisp.c (handle_composition_prop): Push iterator on stack.
5158 (set_iterator_to_next): Pop iterator at end of composition.
5159
5160 2006-06-23 Martin Rudalics <rudalics@gmx.at>
5161
5162 * fileio.c (Frename_file) [DOS_NT]: Don't try to move directory to
5163 itself on DOS_NT platforms, if the old and new names are identical
5164 but for the letter-case.
5165
5166 2006-06-21 Kim F. Storm <storm@cua.dk>
5167
5168 * dispextern.h (struct it): Add `position' member to iterator stack.
5169 Rename `pos' member to `current'. Rearrange and add comments.
5170
5171 * xdisp.c (handle_stop): Set it->ignore_overlay_strings_at_pos_p
5172 if we get any overlays.
5173 (set_cursor_from_row): Don't clobber `end' if we rescan from
5174 start_string.
5175 (push_it, pop_it): Save it->position.
5176
5177 2006-06-19 Richard Stallman <rms@gnu.org>
5178
5179 * window.c (size_window): New arg FIRST_ONLY. All callers changed.
5180 (adjust_window_trailing_edge): Specially compute FIRST_PARALLEL
5181 for the case of a top-level window and the following minibuffer.
5182 Don't exit because of no `next' when there is a parent.
5183 Use the FIRST_ONLY feature when resizing following windows.
5184
5185 * syntax.c (init_syntax_once): Give most control chars' syntax Spunct.
5186
5187 2006-06-17 Kim F. Storm <storm@cua.dk>
5188
5189 * dispnew.c (update_frame): Check for input pending on entry.
5190 (update_window, update_frame_1): Break loop if input is detected.
5191
5192 2006-06-16 Francis Litterio <flitterio@gmail.com>
5193
5194 * xterm.c (x_check_expected_move, handle_one_xevent)
5195 (x_set_offset, x_check_fullscreen): Extensive changes to make
5196 frame positioning deterministic under X.
5197
5198 * xterm.h (x_output): Add members left_before_move and
5199 top_before_move. Removed members expected_left and expected_top.
5200
5201 2006-06-16 Kim F. Storm <storm@cua.dk>
5202
5203 * dispextern.h (struct it): Add union to iterator stack to save
5204 image, composition, and stretch specific paramters.
5205
5206 * xdisp.c (next_overlay_string): Fix assert.
5207 (push_it, pop_it): Handle composition and stretch specific values.
5208 Only handle it->slice in image (for now).
5209 (back_to_previous_visible_line_start): Continue search if newline is
5210 part of a compisition. Simplify.
5211 (reseat_1): Set it->object to buffer.
5212 (set_iterator_to_next): Set it->object to string or buffer, when
5213 setting it->method to GET_FROM_STRING or GET_FROM_BUFFER.
5214 (next_element_from_composition): Set it->object to buffer if not
5215 from string.
5216 (set_cursor_from_row): Only save start of string if not already
5217 done to handle multiple strings in a row.
5218
5219 * .gdbinit (pitx): Show composition parameters.
5220 (pgx, pg): New commands to print a glyph structure.
5221 (pgi, pgn): New commands to print specific/next glyph.
5222 (pgrowx, pgrow): New commands to print all glyphs in a row.
5223
5224 2006-06-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5225
5226 * macfns.c (Fx_display_mm_height, Fx_display_mm_width)
5227 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Use CGDisplayScreenSize.
5228
5229 * macterm.c (do_app_resume, do_app_suspend): Remove functions.
5230 (mac_tsm_resume, mac_tsm_suspend) [USE_MAC_TSM]: New functions.
5231 (mac_handle_window_event, XTread_socket) [USE_MAC_TSM]: Use them.
5232 (Vmac_ts_script_language_on_focus) [USE_MAC_TSM]: New variable.
5233 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
5234 (saved_ts_language, saved_ts_component) [USE_MAC_TSM]: New variables.
5235 (mac_initialize_display_info) [MAC_OSX]: Use Quartz Display
5236 Services functions to get size of main display in pixels.
5237
5238 2006-06-14 Chong Yidong <cyd@stupidchicken.com>
5239
5240 * xdisp.c (back_to_previous_visible_line_start):
5241 Reset it->continuation_lines_width.
5242
5243 2006-06-14 Richard Stallman <rms@gnu.org>
5244
5245 * eval.c (Fdefconst): Mark variable as risky.
5246
5247 * callproc.c (Fcall_process): Doc fix.
5248
5249 * window.c (adjust_window_trailing_edge): Don't break out of the loop
5250 because there's no next window, if there are parallel windows.
5251 Do break out when WINDOW is nil.
5252
5253 2006-06-14 Kim F. Storm <storm@cua.dk>
5254
5255 * dispextern.h (IT_STACK_SIZE): New macro specifying size of
5256 iterator stack (instead of hardcoded number). Increase from 2 to
5257 4 to make room for propertized overlay strings before and after a
5258 display string, image or composition.
5259 (struct it): Add image_id and method members to iterator stack.
5260
5261 * xdisp.c (init_from_display_pos): Don't set it->method and
5262 overlay_string_index after pop_it. Add asserts.
5263 (handle_stop): Look for overlay strings around a display string,
5264 image, or composition. Handle properties on those strings.
5265 (next_overlay_string): Don't set string, pos or method after pop_it.
5266 (get_overlay_strings_1): Split from get_overlay_strings; don't
5267 modify it if no overlay strings are found.
5268 (get_overlay_strings): Use get_overlay_strings_1. Always set
5269 it->string and it->method.
5270 (push_it): Push it->image_id and it->method. Push it->object
5271 instead of it->string if method is GET_FROM_IMAGE.
5272 (pop_it): Pop it->image_id and it->method. Ppo it->object
5273 instead of it->string if method is GET_FROM_IMAGE.
5274 Reset it->current.string_pos if popped it->string is nil.
5275 (reseat_1): Remove comment dated 19 May 2003. It expressed doubt
5276 whether a given change was correct; but the change is correct.
5277 Clear it->string_from_display_prop_p.
5278 (set_iterator_to_next): Rely on it->method and it->image_id from
5279 iterator stack, instead of setting them explicitly after pop_it.
5280
5281 * dispnew.c (sit_for): Undo 2006-06-01 change. Instead, a
5282 negative time forces redisplay even when input is available.
5283 (Fsit_for): Doc fix.
5284
5285 2006-06-13 Kim F. Storm <storm@cua.dk>
5286
5287 * dispnew.c: Modify preemptive redisplay to be based on periodic
5288 checks for input.
5289 (PERIODIC_PREEMPTION_CHECKING): Define to 1 iff EMACS_HAS_USECS.
5290 (Vredisplay_preemption_period): New variable.
5291 (syms_of_display): DEFVAR_LISP and initialize it.
5292 (preemption_period, preemption_next_check): New variables.
5293 (update_frame, update_single_window): Initialize them based on
5294 Vredisplay_preemption_period if !force_p.
5295 (update_window, update_frame_1): Use them to determine when to
5296 check for input.
5297
5298 2006-06-03 Aidan Kehoe <kehoea@parhasard.net>
5299
5300 * lread.c (read_escape): Provide a Unicode character escape
5301 syntax; \u followed by exactly four or \U followed by exactly
5302 eight hex digits in a comment or string is read as a Unicode
5303 character with that code point.
5304
5305 2006-06-09 Eli Zaretskii <eliz@gnu.org>
5306
5307 * window.c (window_scroll_pixel_based): Signal "Beginning of
5308 buffer" when scroll-down at the beginning of an empty buffer.
5309
5310 2006-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5311
5312 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
5313 Exclude 0x7f from ASCII range.
5314
5315 2006-06-05 Jason Rumney <jasonr@gnu.org>
5316
5317 * w32term.c (w32_set_scroll_bar_thumb, x_scroll_bar_create)
5318 (w32_set_vertical_scroll_bar, w32_scroll_bar_handle_click)
5319 (x_scroll_bar_report_motion): Remove workarounds for
5320 versions of Windows NT < 3.51.
5321 [!SIF_ALL]: Remove.
5322 (pfnSetScrollInfo, pfnGetScrollInfo): Remove.
5323 (w32_initialize): Don't dynamically load Get/SetScrollInfo.
5324
5325 2006-06-04 David Kastrup <dak@gnu.org>
5326
5327 * dispnew.c: Mention `redisplay-dont-pause' in doc string of
5328 `sit-for'.
5329
5330 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5331
5332 * macfns.c (x_set_icon_name): Apply 2006-06-02 change for xfns.c.
5333
5334 * macgui.h (USE_MAC_TSM): Set default to 1 on Mac OS X.
5335
5336 * macterm.c (tsm_document_id) [USE_MAC_TSM]: New variable.
5337 (Qtext_input, Qupdate_active_input_area, Qunicode_for_key_event)
5338 [USE_MAC_TSM]: Likewise.
5339 (syms_of_macterm) [USE_MAC_TSM]: Intern and staticpro them.
5340 (Qbefore_string) [USE_MAC_TSM]: Add extern.
5341 (do_app_resume, do_app_suspend) [USE_MAC_TSM]: Call
5342 ActivateTSMDocument/DeactivateTSMDocument.
5343 (mac_store_event_ref_as_apple_event): Call mac_post_mouse_moved_event.
5344 (mac_handle_window_event) [USE_MAC_TSM]: Handle
5345 kEventWindowFocusAcquired/kEventWindowFocusRelinquish.
5346 (mac_handle_text_input_event) [USE_MAC_TSM]: New function.
5347 (install_window_handler) [USE_MAC_TSM]: Install it. Register
5348 kEventWindowFocusAcquired/kEventWindowFocusRelinquish.
5349 (keycode_to_xkeysym_table): Add entry for f16.
5350 (XTread_socket) [USE_MAC_TSM]: Set/reset read_socket_inev
5351 before/after passing keystroke event to toolbox dispatcher.
5352 (init_tsm) [USE_MAC_TSM]: New function.
5353 (mac_initialize) [USE_MAC_TSM]: Call it.
5354 (Vmac_ts_active_input_overlay) [USE_MAC_TSM]: New defvar.
5355
5356 * macterm.h (EVENT_PARAM_TEXT_INPUT_SEQUENCE_NUMBER): New enumerator.
5357
5358 2006-06-02 John Paul Wallington <jpw@gnu.org>
5359
5360 * xfns.c (x_set_name_internal): Set icon to `text', derived from
5361 name, when frame's icon_name isn't a string rather than only when
5362 it is nil.
5363
5364 2006-06-03 Eli Zaretskii <eliz@gnu.org>
5365
5366 * w32fns.c (x_set_icon_name): Don't use arg if it's not a string
5367 and not nil.
5368
5369 2006-06-02 Chong Yidong <cyd@stupidchicken.com>
5370
5371 * xfns.c (x_set_icon_name): No-op if arg is non-nil and not a
5372 string.
5373
5374 2006-06-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5375
5376 * xdisp.c (next_element_from_composition): Set it->object to
5377 it->string if composition is coming from string.
5378 (set_cursor_from_row): Don't return 0 unless row displays a
5379 continued line.
5380 (dump_glyph): Dump composite glyph.
5381
5382 2006-06-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5383
5384 * gtkutil.c (menu_nav_ended): Check that menubar_widget is not NULL.
5385
5386 2006-06-01 Richard Stallman <rms@gnu.org>
5387
5388 * window.c (Fsplit_window): Doc fix.
5389
5390 2006-06-01 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
5391
5392 * process.c (deleted_pid_list): New variable to store the pids
5393 of deleted processes. Declare it only if SIGCHLD is defined.
5394 (init_process): Initialize it.
5395 (syms_of_process): Staticpro it.
5396 (Fdelete_process): Add pid of the deleted process to it. Check after
5397 the addition and before the kill if the process is already stopped,
5398 in which case it is deleted from the list and not killed.
5399 (sigchld_handler): Define it only if SIGCHLD is. Search the process
5400 that signaled Emacs in `deleted_pid_list' before `Vprocess_alist'.
5401 Original idea by Stefan Monnier.
5402
5403 2006-06-01 Kim F. Storm <storm@cua.dk>
5404
5405 * dispnew.c (sit_for): Perform redisplay even if input is pending
5406 when redisplay-dont-pause is non-nil.
5407
5408 2006-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5409
5410 * macterm.c (mac_handle_visibility_change): Set buf.arg to Qnil.
5411 (XTread_socket): Remove obsolete comment.
5412
5413 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5414
5415 * xmenu.c (syms_of_xmenu): Make accelerate-menu an alias for
5416 menu-bar-open.
5417
5418 2006-06-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5419
5420 * xmenu.c (Fmenu_bar_open, syms_of_xmenu): Change menu-bar-start to
5421 menu-bar-open.
5422
5423 * gtkutil.c (menu_nav_ended): Change x-menu-bar-start to menu-bar-open.
5424
5425 2006-05-31 Juri Linkov <juri@jurta.org>
5426
5427 * minibuf.c (Vhistory_add_new_input): New variable.
5428 (read_minibuf): Use it.
5429 (syms_of_minibuf) <history-add-new-input>: New Lisp variable.
5430 (syms_of_minibuf) <history-delete-duplicates>: Doc fix.
5431
5432 2006-05-31 Kim F. Storm <storm@cua.dk>
5433
5434 * process.c (select_wrapper): Add wrapper around select to work around
5435 "incomplete backtrace" bug in gdb 5.3, when emacs is stopped inside
5436 select called from wait_reading_process_output.
5437
5438 2006-05-30 Andreas Schwab <schwab@suse.de>
5439
5440 * xmenu.c (Fmenu_bar_start): Return a value.
5441
5442 2006-05-30 Richard Stallman <rms@gnu.org>
5443
5444 * coding.c (Ffind_operation_coding_system): Doc fix.
5445
5446 2006-05-30 Eli Zaretskii <eliz@gnu.org>
5447
5448 * w32term.c (x_draw_hollow_cursor): Fix last change.
5449
5450 2006-05-29 Kim F. Storm <storm@cua.dk>
5451
5452 * w32term.c (x_draw_stretch_glyph_string): Fix last change.
5453
5454 2006-05-29 Eli Zaretskii <eliz@gnu.org>
5455
5456 * coding.c (Ffind_operation_coding_system): Doc fix.
5457
5458 2006-05-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5459
5460 * macfns.c [USE_MAC_FONT_PANEL] (Fmac_set_font_panel_visibility):
5461 Call mac_set_font_info_for_selection if font panel is made visible.
5462
5463 * macterm.c (font_panel_shown_p) [USE_MAC_FONT_PANEL]: New variable.
5464 (mac_font_panel_visible_p, mac_show_hide_font_panel)
5465 [USE_MAC_FONT_PANEL]: New functions.
5466 [USE_MAC_FONT_PANEL] (mac_set_font_info_for_selection):
5467 Return immediately if font panel is not visible.
5468
5469 * macterm.h (mac_font_panel_visible_p, mac_show_hide_font_panel):
5470 Add externs.
5471
5472 2006-05-29 Dan Nicolaescu <dann@ics.uci.edu>
5473
5474 * search.c (matcher_overflow): Mark as NO_RETURN.
5475
5476 * xterm.c (x_connection_closed): Likewise.
5477
5478 * sysdep.c (croak): Likewise.
5479
5480 * sound.c (sound_perror, alsa_sound_perror): Likewise.
5481
5482 * lisp.h (die, nsberror): Likewise.
5483
5484 2006-05-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5485
5486 * sound.c (alsa_open, alsa_configure, alsa_write):
5487 Move assignment to err out of if-statement.
5488
5489 * gtkutil.c (menu_nav_ended): New function.
5490 (create_menus): Connect menu_nav_ended to "selection-done" to fix
5491 grabs.
5492
5493 * xmenu.c (Fmenu_bar_start): New function for USE_GTK and USE_X_TOOLKIT.
5494
5495 2006-05-28 Dan Nicolaescu <dann@ics.uci.edu>
5496
5497 * charset.h (invalid_character): Mark as NO_RETURN.
5498
5499 2006-05-29 Kenichi Handa <handa@m17n.org>
5500
5501 * coding.c (Ffind_operation_coding_system): Call a function by
5502 safe_call1 instead of call1.
5503
5504 2006-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
5505
5506 * window.c (struct saved_window): Add `dedicated'.
5507 (Fset_window_configuration, save_window_save): Save/restore the
5508 `dedicated' flag.
5509
5510 2006-05-28 Kim F. Storm <storm@cua.dk>
5511
5512 * xdisp.c (set_cursor_from_row): If cursor cannot be set in row,
5513 don't update w->cursor and return 0. Return 1 on success.
5514 (try_cursor_movement): Repeat set_cursor_from_row on successive rows
5515 until it succeeds.
5516
5517 * dispextern.h (set_cursor_from_row): Update prototype.
5518
5519 2006-05-28 Kim F. Storm <storm@cua.dk>
5520
5521 * xdisp.c (get_phys_cursor_geometry): Return computed x and y through
5522 parameters. Adjust x and width in case cursor in on a partially
5523 visible stretch glyph on the left edge.
5524 (erase_phys_cursor): Don't erase into left fringe/margin in case
5525 previous cursor glyph is a partially visible stretch glyph on left.
5526
5527 * dispextern.h (get_phys_cursor_geometry): Update prototype.
5528
5529 * xterm.c (x_draw_stretch_glyph_string): Fix problems with invisible
5530 cursor and erasing cursor on partially visible stretch glyph on left.
5531 (x_draw_hollow_cursor): Compute x via get_phys_cursor_geometry.
5532
5533 * macterm.c: Likewise.
5534
5535 * w32term.c: Likewise.
5536
5537 2006-05-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5538
5539 * macselect.c (mac_handle_apple_event):
5540 Return errAEEventNotHandled if key binding is not found.
5541
5542 2006-05-26 Eli Zaretskii <eliz@gnu.org>
5543
5544 * emacs.c (main) [PROFILING]: Enable also for __MINGW32__.
5545 [__MINGW32__]: MinGW-specific declaration of `etext'.
5546
5547 * w32heap.c (etext, edata): Remove unused definitions.
5548
5549 2006-05-26 Chong Yidong <cyd@stupidchicken.com>
5550
5551 * fileio.c (Fcopy_file): Delete argument MUSTBENEW.
5552 Incorporate the exclusive file-opening functionality into the behavior
5553 when OK-IF-ALREADY-EXISTS is nil.
5554 (Frename_file): Call Fcopy_file without MUSTBENEW argument.
5555
5556 2006-05-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5557
5558 * sound.c (alsa_configure): Move get period/buffer_size after
5559 setting hwparams.
5560
5561 2006-05-26 Kenichi Handa <handa@m17n.org>
5562
5563 * coding.c (Ffind_operation_coding_system): Allow (FILENAME
5564 . BUFFER) in TARGET.
5565
5566 2006-05-25 Chong Yidong <cyd@stupidchicken.com>
5567
5568 * image.c (png_load): Don't call fclose on NULL.
5569
5570 2006-05-25 Luc Teirlinck <teirllm@auburn.edu>
5571
5572 * fns.c (Fyes_or_no_p):
5573 * callint.c (Fcall_interactively): Fread_from_minibuffer now takes
5574 only seven args.
5575
5576 2006-05-25 Juri Linkov <juri@jurta.org>
5577
5578 * lisp.h (Fread_from_minibuffer): Decrement number of args.
5579
5580 * minibuf.c (read_minibuf): Remove arg KEEP_ALL. Callers changed.
5581 (Fread_from_minibuffer): Remove arg KEEP_ALL. Callers changed.
5582
5583 * buffer.c (mode-line-format): Fix docstring.
5584
5585 2006-05-25 Richard Stallman <rms@gnu.org>
5586
5587 * emacs.c (main, Fdump_emacs): Don't test __linux or __linux__.
5588
5589 2006-05-24 Luc Teirlinck <teirllm@auburn.edu>
5590
5591 * puresize.h (BASE_PURESIZE): Increase to 1210000.
5592
5593 2006-05-24 Alan Mackenzie <acm@muc.de>
5594
5595 * lread.c (Vload_history): Enhance doc-string to say that the file
5596 is the absolute truename of the loaded file.
5597
5598 * lread.c (Vafter_load_alist): doc-string: state that an element
5599 now has a regexp to match file names, not a file name as such.
5600
5601 * lread.c (readevalloop): Call file-truename on the name for
5602 load-history, except at preloading time.
5603
5604 * lread.c (Fload): At preloading time, preserve the extension of
5605 the filename which goes into load-history. New var hist_file_name.
5606
5607 * lread.c (Fload): Do eval-after-load stuff by calling the lisp
5608 function do-after-load-evaluation.
5609
5610 2006-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5611
5612 * mac.c (ae_attr_table): New variable.
5613 (syms_of_mac): Intern and staticpro its elements.
5614 (mac_aelist_to_lisp): Also convert Apple event attributes.
5615 (mac_ae_put_lisp): New function.
5616 (create_apple_event_from_event_ref) [MAC_OSX]: Use typeUTF8Text.
5617
5618 * macfns.c (Fx_server_version): Use gestaltSystemVersionMajor etc.
5619
5620 * macselect.c (Qemacs_suspension_id): New variable.
5621 (syms_of_macselect): Intern and staticpro it.
5622 (struct suspended_ae_info): New struct.
5623 (deferred_apple_events, defer_apple_events)
5624 (Fmac_process_deferred_apple_events): Use it.
5625 (suspended_apple_events): New variable.
5626 (mac_handle_apple_event_1): New function.
5627 (mac_handle_apple_event): Use it. Don't process previously
5628 suspended events.
5629 (cleanup_suspended_apple_events, get_suspension_id)
5630 (cleanup_all_suspended_apple_events): New functions.
5631 (init_apple_event_handler): Call cleanup_all_suspended_apple_events
5632 at exit.
5633 (Fmac_cleanup_expired_apple_events, Fmac_ae_set_reply_parameter)
5634 (Fmac_resume_apple_event): New defuns.
5635 (syms_of_macselect): Defsubr them.
5636
5637 * macterm.c (fn_keycode_to_keycode_table, XTread_socket) [MAC_OSX]:
5638 Fix last change. Don't map `fn' modifier if pressed with F1 ... F12.
5639
5640 * macterm.h (TYPE_FILE_NAME): Change from macro to enumerator.
5641 (KEY_EMACS_SUSPENSION_ID_ATTR): New enumerator.
5642 (keyReplyRequestedAttr) [MAC_OS_X_VERSION_MAX_ALLOWED < 1030]: Likewise.
5643 (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
5644 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
5645 Likewise.
5646 (typeUTF8Text, kEventParamWindowMouseLocation)
5647 [MAC_OSX && MAC_OS_X_VERSION_MAX_ALLOWED < 1020]: Likewise.
5648 (x_get_focus_frame, mac_ae_put_lisp): Add externs.
5649
5650 2006-05-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5651
5652 * macterm.c (fn_keycode_to_xkeysym_table, convert_fn_keycode): Remove.
5653 (fn_keycode_to_keycode_table) [MAC_OSX]: New variable.
5654 (mac_set_unicode_keystroke_event) [TARGET_API_MAC_CARBON]: New function.
5655 (XTread_socket) [TARGET_API_MAC_CARBON]: Use it.
5656 (XTread_socket) [MAC_OSX]: Try 'uchr' Unicode keyboard-layout
5657 resource to backtranslate key with modifiers.
5658 (XTread_socket): Don't set read_socket_inev around AEProcessAppleEvent.
5659
5660 2006-05-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5661
5662 * xterm.c: Remove declarations already in xterm.h.
5663
5664 * xterm.h: Add extern declarations for x_clear_errors,
5665 x_fully_uncatch_errors, x_catching_errors and
5666 x_alloc_lighter_color_for_widget. Remove duplicated declarations.
5667
5668 2006-05-21 Richard Stallman <rms@gnu.org>
5669
5670 * xfaces.c (best_matching_font): Abort for best == NULL
5671 before we start to use it.
5672
5673 * buffer.c (syms_of_buffer, Fmake_overlay): Doc fixes.
5674
5675 2006-05-20 Kim F. Storm <storm@cua.dk>
5676
5677 * xfaces.c (best_matching_font): Fix crash in 2006-05-17 change.
5678
5679 2006-05-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5680
5681 * macterm.c (convert_fn_keycode): Fix last change.
5682
5683 2006-05-19 Eli Zaretskii <eliz@gnu.org>
5684
5685 * w32.c (init_environment): Perform the processing of environment
5686 variables on a copy of default variables and their values, not on
5687 the original. Simplify code that calls ExpandEnvironmentStrings
5688 and make buf1[] and buf2[] more visible for easier debugging.
5689
5690 2006-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5691
5692 * frame.c (x_set_border_width): Remove #ifndef MAC_OS.
5693
5694 * image.c [MAC_OS] (gif_load): Allocate Lisp string first.
5695
5696 * macfns.c (Fx_focus_frame): Don't check dpyinfo->x_focus_frame.
5697
5698 * macterm.c (XTread_socket) [TARGET_API_MAC_CARBON && MAC_OSX]:
5699 Forward keyUp events to toolbox_dispatcher.
5700
5701 * window.c (foreach_window): Check WINDOWP (FRAME_ROOT_WINDOW (f)).
5702
5703 2006-05-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5704
5705 * config.in: Regenerated (HAVE_ALSA).
5706
5707 * sound.c (alsa_sound_perror, alsa_open, alsa_period_size)
5708 (alsa_configure, alsa_close, alsa_choose_format, alsa_write)
5709 (snd_error_quiet, alsa_init): New functions.
5710 (vox_init): Return 0 if unable to open device.
5711 (Fplay_sound_internal): Test for alsa first and use vox (oss) as
5712 a fallback.
5713 (struct sound_device): Add period_size.
5714 (wav_play, au_play): Use period_size if set.
5715
5716 * Makefile.in (CFLAGS_SOUND): New flags for ALSA.
5717 (ALL_CFLAGS): Add CFLAGS_SOUND.
5718
5719 2006-05-18 Kenichi Handa <handa@m17n.org>
5720
5721 * callproc.c (Fcall_process): Reject encoding arguments by
5722 ascii-incompatible coding systems (e.g. utf-16).
5723
5724 * coding.c (Qascii_incompatible): New variable.
5725 (syms_of_coding): Setup Qascii_incompatible.
5726 (setup_coding_system): Be sure to initialize coding->common_flags.
5727 Check `ascii-incompatible' property of the coding system.
5728
5729 * coding.h (CODING_ASCII_INCOMPATIBLE_MASK): New macro.
5730
5731 2006-05-18 Kim F. Storm <storm@cua.dk>
5732
5733 * xdisp.c (display_tool_bar_line): Restore entire tool-bar
5734 geometry when backtracking in case last image doesn't fit on line.
5735
5736 2006-05-18 MIYOSHI Masanori <miyoshi@meadowy.org> (tiny change)
5737
5738 * xdisp.c (display_tool_bar_line): Don't adjust tool-bar height by
5739 more than height of one frame default line.
5740
5741 2006-05-17 Richard Stallman <rms@gnu.org>
5742
5743 * xfaces.c (better_font_p): Any font beats no font.
5744 (best_matching_font): Simplify based on above change.
5745
5746 * buffer.c (Fprevious_overlay_change, Fnext_overlay_change): Doc fixes.
5747
5748 2006-05-16 Kim F. Storm <storm@cua.dk>
5749
5750 * xterm.c (handle_one_xevent): Check that f is not NULL before
5751 calling x_kill_gs_process.
5752
5753 2006-05-14 Richard Stallman <rms@gnu.org>
5754
5755 * textprop.c (Fnext_single_char_property_change)
5756 (Fprevious_single_char_property_change): Don't allow returning
5757 value beyond LIMIT in any cases.
5758 (Fnext_char_property_change, Fprevious_char_property_change): Doc fix.
5759
5760 * intervals.c (get_local_map): Abort if POSITION outside BEGV, ZV.
5761
5762 2006-05-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5763
5764 * xterm.c (handle_one_xevent): Check that f is not NULL before
5765 calling _XEditResCheckMessages.
5766
5767 2006-05-14 Kim F. Storm <storm@cua.dk>
5768
5769 * xterm.c (handle_one_xevent): Fix crash in 2006-03-24 change.
5770
5771 2006-05-13 Eli Zaretskii <eliz@gnu.org>
5772
5773 * frame.c (x_set_border_width): Fix error message to say "frame",
5774 not "window".
5775
5776 * Makefile.in (SOME_MACHINE_LISP): Add fringe.elc.
5777
5778 2006-05-12 Chong Yidong <cyd@stupidchicken.com>
5779
5780 * intervals.c (set_point_both): Fix mixup before before and after
5781 in variable names.
5782
5783 * editfns.c (Fline_beginning_position): Inhibit point-motion hooks
5784 while setting point temporarily.
5785
5786 2006-05-11 Richard Stallman <rms@gnu.org>
5787
5788 * lread.c (readevalloop): Abort if START non-nil for non-buffer input.
5789
5790 2006-05-11 Kim F. Storm <storm@cua.dk>
5791
5792 * xdisp.c (redisplay_tool_bar): Handle large tool-bar-border values.
5793
5794 2006-05-11 Kenichi Handa <handa@m17n.org>
5795
5796 * fileio.c (Finsert_file_contents): Fix for the case of IO error
5797 while handling replace operation.
5798
5799 2006-05-10 Kenichi Handa <handa@m17n.org>
5800
5801 * xfaces.c (realize_default_face) [HAVE_X_WINDOWS]: If the font
5802 chosen for the default face was different from the frame font,
5803 adjust the frame font.
5804
5805 2006-05-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5806
5807 * image.c (Qduration) [MAC_OS]: Undo previous change.
5808 (syms_of_image) [MAC_OS]: Likewise.
5809 [MAC_OS] (gif_load): Emulate Graphic Control Extension block.
5810
5811 * macfns.c (x_to_mac_color): Fix shift amount change.
5812 (mac_set_font) [USE_MAC_FONT_PANEL]: Use x_get_focus_frame.
5813 [USE_MAC_FONT_PANEL] (Fmac_set_font_panel_visibility): Doc fix.
5814
5815 * macselect.c (Vmac_service_selection) [MAC_OSX]: Rename from
5816 Vmac_services_selection. All uses changed.
5817 (mac_store_service_event): Rename from mac_store_services_event in
5818 extern and calls.
5819
5820 * macterm.c (Qservice) [MAC_OSX]: Rename from Qservices. All uses
5821 changed.
5822 [MAC_OSX] (mac_store_service_event): Rename from
5823 mac_store_services_event. All callers changed.
5824 [USE_MAC_FONT_PANEL] (mac_set_font_info_for_selection): Add args
5825 FACE_ID and C. All callers changed.
5826 (x_free_frame_resources) [USE_MAC_FONT_PANEL]: Call
5827 mac_set_font_info_for_selection when focus frame is destroyed.
5828 (XTread_socket): Revert to FrontNonFloatingWindow/FrontWindow.
5829
5830 * macterm.h (mac_set_font_info_for_selection): Add 2nd and 3rd
5831 args in extern.
5832
5833 2006-05-09 Chong Yidong <cyd@stupidchicken.com>
5834
5835 * keymap.c (describe_map): Avoid generating duplicate entries if
5836 the shadowed binding has the same definition.
5837
5838 2006-05-09 Kenichi Handa <handa@m17n.org>
5839
5840 * keymap.c (push_key_description): Handle invalid character key.
5841
5842 2006-05-08 Kenichi Handa <handa@m17n.org>
5843
5844 * callproc.c (Fcall_process): Use system_eol_type for encoding
5845 arguments if eol_type is not yet decided.
5846
5847 * coding.h (system_eol_type): Extern it.
5848
5849 * coding.c (setup_coding_system): For invalid coding-system, set
5850 coding->eol_type to CODING_EOL_UNDECIDED.
5851 (encode_coding): Cancel previous change.
5852 (shrink_encoding_region): Likewise.
5853 (code_convert_region1): Likewise.
5854 (code_convert_string1): Likewise.
5855 (code_convert_string_norecord): Likewise.
5856
5857 * fileio.c (choose_write_coding_system): Use system_eol_type for
5858 encoding if eol_type is not yet decided.
5859
5860 * process.c (setup_process_coding_systems): Use system_eol_type
5861 for encoding if eol_type is not yet decided.
5862 (read_process_output): Likewise.
5863 (send_process): Likewise.
5864
5865 2006-05-07 Juanma Barranquero <lekktu@gmail.com>
5866
5867 * minibuf.c (syms_of_minibuf) <history-length>: Fix typo in doc.
5868
5869 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5870
5871 * mac.c (Fmac_clear_font_name_table): Move defun to macfns.c.
5872 (syms_of_mac): Likewise for defsubr.
5873
5874 * macfns.c (mac_set_font): New function.
5875 (mac_frame_parm_handlers, syms_of_macfns): Replace x_set_font with it.
5876 (mac_window) [TARGET_API_MAC_CARBON && MAC_OSX]: Specify
5877 kWindowToolbarButtonAttribute when creating window.
5878 (Fmac_clear_font_name_table): Move from macfns.c.
5879 (syms_of_macfns): Likewise for defsubr.
5880 [USE_MAC_FONT_PANEL] (Fmac_set_font_panel_visibility): New defun.
5881 (syms_of_macfns) [USE_MAC_FONT_PANEL]: Defsubr it.
5882
5883 * macgui.h (USE_MAC_FONT_PANEL): Define to 1 if USE_ATSUI is set
5884 and build is done on Mac OS X 10.2 and later.
5885
5886 * macselect.c (mac_do_receive_drag): Remove unused variable `index'.
5887 (mac_store_services_event): Change return type in extern.
5888
5889 * macterm.c (XLoadQueryFont) [USE_ATSUI]: Set font->mac_fontnum to
5890 FMFontFamily value.
5891 [USE_MAC_FONT_PANEL] (mac_set_font_info_for_selection): New function.
5892 (x_new_focus_frame) [USE_MAC_FONT_PANEL]: Use it.
5893 (QCfamily, QCweight, QCslant, Qnormal, Qbold, Qitalic): Add extern.
5894 (QWindow) [MAC_OSX]: Likewise.
5895 (Qfont) [USE_MAC_FONT_PANEL]: Likewise.
5896 (Vmac_atsu_font_table) [USE_ATSUI]: New variable.
5897 (syms_of_macterm) [USE_ATSUI]: Defvar it.
5898 (Qtoolbar_switch_mode) [MAC_OSX]: New variable.
5899 (Qpanel_closed, Qselection) [USE_MAC_FONT_PANEL]: Likewise.
5900 (syms_of_macterm): Intern and staticpro them.
5901 (init_font_name_table) [USE_ATSUI]: Add data to Vmac_atsu_font_table.
5902 [TARGET_API_MAC_CARBON] (mac_store_event_ref_as_apple_event):
5903 New function.
5904 [USE_CARBON_EVENTS] (mac_handle_command_event): Use it.
5905 [MAC_OSX] (mac_store_services_event): Likewise.
5906 [USE_CARBON_EVENTS] (mac_handle_window_event) [MAC_OSX]: Handle
5907 kEventWindowToolbarSwitchMode event.
5908 (install_window_handler) [USE_CARBON_EVENTS && MAC_OSX]: Register it.
5909 [MAC_OSX] (mac_store_services_event): Change return type to OSStatus.
5910 [USE_MAC_FONT_PANEL] (mac_handle_font_event): New function.
5911 (install_window_handler) [USE_MAC_FONT_PANEL]: Install it.
5912 (XTread_socket): Select window on mouse click if x_focus_frame is NULL.
5913
5914 * macterm.h (mac_set_font_info_for_selection): Add extern.
5915
5916 2006-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5917
5918 * image.c (Qduration) [MAC_OS]: New variable.
5919 (syms_of_image) [MAC_OS]: Intern and staticpro it.
5920 [MAC_OS] (gif_load): Save image extension data in img->data.lisp_val.
5921 [MAC_OSX] (image_load_quartz2d): Use cfstring_create_with_utf8_cstring
5922 instead of cfstring_create_with_string.
5923
5924 2006-05-06 Kim F. Storm <storm@cua.dk>
5925
5926 * .gdbinit (xframe): Print frame name.
5927 (xlist): New command to print a list (max 10 elements).
5928 (xpr): Print lisp object of any type.
5929 (pitx): Print it->pixel_width.
5930
5931 2006-05-05 Kenichi Handa <handa@m17n.org>
5932
5933 * xdisp.c (handle_composition_prop): Fix for the case of empty
5934 composition component.
5935
5936 2006-05-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5937
5938 * keyboard.c (make_lispy_event) [MAC_OS]: Get Apple event info
5939 from event->arg.
5940
5941 * termhooks.h (enum event_kind) [MAC_OS]: Update comment for
5942 MAC_APPLE_EVENT.
5943
5944 * macterm.h (mac_make_lispy_event_code): Remove extern.
5945 (mac_post_mouse_moved_event): Add extern.
5946 (mac_aelist_to_lisp, mac_aedesc_to_lisp): Change arg 1 to
5947 `const AEDesc *' in externs.
5948 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]: New extern.
5949
5950 * mac.c (mac_aelist_to_lisp, mac_aedesc_to_lisp): Change arg 1 to
5951 `const AEDesc *'.
5952 [TARGET_API_MAC_CARBON] (create_apple_event): New function.
5953 [TARGET_API_MAC_CARBON] (create_apple_event_from_event_ref): Use it.
5954 Use xrealloc instead of repeated xmalloc/xfree.
5955 [TARGET_API_MAC_CARBON] (create_apple_event_from_drag_ref):
5956 New function.
5957
5958 * macmenu.c (restore_menu_items, cleanup_popup_menu): Return a value.
5959
5960 * macselect.c: Update copyright year.
5961 (mac_store_apple_event): Change return type to void in extern.
5962 (mac_handle_apple_event): Don't get return value from
5963 mac_store_apple_event.
5964 [TARGET_API_MAC_CARBON] (Vmac_dnd_known_types): New variable.
5965 (syms_of_macselect) [TARGET_API_MAC_CARBON]: Defvar it.
5966 [TARGET_API_MAC_CARBON] (mac_do_track_drag): Move function from
5967 macterm.c. Use Vmac_dnd_known_types as acceptable flavors.
5968 [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Likewise. New
5969 implementation using create_apple_event_from_drag_ref.
5970 [TARGET_API_MAC_CARBON] (mac_do_track_dragUPP)
5971 (mac_do_receive_dragUPP): Move variables from macterm.c.
5972 (install_drag_handler, remove_drag_handler): New functions.
5973
5974 * macterm.c (XTread_socket) [TARGET_API_MAC_CARBON]: Try window
5975 path select also for proxy icon click.
5976 [TARGET_API_MAC_CARBON] (mac_post_mouse_moved_event): New function.
5977 [USE_TOOLKIT_SCROLL_BARS] (scroll_bar_timer_callback): Use it.
5978 (xlfdpat_create): Remove unused label `error' and trailing sentences.
5979 (mac_do_track_drag, mac_do_receive_drag): Move functions to macselect.c.
5980 (mac_do_track_dragUPP, mac_do_receive_dragUPP): Move variables to
5981 macselect.c.
5982 (install_drag_handler, remove_drag_handler): Add extern.
5983 (mac_store_apple_event): Change return type to void. All uses changed.
5984 Create Lisp object from Apple event and store it into input event.
5985 (mac_make_lispy_event_code): Remove function.
5986 [TARGET_API_MAC_CARBON] (mac_store_drag_event): New function.
5987 (install_window_handler): Call install_drag_handler.
5988 (remove_window_handler): Call remove_drag_handler.
5989
5990 2006-05-03 Richard Stallman <rms@gnu.org>
5991
5992 * sound.c (Fplay_sound_internal): Dynamically allocate
5993 current_sound_device and current_sound.
5994 (sound_cleanup): Free them.
5995
5996 * minibuf.c (read_minibuf): Don't use read_minibuf_noninteractive
5997 when inside a keyboard macro.
5998
5999 2006-05-02 Andreas Schwab <schwab@suse.de>
6000
6001 * xmenu.c (restore_menu_items): Return a value.
6002
6003 2006-05-01 Martin Rudalics <rudalics@gmx.at>
6004
6005 * syntax.c (Fforward_comment): Detect generic comment at beginning of
6006 buffer when moving backwards.
6007
6008 2006-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6009
6010 * dispnew.c (update_window): Don't set changed_p when mode/header
6011 line is updated.
6012
6013 * xdisp.c (prepare_menu_bars) [MAC_OS]: Call mac_update_title_bar.
6014 (get_glyph_face_and_encoding, get_char_face_and_encoding):
6015 Don't distinguish known faces from others.
6016
6017 * mac.c (mac_coerce_file_name_ptr): Try typeFSRef if coercion
6018 through typeFileURL failed.
6019
6020 * macfns.c (mac_update_title_bar): New function.
6021 [TARGET_API_MAC_CARBON] (mac_update_proxy_icon): New function.
6022 (show_hourglass, hide_hourglass) [USE_CG_DRAWING]:
6023 Call mac_prepare_for_quickdraw.
6024
6025 * macgui.h (USE_ATSUI): Set default to 1 if MAC_OSX is defined.
6026 (USE_CG_DRAWING): Don't define if compiled on Mac OS X 10.1.
6027 (enum pcm_status): New enum.
6028 (XCHARSTRUCTROW_CHAR_VALID_P, XCHARSTRUCTROW_SET_CHAR_VALID)
6029 (XCharStructRow): Remove. Now validity is represented by
6030 non-negativeness of sum of ascent and descent.
6031 (struct MacFontStruct): Change type of member `rows'.
6032 (struct _XGC) [USE_CG_DRAWING]: Add member `clip_rects'.
6033
6034 * macterm.c (mac_draw_line, mac_draw_line_to_pixmap):
6035 Adjust endpoints of strictly horizontal/vertical lines.
6036 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Set clip_rects.
6037 (pcm_init, pcm_get_status): New functions.
6038 (x_per_char_metric, XLoadQueryFont): Use them instead of
6039 XCharStructRow and related macros.
6040 (x_draw_relief_rect): Don't adjust arguments of mac_draw_line.
6041 (x_free_frame_resources) [TARGET_API_MAC_CARBON]: Free FRAME_FILE_NAME.
6042 (XTread_socket) [TARGET_API_MAC_CARBON]: Handle proxy icon drag
6043 and window path pop-up menu on title bar.
6044 (mac_use_core_graphics) [USE_CG_DRAWING]: Set default to 1.
6045
6046 * macterm.h (mac_update_title_bar): Add extern.
6047 (struct mac_output) [TARGET_API_MAC_CARBON]: New member `file_name'.
6048 (FRAME_FILE_NAME): New macro.
6049
6050 * unexmacosx.c (unexec): Error if trying unexec from dumped executable.
6051
6052 2006-04-30 Richard Stallman <rms@gnu.org>
6053
6054 * keymap.c (Fdefine_key): Improve error message
6055 when KEY begins with a non-prefix key.
6056
6057 2006-04-30 Martin Rudalics <rudalics@gmx.at>
6058
6059 * syntax.c (Fforward_comment): Don't forget to break out of the loop
6060 when we skipped backward over a generic comment.
6061
6062 2006-04-27 Nick Roberts <nickrob@snap.net.nz>
6063
6064 * .gdbinit (pp1, pv1): Only print value as expression is now
6065 printed out by gud-print.
6066 (pv1): Correct doc string.
6067
6068 2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
6069
6070 * keymap.c (store_in_keymap): Change `def' arg to not be `register'.
6071 Seems to trigger a bug in gcc-amd64 4.0.2 20051125 (Red Hat 4.0.2-8):
6072 keymap.c:895: error: address of register variable `def' requested.
6073
6074 2006-04-26 Jason Rumney <jasonr@gnu.org>
6075
6076 * w32term.c (construct_mouse_wheel): Handle negative coordinates.
6077
6078 * w32fns.c (w32_wnd_proc) <WM_LBUTTONDOWN, WM_RBUTTONDOWN>:
6079 <WM_LBUTTONUP, WM_RBUTTONUP>: Call signal_user_input in the cases
6080 where we preempt mouse_button_timer.
6081
6082 2006-04-25 Miles Bader <miles@gnu.org>
6083
6084 * editfns.c (Ffield_beginning, find_field): Undo change of 2006-04-23.
6085
6086 2006-04-24 Stefan Monnier <monnier@iro.umontreal.ca>
6087
6088 * process.h: Include headers for pid_t.
6089
6090 2006-04-24 Kim F. Storm <storm@cua.dk>
6091
6092 * xdisp.c (fill_stretch_glyph_string): Set s->nchars = 1 for code which
6093 does last_glyph=s->first_glyph+s->nchars-1, e.g. if stretch has relief.
6094 (produce_stretch_glyph): Assume that face box height and width is
6095 already included in stretch glyph size so caller doesn't have to
6096 consider the extra space otherwise added (fixes problem in ses.el).
6097
6098 * frame.c (x_set_font): Clear f->n_tool_bar_rows and current frame
6099 matrices to force recalculation of tool-bar height after font change.
6100
6101 * xdisp.c (tool_bar_lines_needed): New local `temp_row' for clarity.
6102 Clear it when done, so we don't accidentally draw a second copy of
6103 the tool-bar after resetting f->n_tool_bar_rows.
6104 (redisplay_tool_bar): Update tool-bar-lines frame parameter whenever
6105 we recalculate f->n_tool_bar_rows.
6106
6107 2006-04-23 Lars Hansen <larsh@soem.dk>
6108
6109 * editfns.c (find_field): Fix comment.
6110 (Ffield_beginning): Fix bug when POS is at field beginning.
6111
6112 2006-04-22 Eli Zaretskii <eliz@gnu.org>
6113
6114 * puresize.h (BASE_PURESIZE): Increase to 1205000.
6115
6116 2006-04-21 Kim F. Storm <storm@cua.dk>
6117
6118 * xdisp.c (redisplay_window): Fix last change. Don't recenter if
6119 window start is at BEGV.
6120
6121 * dispextern.h (struct image): New member `corners'.
6122 (TOP_CORNER, LEFT_CORNER, BOT_CORNER, RIGHT_CORNER): New macros.
6123
6124 * image.c (four_corners_best): New arg CORNERS specifies what pixels
6125 to look at in case image has margin.
6126 (x_create_bitmap_mask): Pass NULL for CORNERS to four_corners_best.
6127 (image_background, image_background_transparent)
6128 (x_build_heuristic_mask): Pass img->corners to four_corners_best.
6129 (gif_load): Set img->corners according to image's margin spec.
6130 Use img->corners values directly where applicable.
6131 Save image extension data in img->data.lisp_val.
6132 (gif_clear_image): New function to free img->data.lisp_val.
6133 (gif_type): Use it instead of generic x_clear_image.
6134 (Fimage_extension_data): New defun.
6135 (syms_of_image): Defsubr it.
6136
6137 2006-04-21 John Sullivan <john@wjsullivan.net> (tiny change)
6138
6139 * window.c (Fdisplay_buffer): Doc fix.
6140
6141 2006-04-21 Eli Zaretskii <eliz@gnu.org>
6142
6143 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Increase to 25000.
6144
6145 2006-04-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6146
6147 * image.c [MAC_OS] (xpm_load_image): Fill in background field
6148 while we have ximg handy.
6149
6150 * macmenu.c (restore_menu_items, save_menu_items): New functions
6151 from xmenu.c.
6152 (set_frame_menubar, digest_single_submenu): Apply 2006-04-18
6153 changes for xmenu.c.
6154
6155 * macterm.c (x_per_char_metric): Return NULL if glyph width is 0.
6156 (add_mac_font_name): New function.
6157 (init_font_name_table): Use it. Adopt the first found font from
6158 those having the same family name.
6159
6160 2006-04-21 Nick Roberts <nickrob@snap.net.nz>
6161
6162 * xdisp.c (note_mouse_highlight): Use build_string.
6163
6164 2006-04-20 Lars Hansen <larsh@soem.dk>
6165
6166 * textprop.c (Fremove_list_of_text_properties):
6167 Ensure modify_region is called only when buffer is modified and that
6168 signal_after_change is allways called in that case.
6169
6170 * print.c (PRINTFINISH): Call signal_after_change.
6171
6172 2006-04-20 Kim F. Storm <storm@cua.dk>
6173
6174 * xdisp.c (redisplay_window): Fix last change.
6175
6176 * xdisp.c (redisplay_window): If current window start is not at the
6177 beginning of a line, select a new window start if buffer is modified
6178 and window start is in the modified region, but the first change is
6179 before window start.
6180
6181 2006-04-18 Richard Stallman <rms@gnu.org>
6182
6183 * xmenu.c (restore_menu_items, save_menu_items): New fns.
6184 (set_frame_menubar): Use save_menu_items. Save updated vector in
6185 the frame before unwinding it. Don't use unuse_menu_items.
6186 Don't use discard_menu_items.
6187 (digest_single_submenu): Abort if an item is not in a pane.
6188 (init_menu_items): Put the error check at the top.
6189
6190 * keymap.c (describe_map): Make "shadowed" warning more verbose.
6191
6192 * window.c (adjust_window_trailing_edge): Correctly distinguish
6193 series vs parallel cases, even when window has no parent.
6194
6195 * abbrev.c (record_symbol): New function.
6196 (Finsert_abbrev_table_description): Sort the abbrevs alphabetically.
6197
6198 2006-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6199
6200 * image.c (x_create_bitmap_from_data) [MAC_OS]: Don't check return
6201 value of xmalloc.
6202
6203 * mac.c (mac_coerce_file_name_ptr, mac_coerce_file_name_desc)
6204 (create_apple_event_from_event_ref, xrm_get_preference_database)
6205 (cfstring_create_normalized): Don't check return value of xmalloc.
6206
6207 * macselect.c (get_scrap_target_type_list, defer_apple_events)
6208 (copy_scrap_flavor_data, mac_handle_service_event): Don't check
6209 return value of xmalloc/xrealloc.
6210
6211 * macterm.c (XCreateGC, x_per_char_metric, xlfdpat_create)
6212 (init_font_name_table, init_font_name_table, mac_do_list_fonts)
6213 (XLoadQueryFont, mac_store_apple_event): Don't check return value
6214 of xmalloc.
6215
6216 2006-04-17 Kim F. Storm <storm@cua.dk>
6217
6218 * window.c (coordinates_in_window): On the vertical border,
6219 calculate the row number measured from the top of the window, not
6220 the top of the frame.
6221 (window_loop): Test w->dedicated with !NILP instead of EQ Qt.
6222 (window_scroll_pixel_based): Fix off-by-one bug in 2002-12-23 change.
6223
6224 2006-04-16 Eli Zaretskii <eliz@gnu.org>
6225
6226 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Reduce to 24000.
6227
6228 2006-04-16 Romain Francoise <romain@orebokech.com>
6229
6230 * puresize.h (BASE_PURESIZE): Decrement back to 1200000.
6231
6232 2006-04-16 Andreas Schwab <schwab@suse.de>
6233
6234 * puresize.h (PURESIZE_RATIO): Reduce to 10/6.
6235
6236 2006-04-15 Romain Francoise <romain@orebokech.com>
6237
6238 * puresize.h (BASE_PURESIZE): Increment to 1210000.
6239
6240 2006-04-13 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
6241
6242 * print.c (Fprin1_to_string): Mention in the `doc' that the
6243 behavior is modified by `print-level' and `print-length'.
6244
6245 2006-04-13 Kenichi Handa <handa@m17n.org>
6246
6247 * coding.c (setup_coding_system): If eol-type is not yet decided
6248 and system_eol_type is not LF, set CODING_REQUIRE_ENCODING_MASK.
6249 If coding_system is nil, return 0.
6250 (code_convert_region1): Even if coding_system is nil, don't skip
6251 conversion if system_eol_type is not LF.
6252 (code_convert_string1): Likewise.
6253 (code_convert_string_norecord): Likewise.
6254
6255 2006-04-13 Kenichi Handa <handa@m17n.org>
6256
6257 * coding.c (setup_coding_system): Fix previous change.
6258 (encode_coding): If eol_type is not yet decided, use system_eol_type.
6259 (shrink_encoding_region): If eol_type is not yet decided and
6260 system_eol_type is not LF, don't shrink.
6261
6262 2006-04-13 Nick Roberts <nickrob@snap.net.nz>
6263
6264 * xdisp.c (note_mouse_highlight): Add help echo for dragging vertical
6265 line.
6266
6267 2006-04-12 Richard Stallman <rms@gnu.org>
6268
6269 * keyboard.c (read_key_sequence): Explicitly avoid keybuf[-1].
6270
6271 * process.c (conv_lisp_to_sockaddr): If FAMILY unknown, just return.
6272 (Fprocess_send_eof): Abort if fail to open null device.
6273
6274 2006-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6275
6276 * fns.c [HAVE_MENUS && MAC_OS]: Include macterm.h.
6277
6278 * image.c [MAC_OS] (xpm_load_image): Add parentheses around
6279 assignment used as truth value. Add explicit braces to avoid
6280 ambiguous `else'.
6281 [MAC_OS] (gif_load): Remove unused variable `gcpro1'.
6282
6283 * lisp.h (syms_of_fontset, Fset_fontset_font): Put extern and
6284 EXFUN in #ifdef HAVE_WINDOW_SYSTEM.
6285 (syms_of_xfns, syms_of_xsmfns, syms_of_xselect, syms_of_xterm):
6286 Put externs in #ifdef HAVE_X_WINDOWS.
6287 (syms_of_macfns, syms_of_macselect, syms_of_macterm)
6288 (syms_of_macmenu, syms_of_mac) [MAC_OS]: Add externs.
6289 (init_mac_osx_environment) [MAC_OSX]: Add extern.
6290
6291 * mac.c (init_process): Remove undef.
6292 (select) [MAC_OSX]: Undefine before including sysselect.h.
6293 (posix_pathname_to_fsspec, fsspec_to_posix_pathname) [MAC_OSX]:
6294 Remove functions and prototypes.
6295 (parse_value): Add parentheses around + inside shift.
6296 (path_from_vol_dir_name): Make static.
6297 (get_temp_dir_name): Remove unused variables `cpb' and `dir_name'.
6298 [!MAC_OSX] (get_path_to_system_folder): Likewise.
6299 (Fmac_get_file_creator, Fmac_get_file_type): Remove unused
6300 variable `cCode'.
6301 (Fmac_coerce_ae_data): Remove unused variables `fref' and `fs'.
6302 (Fmac_get_preference): Add explicit braces to avoid ambiguous `else'.
6303
6304 * macfns.c (x_to_mac_color): Remove unused variable `tail'.
6305 (x_set_mouse_color): Remove unused variable `dpy'.
6306 (Fx_create_frame): Remove unused variable `x_frame_count'.
6307 (Fx_server_version): Add explicit braces to avoid ambiguous `else'.
6308 (x_sync): Move from macterm.c.
6309 (Fx_file_dialog): Remove unused variable `default_filter_index'.
6310
6311 * macmenu.c (min_menu_id): Make element type explicit.
6312
6313 * macselect.c (get_flavor_type_from_symbol): Remove unused
6314 variable `val'.
6315 (get_scrap_private_timestamp, x_get_foreign_selection)
6316 (copy_scrap_flavor_data): Add explicit braces to avoid ambiguous `else'.
6317 (Fmac_process_deferred_apple_events): Remove unused variables
6318 `keyword', `reply', `apple_event', `count', and `err'.
6319
6320 * macterm.c: Don't include gnu.h.
6321 (x_io_error_quitter, x_draw_image_foreground_1): Remove prototypes.
6322 (x_sync): Move to macfns.c.
6323 [USE_CG_DRAWING] (mac_define_fringe_bitmap): Remove unused
6324 variable `mask_bits'.
6325 (mac_compute_glyph_string_overhangs): Avoid ambiguous `else'.
6326 (x_draw_image_glyph_string): Remove unused variable `pixmap'.
6327 (x_mac_to_emacs_modifiers): Remove function.
6328 (XTset_vertical_scroll_bar, mac_handle_visibility_change)
6329 (x_make_frame_visible, xlfdpat_create, mac_handle_command_event):
6330 Add explicit braces to avoid ambiguous `else'.
6331 (x_make_frame_visible): Remove unused variables `type',
6332 `original_top', and `original_left'.
6333 (mac_do_list_fonts, XTread_socket): Add parentheses around && within ||.
6334 (x_load_font): Remove unused variables `full_name', and `value'.
6335 (do_get_menus, do_init_managers, do_check_ram_size) [!MAC_OS8]:
6336 Remove functions.
6337 (do_zoom_window): Reorganize variables with respect to conditionals.
6338 (init_command_handler): Remove unused variable `err'.
6339 [MAC_OSX] (mac_check_bundle): Remove unused variable `child'.
6340
6341 * macterm.h (x_set_mouse_position, x_set_mouse_pixel_position)
6342 (x_make_frame_invisible, x_iconify_frame, x_free_frame_resources)
6343 (x_destroy_window, x_wm_set_size_hint, x_delete_display, XFreeGC)
6344 (do_menu_choice, have_menus_p, x_real_positions)
6345 (x_set_menu_bar_lines, x_pixel_width, x_pixel_height, x_char_width)
6346 (x_char_height, x_sync, x_set_tool_bar_lines, x_activate_menubar)
6347 (free_frame_menubar): Add externs.
6348
6349 * unexmacosx.c: Include config.h before using HAVE_MALLOC_MALLOC_H.
6350 (malloc, realloc, free): Add undefs.
6351 (read_load_commands): Remove unused variable `n' and `j'.
6352 (copy_data_segment): Remove unused variable `r'.
6353
6354 * xdisp.c (get_glyph_string_clip_rects): Add parentheses around &&
6355 within ||. Add explicit braces to avoid ambiguous `else'.
6356 (dump_glyph_row): Remove label for `inverse_p' from legend.
6357
6358 * xfaces.c (Finternal_merge_in_global_face, try_font_list):
6359 Add explicit braces to avoid ambiguous `else'.
6360
6361 2006-04-11 Micha\e,Ak\e(Bl Cadilhac <michael.cadilhac@lrde.org>
6362
6363 * dispnew.c (init_display): Don't init X display if the user asked
6364 for a non-X display.
6365
6366 2006-04-12 Kenichi Handa <handa@m17n.org>
6367
6368 * coding.c (setup_coding_system): Use system_eol_type for default
6369 coding->eol_type.
6370
6371 2006-04-11 Dan Nicolaescu <dann@ics.uci.edu>
6372
6373 * lisp.h (wrong_type_argument): Mark as NO_RETURN.
6374
6375 * data.c (wrong_type_argument): Try to avoid compiler warnings due
6376 to the fact the function is now marked as NO_RETURN.
6377
6378 2006-04-10 Eli Zaretskii <eliz@gnu.org>
6379
6380 * s/ms-w32.h (pid_t) [_MSC_VER]: New typedef.
6381
6382 2006-04-10 Romain Francoise <romain@orebokech.com>
6383
6384 * xrdb.c (gethomedir): Use xstrdup.
6385
6386 2006-04-10 Andreas Schwab <schwab@suse.de>
6387
6388 * xrdb.c (gethomedir): Make sure to always return a pointer that
6389 can be passed to free.
6390
6391 2006-04-09 Richard Stallman <rms@gnu.org>
6392
6393 * lisp.h (Fkill_emacs): Undo previous change.
6394
6395 2006-04-08 Richard Stallman <rms@gnu.org>
6396
6397 * search.c (boyer_moore): Test ch >= 0400, not >.
6398
6399 2006-04-09 Dan Nicolaescu <dann@ics.uci.edu>
6400
6401 * puresize.h (pure_write_error): Mark as NO_RETURN.
6402
6403 * lisp.h (args_out_of_range, args_out_of_range_3, Fkill_emacs):
6404 Likewise.
6405
6406 2006-04-08 Eli Zaretskii <eliz@gnu.org>
6407
6408 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Ignore mouse movements
6409 if a menu is active on this frame.
6410
6411 2006-04-08 Dan Nicolaescu <dann@ics.uci.edu>
6412
6413 * lisp.h (report_file_error): Mark as NO_RETURN.
6414
6415 2006-04-08 Eli Zaretskii <eliz@gnu.org>
6416
6417 * alloc.c [STDC_HEADERS]: Include stddef.h.
6418
6419 * lisp.h (PSEUDOVECSIZE): Fix last change.
6420
6421 2006-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
6422
6423 * process.h (struct Lisp_Process): Replace Lisp_Objects `pid',
6424 `raw_status_high', and `raw_status_low' with plain integers, and move
6425 them to the end of the structure.
6426
6427 * alloc.c (allocate_process): Use PSEUDOVECSIZE to initialize the
6428 pseudovector's size field so only the Lisp_Object fields get GC'd.
6429
6430 * process.c (update_status, make_process, Fdelete_process)
6431 (Fprocess_status, list_processes_1, start_process_unwind)
6432 (create_process, Fmake_network_process, server_accept_connection)
6433 (wait_reading_process_output, send_process, Fprocess_running_child_p)
6434 (process_send_signal, proc_encode_coding_system, Fprocess_send_eof)
6435 (sigchld_handler, status_notify): Adjust to new non-Lisp fields for
6436 `pid' and `raw_status'.
6437 (Fprocess_id, Fsignal_process): Same, and additionally use floats when
6438 representing PIDs that are larger than most-positive-fixnum.
6439
6440 * keymap.c (describe_map): Only use XINT if we checked INTEGERP.
6441
6442 * lisp.h (OFFSETOF, PSEUDOVECSIZE): New macros.
6443
6444 2006-04-08 Eli Zaretskii <eliz@gnu.org>
6445
6446 * w32fns.c (Fx_show_tip): Add 3 to the 5th arg of SetWindowPos.
6447
6448 2006-04-03 Paul Eggert <eggert@cs.ucla.edu>
6449
6450 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): New macro, identical to
6451 ../lib-src/b2m.c and ../lib-src/editfns.c.
6452 (Fcurrent_time_string): Use it.
6453 Document that the year might not consume 4 columns if it's outside
6454 the range 1000-9999.
6455 Check for asctime failure.
6456 Don't assume that the output string length is always exactly 24.
6457
6458 2006-04-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6459
6460 * macterm.c (XTread_socket): Initialize variable `f' before its use.
6461
6462 2006-04-03 Kenichi Handa <handa@m17n.org>
6463
6464 * image.c: Include "charset.h" and "coding.h".
6465 (x_find_image_file): Return an encoded file name.
6466
6467 2006-04-01 Eli Zaretskii <eliz@gnu.org>
6468
6469 * configure: Regenerated.
6470
6471 2006-03-31 Kenichi Handa <handa@m17n.org>
6472
6473 * xfns.c (xg_set_icon): Delete superfluous UNGCPRO.
6474
6475 2006-03-30 Dan Nicolaescu <dann@ics.uci.edu>
6476
6477 * xdisp.c (syms_of_xdisp): Fix variable name.
6478
6479 2006-03-30 Kenichi Handa <handa@m17n.org>
6480
6481 * xterm.c (x_term_init): Delete superfluous UNGCPRO.
6482
6483 2006-03-29 Juanma Barranquero <lekktu@gmail.com>
6484
6485 * keyboard.c (process_tool_bar_item): Reorder dummy args.
6486
6487 2006-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
6488
6489 * keyboard.c (tool_bar_items): Use map_keymap.
6490 (process_tool_bar_item): Add dummy args to fit the required interface.
6491
6492 2006-03-25 Eli Zaretskii <eliz@gnu.org>
6493
6494 * .gdbinit (pr, pp, pp1, pv, pv1): Force print_output_debug_flag
6495 to zero before calling debug_print or safe_debug_print.
6496
6497 * print.c (print_output_debug_flag): New global variable.
6498 (Fexternal_debugging_output) [WINDOWSNT]: Don't call
6499 OutputDebugString if print_output_debug_flag is zero.
6500
6501 2006-03-24 Paul Eggert <eggert@cs.ucla.edu>
6502
6503 * editfns.c (TM_YEAR_BASE): Move up, so the changes below can use it.
6504 (Fdecode_time, Fencode_time): Use TM_YEAR_BASE instead of 1900.
6505 (Fdecode_time): Cast tm_year to EMACS_INT.
6506 (Fcurrent_time_string): Report an invalid time specification if
6507 the argument is invalid. Also, check for out-of-range time stamps.
6508
6509 2006-03-24 Kim F. Storm <storm@cua.dk>
6510
6511 * xterm.c (handle_one_xevent):
6512 * w32term.c (w32_read_socket):
6513 * macterm.c (XTread_socket): Don't let key-press clear mouse face
6514 on in toolbar window if mouse-highlight is an integer.
6515
6516 * fns.c (sxhash_list): Include last non-nil CDR in hash.
6517
6518 2006-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6519
6520 * macmenu.c (enum mac_menu_kind): New enum.
6521 (min_menu_id): New variable.
6522 (POPUP_SUBMENU_ID, MIN_POPUP_SUBMENU_ID, MIN_MENU_ID)
6523 (MIN_SUBMENU_ID): Remove defines. All uses are replaced with
6524 min_menu_id and enumerators in enum mac_menu_kind.
6525 (fill_menu, dispose_menus, install_menu_quit_handler): New arg KIND.
6526 All uses changed. Add range check for menu ID.
6527 (fill_menubar): Add range check for menu ID.
6528 [HAVE_CANCELMENUTRACKING] (menu_quit_handler): Check error code of
6529 GetEventParameter.
6530 (set_frame_menubar, mac_menu_show): Call install_menu_quit_handler
6531 for each menu kind.
6532
6533 2006-03-22 Kim F. Storm <storm@cua.dk>
6534
6535 * xdisp.c: Undo 2006-03-21 change.
6536
6537 * term.c: Define aliases for append_glyph and produce_stretch_glyph
6538 when `static' is defined to avoid name clash with those in xdisp.c.
6539
6540 * process.c (Faccept_process_output): Fix to comply with lisp
6541 reference. Change arg "timeout" to "seconds" and allow both
6542 integer and float value. Change arg "timeout-msec" to "millisec"
6543 and interpret" as milliseconds rather than microseconds. Fix doc
6544 string accordingly.
6545
6546 2006-03-21 Ken Raeburn <raeburn@raeburn.org>
6547
6548 * xdisp.c (store_next_glyph): Rename from append_glyph.
6549 (generate_stretch_glyph): Rename from produce_stretch_glyph.
6550 All callers changed accordingly.
6551
6552 2006-03-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6553
6554 * xterm.c: x_session_initialized new variable.
6555 (x_term_init): Use x_session_initialized to check if
6556 x_session_initialize should be called.
6557 (x_initialize): Initialize x_session_initialized.
6558
6559 2006-03-21 Kim F. Storm <storm@cua.dk>
6560
6561 * fringe.c (draw_fringe_bitmap): Don't calculate default overlay arrow
6562 bitmap here, but ...
6563 (update_window_fringes): ... here, so we can test if it has changed.
6564
6565 2006-03-20 Andreas Schwab <schwab@suse.de>
6566
6567 * dispnew.c (init_display): Check DISPLAY here.
6568
6569 * emacs.c (main): Don't check here.
6570
6571 * xterm.c (x_display_ok): Don't use DISPLAY env var.
6572
6573 2006-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
6574
6575 * window.c (window_scroll_pixel_based): Yet another int/Lisp_Object
6576 mixup (YAILOM).
6577
6578 2006-03-20 Eli Zaretskii <eliz@gnu.org>
6579
6580 * emacs.c (main): Fix last change.
6581
6582 2006-03-20 Kenichi Handa <handa@m17n.org>
6583
6584 * fileio.c (Fwrite_region): Set visit_file to Qnil before GCPRO it.
6585
6586 * keymap.c (map_keymap): Set tail to Qnil before GCPRO it.
6587
6588 * xfns.c (xg_set_icon): Remove unnecessary GCPRO.
6589
6590 * xterm.c (x_term_init): Remove unnecessary GCPRO.
6591
6592 2006-03-19 Kim F. Storm <storm@cua.dk>
6593
6594 * xdisp.c (set_cursor_from_row): Fix cursor property on overlay string,
6595 so it doesn't associate overlay string with following glyph by default.
6596 Allow integer property value to specify explicit number of buffer
6597 positions associate with overlay string.
6598
6599 2006-03-18 Chong Yidong <cyd@stupidchicken.com>
6600
6601 * xterm.c (x_display_ok): Fix minor bug and compilation warnings.
6602
6603 2006-03-18 Nozomu Ando <nand@mac.com>
6604
6605 * m/pmax.h (BROKEN_NOCOMBRELOC) [__NetBSD__]: Define.
6606 (LIB_STANDARD, START_FILES) [__NetBSD__]: Don't define.
6607 (START_FILES, RUN_TIME_REMAP, UNEXEC) [__NetBSD__, __OpenBSD__]:
6608 Don't redefine.
6609
6610 * m/mips.h: Don't use unexmips on NetBSD.
6611 (LIBS_MACHINE): Move definition lower, so it doesn't use
6612 LD_SWITCH_MACHINE, START_FILES, LIB_STANDARD, LIBS_TERMCAP,
6613 C_SWITCH_MACHINE, and C_DEBUG_SWITCH.
6614
6615 * unexelf.c [BROKEN_NOCOMBRELOC]: Include assert.h.
6616 (unexec) [BROKEN_NOCOMBRELOC]: Handle platforms whose nocombreloc
6617 option is broken (e.g., MIPS/NetBSD).
6618
6619 2006-03-18 Craig McDaniel <craigmcd@gmail.com> (tiny change)
6620
6621 * sheap.c (STATIC_HEAP_SIZE): Enlarge STATIC_HEAP_SIZE to 12MB.
6622 Remove the HAVE_X_WINDOWS conditional.
6623
6624 2006-03-18 Vivek Dasmohapatra <vivek@etla.org> (tiny change)
6625
6626 * emacs.c (main): If user asks for a display that is unavailable,
6627 simulate -nw.
6628
6629 * xterm.c (x_display_ok): New function.
6630
6631 * xterm.h: Add prototype for x_display_ok.
6632
6633 2006-03-18 Eli Zaretskii <eliz@gnu.org>
6634
6635 * w32fns.c (Fw32_select_font): Doc fix.
6636
6637 2006-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6638
6639 * image.c [MAC_OS] (XPutPixel, XGetPixel)
6640 [!WORDS_BIG_ENDIAN && USE_CG_DRAWING]: Don't use specialized
6641 version when depth is 32.
6642 (mac_create_cg_image_from_image) [MAC_OS && USE_CG_DRAWING]:
6643 New function.
6644 (prepare_image_for_display) [MAC_OS && USE_CG_DRAWING]: Use it.
6645 (x_clear_image_1) [MAC_OS && USE_CG_DRAWING]: Release CGImage.
6646
6647 * macterm.c (XCreatePixmap) [!WORDS_BIG_ENDIAN && USE_CG_DRAWING]:
6648 Create GWorld in ARGB pixel format.
6649 (mac_copy_area, mac_copy_area_with_mask) [USE_CG_DRAWING]:
6650 Remove functions.
6651 (x_draw_image_foreground) [USE_CG_DRAWING]: Use mac_draw_cg_image
6652 instead of mac_copy_area/mac_copy_area_with_mask.
6653
6654 2006-03-15 Kim F. Storm <storm@cua.dk>
6655
6656 * xdisp.c (extend_face_to_end_of_line): Always add space glyph to
6657 empty row. Fixes memory corruption revealed by 2006-03-02 change.
6658 (display_tool_bar_line): Skip empty tool-bar line if HEIGHT < 0.
6659 (tool_bar_lines_needed): Fix tool-bar display in case the tool-bar
6660 width is exactly the same as the window width. Don't count a final
6661 empty tool-bar line (pass HEIGHT = -1 to display_tool_bar_line).
6662
6663 2006-03-15 Juanma Barranquero <lekktu@gmail.com>
6664
6665 * fringe.c (w32_init_fringe, w32_reset_fringes): Revert to being
6666 conditional on HAVE_NTGUI, not WINDOWS_NT.
6667
6668 2006-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6669
6670 * dispextern.h (mac_init_fringe) [MAC_OS]: Add prototype.
6671
6672 * fringe.c (mac_init_fringe) [MAC_OS]: New function.
6673
6674 * macterm.c (mac_initialize) [USE_CG_DRAWING]: Call mac_init_fringe.
6675 (max_fringe_bmp, fringe_bmp) [USE_CG_DRAWING]: New variables.
6676 (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap)
6677 (mac_draw_cg_image) [USE_CG_DRAWING]: New functions.
6678 (mac_draw_bitmap) [USE_CG_DRAWING]: Remove function.
6679 (x_draw_fringe_bitmap) [USE_CG_DRAWING]: Use mac_draw_cg_image
6680 instead of mac_draw_bitmap.
6681 (x_redisplay_interface) [USE_CG_DRAWING]: Set handlers for
6682 define_fringe_bitmap and destroy_fringe_bitmap.
6683
6684 2006-03-14 Chong Yidong <cyd@stupidchicken.com>
6685
6686 * xterm.c (x_uncatch_errors): Block input for entire function.
6687
6688 2006-03-12 Jason Rumney <jasonr@gnu.org>
6689
6690 * w32fns.c (Fx_create_frame): Remove call to
6691 Qface_set_after_frame_default (from xfns.c 2003-05-26).
6692
6693 * w32menu.c (Fx_popup_menu): Call w32_free_menu_strings when
6694 finished with the menu.
6695
6696 * w32term.c: Sync 2005-10-24 xterm.c changes.
6697 (last_mouse_glyph_frame): New var.
6698 (note_mouse_movement): Say mouse moved if current frame differs
6699 from last_mouse_glyph_frame, and update last_mouse_glyph_frame.
6700 (w32_mouse_position): Set last_mouse_glyph_frame.
6701 Remove OLD_REDISPLAY_CODE block.
6702
6703 2006-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6704
6705 * macgui.h [USE_ATSUI && MAC_OSX]: Define USE_CG_TEXT_DRAWING to 1.
6706
6707 * macterm.h (struct mac_output) [USE_CG_DRAWING]: New member cg_context.
6708 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Add prototype.
6709
6710 * mac.c (sys_select) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
6711
6712 * macfns.c (x_create_tip_frame): Apply 2006-03-11 change for xfns.c.
6713
6714 * macterm.c (mac_draw_rectangle, x_draw_glyph_string_foreground)
6715 (x_draw_composite_glyph_string_foreground)
6716 (x_draw_image_foreground): Undo previous changes.
6717 (x_draw_hollow_cursor): Likewise. Subtract 1 from the last
6718 argument of mac_draw_rectangle.
6719 (CG_SET_FILL_COLOR, CG_SET_STROKE_COLOR): New macros.
6720 (mac_draw_string_common, mac_draw_image_string_cg): Use them.
6721 (FRAME_CG_CONTEXT) [USE_CG_DRAWING]: New macro.
6722 (mac_begin_cg_clip, mac_end_cg_clip, mac_prepare_for_quickdraw)
6723 [USE_CG_DRAWING]: New functions.
6724 (mac_draw_line, mac_erase_rectangle, mac_clear_window)
6725 (mac_fill_rectangle, mac_draw_rectangle, mac_draw_string_common)
6726 (mac_draw_image_string_cg) [USE_CG_DRAWING]: Add Quartz 2D drawing part.
6727 (mac_draw_bitmap, mac_invert_rectangle, mac_draw_string_common)
6728 (mac_copy_area, mac_scroll_area, x_scroll_bar_create)
6729 (x_scroll_bar_remove, XTset_vertical_scroll_bar, x_set_window_size)
6730 (XTread_socket) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
6731
6732 2006-03-12 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
6733
6734 * xfns.c (x_icon): Disable redundant call to `x_wm_set_window_state'.
6735
6736 2006-03-11 Jason Rumney <jasonr@gnu.org>
6737
6738 * w32fns.c (signal_user_input): New function.
6739 (post_character_message): Use it for keyboard input.
6740 (w32_msg_pump): Use it for mouse input.
6741
6742 2006-03-11 Luc Teirlinck <teirllm@auburn.edu>
6743
6744 * window.c: Rename preserve_y to window_scroll_pixel_based_preserve_y.
6745 (window_scroll_pixel_based, syms_of_window): Adapt to above change.
6746
6747 2006-03-11 Eli Zaretskii <eliz@gnu.org>
6748
6749 * w32fns.c (w32_wnd_proc): Ignore middle and extra button events
6750 if a menu is already active (the menubar_active flag is on).
6751
6752 2006-03-11 David Ponce <david@dponce.com>
6753
6754 * xfns.c (x_create_tip_frame): Preserve received parms by copying them.
6755
6756 2006-03-11 Eli Zaretskii <eliz@gnu.org>
6757
6758 * w32term.c: Add x_fully_uncatch_errors and x_catching_errors to
6759 the list of unused display error handling functions.
6760
6761 * eval.c (unwind_to_catch): Call x_fully_uncatch_errors only if
6762 HAVE_X_WINDOWS.
6763 (internal_condition_case, internal_condition_case_1)
6764 (internal_condition_case_2): Call x_catching_errors only if
6765 HAVE_X_WINDOWS.
6766
6767 * vm-limit.c [HAVE_GETRLIMIT]: Don't define unconditionally.
6768 Don't include sys/resource.h unless defined.
6769
6770 2006-03-11 Richard Stallman <rms@gnu.org>
6771
6772 * keymap.c (describe_map): Shorten string to indicate shadowed binding.
6773
6774 * vm-limit.c (get_lim_data, lim_data, data_space_start):
6775 Move from mem-limits.h.
6776 (enum warnlevel): New data type.
6777 (check_memory_limits): Rewrite the logic about warnings.
6778 Use standard `struct rlimit'. Check return values for nonsense.
6779 (memory_warnings): Always clear lim_data.
6780
6781 * mem-limits.h (get_lim_data, lim_data, data_space_start):
6782 Move to vm-limit.c.
6783
6784 * xterm.c (x_fully_uncatch_errors, x_catching_errors): New functions.
6785
6786 * eval.c (unwind_to_catch): Call x_fully_uncatch_errors.
6787 (internal_condition_case_1, internal_condition_case_2):
6788 Abort if within unclosed x_catch_errors.
6789
6790 2006-03-11 Romain Francoise <romain@orebokech.com>
6791
6792 * process.c (Vprocess_adaptive_read_buffering): Doc fix.
6793
6794 2006-03-11 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
6795
6796 * lisp.h: Remove duplicate prototypes. Make the prototype of
6797 getloadavg be conditioned on HAVE_GETLOADAVG being undefined.
6798
6799 2006-03-11 Eli Zaretskii <eliz@gnu.org>
6800
6801 * xterm.c (x_draw_hollow_cursor): Subtract 1 from the last
6802 argument of XDrawRectangle.
6803
6804 * xdisp.c (get_phys_cursor_geometry): Don't decrease height by 1.
6805
6806 * macterm.c (mac_draw_rectangle): Don't add 1 to width and height.
6807 (x_draw_glyph_string_foreground)
6808 (x_draw_composite_glyph_string_foreground)
6809 (x_draw_image_foreground): Don't subtract 1 from width and height
6810 arguments to mac_draw_rectangle.
6811 (x_draw_hollow_cursor): Add 1 to w->phys_cursor_width.
6812
6813 2006-03-10 Kim F. Storm <storm@cua.dk>
6814
6815 * alloc.c (USE_POSIX_MEMALIGN): Fix last change.
6816
6817 2006-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
6818
6819 * alloc.c (USE_POSIX_MEMALIGN): New macro.
6820 (ABLOCKS_BASE, lisp_align_malloc, lisp_align_free): Use it.
6821
6822 2006-03-09 Kenichi Handa <handa@m17n.org>
6823
6824 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Fix decoding
6825 ASCII component of a composition.
6826
6827 2006-03-08 Luc Teirlinck <teirllm@auburn.edu>
6828
6829 * window.c: Declare preserve_y as a static global variable.
6830 (window_scroll_pixel_based): No longer declare preserve_y;
6831 it is global now.
6832 (syms_of_window): Set preserve_y to -1.
6833
6834 2006-03-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6835
6836 * image.c [MAC_OS] (XPutPixel): Set alpha channel bits if pixmap
6837 depth is 32.
6838 [MAC_OS] (XGetPixel): Strip off alpha channel bits if pixmap
6839 depth is 32.
6840
6841 2006-03-06 Chong Yidong <cyd@stupidchicken.com>
6842
6843 * xdisp.c (handle_invisible_prop): Don't update it->position with
6844 a buffer position if we're in a display string.
6845
6846 2006-03-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6847
6848 * macterm.h (MAC_AQUA_VERTICAL_SCROLL_BAR_WIDTH)
6849 (MAC_AQUA_SMALL_VERTICAL_SCROLL_BAR_WIDTH): New defines.
6850
6851 * macfns.c (x_default_scroll_bar_color_parameter)
6852 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
6853 Remove unnecessary prototypes.
6854 (x_set_scroll_bar_default_width):
6855 Use MAC_AQUA_VERTICAL_SCROLL_BAR_WIDTH.
6856 (mac_set_scroll_bar_width): New function.
6857 (mac_frame_parm_handlers): Set it as handler for scroll-bar-width.
6858
6859 * macterm.c (get_control_part_bounds): Fix type of return value.
6860 (x_set_toolkit_scroll_bar_thumb, x_scroll_bar_create)
6861 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]: Don't show
6862 scroll bar if it is not tall enough to display scroll bar thumb.
6863 [USE_CARBON_EVENTS] (mac_convert_event_ref)
6864 (mac_handle_command_event, mac_handle_window_event)
6865 (mac_handle_mouse_event): Check error code of GetEventParameter.
6866 (convert_fn_keycode) [MAC_OSX]: Likewise.
6867
6868 2006-03-05 Andreas Schwab <schwab@suse.de>
6869
6870 * xselect.c (x_catch_errors_unwind): Fix missing return value.
6871
6872 2006-03-02 Kim F. Storm <storm@cua.dk>
6873
6874 * frame.h (struct frame): New member n_tool_bar_rows.
6875
6876 * xdisp.c: Minimize the unpleasent visual impact of the requirement
6877 that non-toolkit tool-bars must occupy an integral number of screen
6878 lines, by distributing the rows evenly over the tool-bar screen area.
6879 (Vtool_bar_border): New variable.
6880 (syms_of_xdisp): DEFVAR_LISP it.
6881 (display_tool_bar_line): Add HEIGHT arg for desired row height.
6882 Make tool-bar row the desired height. Use default face for border
6883 below tool-bar.
6884 (tool_bar_lines_needed): Add N_ROWS arg. Use it to return number of
6885 actual tool-bar rows.
6886 (redisplay_tool_bar): Calculate f->n_tool_bar_rows initially.
6887 Adjust the height of the tool-bar rows to fill tool-bar screen area.
6888 (redisplay_tool_bar): Calculate f->n_tool_bar_rows when tool-bar area
6889 is resized.
6890
6891 2006-03-01 Luc Teirlinck <teirllm@auburn.edu>
6892
6893 * search.c (Fregexp_quote): Do not precede a literal `]' with two
6894 backslashes to try to make clear that it has a literal meaning; it
6895 does not do that. (It could close a character alternative
6896 containing a backslash.)
6897
6898 2006-02-28 Chong Yidong <cyd@stupidchicken.com>
6899
6900 * xselect.c (x_catch_errors_unwind): New function.
6901 (x_reply_selection_request): Put x_uncatch_errors in an unwind.
6902 (Fx_get_atom_name): Call x_uncatch_errors earlier.
6903
6904 * window.c (Qscroll_up, Qscroll_down): New syms.
6905 (window_scroll_pixel_based): Make preserve_y static to avoid
6906 getting point stuck when scrolling 1 line.
6907
6908 2006-02-26 Chong Yidong <cyd@stupidchicken.com>
6909
6910 * xterm.h, xterm.c (x_uncatch_errors): Delete unneccessary argument.
6911
6912 * xterm.c (x_load_font, x_term_init, XTmouse_position)
6913 (handle_one_xevent, x_connection_closed, x_list_fonts):
6914 No arg for x_uncatch_errors.
6915
6916 * xselect.c (x_own_selection, x_decline_selection_request)
6917 (x_reply_selection_request, x_get_foreign_selection)
6918 (Fx_get_atom_name, Fx_send_client_event): Likewise.
6919
6920 * xfns.c (x_real_positions, x_set_mouse_color, Fx_focus_frame):
6921 Likewise.
6922
6923 2006-02-26 Luc Teirlinck <teirllm@auburn.edu>
6924
6925 * lread.c: Declare Vload_file_rep_suffixes instead of
6926 deleted variable default_suffixes.
6927 (Fget_load_suffixes): New function.
6928 (Fload): Use Fget_load_suffixes and Vload_file_rep_suffixes.
6929 No longer use deleted variable default_suffixes. Update docstring.
6930 (syms_of_lread): defsubr Sget_load_suffixes.
6931 Expand `load-suffixes' docstring.
6932 Delete default_suffixes and DEFVAR_LISP the new variable
6933 `load-file-rep-suffixes'.
6934
6935 * w32.c (check_windows_init_file): Use Fget_load_suffixes instead
6936 of Vload_suffixes.
6937
6938 * lisp.h: EXFUN Fget_load_suffixes.
6939 Extern Vload_file_rep_suffixes.
6940
6941 * eval.c (specpdl_ptr): Remove volatile qualifier for consistency
6942 with lisp.h.
6943
6944 2006-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
6945
6946 * lisp.h (struct specbinding, specpdl_ptr): Remove the volatile
6947 qualifier which was trying to avoid the bug that was fixed by
6948 yesterday's changes to xterm.c.
6949
6950 2006-02-25 Chong Yidong <cyd@stupidchicken.com>
6951
6952 * xterm.h (x_catch_errors) Return value changed to void.
6953 (x_uncatch_errors): Delete unused count argument.
6954
6955 * xterm.c (x_catch_errors): Don't use record_unwind_protect, since
6956 it can be called in a signal handler.
6957 (x_catch_errors_unwind): Function deleted.
6958 (x_uncatch_errors): Deallocate last x_error_message_stack struct.
6959 (x_check_errors): Call x_uncatch_errors before signalling error.
6960
6961 (x_load_font, x_term_init, XTmouse_position, handle_one_xevent)
6962 (x_connection_closed, x_list_fonts): Use new versions of
6963 x_catch_errors and x_uncatch_errors.
6964
6965 * xselect.c (x_own_selection, x_decline_selection_request)
6966 (x_reply_selection_request, x_get_foreign_selection)
6967 (Fx_get_atom_name, Fx_send_client_event): Likewise.
6968
6969 * xfns.c (x_real_positions, x_set_mouse_color, Fx_focus_frame):
6970 Likewise.
6971
6972 * eval.c (record_unwind_protect): Add an assertion.
6973
6974 2006-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
6975
6976 * process.c (Fmake_network_process): Init the process's mark.
6977
6978 2006-02-25 Kim F. Storm <storm@cua.dk>
6979
6980 * buffer.c (modify_overlay): Force redisplay if we modify an
6981 overlay at the end of the buffer.
6982
6983 2006-02-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6984
6985 * gtkutil.c (xg_get_image_for_pixmap): If x_find_image_file returns
6986 nil the image file has been removed, in that case use the (cached)
6987 pixmap.
6988
6989 2006-02-24 Kenichi Handa <handa@m17n.org>
6990
6991 * fileio.c (Finsert_file_contents): When a text is replaced
6992 partially, be sure to set point before the inserted characters.
6993
6994 2006-02-23 Zhang Wei <id.brep@gmail.com> (tiny change)
6995
6996 * xfns.c (Fx_file_dialog): Return a decoded file name.
6997
6998 2006-02-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6999
7000 * dispnew.c (update_text_area): Avoid needless redraw of rightmost
7001 glyph whose face is extended to the text area end.
7002
7003 * macterm.c (x_set_toolkit_scroll_bar_thumb): Don't set control
7004 values if control is not visible or values are not changed.
7005
7006 2006-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
7007
7008 * window.c (Fwindow_list): Check `window' before doing XWINDOW.
7009 The default `window' should not be "on a different frame".
7010
7011 2006-02-22 Kim F. Storm <storm@cua.dk>
7012
7013 * indent.c (Fvertical_motion): Only try to move back if we can.
7014
7015 2006-02-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7016
7017 * macgui.h (struct _XGC) [!MAC_OSX || !USE_ATSUI]: New member
7018 n_clip_rects.
7019
7020 * macmenu.c (digest_single_submenu): Apply 2006-02-19 change for
7021 xmenu.c.
7022
7023 * macterm.c (GC_CLIP_REGION): Remove macro.
7024 (mac_begin_clip, mac_end_clip): Take arg GC instead of REGION.
7025 All uses changed. Don't do clipping if n_clip_rects is zero.
7026 (mac_set_clip_rectangles): Use xassert instead of abort.
7027 Set n_clip_rects. Don't make clip_region empty when number of
7028 clipping rectangles is zero.
7029 (mac_reset_clip_rectangles): Set n_clip_rects directly instead of
7030 calling mac_set_clip_rectangles.
7031 (x_set_toolkit_scroll_bar_thumb): Temporarily hide scroll bar to
7032 avoid multiple redraws.
7033
7034 2006-02-22 Kim F. Storm <storm@cua.dk>
7035
7036 * fringe.c (draw_fringe_bitmap): Fix overlay-arrow display.
7037
7038 2006-02-21 Kim F. Storm <storm@cua.dk>
7039
7040 * fringe.c (syms_of_fringe) <fringe-bitmaps>: Doc fix.
7041
7042 2006-02-21 Zhang Wei <brep@newsmth.org>
7043
7044 * xfns.c (Fx_file_dialog, Motif and GTK): DECODE_FILE before
7045 returning it.
7046
7047 2006-02-21 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
7048
7049 * fringe.c (horizontal_bar_bits): Rename from `horisontal_bar_bits'.
7050 (standard_bitmaps): Use it.
7051
7052 2006-02-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7053
7054 * macterm.c (mac_draw_string_common): Remove arg MODE. New arg
7055 BG_WIDTH. All uses changed. Draw background if BG_WIDTH is not zero.
7056 (mac_draw_image_string, mac_draw_image_string_16): New arg BG_WIDTH.
7057 [USE_CG_TEXT_DRAWING] (mac_draw_image_string_cg): Rename from
7058 mac_draw_string_cg. New arg BG_WIDTH. All uses changed.
7059 Draw background if BG_WIDTH is not zero. Use float constants as
7060 divisors instead of double. Use alloca instead of xmalloc/xfree.
7061 (x_draw_glyph_string_background, x_draw_glyph_string_foreground)
7062 [!MAC_OS8 || USE_ATSUI]: Background may be drawn using
7063 mac_draw_image_string* functions.
7064 (XLoadQueryFont) [MAC_OS8 && USE_ATSUI]: Don't adjust heights of
7065 some fonts when srcCopy text transfer mode might be used.
7066 (mac_begin_clip, mac_end_clip): Check if region is empty.
7067 (mac_set_clip_rectangles): When resetting clip region, make it
7068 empty instead of disposing of it.
7069
7070 2006-02-20 Kim F. Storm <storm@cua.dk>
7071
7072 * Makefile.in: Add fringe.elc to WINDOW_SUPPORT.
7073
7074 * buffer.h (struct buffer): New members fringe_indicator_alist and
7075 fringe_cursor_alist.
7076
7077 * buffer.c (init_buffer_once): Set dummy default values for
7078 fringe-indicator-alist and fringe-cursor-alist. The proper
7079 default values are set by pre-loading fringe.el.
7080 (syms_of_buffer): defvar_per_buffer new fringe-indicator-alist and
7081 fringe-cursor-alist buffer-local variables and defvar_lisp_nopro
7082 corresponding default- variables.
7083
7084 * fringe.c (enum fringe_bitmap_type): Remove. Change all uses
7085 to use `int'.
7086 (NO_FRINGE_BITMAP, UNDEF_FRINGE_BITMAP, MAX_STANDARD_FRINGE_BITMAPS):
7087 Define explicitly.
7088 (Qtruncation, Qcontinuation, Qempty_line, Qtop_bottom)
7089 (Qhollow_small): New variables.
7090 (syms_of_fringe): Intern and staticpro them.
7091 (question_mark_bits): Rename from unknown_bits.
7092 (left_curly_arrow_bits): Rename from continuation_bits.
7093 (right_curly_arrow_bits): Rename from continued_bits.
7094 (left_triangle_bits): Rename from ov_bits.
7095 (right_triangle_bits): Add.
7096 (filled_rectangle_bits): Rename from filled_box_cursor_bits.
7097 (hollow_rectangle_bits): Rename from hollow_box_cursor_bits.
7098 (filled_square_bits): Add.
7099 (vertical_bar_bits): Rename from bar_cursor_bits.
7100 (horizontal_bar_bits): Rename from hbar_cursor_bits.
7101 (empty_line_bits): Rename from zv_bits.
7102 (standard_bitmaps): Update to use new names.
7103 (draw_fringe_bitmap_1): Make static.
7104 (get_logical_cursor_bitmap, get_logical_fringe_bitmap): New functions
7105 to map from logical cursors and indicators to physical bitmaps.
7106 (draw_fringe_bitmap): Resolve fringe cursor and overlay-arrow
7107 bitmaps using symbol names instead of bitmap numbers.
7108 (update_window_fringes): Use logical indicator symbol names
7109 instead of bitmap numbers for logical. Add bitmap cache.
7110 (LEFT_FRINGE, RIGHT_FRINGE): New helper macros.
7111
7112 2006-02-20 Chong Yidong <cyd@stupidchicken.com>
7113
7114 * regex.c: Revert 2006-02-19 change.
7115 (xmalloc, xrealloc): Define these when not linked to Emacs.
7116 Redefine malloc -> xmalloc, realloc -> xrealloc as in Emacs case.
7117
7118 2006-02-19 Luc Teirlinck <teirllm@auburn.edu>
7119
7120 * regex.c (extend_range_table_work_area): Fix typo.
7121
7122 2006-02-19 Richard M. Stallman <rms@gnu.org>
7123
7124 * xterm.c (x_catch_errors): Use xmalloc.
7125
7126 * regex.c (extend_range_table_work_area): Call xmalloc and xrealloc.
7127 (regex_compile): Likewise.
7128 (regcomp): Use xmalloc.
7129
7130 * gtkutil.c (malloc_widget_value): Use xmalloc.
7131
7132 * vm-limit.c [HAVE_GETRLIMIT]: Include sys/resource.h.
7133 (check_memory_limits) [HAVE_GETRLIMIT]: Use getrlimit.
7134
7135 * xmenu.c (digest_single_submenu): When pane_string is empty,
7136 do initialize save_wv.
7137
7138 2006-02-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7139
7140 * xdisp.c (update_menu_bar) [MAC_OS]: Don't set
7141 w->update_mode_line if arg F is not the selected frame.
7142
7143 * macmenu.c (popup_activated_flag, submenu_id)
7144 (next_menubar_widget_id): Remove variables.
7145 (initialize_frame_menubar): Remove function.
7146 (pop_down_menu, mac_menu_show): Simplify save value.
7147 (dispose_menus): New function.
7148 (pop_down_menu, fill_menubar): Use it.
7149 (fill_submenu): Remove function. All uses changed to fill_menu.
7150 (add_menu_item): Remove args SUBMENU and FORCE_DISABLE. New arg
7151 POS. Don't call SetMenuItemHierarchicalID here.
7152 (fill_menu): Add arg SUBMENU_ID. Return submenu_id that is to be
7153 used next. Call SetMenuItemHierarchicalID here.
7154 (fill_menubar): Add arg DEEP_P. All uses changed. Clean up menu
7155 objects if needed. Reuse existing menu bar titles if possible.
7156 (set_frame_menubar): Don't clean up menu objects here.
7157
7158 2006-02-18 Chong Yidong <cyd@stupidchicken.com>
7159
7160 * window.c (window_min_size_1): Ensure room for the scroll bar and
7161 fringes.
7162
7163 2006-02-17 Romain Francoise <romain@orebokech.com>
7164
7165 * puresize.h (BASE_PURESIZE): Increment to 1200000.
7166
7167 2006-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
7168
7169 * alloc.c (Fmake_symbol): Comment-out left-over assert from before the
7170 addition of the BLOCK_INPUTs.
7171
7172 2006-02-17 Juanma Barranquero <lekktu@gmail.com>
7173
7174 * window.c (Fset_window_scroll_bars): Doc fix.
7175
7176 2006-02-17 Kenichi Handa <handa@m17n.org>
7177
7178 * xdisp.c (display_mode_element): Call display_string with correct
7179 PREC arg (which must be a number of characters, not column width).
7180
7181 2006-02-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7182
7183 * frame.c (x_get_arg): Clear out PARAM in ALIST also on Mac.
7184
7185 * macfns.c (x_set_menu_bar_lines): Menu bar is always shown on Mac.
7186
7187 * macmenu.c (set_frame_menubar): Don't call DrawMenuBar.
7188
7189 2006-02-14 Richard M. Stallman <rms@gnu.org>
7190
7191 * frame.c (x_get_arg): Clear out all occurrences of PARAM in ALIST.
7192
7193 * m/ibms390x.h: New file.
7194
7195 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7196
7197 * gtkutil.c (xg_tool_bar_detach_callback): Set show-arrow to the
7198 value of x-gtk-whole-detached-tool-bar.
7199 (xg_tool_bar_attach_callback): Set show-arrow to TRUE.
7200
7201 * xfns.c (syms_of_xfns): New variable: x-gtk-whole-detached-tool-bar.
7202
7203 2006-02-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7204
7205 * xterm.c (x_x_to_emacs_modifiers): Make non-static.
7206
7207 * xterm.h: Declare x_x_to_emacs_modifiers.
7208
7209 * gtkutil.c (xg_tool_bar_button_cb): New function.
7210 (xg_tool_bar_callback): Call x_x_to_emacs_modifiers to
7211 store modifiers in event.
7212 (update_frame_tool_bar): Connect button-release-event to
7213 xg_tool_bar_button_cb.
7214
7215 2006-02-13 Richard M. Stallman <rms@gnu.org>
7216
7217 * .gdbinit (xwindow): Update the code to show the window box.
7218
7219 2006-02-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7220
7221 * xterm.c (note_mouse_movement): Check for NULL FRAME_X_OUTPUT (frame).
7222
7223 2006-02-12 Richard M. Stallman <rms@gnu.org>
7224
7225 * cmds.c (internal_self_insert): Handle weird auto-fill-function.
7226
7227 2006-02-11 Eli Zaretskii <eliz@gnu.org>
7228
7229 * keyboard.c (Venable_disabled_menus_and_buttons): New variable.
7230 (syms_of_keyboard): DEVFAR_LISP and initialize it.
7231 (parse_tool_bar_item, parse_menu_item): If that variable is
7232 non-nil, don't disable menu items and tool-bar buttons.
7233
7234 2006-02-11 Juanma Barranquero <lekktu@gmail.com>
7235
7236 * doc.c (Fsubstitute_command_keys): Doc fix.
7237
7238 2006-02-10 Thien-Thi Nguyen <ttn@gnu.org>
7239
7240 * data.c (Findirect_function): Rewrite docstring.
7241 Fix omission bug: Declare new arg NOERROR.
7242
7243 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7244
7245 * macfns.c (x_set_mouse_color): Don't call rif->define_frame_cursor
7246 if window_desc is not set yet.
7247 (Fx_create_frame): Remove variable x_frame_name. Apply 2005-12-07
7248 and 2006-01-26 changes for xfns.c. Call x_iconify_frame if frame
7249 parameter `visibility' is `icon'.
7250 (Fx_create_frame, x_create_tip_frame): Use "fontset-standard"
7251 instead of "fontset-mac".
7252 (Fx_focus_frame): New defun.
7253 (syms_of_macfns): Defsubr it.
7254
7255 * macterm.c (mac_define_frame_cursor): Don't change pointer shape
7256 for unfocused frame.
7257 (x_raise_frame): Call BringToFront instead of SelectWindow.
7258 (x_lower_frame): Use NULL instead of nil.
7259 (x_make_frame_visible): Don't call SelectWindow.
7260 (XTread_socket): Increment handling_signal at the start, decrement
7261 it at the end.
7262 [USE_CG_TEXT_DRAWING] (init_cg_text_anti_aliasing_threshold): Use
7263 CFPreferencesGetAppIntegerValue instead of Fmac_get_preference.
7264
7265 2006-02-10 Kim F. Storm <storm@cua.dk>
7266
7267 * data.c (Findirect_function): Add NOERROR arg. All callers changed
7268 to pass Qnil for NOERROR.
7269
7270 * keymap.c (current_minor_maps_error): Remove.
7271 (current_minor_maps): Pass Qt for NOERROR to Findirect_function
7272 instead of using internal_condition_case_1+current_minor_maps_error.
7273
7274 2006-02-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7275
7276 * xterm.c (handle_one_xevent): Must note mouse movement even for nil
7277 frames for GTK, in that case it is the tool bar. This is so that
7278 highlighted text get reset properly.
7279
7280 2006-02-09 Juanma Barranquero <lekktu@gmail.com>
7281
7282 * alloc.c (Fmake_bool_vector, Fpurecopy): Doc fixes.
7283
7284 2006-02-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7285
7286 * window.c (adjust_window_trailing_edge): Check that shrinking
7287 does not set a window to size zero or less.
7288
7289 2006-02-08 Miles Bader <miles@gnu.org>
7290
7291 * editfns.c (Fconstrain_to_field): Use Fget_char_property instead
7292 of Fget_text_property (other field functions work with overlays as
7293 well as text-properties).
7294
7295 2006-02-07 Kenichi Handa <handa@m17n.org>
7296
7297 * dispextern.h (unibyte_display_via_language_environment): Extern it.
7298
7299 * xterm.h (unibyte_display_via_language_environment):
7300 * w32term.h (unibyte_display_via_language_environment):
7301 * macterm.h (unibyte_display_via_language_environment): Delete extern.
7302
7303 2006-02-07 Kenichi Handa <handa@m17n.org>
7304
7305 * term.c (append_glyph): Refer to it->char_to_display instead of it->c.
7306 (produce_glyphs): Set the character to print in
7307 it->char_to_display. Handle unibyte-display-via-language-environment.
7308 (produce_stretch_glyph): Set character to print in it->char_to_display.
7309
7310 2006-02-06 Kenichi Handa <handa@m17n.org>
7311
7312 * lread.c (openp): Initialize encoded_fn before GCPRO it.
7313
7314 2006-02-05 Ken Raeburn <raeburn@raeburn.org>
7315
7316 * editfns.c (Fconstrain_to_field): Fix int/Lisp_Object mixup.
7317
7318 * lisp.h (XPNTR) [!NO_UNION_TYPE && !HAVE_SHM && !DATA_SEG_BITS]:
7319 Cast bitfield value to EMACS_INT, to suppress gcc warning.
7320
7321 * xrdb.c (malloc, realloc, free) [emacs]: Undefine macros before
7322 defining.
7323
7324 2006-02-03 Kim F. Storm <storm@cua.dk>
7325
7326 * xdisp.c: Cache last merged escape glyph face.
7327 (last_escape_glyph_frame, last_escape_glyph_face_id)
7328 (last_escape_glyph_merged_face_id): New variables.
7329 (get_next_display_element): Use/update them.
7330 (redisplay_internal): Reset them before redisplay.
7331
7332 * xdisp.c (set_iterator_to_next): Optimize 2004-12-13 fix.
7333 Only recheck faces after displaying ellipsis.
7334
7335 2006-02-02 Kenichi Handa <handa@m17n.org>
7336
7337 * coding.c (decode_composition_emacs_mule): Fix handling of
7338 incorrect format data.
7339
7340 2006-01-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7341
7342 * gtkutil.c (update_frame_tool_bar): Use new tool bar function
7343 gtk_toolbar_insert() so we can have tool bars of different sizes.
7344
7345 2006-01-30 Luc Teirlinck <teirllm@auburn.edu>
7346
7347 * data.c (Flistp): Doc fix.
7348
7349 2006-01-30 Juanma Barranquero <lekktu@gmail.com>
7350
7351 * window.c (Fother_window, Fwindow_vscroll, Fset_window_vscroll):
7352 Fix typos in docstrings.
7353
7354 2006-01-28 Luc Teirlinck <teirllm@auburn.edu>
7355
7356 * data.c (Fcar, Fcdr): Add links to Elisp manual to the docstrings.
7357
7358 2006-01-27 Chong Yidong <cyd@stupidchicken.com>
7359
7360 * alloc.c (make_interval, allocate_string)
7361 (allocate_string_data, make_float, Fcons, allocate_vectorlike)
7362 (Fmake_symbol, allocate_misc): Use BLOCK_INPUT when accessing
7363 global variables.
7364
7365 2006-01-27 Eli Zaretskii <eliz@gnu.org>
7366
7367 * dired.c (DIRENTRY_NONEMPTY) [__CYGWIN__]: Don't use d_ino; use
7368 the MSDOS definition.
7369
7370 2006-01-26 Richard M. Stallman <rms@gnu.org>
7371
7372 * alloc.c (check_pure_size): Make overflow message an "error message".
7373
7374 * keymap.c (Fmap_keymap): Doc fix.
7375
7376 * xfns.c (Fx_create_frame): Put all specified parms into f->param_alist
7377 unless they were cleared out.
7378
7379 * frame.c (x_get_arg): "Clear out" the parm in ALIST if found there.
7380
7381 2006-01-26 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
7382
7383 * editfns.c (Fconstrain_to_field): Fix behaviour on field boundaries.
7384 (find_field): Set before_field to after_field when pos is at BEGV.
7385 (Fline_beginning_position, Fline_end_position):
7386 Clarify confusing doc string.
7387
7388 * cmds.c (Fbeginning_of_line, Fend_of_line): Clarify confusing doc
7389 string.
7390
7391 2006-01-26 Kenichi Handa <handa@m17n.org>
7392
7393 * callproc.c (Fcall_process): GCPRO error_file. Encode infile,
7394 current_dir, and error_file. On reporting an error, decode them
7395 back.
7396
7397 2006-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
7398
7399 * regex.c (IMMEDIATE_QUIT_CHECK): Use it with SYNC_INPUT as well.
7400 (re_match_2_internal) <on_failure_jump, on_failure_jump_smart>:
7401 Don't check for quit, since any loop will go through fail or jump.
7402
7403 2006-01-24 Chong Yidong <cyd@stupidchicken.com>
7404
7405 * alloc.c (allocate_string_data): Update next_free immediately, to
7406 reduce risk of memory clobberage.
7407
7408 2006-01-24 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
7409
7410 * xdisp.c (handle_invisible_prop): Set it->position to fix cursor
7411 display when point moves across an ellipsis. If there are
7412 adjacent invisible texts, don't lose the second one's ellipsis.
7413 (x_produce_glyphs): Doc fix.
7414
7415 2006-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
7416
7417 * xterm.c (x_catch_errors_unwind): Yet another int/Lisp_Object mixup.
7418
7419 2006-01-23 Kim F. Storm <storm@cua.dk>
7420
7421 * xdisp.c (handle_single_display_spec): Fix handling of space
7422 property on char from string: set *position rather than
7423 it->current.pos.
7424 (produce_stretch_glyph): Reduce width of stretch glyphs so they
7425 don't get wider than the window (unless truncate-lines is on).
7426
7427 2006-01-22 Stefan Monnier <monnier@iro.umontreal.ca>
7428
7429 * xterm.c: Avoid allocating Lisp data from a signal handler.
7430 (x_error_message): New var to replace x_error_message_string.
7431 (x_error_catcher, x_catch_errors, x_catch_errors_unwind)
7432 (x_check_errors, x_had_errors_p, x_clear_errors, x_error_handler)
7433 (syms_of_xterm): Use it instead of x_error_message_string.
7434
7435 * alloc.c (lisp_align_free): Add an assertion.
7436 (make_interval, allocate_string, make_float, Fcons, Fmake_symbol)
7437 (allocate_misc): If ENABLE_CHECKING is on, check we're not called from
7438 a signal handler.
7439
7440 2006-01-21 Luc Teirlinck <teirllm@auburn.edu>
7441
7442 * dired.c (syms_of_dired) <completion-ignored-extensions>: Doc fix.
7443
7444 2006-01-21 Romain Francoise <romain@orebokech.com>
7445
7446 * xdisp.c (get_window_cursor_type): Fix last change.
7447 Update copyright year.
7448
7449 2006-01-20 Eli Zaretskii <eliz@gnu.org>
7450
7451 * lread.c (Fload): Don't leak the file descriptor returned by
7452 openp if we are going to signal an error.
7453
7454 * w32.c (sys_close): If FD is outside [0..MAXDESC) limits, pass it
7455 directly to _close.
7456 (sys_dup): Protect against new_fd larger than fd_info[] can handle.
7457 (sys_read): If FD is outside [0..MAXDESC) limits, pass it directly
7458 to _read.
7459 (sys_write): If FD is outside [0..MAXDESC) limits, pass it
7460 directly to _write.
7461
7462 * .gdbinit: Don't dereference Vsystem_type's Lisp_Symbol pointer
7463 if it is NULL.
7464
7465 2006-01-20 Kenichi Handa <handa@m17n.org>
7466
7467 * puresize.h (BASE_PURESIZE): Increment to 1190000.
7468
7469 2006-01-19 Chong Yidong <cyd@stupidchicken.com>
7470
7471 * xdisp.c (get_window_cursor_type): Use cursor type specified by
7472 the selected buffer for the echo area too.
7473
7474 2006-01-19 Richard M. Stallman <rms@gnu.org>
7475
7476 * keymap.c (Fmap_keymap): Doc fix.
7477
7478 * s/irix6-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): New definitions.
7479
7480 * keyboard.c (echo_char): Don't omit the space between first two
7481 echoed chars.
7482
7483 * minibuf.c (read_minibuf): Fix previous change.
7484
7485 2006-01-19 Kenichi Handa <handa@m17n.org>
7486
7487 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
7488
7489 2006-01-17 Richard M. Stallman <rms@gnu.org>
7490
7491 * frame.c (x_frame_get_and_record_arg): Don't record Qunbound
7492 value in f->param_alist.
7493
7494 2006-01-15 Andreas Schwab <schwab@suse.de>
7495
7496 * search.c (Freplace_match): Use UPPERCASEP instead of !NOCASEP.
7497
7498 2006-01-13 Richard M. Stallman <rms@gnu.org>
7499
7500 * Makefile.in: Define new macro WINDOW_SUPPORT.
7501 (lisp): Use it.
7502 (SOME_MACHINE_LISP): Add conditionally loaded files.
7503
7504 2006-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7505
7506 * macterm.c [USE_ATSUI] (atsu_get_text_layout_with_text_ptr)
7507 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1020]: Specify kATSLineUseQDRendering.
7508 (XLoadQueryFont) [USE_ATSUI]: Display diacritical marks in
7509 decomposed form.
7510
7511 * process.c [HAVE_INTTYPES_H]: Include inttypes.h.
7512 (ifflag_table): Fix typo (IFF_OACTIV -> IFF_OACTIVE).
7513 (Fnetwork_interface_info): Use HAVE_STRUCT_IFREQ_IFR_NETMASK
7514 macro. Also try member ifr_addr when getting netmask.
7515
7516 2006-01-10 Stefan Monnier <monnier@iro.umontreal.ca>
7517
7518 * fileio.c (Fexpand_file_name): Remove redundant tests.
7519 Fix elimination of // so that it doesn't prevent elimination of an
7520 immediately following /. or /..
7521
7522 2006-01-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7523
7524 * gtkutil.c (xg_toggle_notify_cb): New function.
7525 (xg_toggle_visibility_cb): Move setting of x_gtk_show_hidden_files to
7526 xg_toggle_notify_cb.
7527 (xg_get_file_with_chooser): Add callback to xg_toggle_notify_cb when
7528 parameter value changes so the toggle button gets updated.
7529
7530 2006-01-06 Nick Roberts <nickrob@snap.net.nz>
7531
7532 * .gdbinit: Fix typo.
7533
7534 2006-01-05 Eli Zaretskii <eliz@gnu.org>
7535
7536 * .gdbinit: Fix last change.
7537
7538 2006-01-05 Kim F. Storm <storm@cua.dk>
7539
7540 * process.c (Fmake_network_process): Use AF_INET instead of
7541 AF_UNSPEC when AF_INET6 is not defined.
7542
7543 2006-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7544
7545 * mac.c (mac_coerce_file_name_ptr, mac_coerce_file_name_desc):
7546 Don't check that the other type is known file-related one.
7547
7548 * macfns.c (Fx_server_version): Use gestaltSystemVersionMajor,
7549 gestaltSystemVersionMinor, and gestaltSystemVersionBugFix on Mac
7550 OS X 10.4 and later.
7551
7552 2006-01-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7553
7554 * gtkutil.c (xg_get_image_for_pixmap): If the image is from a file,
7555 let GTK do all image processing. Importing Emacs own pixmaps to GTK
7556 looks bad for inactive tool bar items with some Gnome themes.
7557
7558 2006-01-04 Eli Zaretskii <eliz@gnu.org>
7559
7560 * .gdbinit: Avoid a warning message when x_error_quitter is not
7561 compiled in.
7562
7563 * process.c [WINDOWSNT]: Undef AF_INET6 to disable IPv6 support
7564 for w32.
7565
7566 2006-01-04 Kim F. Storm <storm@cua.dk>
7567
7568 * process.c: Add IPv6 support.
7569 (Qipv4, Qipv6): New vars.
7570 (syms_of_process): Intern and staticpro them.
7571 (Fformat_network_address): Handle 9 or 8 element vector as IPv6 address
7572 with or without port number. Handle 4 element vector as IPv4 address
7573 without port number.
7574 (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
7575 (conv_lisp_to_sockaddr): Handle IPv6 addresses.
7576 (Fmake_network_process): Use :family 'ipv4 and 'ipv6 to explicitly
7577 request that address family only. :family nil or omitted means to
7578 determine address family from the specified :host and :service.
7579 (ifflag_table): Add missing OpenBSD IFF_ flags.
7580 (server_accept_connection): Handle IPv6 addresses.
7581 (init_process): Add (:family ipv4) and (:family ipv6) sub-features.
7582
7583 * .gdbinit: Undo last change. Instead, look at Vsystem_type to
7584 determine which breakpoints to set.
7585
7586 2006-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
7587
7588 * keymap.c (describe_map_compare): Yet another int/Lisp_Object mixup.
7589
7590 * window.h (Fwindow_minibuffer_p): Declare (for use in minibuf.c).
7591
7592 2006-01-03 Romain Francoise <romain@orebokech.com>
7593
7594 * emacs.c (main): Update copyright year.
7595
7596 2006-01-03 Ken Raeburn <raeburn@gnu.org>
7597
7598 * callproc.c (delete_temp_file): Bind file-name-handler-alist to
7599 nil for the call to internal_delete_file.
7600
7601 2006-01-01 Ken Raeburn <raeburn@gnu.org>
7602
7603 * callproc.c (Fcall_process_region): Bind file-name-handler-alist
7604 to nil for the call to Fwrite_region.
7605
7606 2005-12-31 Richard M. Stallman <rms@gnu.org>
7607
7608 * minibuf.c (read_minibuf): Clear out all other minibuffer windows.
7609
7610 2005-12-31 Eli Zaretskii <eliz@gnu.org>
7611
7612 * emacs.c (gdb_pvec_type): A dummy variable for GDB's sake.
7613
7614 2005-12-30 Luc Teirlinck <teirllm@auburn.edu>
7615
7616 * textprop.c (set_text_properties): Reword description of return value.
7617 Return Qnil if caller wants to remove all text properties from a
7618 string and the string already has no intervals.
7619
7620 2005-12-30 Stefan Monnier <monnier@iro.umontreal.ca>
7621
7622 * term.c (visible_cursor): New boolean var.
7623 (set_terminal_modes, tty_show_cursor): Use "vs" or "ve" depending on
7624 visible_cursor.
7625 (syms_of_term): Export the new var as "visible-cursor".
7626
7627 2005-12-30 Eli Zaretskii <eliz@gnu.org>
7628
7629 * .gdbinit: Tell users not to worry about GDB warnings that some
7630 functions do not exist in the binary.
7631
7632 2005-12-30 Andreas Schwab <schwab@suse.de>
7633
7634 * process.c (Fnetwork_interface_info): Correctly terminate the
7635 loop over ifflag_table.
7636
7637 2005-12-29 Richard M. Stallman <rms@gnu.org>
7638
7639 * lread.c (readevalloop): Test for reading a whole buffer
7640 before actually reading anything. Handle all cases, including
7641 START = END = nil and an already-narrowed buffer.
7642 Convert END to a marker if it is a number.
7643
7644 * keymap.c (describe_map): Put sparse map elements into an array,
7645 sort them, then output a sequence of identical bindings on one line.
7646 (struct describe_map_elt): New data type.
7647 (describe_map_compare): New function.
7648
7649 2005-12-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7650
7651 * gtkutil.c (xg_get_file_with_chooser): Change message shown
7652 in file chooser.
7653
7654 2005-12-27 Richard M. Stallman <rms@gnu.org>
7655
7656 * lread.c (readevalloop): Set PT and ZV in the proper buffer,
7657 not the current one.
7658
7659 * minibuf.c (Fminibuffer_message): Doc fix.
7660 (read_minibuf): Set current_buffer->enable_multibyte_characters sooner.
7661
7662 * eval.c (do_autoload): Ignore elements of Vautoload_queue
7663 where car is not symbol.
7664
7665 2005-12-27 Kenichi Handa <handa@m17n.org>
7666
7667 * charset.c (lisp_string_width): Check multibyteness of STRING.
7668
7669 2005-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7670
7671 * xfns.c (x_show_hidden_files): New variable.
7672 (syms_of_xfns): Defvar it.
7673
7674 * gtkutil.c (xg_toggle_visibility_cb): New function.
7675 (xg_get_file_with_chooser): Add toggle hidden files and a message
7676 to the new file chooser dialog. Show hidden files if
7677 x_show_hidden_files is non-zero.
7678
7679 2005-12-26 Richard M. Stallman <rms@gnu.org>
7680
7681 * keyboard.h: Undo previous change.
7682
7683 * Makefile.in (undo.o): Undo previous change.
7684
7685 * undo.c: Undo previous change.
7686
7687 2005-12-26 Luc Teirlinck <teirllm@auburn.edu>
7688
7689 * keyboard.h: extern last_point_position_window.
7690
7691 * undo.c: include keyboard.h.
7692
7693 * Makefile.in (undo.o): Depend on keyboard.h.
7694
7695 2005-12-26 Richard M. Stallman <rms@gnu.org>
7696
7697 * commands.h (last_point_position_window): Declare.
7698
7699 * undo.c: Depend on window.h.
7700 (record_point): Save old point from the correct window.
7701
7702 * keyboard.c (last_point_position_window): New variable.
7703 (command_loop_1): Set last_point_position_window.
7704 (syms_of_keyboard): Init it.
7705
7706 * Makefile.in (undo.o): Depend on window.h.
7707
7708 2005-12-25 Richard M. Stallman <rms@gnu.org>
7709
7710 * eval.c (un_autoload): Expect (0 . OFEATURES) in Vautoload_queue
7711 to undo a `provide'.
7712
7713 * fns.c (Fprovide): Store (0 . OFEATURES) in Vautoload_queue.
7714
7715 2005-12-25 Giorgos Keramidas <keramida@ceid.upatras.gr>
7716
7717 * m/amdx86-64.h [__FreeBSD__] (START_FILES, LIB_STANDARD):
7718 define for FreeBSD on this platform.
7719
7720 2005-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7721
7722 * macterm.h (TYPE_FILE_NAME): New define.
7723 (posix_pathname_to_fsspec, fsspec_to_posix_pathname): Remove externs.
7724
7725 * mac.c (posix_pathname_to_fsspec, fsspec_to_posix_pathname):
7726 Add prototypes. Make static.
7727 (mac_aedesc_to_lisp): Initialize err to noErr.
7728 (mac_coerce_file_name_ptr, mac_coerce_file_name_desc)
7729 (init_coercion_handler): New functions.
7730 (Fmac_coerce_ae_data): Use coercion of Apple event data for
7731 translation from/to file names.
7732
7733 * macterm.c: Don't include sys/param.h.
7734 (init_coercion_handler): Add extern.
7735 [MAC_OS8] (main): Call init_coercion_handler.
7736 (mac_initialize) [MAC_OSX]: Likewise.
7737 [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Use coercion of
7738 Apple event data for translation from/to file names.
7739
7740 * macfns.c [TARGET_API_MAC_CARBON] (Fx_file_dialog): Likewise.
7741
7742 * image.c [MAC_OS] (find_image_fsspec): Likewise.
7743
7744 2005-12-23 Martin Rudalics <rudalics@gmx.at>
7745
7746 * insdel.c (insert, insert_and_inherit, insert_before_markers)
7747 (insert_before_markers_and_inherit): Make sure FROM is correct
7748 when `after-change-functions' are called.
7749
7750 2005-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7751
7752 * xfns.c (Fx_uses_old_gtk_dialog): New function.
7753
7754 * gtkutil.c (xg_uses_old_file_dialog): New function.
7755 (xg_get_file_name): Use xg_uses_old_file_dialog.
7756
7757 * gtkutil.h: Declare xg_uses_old_file_dialog.
7758
7759 2005-12-22 Richard M. Stallman <rms@gnu.org>
7760
7761 * xmenu.c (xmenu_show): Call inhibit_garbage_collection.
7762
7763 2005-12-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7764
7765 * mac.c (Fmac_coerce_ae_data) [MAC_OSX]: Fix memory leak.
7766
7767 * macgui.h (XCharStruct): Remove member `valid_p'.
7768 (STORE_XCHARSTRUCT): Don't set member `valid_p'.
7769 (XCharStructRow): New typedef.
7770 (XCHARSTRUCTROW_CHAR_VALID_P, XCHARSTRUCTROW_SET_CHAR_VALID):
7771 New macros.
7772 (struct MacFontStruct): Add member `bounds'. Remove member
7773 `per_char'. All uses for QuichDraw Text fonts are changed to
7774 `bounds.per_char'. ATSUI font bounds are represented as an array
7775 `bounds.rows' of XCharStructRow's, each of which consists of a
7776 bitmap of valid entries and an array of char bounds.
7777
7778 * macterm.c (mac_per_char_metric): Add prototype.
7779 (x_per_char_metric) [USE_CG_TEXT_DRAWING]: Remove prototype.
7780 (mac_query_char_extents): New function.
7781 (x_per_char_metric): Use it.
7782 (XLoadQueryFont): Likewise. Consolidate min/max_bounds calculations.
7783 [USE_CG_TEXT_DRAWING] (mac_draw_string_cg):
7784 Use mac_per_char_metric instead of x_per_char_metric.
7785 (mac_text_extents_16): New function.
7786 (mac_compute_glyph_string_overhangs): Use it.
7787 (mac_unload_font): Free member `bounds' in struct MacFontStruct.
7788
7789 2005-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
7790
7791 * minibuf.c (Fdisplay_completion_list): Use XCAR/XCDR.
7792 (Fminibuffer_completion_help): Remove duplicates before display.
7793
7794 2005-12-21 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
7795
7796 * print.c (print_preprocess): Don't lose print_depth levels while
7797 iterating.
7798
7799 2005-12-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7800
7801 * macmenu.c (Qmac_apple_event): Add extern.
7802 (set_frame_menubar, mac_menu_show keymp_panes)
7803 (single_keymap_panes, list_of_panes, list_of_item)
7804 (single_menu_item): Add argument types to prototypes.
7805 (mac_dialog_show) [HAVE_DIALOGS]: Likewise.
7806 (struct skp): New struct (from xmenu.c).
7807 (single_keymap_panes, single_menu_item, list_of_panes)
7808 (list_of_item): Sync with xmenu.c.
7809 (Fx_popup_menu, Fx_popup_dialog): Likewise. Don't get window from
7810 POSITION if it is mac-apple-event event.
7811 (menubar_selection_callback): Don't use menu_command_in_progress.
7812 (set_frame_menubar): First parse all submenus, then make
7813 widget_value trees from them. Don't allocate any widget_value
7814 objects until we are done with the parsing.
7815 (parse_single_submenu, digest_single_submenu): New functions.
7816 (single_submenu): Function deleted, replaced by those two.
7817 (install_menu_quit_handler) [HAVE_CANCELMENUTRACKING]: Don't create
7818 or dispose of EventHandlerUPP. Install hander to all submenus.
7819 (mac_menu_show) [!HAVE_MULTILINGUAL_MENU]: Use ENCODE_MENU_STRING
7820 instead of ENCODE_SYSTEM.
7821 (free_frame_menubar, fill_submenu, fill_menu): Don't use NULL for
7822 integer values.
7823 [HAVE_DIALOGS] (mac_dialog_show): Sync with xdialog_show (in xmenu.c).
7824 (add_menu_item) [TARGET_API_MAC_CARBON]: Use CFString functions to
7825 format menu item string. Don't use NULL for integer value.
7826
7827 * macterm.h (struct mac_output): Remove unused member
7828 menu_command_in_progress.
7829
7830 2005-12-20 Juri Linkov <juri@jurta.org>
7831
7832 * xmenu.c (Fx_popup_menu): Set Vmenu_updating_frame to f if
7833 position is non-nil, else set it to nil.
7834
7835 * macmenu.c (Fx_popup_menu): Add `else' to set
7836 Vmenu_updating_frame to nil only if position is nil.
7837
7838 * w32menu.c (Fx_popup_menu): Add `else' to set
7839 Vmenu_updating_frame to nil only if position is nil.
7840
7841 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7842
7843 * keyboard.c (make_lispy_event): Drag-and-drop items are now
7844 stored in member `args' of struct input_event.
7845
7846 * termhooks.h (struct input_event): Fix comment for DRAG_N_DROP_EVENT.
7847
7848 * xselect.c (x_handle_dnd_message): Drag-and-drop items are now
7849 stored in member `args' of struct input_event.
7850
7851 * w32term.c (construct_drag_n_drop): Likewise.
7852
7853 * macterm.c (mac_do_receive_drag): Likewise.
7854 (x_use_underline_position_properties): Undo 2005-07-13 change.
7855 (syms_of_macterm) <x-use-underline-position-properties>: Likewise.
7856 (mac_use_core_graphics, mac_wheel_button_is_mouse_2)
7857 (mac_pass_command_to_system, mac_pass_control_to_system):
7858 New boolean variables renamed from Lisp_Object ones
7859 Vmac_use_core_graphics, Vmac_wheel_button_is_mouse_2,
7860 Vmac_pass_command_to_system, and Vmac_pass_control_to_system.
7861 All uses changed.
7862 (syms_of_macterm): DEFVAR_BOOL them. Remove previous DEFVAR_LISPs.
7863 Make them user options.
7864 (mac_handle_command_event, mac_store_services_event):
7865 Call create_apple_event_from_event_ref without 5th argument.
7866 (backtranslate_modified_keycode): Mask off modifier keys that are
7867 mapped to some Emacs modifiers before passing it to KeyTranslate.
7868 (syms_of_macterm): Make variables `mac-emulate-three-button-mouse',
7869 `mac-wheel-button-is-mouse-2', and `mac-*-modifier' user options.
7870 Fix docstrings of `mac-*-modifier'.
7871
7872 * mac.c (create_apple_event_from_event_ref): Remove arg `types'.
7873 (do_applescript): Change argument types to Lisp_Object.
7874 All uses changed.
7875
7876 * macterm.h (create_apple_event_from_event_ref): Remove 5th
7877 argument from extern.
7878
7879 2005-12-18 Dan Nicolaescu <dann@ics.uci.edu>
7880
7881 * xfns.c (Fx_backspace_delete_keys_p): In case we cannot determine
7882 the answer, return `lambda', not nil.
7883
7884 2005-12-17 Eli Zaretskii <eliz@gnu.org>
7885
7886 * makefile.w32-in (bootstrap-temacs): Warn that parts of commands
7887 enclosed in $(ARGQUOTE)s should not be split between two lines, as
7888 that will break with GNU Make >3.80, when sh.exe is used and
7889 arg quoting is with '..'.
7890
7891 2005-12-17 Chong Yidong <cyd@stupidchicken.com>
7892
7893 * print.c (print_preprocess): Just signal an error if print_depth
7894 is exceeded.
7895
7896 2005-12-17 Eli Zaretskii <eliz@gnu.org>
7897
7898 * .gdbinit: Set a breakpoint on w32_abort.
7899
7900 2005-12-16 Juri Linkov <juri@jurta.org>
7901
7902 * minibuf.c (Fminibuffer_completion_contents): New Lisp function
7903 created from minibuffer_completion_contents.
7904 (minibuffer_completion_contents): Remove.
7905 (do_completion, Fminibuffer_complete_word)
7906 (Fminibuffer_completion_help): Replace minibuffer_completion_contents
7907 with Fminibuffer_completion_contents.
7908 (syms_of_minibuf): Add Sminibuffer_completion_contents.
7909 (Fdisplay_completion_list): Doc fix.
7910 (display_completion_list_1): Use `nil' for second arg of
7911 `Fdisplay_completion_list'.
7912
7913 2005-12-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7914
7915 * xfns.c (compute_tip_xy): Handle negative dx and dy.
7916
7917 * w32fns.c (compute_tip_xy): Ditto.
7918
7919 * macfns.c (compute_tip_xy): Ditto.
7920
7921 2005-12-14 Chong Yidong <cyd@stupidchicken.com>
7922
7923 * print.c (print_preprocess): Go to a deeper print_depth to avoid
7924 print_object loop.
7925
7926 2005-12-14 Kyotaro HORIGUCHI <horiguti@meadowy.org> (tiny change)
7927
7928 * coding.c (code_convert_region_unwind): GCPRO arg.
7929
7930 2005-12-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7931
7932 * xfns.c (compute_tip_xy): Calculate root_y the same way as root_x,
7933 i.e. dy is offset from top of frame instead of bottom.
7934
7935 * macfns.c (compute_tip_xy): Ditto.
7936
7937 * w32fns.c (compute_tip_xy): Ditto.
7938
7939 * gtkutil.c (SSDATA): New macro to remove compiler warnings.
7940 (xg_get_image_for_pixmap, xg_create_frame_widgets)
7941 (xg_get_file_with_chooser): Use SSDATA instead of SDATA.
7942
7943 * xmenu.c (menubar_selection_callback): Do nothing if the callback
7944 is for an unselected radio menu item.
7945
7946 2005-12-11 Richard M. Stallman <rms@gnu.org>
7947
7948 * xdisp.c (syms_of_xdisp) <blink-cursor-alist>: Doc fix.
7949
7950 * lisp.h [! NO_UNION_TYPE] (EQ): Use == so args are computed just once.
7951
7952 * keymap.c (Fset_keymap_parent, store_in_keymap): Use CHECK_IMPURE.
7953 (Flookup_key): Doc fix.
7954 (syms_of_keymap) <function-key-map>: Doc fix.
7955
7956 * fns.c (Frequire): Treat evaluating from a source file
7957 like loading the file.
7958
7959 * floatfns.c (Flog): Doc fix.
7960
7961 * fileio.c (Finsert_file_contents): Set Vdeactivate_mark
7962 when we change the buffer.
7963
7964 2005-12-11 Juri Linkov <juri@jurta.org>
7965
7966 * minibuf.c (display_completion_list_1):
7967 Call `minibuffer_completion_contents' instead of using `nil' as
7968 second arg of `Fdisplay_completion_list'.
7969 (keys_of_minibuf): Unbind SPC in
7970 Vminibuffer_local_filename_completion_map (see also related
7971 change on 2005-12-06).
7972
7973 2005-12-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7974
7975 * emacs.c (main) [MAC_OS8]: Undo previous change.
7976
7977 * macselect.c (syms_of_macselect) <mac-apple-event-map>:
7978 Initialize to nil. Keymap is now created in lisp/term/mac-win.el.
7979
7980 2005-12-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7981
7982 * Makefile.in (macselect.o): Depend on keymap.h.
7983
7984 * emacs.c (main) [MAC_OS8]: Call syms_of_keymap before
7985 syms_of_macselect.
7986
7987 * image.c (init_image) [MAC_OS]: Don't call EnterMovies.
7988 [!HAVE_GIF && MAC_OS] (gif_load): Call EnterMovies.
7989
7990 * keyboard.c (Qmac_apple_event) [MAC_OS]: New variable.
7991 (syms_of_keyboard) [MAC_OS]: Initialize it.
7992 (make_lispy_event) [MAC_OS]: Build lisp event for MAC_APPLE_EVENT.
7993
7994 * mac.c (Qundecoded_file_name): New variable.
7995 (syms_of_mac): Initialize it.
7996 (mac_aelist_to_lisp, mac_aedesc_to_lisp): New functions.
7997 [TARGET_API_MAC_CARBON] (create_apple_event_from_event_ref): New fun.
7998 (Fmac_coerce_ae_data): New defun.
7999 (syms_of_mac): Defsubr it.
8000
8001 * macselect.c: Include keymap.h.
8002 (mac_ready_for_apple_events): New variable.
8003 (Vmac_apple_event_map, Qmac_apple_event_class)
8004 (Qmac_apple_event_id): New variables.
8005 (syms_of_macselect): Initialize them.
8006 (Qundefined, mac_store_apple_event): Add externs.
8007 (struct apple_event_binding): New struct.
8008 (find_event_binding_fun, find_event_binding)
8009 (mac_find_apple_event_spec, defer_apple_events)
8010 (mac_handle_apple_event, init_apple_event_handler)
8011 (copy_scrap_flavor_data): New functions.
8012 (Fmac_process_deferred_apple_events): New defun.
8013 (syms_of_macselect): Defsubr it.
8014 (mac_store_services_event): Fix extern.
8015 (mac_handle_service_event): Don't allocate Lisp objects during
8016 asynchronous input processing. Use mac_store_services_event
8017 instead of mac_store_application_menu_event.
8018
8019 * macterm.c (Qmac_ready_for_drag_n_drop, Qapplication, Qabout)
8020 (Qpreferences): Remove variables.
8021 (syms_of_macterm): Don't initialize them.
8022 (Qhicommand) [USE_CARBON_EVENTS]: New variable.
8023 (syms_of_macterm) [USE_CARBON_EVENTS]: Initialize it.
8024 (init_required_apple_events, do_ae_open_application)
8025 (do_ae_print_documents, do_ae_open_documents)
8026 (do_ae_quit_application): Remove functions and prototypes.
8027 (mac_ready_for_apple_events, Qundefined, init_apple_event_handler)
8028 (mac_find_apple_event_spec): Add externs.
8029 (mac_store_application_menu_event): Remove function.
8030 (mac_store_apple_event, mac_make_lispy_event_code): New functions.
8031 (mac_handle_command_event): Create Apple event from Carbon event.
8032 Use mac_store_apple_event instead of mac_store_application_menu_event.
8033 [MAC_OSX] (mac_store_services_event): Likewise.
8034 (struct SelectionRange, SelectionRange): Remove struct and typedef.
8035 [MAC_OS8] (main): Call init_apple_event_handler instead of
8036 init_required_apple_events.
8037 (mac_initialize) [MAC_OSX]: Likewise.
8038 [!USE_CARBON_EVENTS] (mac_wait_next_event):
8039 Use mac_ready_for_apple_events instead of Qmac_ready_for_drag_n_drop.
8040
8041 * macterm.h (mac_make_lispy_event_code, mac_aedesc_to_lisp):
8042 Add externs.
8043 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]: Likewise.
8044 (Fmac_get_preference): Add EXFUN.
8045
8046 * termhooks.h (enum event_kind) [MAC_OS]: Add new MAC_APPLE_EVENT
8047 event.
8048
8049 2005-12-09 Richard M. Stallman <rms@gnu.org>
8050
8051 * xfns.c (Fx_create_frame): Reinstate previous change.
8052
8053 2005-12-09 Eli Zaretskii <eliz@gnu.org>
8054
8055 * w32fns.c (w32_abort) [__GNUC__]: Add instructions for attaching
8056 GDB to the abort dialog.
8057
8058 2005-12-09 Kyotaro HORIGUCHI <horiguti@meadowy.org> (tiny change)
8059
8060 * indent.c (Fvertical_motion): Force move if starting on
8061 stretch glyph.
8062
8063 2005-12-08 Richard M. Stallman <rms@gnu.org>
8064
8065 * lread.c (read_escape) <\s>: Don't treat strings specially.
8066
8067 * xfns.c (Fx_create_frame): Comment out previous change.
8068
8069 2005-12-07 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
8070
8071 * xfns.c (Fx_create_frame): Initialize Vdefault_minibuffer_frame,
8072 when needed.
8073
8074 2005-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
8075
8076 * minibuf.c (keys_of_minibuf): Just unbind SPC in
8077 Vminibuffer_local_filename_completion_map rather than forcing it
8078 explicitly to the same binding as the global map.
8079
8080 2005-12-06 Ken Raeburn <raeburn@gnu.org>
8081
8082 * buffer.c (Fkill_buffer): Avoid dangerous side effects in NILP args.
8083 * bytecode.c (Fbyte_code): Likewise.
8084 * fileio.c (internal_delete_file, Fread_file_name_internal): Likewise.
8085 * minibuf.c (Fminibuffer_complete_and_exit): Likewise.
8086 * undo.c (truncate_undo_list): Likewise.
8087
8088 2005-12-05 Richard M. Stallman <rms@gnu.org>
8089
8090 * window.c (enlarge_window): Eliminate arg preserve_before.
8091 Assume it is 0. All callers changed.
8092 (Fenlarge_window, Fshrink_window): Likewise.
8093
8094 2005-12-02 Eli Zaretskii <eliz@gnu.org>
8095
8096 * w32fns.c (compute_tip_xy): Put tip above pointer if it doesn't
8097 fit below.
8098
8099 2005-12-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8100
8101 * xterm.h: Add prototype for xg_set_icon_from_xpm_data.
8102
8103 * xfns.c (x_real_positions): int ign => unsigned int.
8104 (xg_set_icon_from_xpm_data): Remove unused variable err.
8105 (x_set_name_internal, Fx_create_frame, xg_set_icon): Add cast
8106 to remove compiler warning.
8107 (compute_tip_xy): Put tip above pointer if it doesn't fit below.
8108
8109 2005-12-02 David Reitter <david.reitter@gmail.com>
8110
8111 * minibuf.c (Fcompleting_read): If Vminibuffer_completing_file_name is
8112 non-nil, use the new keymaps Vminibuffer_local_filename_completion_map
8113 and Vminibuffer_local_must_match_filename_map keymaps.
8114 (keys_of_minibuf): Bind SPC in the new file-name completion keymaps.
8115
8116 * keymap.c (Vminibuffer_local_filename_completion_map)
8117 (Vminibuffer_local_must_match_filename_map): New variables.
8118 (syms_of_keymap): DEFVAR_LISP them, initialize them, and set their
8119 parent to be Vminibuffer_local_completion_map and
8120 Vminibuffer_local_must_match_map, respectively.
8121
8122 * commands.h (Vminibuffer_local_filename_completion_map)
8123 (Vminibuffer_local_must_match_filename_map): Declare the new keymaps.
8124
8125 2005-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
8126
8127 * window.c (Fset_window_configuration): Don't accidentally copy the
8128 window-point of one window to another.
8129
8130 2005-11-30 L\e$,1 q\e(Brentey K\e,Aa\e(Broly <lorentey@elte.hu>
8131
8132 * buffer.c (Fpop_to_buffer): Remove superfluous call to record_buffer.
8133
8134 2005-11-30 Kim F. Storm <storm@cua.dk>
8135
8136 * alloc.c: Include fcntl.h. Define O_WRONLY if not defined.
8137 (valid_lisp_object_p) [!GC_MARK_STACK]: Validate pointer by
8138 passing it to `emacs_write'.
8139
8140 2005-11-29 Ari Roponen <arjuropo@cc.jyu.fi> (tiny change)
8141
8142 * atimer.c (stop_other_atimers): Fix loop to correctly compute `prev'.
8143
8144 2005-11-27 Richard M. Stallman <rms@gnu.org>
8145
8146 * window.c (adjust_window_trailing_edge): New function.
8147 (Fadjust_window_trailing_edge): New function.
8148 (syms_of_window): Defsubr it.
8149 (window_deletion_count): New variable.
8150 (delete_window): Update window_deletion_count.
8151
8152 2005-11-26 Eli Zaretskii <eliz@gnu.org>
8153
8154 * minibuf.c (syms_of_minibuf): Mention the extension of
8155 `completion-auto-help's meaning by complete.el.
8156
8157 2005-11-26 Henrik Enberg <henrik.enberg@telia.com>
8158
8159 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
8160 Handle :inherit property as a lisp expression.
8161
8162 2005-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8163
8164 * macterm.c (Qcontrol): Rename from Qctrl. All uses changed.
8165 (syms_of_macterm): Staticpro Qcontrol, Qmeta, Qalt, Qhyper,
8166 Qsuper, and Qmodifier_value.
8167 (Vmac_control_modifier, Vmac_option_modifier)
8168 (Vmac_command_modifier, Vmac_function_modifier)
8169 (Vmac_emulate_three_button_mouse, Vmac_wheel_button_is_mouse_2)
8170 (Vmac_pass_command_to_system, Vmac_pass_control_to_system)
8171 (Vmac_charset_info_alist): Doc fixes.
8172
8173 2005-11-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8174
8175 * emacs.c (main) [MAC_OSX]: Change working directory to home
8176 directory if `-psn_*' option is specified.
8177
8178 * mac.c (DECODE_UTF_8): Remove macro.
8179 [TARGET_API_MAC_CARBON] (cfstring_to_lisp_nodecode): New function
8180 created from cfstring_to_lisp.
8181 [TARGET_API_MAC_CARBON] (cfstring_to_lisp): Use it.
8182 (xrm_get_preference_database) [TARGET_API_MAC_CARBON]: Likewise.
8183
8184 * macterm.h (cfstring_to_lisp_nodecode) [TARGET_API_MAC_CARBON]:
8185 Add prototype.
8186
8187 2005-11-21 Ken Raeburn <raeburn@gnu.org>
8188
8189 * keymap.c (shadow_lookup): Use make_number to pass a number to
8190 Fsubstring.
8191
8192 2005-11-21 Juri Linkov <juri@jurta.org>
8193
8194 * puresize.h (BASE_PURESIZE): Increment to 1180000.
8195
8196 2005-11-20 Chong Yidong <cyd@stupidchicken.com>
8197
8198 * xfaces.c (Finternal_set_lisp_face_attribute):
8199 Use :ignore-defface for new frame defaults when `unspecified' is
8200 supplied.
8201 (Finternal_get_lisp_face_attribute): Hide :ignore-defface.
8202 (merge_face_vectors): Don't do :ignore-defface overwriting here.
8203 (Finternal_merge_in_global_face): Do it here.
8204
8205 2005-11-20 Juri Linkov <juri@jurta.org>
8206
8207 * charset.c (invalid_character): Use Lisp-readable syntax
8208 for octal and hex. Reorder decimal, octal and hex values.
8209
8210 2005-11-20 Nick Roberts <nickrob@snap.net.nz>
8211
8212 * lisp.h: Use typedef when Lisp_Object is EMACS_INT so that
8213 this type is recognised when debugging.
8214
8215 2005-11-19 Andreas Schwab <schwab@suse.de>
8216
8217 * .gdbinit (nextcons, xcdr, xfloat): Update for changes in
8218 Lisp_Cons and Lisp_Float.
8219
8220 2005-11-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8221
8222 * macterm.c [USE_CG_TEXT_DRAWING] (cg_text_anti_aliasing_threshold):
8223 New variable.
8224 [USE_CG_TEXT_DRAWING] (init_cg_text_anti_aliasing_threshold): New fun.
8225 (init_font_name_table) [USE_ATSUI && USE_CG_TEXT_DRAWING]: Use it.
8226 [USE_CG_TEXT_DRAWING] (mac_draw_string_cg): Don't do antialiasing if
8227 font size is smaller than or equal to cg_text_anti_aliasing_threshold.
8228
8229 2005-11-17 Chong Yidong <cyd@stupidchicken.com>
8230
8231 * image.c (x_create_bitmap_from_xpm_data): Free attributes on fail.
8232
8233 * xfaces.c (Qignore_defface): New variable.
8234 (syms_of_xfaces): Provide `:ignore-defface'.
8235 (IGNORE_DEFFACE_P): New macro.
8236 (check_lface_attrs, lface_fully_specified_p)
8237 (Finternal_set_lisp_face_attribute)
8238 (Fface_attribute_relative_p, Fmerge_face_attribute):
8239 Handle Qignore_defface as a possible value.
8240 (merge_face_vectors): The merged face is `unspecified' if the
8241 mergee specifies `:ignore-defface'.
8242
8243 2005-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
8244
8245 * lread.c (readevalloop): Add missing GCPROs.
8246
8247 2005-11-16 Chong Yidong <cyd@stupidchicken.com>
8248
8249 * xfns.c (xg_set_icon_from_xpm_data): New function.
8250
8251 * gnu.h (gnu_xpm_bits): Rename from gnu_bits.
8252 (gnu_xbm_bits): Rename from gnu_bits (xbm version).
8253
8254 * xterm.c (x_bitmap_icon): Use the xpm if available.
8255
8256 * image.c (x_create_bitmap_from_xpm_data): New function.
8257 (x_create_bitmap_from_xpm_data): Initialize XpmAttributes.
8258
8259 2005-11-15 Luc Teirlinck <teirllm@auburn.edu>
8260
8261 * Makefile.in (lisp, shortlisp): Add rfn-eshadow.
8262
8263 2005-11-16 Nick Roberts <nickrob@snap.net.nz>
8264
8265 * .gdbinit: Make SIGTSTP work like SIGINT normally does.
8266
8267 2005-11-15 Andreas Schwab <schwab@suse.de>
8268
8269 * lisp.h (struct Lisp_Cons): Make cdr a union.
8270 (XCDR_AS_LVALUE): Adjust.
8271 (struct Lisp_Float): Make data a union.
8272 (XFLOAT_DATA): Adjust.
8273
8274 * alloc.c (free_float): Make free list chaining aliasing-safe.
8275 (make_float): Likewise.
8276 (free_cons): Likewise.
8277 (Fcons): Likewise.
8278 (check_cons_list): Likewise.
8279 (Fmake_symbol): Likewise.
8280 (allocate_misc): Likewise.
8281 (free_misc): Likewise.
8282 (gc_sweep): Likewise.
8283
8284 2005-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8285
8286 * mac.c (HASHKEY_QUERY_CACHE): New define.
8287 (xrm_create_database, xrm_q_put_resource): Empty query cache.
8288 (xrm_get_resource): Use query cache.
8289
8290 * image.c (init_image) [MAC_OS]: Don't call EnterMovies if
8291 inhibit_window_system is set.
8292
8293 2005-11-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8294
8295 * macgui.h (USE_CG_TEXT_DRAWING): New define.
8296 (struct MacFontStruct) [USE_CG_TEXT_DRAWING]: New members cg_font
8297 and cg_glyphs.
8298
8299 * macterm.c [USE_CG_TEXT_DRAWING] (mac_draw_string_cg): New function.
8300 (x_draw_glyph_string_foreground) [USE_CG_TEXT_DRAWING]: Use it.
8301 (XLoadQueryFont) [USE_CG_TEXT_DRAWING]: Set members cg_font and
8302 cg_glyphs in struct MacFontStruct if synthesized bold or italic is
8303 not used and font substitution never occurs for ASCII and Latin-1
8304 characters.
8305 (XLoadQueryFont): Maximum and minimum metrics are now those among
8306 ASCII characters.
8307 (XLoadQueryFont) [!MAC_OS8 || USE_ATSUI]: Apply WebKit-style
8308 height adjustments for Courier, Helvetica, and Times.
8309
8310 * s/darwin.h (LIBS_CARBON) [!HAVE_CARBON]: Remove `-framework Carbon'.
8311
8312 2005-11-11 David Reitter <david.reitter@gmail.com>
8313
8314 * macterm.c (syms_of_macterm): Remove macCtrlKey, macShiftKey,
8315 macMetaKey, macAltKey. Introduce Qctrl, Qmeta,
8316 Vmac_control_modifier / mac-control-modifier,
8317 Vmac_option_modifier / mac-option-modifier,
8318 Vmac_command_modifier / mac-command-modifier.
8319 (mac_to_emacs_modifiers): Use the new style modifier
8320 variables. Return UInt32 (modifiers are longs now.)
8321 (backtranslate_modified_keycode): New function (refactoring).
8322 (XTread_socket): Use new modifier variables and refactored function.
8323 (mac_determine_quit_char_modifiers): Remove macMetaKey (there is
8324 no dedicated meta key. Not in use anyway.)
8325 (convert_fn_keycode): Map Fn-keys to their original keycode
8326 using a table (english keyboard only).
8327
8328 2005-11-11 Kim F. Storm <storm@cua.dk>
8329
8330 * .gdbinit (pitx): Fix output format if n_overlay_strings > 0.
8331 Add post hook to "backtrace" to always dump lisp call stack to
8332 increase chance of people sending it to us when reporting bugs.
8333
8334 * doc.c (Fsubstitute_command_keys): Doc fix.
8335
8336 * dispextern.h (struct it): New member ignore_overlay_strings_at_pos_p.
8337
8338 * xdisp.c (handle_stop): Skip overlay string handling if
8339 ignore_overlay_strings_at_pos_p is set.
8340 (set_iterator_to_next): At end of display vector, set
8341 ignore_overlay_strings_at_pos_p if dpvec came from an overlay
8342 string, so we skip those overlay strings at current pos.
8343
8344 2005-11-10 Lars Hansen <larsh@soem.dk>
8345
8346 * fileio.c (file-regular-p): Doc fix.
8347
8348 2005-11-10 Kim F. Storm <storm@cua.dk>
8349
8350 * alloc.c (valid_lisp_object_p): New function to validate that
8351 an object is really a valid Lisp_Object.
8352
8353 * lisp.h (valid_lisp_object_p): Add prototype.
8354
8355 * print.c (safe_debug_print): New function to be called from gdb
8356 to print Lisp objects; use valid_lisp_object_p to avoid crashing
8357 if user tries to print something which is not a Lisp object.
8358
8359 * .gdbinit (pp, pp1): Use safe_debug_print.
8360 (pv, pv1): New commands to print value of a lisp variable.
8361
8362 2005-11-10 Nick Roberts <nickrob@snap.net.nz>
8363
8364 * .gdbinit (pp1): New user-defined function.
8365
8366 2005-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8367
8368 * image.c [MAC_OSX] (image_load_quartz2d): Fix memory leak.
8369
8370 * mac.c [MAC_OSX] (init_mac_osx_environment): Reinitialize locale
8371 related variables for dumped executable.
8372
8373 * unexmacosx.c (unexec_write_zero): New function.
8374 (copy_data_segment): Clear uninitialized local variables in
8375 statically linked libraries.
8376
8377 * s/darwin.h (C_SWITCH_SYSTEM): Remove -fno-common.
8378
8379 2005-11-09 Juri Linkov <juri@jurta.org>
8380
8381 * keymap.c (shadow_lookup): If Flookup_key returns a number,
8382 call it again with a sub-key-sequence, and if its return value
8383 is non-nil (sub-key is bound), return nil.
8384
8385 2005-11-08 Kim F. Storm <storm@cua.dk>
8386
8387 * process.c (Fsignal_process): Recognize signal names with and
8388 without SIG prefix, e.g. SIGHUP and HUP.
8389
8390 * search.c (search_buffer): No need to initialize base_pat.
8391
8392 2005-11-04 Stefan Monnier <monnier@iro.umontreal.ca>
8393
8394 * window.c (Fget_lru_window, Fget_largest_window, window_loop):
8395 Don't abuse the `mini' arg. Use the `obj' arg instead.
8396
8397 2005-11-04 Kim F. Storm <storm@cua.dk>
8398
8399 * xdisp.c (show_mouse_face): Clear mouse face to eol.
8400
8401 2005-11-03 Dan Nicolaescu <dann@ics.uci.edu>
8402
8403 * Makefile.in (lisp, shortlisp): Add emacs-lisp/syntax.elc,
8404 font-lock.elc and jit-lock.elc.
8405
8406 2005-11-03 Richard M. Stallman <rms@gnu.org>
8407
8408 * window.c (Fenlarge_window): Rename SIDE to HORIZONTAL.
8409 (enlarge_window): Rename WIDTHFLAG to HORIZ_FLAG.
8410 (CURBEG, CURSIZE): Use HORIZ_FLAG instead of WIDTHFLAG.
8411
8412 * sheap.c (STATIC_HEAP_SIZE): Increment both definitions.
8413
8414 * alloc.c (refill_memory_reserve): Move decl out of conditionals.
8415
8416 2005-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
8417
8418 * window.c (Fdisplay_buffer): Fix last change to not use
8419 a dedicated window.
8420
8421 2005-11-01 Kim F. Storm <storm@cua.dk>
8422
8423 * fringe.c (update_window_fringes): Undo 2005-10-27 change.
8424 Instead, rotate the bottom angle bitmap 180 degrees to indicate
8425 that the bottom row does not end in a newline.
8426
8427 2005-11-01 Andreas Schwab <schwab@suse.de>
8428
8429 * unexelf.c (unexec): Handle .plt section in BSS segment.
8430
8431 2005-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
8432
8433 * lread.c (readevalloop): Yet another int/Lisp_Object mixup (YAILOM).
8434
8435 * window.c (window_loop): For LRU and LARGEST, let the `mini' argument
8436 determine whether to consider dedicated windows as well.
8437 (Fget_lru_window, Fget_largest_window): Add `dedicated' argument.
8438 (Fdisplay_buffer): Do consider dedicated windows in those cases where
8439 we will split the window rather than reuse it.
8440 Don't try to use windows on other displays.
8441
8442 2005-10-31 Dan Nicolaescu <dann@ics.uci.edu>
8443
8444 * puresize.h (BASE_PURESIZE): Increment to 1170000.
8445
8446 2005-10-31 Romain Francoise <romain@orebokech.com>
8447
8448 * macfns.c: Update copyright year.
8449 * m/gould.h: Likewise.
8450
8451 2005-10-30 Kim F. Storm <storm@cua.dk>
8452
8453 * xdisp.c (display_line): Restore it->current_x and call
8454 extend_face_to_end_of_line when last glyph doesn't fit on line.
8455 (set_glyph_string_background_width): Remove specific tests here
8456 to see if face background should extend to end of line. Simplify.
8457
8458 2005-10-30 Richard M. Stallman <rms@gnu.org>
8459
8460 * alloc.c (BYTES_USED): Use uordblks, not arena.
8461 (bytes_used_when_reconsidered): New variable.
8462 (emacs_blocked_free): Set that.
8463
8464 2005-10-29 Chong Yidong <cyd@stupidchicken.com>
8465
8466 * alloc.c (emacs_blocked_free): Fix typo.
8467
8468 2005-10-29 Richard M. Stallman <rms@gnu.org>
8469
8470 * data.c (Fmake_variable_frame_local): Doc fix.
8471
8472 * xdisp.c (handle_fontified_prop): Do nothing if memory full.
8473 (format_mode_line_unwind_data): New arg SAVE_PROPTRANS
8474 controls whether to save and restore mode_line_proptrans_alist.
8475 Callers changed.
8476 (unwind_format_mode_line): Work with that feature.
8477 (redisplay_internal): Don't call prepare_menu_bars if memory full.
8478 (move_elt_to_front): New function.
8479 (display_mode_element): Use move_elt_to_front.
8480 Don't bother munging text props on a null string.
8481 Delete obsolete elts from mode_line_proptrans_alist.
8482 (decode_mode_spec): Test Vmemory_full, not spare_memory.
8483 (Fformat_mode_line): Clear mode_line_proptrans_alist after saving.
8484
8485 * lisp.h (memory_full_cons_threshold): Declare.
8486 (internal_lisp_condition_case): Declare.
8487
8488 * alloc.c (syms_of_alloc) <memory-full>: Doc fix.
8489 (Fmemory_full_p): Function deleted.
8490 (syms_of_alloc): Don't defsubr it.
8491 (memory_full_cons_threshold): New variable.
8492 (spare_memory): Now a vector of 7 elts.
8493 (buffer_memory_full): Don't set Vmemory_full here.
8494 (xfree): Don't try to refill here.
8495 (emacs_blocked_free): Record BYTES_USED in local var.
8496 (memory_full): Now free all the slots in spare_memory.
8497 (refill_memory_reserve): Allocate each slot in spare_memory.
8498 (init_alloc_once): Call refill_memory_reserve.
8499
8500 * keyboard.c (command_loop_1): Don't set Vmemory_full here.
8501
8502 * eval.c (internal_lisp_condition_case): New function.
8503 (Fcondition_case): Use internal_lisp_condition_case.
8504 (Feval): Test Vmemory_full and memory_full_cons_threshold.
8505 (Ffuncall): Likewise.
8506
8507 * bytecode.c (Fbyte_code): Use internal_lisp_condition_case.
8508
8509 2005-10-29 Stefan Monnier <monnier@iro.umontreal.ca>
8510
8511 * syntax.c (Fparse_partial_sexp): Fix docstring.
8512
8513 2005-10-28 Romain Francoise <romain@orebokech.com>
8514
8515 * puresize.h (BASE_PURESIZE): Increment to 1130000.
8516
8517 2005-10-28 Richard M. Stallman <rms@gnu.org>
8518
8519 * xfns.c (syms_of_xfns): Provide `x' as feature.
8520
8521 * xdisp.c (decode_mode_spec): Define %e to indicate memory full.
8522
8523 * editfns.c (Fformat): Don't include string padding
8524 between info[n].start and info[n].end.
8525
8526 * alloc.c (spare_memory): No longer static.
8527 (xfree) [!SYSTEM_MALLOC]: Call refill_memory_reserve.
8528
8529 * puresize.h (BASE_PURESIZE): Increment to 1120000.
8530
8531 2005-10-27 Chong Yidong <cyd@stupidchicken.com>
8532
8533 * data.c (Fmake_variable_frame_local): Add clarification to docstring.
8534
8535 * fringe.c (update_window_fringes): Handle case where buffer ends
8536 with a newline.
8537
8538 2005-10-27 Kenichi Handa <handa@m17n.org>
8539
8540 * coding.h (DECODE_SYSTEM): Fix argument name; name->str.
8541
8542 2005-10-24 Kenichi Handa <handa@m17n.org>
8543
8544 * charset.h (charset_mule_unicode_0100_24ff)
8545 (charset_mule_unicode_2500_33ff, charset_mule_unicode_e000_ffff):
8546 Extern them.
8547
8548 * charset.c (charset_mule_unicode_0100_24ff)
8549 (charset_mule_unicode_2500_33ff, charset_mule_unicode_e000_ffff):
8550 New variables.
8551 (Fsetup_special_charsets): Initialize them.
8552
8553 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
8554 supported Unicode characters.
8555
8556 2005-10-25 Jason Rumney <jasonr@gnu.org>
8557
8558 * w32fns.c (w32_to_x_font): Avoid forcing font widths.
8559
8560 2005-10-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8561
8562 * image.c [MAC_OS] (image_load_qt_1): Check image size.
8563 Use GraphicsImportGetImageDescription instead of
8564 GraphicsImportGetNaturalBounds.
8565 [MAC_OSX] (image_load_quartz2d): Check image size.
8566 [MAC_OS] (xpm_load_image): Likewise.
8567
8568 * macterm.c (last_mouse_glyph_frame): New var.
8569 (note_mouse_movement): Say mouse moved if current frame differs
8570 from last_mouse_glyph_frame, and update last_mouse_glyph_frame.
8571 (XTmouse_position): Set last_mouse_glyph_frame.
8572 (XTread_socket): Clear last_mouse_glyph_frame on mouse up/down event.
8573 (mac_draw_string_common) [USE_ATSUI && WORDS_BIG_ENDIAN]: Fix typo.
8574 Use EndianU16_BtoN.
8575 (mac_draw_string_common) [MAC_OSX]: Don't use ATSUClearLayoutControls.
8576 (x_per_char_metric, XLoadQueryFont)
8577 [MAC_OS_X_VERSION_MAX_ALLOWED < 1020]: Use device origins to get
8578 glyph bounds.
8579 (mac_to_x_fontname, mac_do_list_fonts)
8580 (mac_initialize_display_info): Change screen resolutions to 72dpi.
8581
8582 2005-10-25 Masatake YAMATO <jet@gyve.org>
8583
8584 * minibuf.c (Fdisplay_completion_list): Small doc fix.
8585
8586 2005-10-24 Kim F. Storm <storm@cua.dk>
8587
8588 * xterm.c: Undo 2005-10-23 change.
8589 (last_mouse_glyph_frame): New var.
8590 (note_mouse_movement): Say mouse moved if current frame differs
8591 from last_mouse_glyph_frame, and update last_mouse_glyph_frame.
8592 (XTmouse_position): Set last_mouse_glyph_frame.
8593 (handle_one_xevent): Clear last_mouse_glyph_frame [instead of
8594 last_mouse_glyph] on mouse up/down event.
8595
8596 * editfns.c (Fcompare_buffer_substrings): Fix last change.
8597
8598 2005-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8599
8600 * editfns.c (Fcompare_buffer_substrings): Handle multibyte chars.
8601
8602 2005-10-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8603
8604 * xterm.c (note_mouse_movement): Always call note_mouse_highlight
8605 so tool tips don't interfere with press on tool bar button.
8606
8607 2005-10-23 Richard M. Stallman <rms@gnu.org>
8608
8609 * casetab.c (Fset_case_table): Doc fix.
8610
8611 * lread.c (build_load_history): Replace STREAM arg with ENTIRE.
8612 (readevalloop): Compute ENTIRE properly.
8613 (syms_of_lread) <load-history>: Doc fix.
8614
8615 2005-10-21 Richard M. Stallman <rms@gnu.org>
8616
8617 * lread.c (Fload): Simplify gcpro structure.
8618 Gcpro FOUND as well as FILE, but not EFOUND.
8619 Unless preloading, record FOUND instead of FILE in Vload_history.
8620 Rename repeat local FILE to MSG_FILE.
8621 (syms_of_lread) <load-history>: Doc fix.
8622
8623 2005-10-21 Kenichi Handa <handa@m17n.org>
8624
8625 * search.c (boyer_moore): Add parens to fix and/or precedence bug.
8626
8627 2005-10-20 Kim F. Storm <storm@cua.dk>
8628
8629 * buffer.c (clone_per_buffer_values): Remove unused var tem.
8630 (init_buffer): Remove unused vars dotstat, pwdstat.
8631
8632 * ccl.c (check_ccl_update): Remove unused var vp.
8633
8634 * fileio.c (auto_save_error): Call SAFE_FREE.
8635
8636 * fns.c (Fchar_table_range): Remove unused var i.
8637
8638 * minibuf.c (display_completion_list_1): New wrapper function
8639 for Fdisplay_completion_list.
8640 (Fminibuffer_completion_help): Use it.
8641
8642 * term.c (encode_terminal_code): Remove unused var src_start.
8643
8644 * window.c (Fwindow_tree): Remove unused var alist.
8645
8646 * xterm.c (x_calc_absolute_position): Remove unused vars win_x, win_y.
8647
8648 2005-10-20 Aubrey Jaffer <agj@alum.mit.edu> (tiny change)
8649
8650 * unexelf.c (unexec): Fix calls to `fatal' with less than 3 arguments.
8651
8652 2005-10-20 Olli Savia <ops@iki.fi> (tiny change)
8653
8654 * syssignal.h [__Lynx__]: Undef SIGPOLL along with SIGIO.
8655
8656 2005-10-20 Andreas Schwab <schwab@suse.de>
8657
8658 * minibuf.c (Fdisplay_completion_list): Doc fix.
8659
8660 2005-10-19 Kim F. Storm <storm@cua.dk>
8661
8662 * image.c (check_image_size): Handle integer Vmax_image_size value
8663 directly as max pixel value. Use default frame size for null frame.
8664 (syms_of_image) <max-image-size>: Describe integer value.
8665
8666 2005-10-19 Romain Francoise <romain@orebokech.com>
8667
8668 * emacs.c (main): Update copyright year.
8669
8670 2005-10-18 Chong Yidong <cyd@stupidchicken.com>
8671
8672 * image.c (Vmax_image_size): New variable.
8673 (check_image_size): New function.
8674 (xbm_read_bitmap_data, pbm_load, png_load, jpeg_load, tiff_load)
8675 (gif_load, gs_load): Use it.
8676 (lookup_image): Try loading again if previous load failed.
8677 (xbm_read_bitmap_data): Add a new argument, a pointer to the frame
8678 to display in, NULL if none.
8679 (xbm_load_image, xbm_file_p): Pass xbm_read_bitmap_data the new
8680 argument.
8681
8682 2005-10-18 Richard M. Stallman <rms@gnu.org>
8683
8684 * search.c (Fstring_match): Doc fix.
8685
8686 2005-10-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8687
8688 * macterm.c (note_mouse_movement): Use PtInRect.
8689 (XTread_socket): Also ignore mouse motion just before a button
8690 release event. Don't process button release event when mouse is
8691 not grabbed.
8692
8693 2005-10-16 Masatake YAMATO <jet@gyve.org>
8694
8695 * minibuf.c (Fdisplay_completion_list): Add new optional
8696 argument COMMON_SUBSTRING. Bind `completion-common-substring'
8697 to the optional argument during running `completion-setup-hook'.
8698
8699 2005-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8700
8701 * mac.c [TARGET_API_MAC_CARBON] (get_cfstring_encoding_from_lisp):
8702 Allow nil as argument.
8703 [TARGET_API_MAC_CARBON] (Fmac_code_convert_string): Regard nil
8704 for encoding arguments as UTF-16 in native byte order, no BOM.
8705
8706 * macfns.c (Fx_create_frame): Add debugging code.
8707 (Fx_show_tip): Set frame pixel width and height.
8708
8709 * macterm.c (MAC_WINDOW_NORMAL_GC): Remove macro.
8710 (FRAME_NORMAL_GC): New macro.
8711 (mac_draw_line, mac_clear_area, mac_clear_window)
8712 (mac_fill_rectangle, mac_draw_string, mac_draw_string_16)
8713 (mac_draw_image_string, mac_draw_image_string_16): Rename from
8714 XDrawLine, XClearArea, XClearWindow, XFillRectangle, XDrawString,
8715 XDrawString16, XDrawImageString, and XDrawImageString16, respectively.
8716 All uses changed.
8717 (mac_draw_line, mac_erase_rectangle, mac_clear_area)
8718 (mac_clear_window, mac_draw_bitmap, mac_draw_rectangle)
8719 (mac_invert_rectangle, mac_draw_string_common, mac_draw_string)
8720 (mac_draw_string_16, mac_draw_image_string)
8721 (mac_draw_image_string_16, mac_copy_area, mac_copy_area_with_mask)
8722 (mac_scroll_area): Drawing functions now take frame as destination.
8723 All uses changed.
8724 (mac_draw_string_common): Get port height with FRAME_PIXEL_HEIGHT.
8725 (x_draw_fringe_bitmap): Set clipping area in face->gc.
8726
8727 * macterm.h (mac_clear_area): Add extern.
8728
8729 2005-10-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8730
8731 * macterm.c (note_mouse_movement, XTread_socket): Apply 2005-10-14
8732 changes for xterm.c.
8733
8734 * w32term.c (note_mouse_movement, w32_read_socket): Likewise.
8735
8736 2005-10-14 Kenichi Handa <handa@m17n.org>
8737
8738 * search.c (search_buffer): Give up BM search on case-fold-search
8739 if one of a target character has a case-equivalence of different
8740 charset even if that target charcter is an ASCII.
8741
8742 * casefiddle.c (casify_object): Fix for the case that case
8743 conversion change the byte length.
8744
8745 2005-10-14 Kim F. Storm <storm@cua.dk>
8746
8747 * xterm.c (note_mouse_movement): Return 1 if mouse moved; 0 otherwise.
8748 (handle_one_xevent): Only clear help_echo_string; restore it if
8749 note_mouse_movement didn't record any mouse movement.
8750
8751 * xdisp.c (pos_visible_p): Convert w->hscroll to pixels before use.
8752 (remember_mouse_glyph): Clear RECT if mouse is over an image glyph.
8753
8754 * keyboard.c (make_lispy_position): Adjust wx for left margin if
8755 ON_TEXT.
8756 (Fposn_at_x_y): Fix calculation of x coordinate.
8757 (Fposn_at_point): Return nil if point is hscrolled out of view.
8758
8759 2005-10-13 Andreas Schwab <schwab@suse.de>
8760
8761 * sysdep.c (request_sigio, unrequest_sigio): Do nothing in
8762 non-interactive mode.
8763
8764 2005-10-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8765
8766 * xterm.c, w32term.c, macterm.c (note_mouse_movement): Undo last change.
8767
8768 2005-10-12 Kim F. Storm <storm@cua.dk>
8769
8770 * xterm.c (handle_one_xevent): Clear last_mouse_glyph on mouse up/down.
8771
8772 2005-10-12 Romain Francoise <romain@orebokech.com>
8773
8774 * buffer.c (init_buffer): Rename `rc' to `len' for clarity.
8775
8776 2005-10-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8777
8778 * xdisp.c (remember_mouse_glyph): Use MATRIX_BOTTOM_TEXT_ROW to
8779 get end of text rows. Obtain header-line/mode-line rows directly.
8780
8781 * xterm.c, w32term.c, macterm.c (note_mouse_movement):
8782 Restore help_echo_string if mouse is moved inside last_mouse_glyph.
8783
8784 2005-10-12 Kim F. Storm <storm@cua.dk>
8785
8786 * xdisp.c (remember_mouse_glyph): New generic version based on
8787 glyph_rect and remember_mouse_glyph from xterm.c enhanced to
8788 properly handle all different window areas.
8789
8790 * dispextern.h (remember_mouse_glyph): Add prototype.
8791
8792 * xterm.c (glyph_rect, remember_mouse_glyph): Remove X versions.
8793 (note_mouse_movement, XTmouse_position): Use generic
8794 remember_mouse_glyph, add last_mouse_glyph arg.
8795
8796 * w32term.c (note_mouse_movement): Fix last_mouse_glyph check.
8797 (glyph_rect, remember_mouse_glyph): Remove w32 specific versions.
8798 (note_mouse_movement, w32_mouse_position): Use generic
8799 remember_mouse_glyph, add last_mouse_glyph arg.
8800
8801 * macterm.c (note_mouse_movement): Add call to remember_mouse_glyph.
8802 (glyph_rect, remember_mouse_glyph): Remove mac specific versions.
8803 (XTmouse_position): Adapt to use generic remember_mouse_glyph
8804 instead of pixel_to_glyph_coords.
8805
8806 * window.c (coordinates_in_window): Fix x position for ON_RIGHT_MARGIN.
8807 Fix x position for ON_TEXT when left margin width > 0.
8808
8809 2005-10-11 Kim F. Storm <storm@cua.dk>
8810
8811 * window.c (coordinates_in_window): Fix y position for ON_SCROLL_BAR.
8812
8813 * keyboard.c (make_lispy_position): Fix buffer calculations for
8814 mouse click or movement in right fringe and the margins.
8815
8816 2005-10-11 Juanma Barranquero <lekktu@gmail.com>
8817
8818 * image.c (fn_jpeg_stdio_src): Don't define it.
8819 (init_jpeg_functions): Don't initialize `fn_jpeg_stdio_src'.
8820 (our_common_init_source): Rename from `our_init_source'.
8821 (our_common_term_source): Rename from `our_term_source'.
8822 (our_memory_fill_input_buffer): Rename from
8823 `our_fill_input_buffer'.
8824 (our_memory_skip_input_data): Rename from `our_skip_input_data'.
8825 (jpeg_memory_src): Use the new names.
8826 (struct jpeg_stdio_mgr): New struct.
8827 (JPEG_STDIO_BUFFER_SIZE): New constant.
8828 (our_stdio_fill_input_buffer, our_stdio_skip_input_data)
8829 (jpeg_file_src): New functions.
8830 (jpeg_load): Use `jpeg_file_src' instead of `fn_jpeg_stdio_src'.
8831
8832 2005-10-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8833
8834 * macterm.c (PER_CHAR_METRIC): Remove unused macro.
8835 (fm_font_family_alist): New variable.
8836 (syms_of_macterm): Initialize and staticpro it.
8837 (decode_mac_font_name): Replace '-' in family name with '_' if it
8838 occurs just once. Lower family name.
8839 (parse_x_font_name): Rename from x_font_name_to_mac_font_name.
8840 All uses changed. Remove argument MF and code conversion for it.
8841 Add argument SIZE. Rename argument MF_DECODED to FAMILY, and CS
8842 to CHARSET. Parse font size. Lower family name. Return integer
8843 value for status of parsing.
8844 (init_font_name_table) [USE_ATSUI]: Use decode_mac_font_name.
8845 Don't use Fdowncase because family name is already lowered by
8846 decode_mac_font_name.
8847 (init_font_name_table): Always call decode_mac_font_name.
8848 Add pair of family name and its reference to fm_font_family_alist.
8849 (mac_clear_font_name_table): Clear fm_font_family_alist.
8850 (XLoadQueryFont): Move font size parsing part to parse_x_font_name.
8851 Lookup fm_font_family_alist to get font family reference.
8852 (XLoadQueryFont) [USE_ATSUI]: Don't use Fdowncase because family
8853 name is already lowered by parse_x_font_name.
8854
8855 2005-10-11 Kim F. Storm <storm@cua.dk>
8856
8857 * xterm.c (glyph_rect): Return 0 if position is outside text area.
8858
8859 * keyboard.c (make_lispy_position): Fix buffer position calculation for
8860 mouse click or movement in fringe.
8861
8862 2005-10-10 Jason Rumney <jasonr@gnu.org>
8863
8864 * xterm.c (remember_mouse_glyph): New function.
8865 (note_mouse_movement): Use it to remember the current glyph if changed.
8866 (XTmouse_position): Fix calculation of fake glyph under mouse.
8867 Move code to calculate glyph under mouse into remember_mouse_glyph.
8868
8869 2005-10-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8870
8871 * emacs.c (USAGE3, standard_args): -nb => -nbi.
8872
8873 2005-10-10 Juanma Barranquero <lekktu@gmail.com>
8874
8875 * frame.c (Fredirect_frame_focus): Fix typos in docstring.
8876 (next_frame, prev_frame, set_term_frame_name): Make static.
8877
8878 * window.c (Fwindow_tree): Fix spelling.
8879
8880 2005-10-09 Romain Francoise <romain@orebokech.com>
8881
8882 * window.c (Fwindow_end): Don't try to redisplay if non-interactive.
8883
8884 2005-10-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8885
8886 * emacs.c (standard_args): Remove options -i, -itype, --icon-type.
8887 Add options -nb, --no-bitmap-icon.
8888
8889 * xfns.c (Fx_create_frame): Make bitmapIcon have default on.
8890
8891 2005-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8892
8893 * macgui.h (MAX_CLIP_RECTS): New define.
8894 (struct _XGC): New member clip_region.
8895 (struct _XGC) [MAC_OSX && USE_ATSUI]: New members n_clip_rects and
8896 clip_rects.
8897
8898 * macterm.c (GC_CLIP_REGION): New macro.
8899 (saved_port_clip_region): New variable.
8900 (mac_begin_clip, mac_end_clip): New functions.
8901 (XDrawLine, mac_erase_rectangle, mac_draw_bitmap, XFillRectangle)
8902 (mac_draw_rectangle, mac_draw_string_common, mac_copy_area)
8903 (mac_copy_area_with_mask, mac_scroll_area): Use them.
8904 (mac_set_clip_rectangle, mac_reset_clipping): Remove functions.
8905 [USE_ATSUI] (atsu_get_text_layout_with_text_ptr)
8906 [MAC_OS_X_VERSION_MAX_ALLOWED < 1020]: Specify kATSLineFractDisable.
8907 (mac_draw_string_common) [MAC_OSX && USE_ATSUI]: Clip to clipping
8908 rectangles stored in gc.
8909 (XFreeGC): Dispose of clipping region.
8910 (mac_set_clip_rectangles, mac_reset_clip_rectangles): New functions.
8911 (x_draw_fringe_bitmap, x_set_glyph_string_clipping)
8912 (x_draw_relief_rect, x_draw_box_rect, x_draw_stretch_glyph_string)
8913 (x_draw_glyph_string, x_clip_to_row, x_draw_hollow_cursor)
8914 (x_draw_bar_cursor): Use them.
8915 (x_set_glyph_string_clipping): Use get_glyph_string_clip_rects to
8916 get multiple clipping rectangles.
8917
8918 * macterm.h (mac_term_init): Add types to extern.
8919 (struct mac_output): Remove members mWP and pending_menu_activation.
8920 Put members scroll_bar_foreground_pixel and
8921 scroll_bar_background_pixel in #if 0.
8922 (FRAME_MAC_WINDOW, FRAME_X_WINDOW): Use window_desc.
8923
8924 * xfaces.c (x_create_gc, x_free_gc) [MAC_OS]: Add BLOCK_INPUT.
8925 Add debugging code.
8926
8927 2005-10-08 Kim F. Storm <storm@cua.dk>
8928
8929 * window.c (window_tree, Fwindow_tree): Rename fns added 2005-10-04.
8930
8931 2005-10-07 Kim F. Storm <storm@cua.dk>
8932
8933 * dispnew.c (redraw_overlapped_rows, redraw_overlapping_rows)
8934 [!HAVE_WINDOW_SYSTEM]: Don't declare them...
8935 (update_window) [!HAVE_WINDOW_SYSTEM]: ...and don't call them.
8936
8937 2005-10-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8938
8939 * dispextern.h (struct glyph_string): Rename member for_overlaps_p
8940 to for_overlaps. Now occupy 3 bits.
8941 (OVERLAPS_PRED, OVERLAPS_SUCC, OVERLAPS_BOTH)
8942 (OVERLAPS_ERASED_CURSOR): New defines.
8943 (struct redisplay_interface): Add new OVERLAPS arg to member
8944 fix_overlapping_area.
8945 (x_fix_overlapping_area): Add new OVERLAPS arg.
8946 (get_glyph_string_clip_rects): Add extern.
8947
8948 * dispnew.c (redraw_overlapping_rows):
8949 Call rif->fix_overlapping_area with new OVERLAPS arg as redrawn part.
8950
8951 * xdisp.c: Rename member for_overlaps_p in struct glyph_string to
8952 for_overlaps.
8953 (get_glyph_string_clip_rects): New function created from
8954 get_glyph_string_clip_rect. Set clipping rectangles according to the
8955 value of for_overlaps. Enable to store multiple clipping rectangles.
8956 (get_glyph_string_clip_rect): Use get_glyph_string_clip_rects.
8957 (fill_composite_glyph_string, fill_glyph_string, draw_glyphs):
8958 Rename argument OVERLAPS_P to OVERLAPS. All uses in macros changed.
8959 (x_fix_overlapping_area): Add OVERLAPS arg. Pass it to draw_glyphs.
8960 (draw_phys_cursor_glyph): Set width of erased cursor to use it for
8961 calculating clipping rectangles later. Call x_fix_overlapping_area
8962 with new OVERLAPS arg to draw only erased cursor area.
8963 (expose_overlaps): Call x_fix_overlapping_area with new OVERLAPS arg
8964 to draw overlaps in both preceding and succeeding rows.
8965
8966 * xterm.c, w32term.c, macterm.c: Rename member for_overlaps_p in
8967 struct glyph_string to for_overlaps.
8968
8969 2005-10-04 Richard M. Stallman <rms@gnu.org>
8970
8971 * alloc.c (refill_memory_reserve): Conditionalize the body,
8972 not the function's existence.
8973
8974 2005-10-04 Kim F. Storm <storm@cua.dk>
8975
8976 * window.c (window_split_tree): New function.
8977 (Fwindow_split_tree): New defun.
8978 (syms_of_window): Defsubr it.
8979
8980 2005-10-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8981
8982 * macterm.c (mac_invert_rectangle): New function.
8983 (XTflash): Use it.
8984
8985 2005-10-04 Stefan Monnier <monnier@iro.umontreal.ca>
8986
8987 * regex.h (re_char): Don't expose it in the interface.
8988 (re_set_whitespace_regexp): Adjust the arg's type to not use it.
8989
8990 * regex.c (re_char): Move it back here.
8991 (re_set_whitespace_regexp): Change the arg's type to not use it.
8992
8993 * keyboard.c (make_lispy_event): If point has moved between down and up
8994 event, make it a drag, not a click, to mirror what
8995 mouse-drag-region expects.
8996
8997 2005-10-02 Dan Nicolaescu <dann@ics.uci.edu>
8998
8999 * lisp.h (fatal): Undo previous change.
9000 * term.c (fatal): Undo previous change.
9001
9002 2005-10-01 Richard M. Stallman <rms@gnu.org>
9003
9004 * xfaces.c (face_color_gray_p): Colors close to black count as gray.
9005
9006 2005-10-01 Kim F. Storm <storm@cua.dk>
9007
9008 * xdisp.c (try_window): Skip scroll-margin check if ZV is visible.
9009
9010 2005-10-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9011
9012 * keyboard.c (init_keyboard) [MAC_OSX]: Don't install SIGINT handler.
9013
9014 * macfns.c (start_hourglass): Apply 2005-05-07 change for xfns.c.
9015 (x_create_tip_frame) [GLYPH_DEBUG]: Uncomment debugging code.
9016 (Fx_create_frame, x_create_tip_frame) [USE_ATSUI]:
9017 Try ATSUI-compatible 12pt Monaco font first.
9018
9019 * macgui.h (struct _XCharStruct): New member valid_p.
9020 (STORE_XCHARSTRUCT): Set valid_p.
9021 (struct MacFontStruct) [USE_ATSUI]: New member mac_style.
9022
9023 * macterm.c (mac_draw_string_common, x_per_char_metric)
9024 (mac_compute_glyph_string_overhangs, init_font_name_table)
9025 (XLoadQueryFont, mac_unload_font) [USE_ATSUI]: Add ATSUI support.
9026 (atsu_get_text_layout_with_text_ptr) [USE_ATSUI]: New function.
9027 (x_draw_glyph_string_background)
9028 (x_draw_glyph_string_foreground) [MAC_OS8 && USE_ATSUI]: Don't use
9029 XDrawImageString. Always draw background and foreground separately.
9030 (x_draw_glyph_string_foreground) [USE_ATSUI]: Don't use 8-bit
9031 functions for one-byte chars when using ATSUI-compatible fonts.
9032 (atsu_font_id_hash) [USE_ATSUI]: New variable.
9033 (syms_of_macterm) [USE_ATSUI]: Initialize and staticpro it.
9034 (XLoadQueryFont): Set min_byte1, max_byte1, min_char_or_byte2, and
9035 max_char_or_byte2 more in detail.
9036 (quit_char_comp, mac_check_for_quit_char) [MAC_OSX]: Remove functions.
9037
9038 2005-09-30 Dan Nicolaescu <dann@ics.uci.edu>
9039
9040 * image.c (slurp_file, xbm_read_bitmap_data): Cast to the correct type.
9041 * xterm.c (handle_one_xevent, handle_one_xevent): Likewise.
9042
9043 * unexelf.c (fatal): Fix prototype.
9044
9045 * term.c (fatal): Implement using varargs.
9046
9047 * regex.c (re_char): Move typedef ...
9048 * regex.h (re_char): ... here.
9049 (re_iswctype, re_wctype, re_set_whitespace_regexp): New prototypes.
9050
9051 * emacs.c (malloc_set_state): Fix return type.
9052 (endif): Fix type.
9053
9054 * lisp.h (fatal): Add argument types.
9055
9056 * dispextern.h (fatal): Delete prototype.
9057
9058 * systime.h (make_time): Prototype moved from ...
9059 * editfns.c (make_time): ... here.
9060
9061 * editfns.c: Move systime.h include after lisp.h.
9062 * dired.c:
9063 * xsmfns.c:
9064 * process.c: Likewise.
9065
9066 * alloc.c (old_malloc_hook, old_realloc_hook, old_realloc_hook):
9067 Add parameter types.
9068 (__malloc_hook, __realloc_hook, __free_hook): Fix prototypes.
9069 (emacs_blocked_free): Change definition to match __free_hook.
9070 (emacs_blocked_malloc): Change definition to match __malloc_hook.
9071 (emacs_blocked_realloc): Change definition to match __realloc_hook.
9072
9073 2005-09-30 Romain Francoise <romain@orebokech.com>
9074
9075 * minibuf.c (Fread_buffer): Follow convention for reading from the
9076 minibuffer with a default value. Doc fix.
9077
9078 2005-09-29 Juri Linkov <juri@jurta.org>
9079
9080 * editfns.c (Fmessage, Fmessage_box, Fmessage_or_box):
9081 Rename argument name `string' to `format-string'.
9082 (Fformat): Doc fix.
9083
9084 2005-09-28 Kim F. Storm <storm@cua.dk>
9085
9086 * image.c (gif_load): Fix size of allocated image buffer
9087 for images where a sub-image may be larger than the image's
9088 total height/width specifications.
9089
9090 2005-09-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9091
9092 * macgui.h (struct _XCharStruct): Each member now takes short value.
9093
9094 2005-09-27 Dan Nicolaescu <dann@ics.uci.edu>
9095
9096 * xfaces.c (lookup_derived_face): Add parameter type.
9097
9098 * xdisp.c (cursor_row_fully_visible_p): Add parameter type.
9099
9100 * marker.c (verify_bytepos): Add parameter type.
9101
9102 * process.c (get_operating_system_release): Move prototype ...
9103
9104 * systime.h (get_operating_system_release): ... here.
9105
9106 * xterm.c (handle_one_xevent): Refer to union field to match the
9107 type required by the function definition.
9108 (set_vertical_scroll_bar): Move prototype ...
9109
9110 * xterm.h: ... here.
9111
9112 * fns.c (internal_equal, seed_random): Fix prototypes.
9113 (internal_equal): Add missing parameter.
9114
9115 2005-09-25 Richard M. Stallman <rms@gnu.org>
9116
9117 * keyboard.c (update_menu_bindings): Variable deleted.
9118 (syms_of_keyboard): Don't defvar it.
9119 (parse_menu_item): Don't test it.
9120
9121 2005-09-23 Richard M. Stallman <rms@gnu.org>
9122
9123 * editfns.c (Fformat): Explicitly test for end of format string
9124 and don't use `index'.
9125
9126 2005-09-23 Dan Nicolaescu <dann@ics.uci.edu>
9127
9128 * s/aix4-2.h (BROKEN_GET_CURRENT_DIR_NAME):
9129 Define BROKEN_GET_CURRENT_DIR_NAME.
9130
9131 * sysdep.c (get_current_dir_name): Also define if
9132 BROKEN_GET_CURRENT_DIR_NAME.
9133
9134 * m/ibmrs6000.h: Test for USG5, not USG5_4.
9135
9136 2005-09-22 Kim F. Storm <storm@cua.dk>
9137
9138 * xdisp.c (message_dolog): Add warning about GC and Lisp strings.
9139 (message2): Fix commentary. Ok to use alloca'ed memory.
9140 Still not ok to use Lisp string data (because of GC).
9141 (set_message): Add comment why GC cannot happen.
9142
9143 2005-09-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9144
9145 * macterm.c (xlfdpat_block_match_1): Fix assertion.
9146 (init_font_name_table) [TARGET_API_MAC_CARBON]: Don't add style
9147 variants for a scalable font multiple times.
9148
9149 2005-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9150
9151 * process.c (create_process) [RTU || UNIPLUS || DONT_REOPEN_PTY]:
9152 Setup slave tty options before forking.
9153
9154 2005-09-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9155
9156 * gtkutil.c (xg_set_geometry): Do a gtk_window_move if program
9157 positions have been set for the frame (as is done for frames in
9158 special-display-buffer-names).
9159
9160 2005-09-19 Kim F. Storm <storm@cua.dk>
9161
9162 * editfns.c (Fformat): Don't scan past end of format string that
9163 ends in %. Reported by Johan Bockg\e,Ae\e(Brd.
9164
9165 2005-09-18 Andreas Schwab <schwab@suse.de>
9166
9167 * window.h (struct window): Remove height_fixed_p, no longer set.
9168
9169 * window.c (make_window): Don't initialize height_fixed_p.
9170 (window_fixed_size_p): Don't use it.
9171
9172 2005-09-18 John Paul Wallington <jpw@pobox.com>
9173
9174 * data.c (Fdefalias): Signal an error if SYMBOL is not a symbol.
9175
9176 2005-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9177
9178 * Makefile.in (SOME_MACHINE_OBJECTS): Undo previous change.
9179
9180 * macfns.c (image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]:
9181 New variables.
9182 [TARGET_API_MAC_CARBON] (Fx_file_dialog): Don't allow multiple
9183 file selection.
9184
9185 * sysdep.c [MAC_OS8]: Don't include stdlib.h. Include sys/param.h.
9186
9187 2005-09-17 Eli Zaretskii <eliz@gnu.org>
9188
9189 * Makefile.in (XMENU_OBJ) [!HAVE_CARBON]: Reinstate variable.
9190 (obj): Use XMENU_OBJ, not a literal xmenu.o.
9191
9192 2005-09-16 Romain Francoise <romain@orebokech.com>
9193
9194 * fileio.c (syms_of_fileio) <write-region-inhibit-fsync>: Doc fix.
9195
9196 2005-09-15 Richard M. Stallman <rms@gnu.org>
9197
9198 * xdisp.c (overlay_arrow_at_row): Add HAVE_WINDOW_SYSTEM conditional.
9199 (display_mode_element): Instead of `lisp_string' and `this',
9200 record `offset' and increment that.
9201 `last_offset' replaces `last'.
9202
9203 * Makefile.in (XMENU_OBJ): Variable deleted.
9204 (obj): Use xmenu.o unconditionally.
9205 (SOME_MACHINE_OBJECTS): Delete xmenu.o.
9206
9207 * emacs.c (main): Don't conditionalize syms_of_xmenu on HAVE_XMENU.
9208
9209 2005-09-15 Kim F. Storm <storm@cua.dk>
9210
9211 * xdisp.c (move_it_vertically): Don't try to fetch byte BEGV-1.
9212 (reseat_at_next_visible_line_start): Likewise (in xassert).
9213
9214 2005-09-14 Romain Francoise <romain@orebokech.com>
9215
9216 * fileio.c (write_region_inhibit_fsync): New variable.
9217 (Fwrite_region): Use it to skip call to fsync.
9218 (syms_of_fileio): Initialize it.
9219
9220 2005-09-14 Kenichi Handa <handa@m17n.org>
9221
9222 * coding.c (code_convert_region_unwind): Argument format changed.
9223 (run_pre_post_conversion_on_str): If pre-write-conversion function
9224 changed the current buffer, delete the new buffer.
9225 (run_pre_write_conversin_on_c_str): Likewise.
9226
9227 * fileio.c (Fexpand_file_name): Check multibyteness of
9228 default_directory.
9229
9230 2005-09-13 Kenichi Handa <handa@m17n.org>
9231
9232 * composite.c (compose_chars_in_text): Delete it.
9233
9234 * composite.h (compose_chars_in_text): Delete extern.
9235
9236 2005-09-13 Kim F. Storm <storm@cua.dk>
9237
9238 * print.c (print_error_message): Fix last change.
9239
9240 2005-09-12 Kim F. Storm <storm@cua.dk>
9241
9242 * composite.c (compose_chars_in_text): Fix setup of `pend'.
9243 Unconditionally reload `ptr' and `pend' after eval.
9244
9245 * xdisp.c (message3): Pass copy of lisp string to message_dolog.
9246
9247 * print.c (print_error_message): Pass copy of caller name to
9248 message_dolog.
9249
9250 * fileio.c (auto_save_error): Pass copy of lisp string to message2.
9251
9252 2005-09-12 Kenichi Handa <handa@m17n.org>
9253
9254 * xdisp.c (display_mode_element): Be sure to make variables THIS
9255 and LISP_STRING point into a string data of ELT.
9256
9257 2005-09-12 Kim F. Storm <storm@cua.dk>
9258
9259 * editfns.c (Ftranslate_region_internal): Reload `tt' after
9260 signal_after_change that may have GC'ed.
9261 (Fmessage, Fmessage_box, Fmessage_or_box): Doc fix.
9262
9263 * keymap.c (Fdescribe_buffer_bindings): Reload `translate'
9264 after insert while runs signal_after_change.
9265
9266 * minibuf.c (Fminibuffer_complete_word): Move `completion_string'
9267 declaration to where it is used.
9268
9269 * w32.c (check_windows_init_file): Fix allocation of error buffer.
9270
9271 * xfns.c (x_encode_text): Declare static. Add FREEP arg.
9272 (x_set_name_internal): Call x_encode_text with new FREEP arg to
9273 know if xfree is needed instead of guessing.
9274
9275 * xterm.h (x_encode_text): Remove prototype.
9276
9277 2005-09-11 Chris Prince <cprince@gmail.com> (tiny change)
9278
9279 * w32term.c (x_bitmap_icon): Load small icons too.
9280
9281 2005-09-10 Romain Francoise <romain@orebokech.com>
9282
9283 * buffer.c (init_buffer): Grow buffer to add directory separator
9284 and terminal zero. Fix typos.
9285
9286 2005-09-10 Eli Zaretskii <eliz@gnu.org>
9287
9288 * buffer.c (init_buffer): Fix error message for failed call to
9289 get_current_dir_name.
9290 (get_current_dir_name): Remove prototype.
9291
9292 * xsmfns.c (get_current_dir_name): Remove prototype.
9293
9294 * lisp.h (get_current_dir_name) [!HAVE_GET_CURRENT_DIR_NAME]:
9295 Add prototype.
9296
9297 * sysdep.c [WINDOWSNT]: Add prototype for getwd.
9298 Don't #undef NULL after including blockinput.h.
9299
9300 * config.in: Regenerated.
9301
9302 2005-09-10 Giuseppe Scrivano <gscrivano@gmail.com>
9303
9304 Remove the MAXPATHLEN limitations:
9305
9306 * sysdep.c (get_current_dir_name) [!HAVE_GET_CURRENT_DIR_NAME]:
9307 New function.
9308
9309 * buffer.c (init_buffer): Use it.
9310
9311 * xsmfns.c (smc_save_yourself_CB): Ditto.
9312
9313 2005-09-09 Kim F. Storm <storm@cua.dk>
9314
9315 * doc.c (Fsubstitute_command_keys): Lookup key binding for
9316 commands that are remapped from some other command.
9317
9318 * xdisp.c (try_window_reusing_current_matrix): Clear mode_line_p
9319 flag in disabled rows below the window.
9320
9321 * frame.h (struct frame): New member updated_p.
9322
9323 * xdisp.c (redisplay_internal): Mark updated frames in new updated_p
9324 member. Remove local `updated' array and associated variables.
9325
9326 2005-09-07 Kim F. Storm <storm@cua.dk>
9327
9328 * xdisp.c (handle_display_prop): Respect overlay window property.
9329
9330 * xdisp.c (try_window): Remove superfluous cursor_height calculation.
9331 Fixes crash reported by YAMAMOTO Mitsuharu.
9332
9333 2005-09-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9334
9335 * macterm.c (struct xlfdpat_block, struct xlfdpat): New structs.
9336 (xlfdpat_destroy, xlfdpat_create, xlfdpat_exact_p)
9337 (xlfdpat_block_match_1, xlfdpat_match): New functions.
9338 (xlfdpat_block_match): New macro.
9339 (mac_to_x_fontname): Don't use tolower for non-ASCII characters.
9340 (x_font_name_to_mac_font_name): Set coding.dst_multibyte to 0.
9341 (add_font_name_table_entry): Increase font_name_table_size more
9342 rapidly.
9343 (mac_c_string_match): Remove function.
9344 (mac_do_list_fonts): Use XLFD pattern match instead of regular
9345 expression match.
9346
9347 * xfaces.c (xstrlwr): Don't use tolower for non-ASCII characters.
9348
9349 2005-09-03 Richard M. Stallman <rms@gnu.org>
9350
9351 * xdisp.c (redisplay_internal): Make UPDATED as long as needed.
9352 (move_it_in_display_line_to): Stop after last char on line even
9353 on a windowing terminal, if that's the specified stop position.
9354
9355 * fns.c (Fsort): Doc fix.
9356
9357 * editfns.c (Fpropertize): Don't insist that properties be symbols.
9358
9359 2005-09-02 Stefan Monnier <monnier@iro.umontreal.ca>
9360
9361 * dired.c (directory_files_internal_unwind, directory_files_internal)
9362 (file_name_completion): Use a Save_Value object rather than a cons of
9363 two 16bit ints to store the DIR*.
9364 (directory_files_internal, file_name_completion): Handle both EINTR and
9365 EAGAIN consistently after `readdir'.
9366
9367 2005-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
9368
9369 * intervals.c (update_interval): Add position info in error.
9370
9371 * dispnew.c (window_to_frame_hpos, update_window):
9372 Avoid gcc warning about unused variable `f'.
9373
9374 2005-08-31 Jason Rumney <jasonr@gnu.org>
9375
9376 * w32menu.c (add_menu_item): If unicode_append_menu returns an
9377 error, revert to using AppendMenu.
9378
9379 2005-08-31 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9380
9381 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN): Remove argument.
9382 All uses changed.
9383 [MAC_OS] (XPutPixel, XGetPixel): Add efficient versions for common
9384 cases.
9385 (x_create_x_image_and_pixmap) [MAC_OS]: Don't call x_destroy_x_image.
9386 [MAC_OS] (find_image_fsspec) [!MAC_OSX]: Don't use FSRef.
9387 Use posix_pathname_to_fsspec.
9388 [MAC_OS] (xpm_load_image): Fill in background_transparent field
9389 while we have mask.
9390
9391 * macgui.h [!TARGET_API_MAC_CARBON] (GetPixDepth): New define.
9392
9393 * macterm.h (PIX_MASK_DRAW, PIX_MASK_RETAIN): Move defines to image.c.
9394
9395 2005-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9396
9397 * syntax.c (update_syntax_table): Properly reproduce the special +1
9398 setting of e_property at the end of the buffer when bumping into the
9399 INTERVALS_AT_ONCE limit.
9400
9401 2005-08-27 Eli Zaretskii <eliz@gnu.org>
9402
9403 * emacs.c (USAGE1): Fix the description of the -Q option.
9404
9405 2005-08-26 Stefan Monnier <monnier@iro.umontreal.ca>
9406
9407 * xdisp.c (pos_visible_p): Yet another int/Lisp_Object mixup (YAILOM).
9408
9409 2005-08-26 Kim F. Storm <storm@cua.dk>
9410
9411 * xdisp.c (resize_mini_window): Fix 2005-08-20 change.
9412 Don't move PT to new window start.
9413
9414 2005-08-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9415
9416 * keyboard.c (kbd_buffer_get_event) [MAC_OS]: Make events for
9417 ICONIFY/DEICONIFY_EVENT.
9418
9419 * macterm.c (mac_copy_area, mac_copy_area_with_mask):
9420 Restore background color.
9421 (mac_handle_visibility_change): New function.
9422 (x_make_frame_invisible, x_iconify_frame)
9423 (XTread_socket) [!USE_CARBON_EVENTS]: Use it.
9424 [USE_CARBON_EVENTS] (mac_handle_window_event)
9425 (install_window_handler): Handle visibility change events.
9426 (x_make_frame_visible): Don't reposition window if it is iconified
9427 or asked for visible before. Select and uncollapse window when it
9428 is made visible.
9429 (x_make_frame_invisible): Don't reset x_highlight_frame.
9430 (x_iconify_frame): Likewise. Make invisible frame visible before
9431 it is iconified.
9432 (read_socket_inev): Move variable outside #if USE_CARBON_EVENTS.
9433 (do_window_update): Don't change visibility of invisible frame.
9434
9435 2005-08-22 Juri Linkov <juri@jurta.org>
9436
9437 * term.c (turn_on_face): Check for TS_set_foreground and
9438 TS_set_background depending on standout_mode. Simplify.
9439
9440 2005-08-21 Kim F. Storm <storm@cua.dk>
9441
9442 * fringe.c (update_window_fringes): Only put TOP and BOTTOM
9443 bitmaps on fully visible rows.
9444
9445 * fringe.c (update_window_fringes): Replace FORCE_P arg with
9446 KEEP_CURRENT_P arg; if non-zero, don't update current row fringes,
9447 and return 0.
9448
9449 * xdisp.c (redisplay_window): Call update_window_fringes with
9450 KEEP_CURRENT_P non-0 if we are going to refresh fringes later.
9451
9452 2005-08-20 Richard M. Stallman <rms@gnu.org>
9453
9454 * xdisp.c (display_echo_area_1): Get display start pos from w->start.
9455 (resize_mini_window): Set w->start, and PT, so as to display the tail
9456 end of the buffer, if it doesn't all fit.
9457
9458 2005-08-18 Kim F. Storm <storm@cua.dk>
9459
9460 * xdisp.c (calc_pixel_width_or_height): Use actual display
9461 resolution when available instead of Vdisplay_pixels_per_inch.
9462
9463 2005-08-17 Kim F. Storm <storm@cua.dk>
9464
9465 * xdisp.c (pos_visible_p): Adjust X value if window is hscrolled.
9466
9467 * dispnew.c (buffer_posn_from_coords): Check that target row is
9468 within matrix.
9469
9470 2005-08-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9471
9472 * xterm.c (x_wm_set_icon_pixmap): Move GTK specific code to
9473 xg_set_frame_icon and call it.
9474
9475 * gtkutil.c (xg_set_frame_icon): New function.
9476
9477 * gtkutil.h (xg_set_frame_icon): Declare it.
9478
9479 2005-08-16 Kim F. Storm <storm@cua.dk>
9480
9481 * dispnew.c (increment_row_positions): Skip non-enabled rows.
9482
9483 * window.c (SAVED_WINDOW_VECTOR_SIZE): Remove dangerous define.
9484 (Fcurrent_window_configuration): Use VECSIZE macro instead.
9485
9486 2005-08-15 Richard M. Stallman <rms@gnu.org>
9487
9488 * xdisp.c (message3_nolog): Clear echo_message_buffer.
9489
9490 2005-08-15 Kim F. Storm <storm@cua.dk>
9491
9492 * lisp.h (QUIT) [!SYNC_INPUT]: Throw t to Vthrow_on_input.
9493
9494 * process.c (deactivate_process, status_notify, read_process_output)
9495 (update_status, status_convert, decode_status, allocate_pty)
9496 (make_process, remove_process, list_processes_1)
9497 (create_process_1, unwind_request_sigio, read_process_output)
9498 (send_process, keyboard_bit_set): Declare static.
9499 (Fdelete_process): Simplify. Pass process to status_notify, so we
9500 don't try to read output from it.
9501 (status_notify): New arg deleting_process--don't try to read
9502 output from that process.
9503
9504 * lisp.h (deactivate_process, status_notify, read_process_output):
9505 Remove prototypes.
9506
9507 2005-08-14 Richard M. Stallman <rms@gnu.org>
9508
9509 * image.c (syms_of_image): Init Qxbm, Qpbm before calling
9510 define_image_type.
9511
9512 2005-08-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9513
9514 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask): New function.
9515 (xg_get_image_for_pixmap): Move some code to
9516 xg_get_pixbuf_from_pix_and_mask, and call it.
9517
9518 * gtkutil.h (xg_get_pixbuf_from_pix_and_mask): Declare.
9519
9520 * xterm.c (x_wm_set_icon_pixmap): Call xg_get_pixbuf_from_pix_and_mask
9521 to get an GTK icon and set it with GTK functions to avoid having GTK
9522 override an icon set with just X functions.
9523
9524 2005-08-11 Richard M. Stallman <rms@gnu.org>
9525
9526 * image.c (syms_of_image): Init image_types here, and call
9527 define_image_type.
9528 (init_image): Not here.
9529
9530 2005-08-09 Richard M. Stallman <rms@gnu.org>
9531
9532 * bytecode.c (BYTE_CODE_QUIT): Throw t to Vthrow_on_input.
9533
9534 * lisp.h (QUIT): Throw t to Vthrow_on_input.
9535
9536 2005-08-09 Thien-Thi Nguyen <ttn@gnu.org>
9537
9538 * floatfns.c (Fexpt): Use floats for negative exponent.
9539
9540 2005-08-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9541
9542 * gtkutil.c (xg_modify_menubar_widgets): Remove semicolon that
9543 should not be there, causing menu display errors with GTK 2.6.9.
9544
9545 2005-08-07 Richard M. Stallman <rms@gnu.org>
9546
9547 * floatfns.c (Fexpt): Undo previous change.
9548
9549 * dispnew.c (Fframe_or_buffer_changed_p): Take an arg
9550 so it can be used with various state vectors.
9551
9552 * emacs.c (endif): Convert -script into -scriptload.
9553 (standard_args): Add -scriptload. Allow -basic-display with one dash.
9554
9555 * fns.c (syms_of_fns): Add `emacs' to features.
9556
9557 * term.c (set_terminal_modes): If no TS_termcap_modes string,
9558 output newlines to scroll the old screen contents off the screen.
9559
9560 2005-08-06 Thien-Thi Nguyen <ttn@gnu.org>
9561
9562 * floatfns.c (Fexpt): Use floats for negative exponent.
9563 Reported by D Goel.
9564
9565 2005-08-02 Richard M. Stallman <rms@gnu.org>
9566
9567 * frame.c (Fframe_char_width): Doc fix.
9568
9569 2005-07-30 Juanma Barranquero <lekktu@gmail.com>
9570
9571 * xdisp.c (syms_of_xdisp) <redisplay-end-trigger-functions>:
9572 Defvar it.
9573
9574 2005-07-28 Juanma Barranquero <lekktu@gmail.com>
9575
9576 * w32fns.c (my_set_window_pos, my_show_window): Don't declare.
9577 (my_create_window, my_create_tip_window): Make static.
9578
9579 * w32term.c (my_show_window, my_set_window_pos, my_set_focus)
9580 (my_set_foreground_window, my_destroy_window): Make static.
9581
9582 2005-07-26 Paul Eggert <eggert@cs.ucla.edu>
9583
9584 Merge gnulib getopt implementation into Emacs.
9585
9586 * s/cygwin.h (C_SWITCH_SYSTEM): Remove, since gettext.h is
9587 now part of lib-src.
9588
9589 2005-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
9590
9591 * eval.c (Fdefvar): Allow (defvar enable-multibyte-characters).
9592
9593 2005-07-25 Jason Rumney <jasonr@gnu.org>
9594
9595 * w32menu.c (w32_menu_display_help): Suppress tooltip when
9596 navigating menus with the keyboard.
9597
9598 2005-07-23 Richard M. Stallman <rms@gnu.org>
9599
9600 * insdel.c (syms_of_insdel): staticpro combine_after_change_buffer.
9601
9602 * bytecode.c (MAYBE_GC): Test gc_cons_threshold and
9603 gc_relative_threshold, one by one.
9604
9605 * keyboard.c (read_char): Test gc_cons_threshold.
9606 (syms_of_keyboard): staticpro Qecho_area_clear_hook.
9607
9608 * eval.c (Feval, Ffuncall): Test gc_cons_threshold and
9609 gc_relative_threshold, one by one.
9610
9611 * alloc.c (gc_cons_threshold): Not static.
9612 (gc_cons_combined_threshold): Var deleted.
9613 (gc_relative_threshold): New variable.
9614 (Fgarbage_collect, init_alloc_once): Compute gc_relative_threshold
9615 instead of gc_cons_combined_threshold.
9616
9617 * lisp.h (gc_cons_threshold, gc_relative_threshold): Declare.
9618 (gc_cons_combined_threshold): Declaration deleted.
9619
9620 2005-07-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9621
9622 * mac.c: Don't include stdlib.h or string.h.
9623 (Fdo_applescript, Fmac_file_name_to_posix)
9624 (Fmac_file_name_to_posix): Doc fixes.
9625 [TARGET_API_MAC_CARBON] (Fmac_get_preference)
9626 (Fmac_code_convert_string): Likewise.
9627 [MAC_OSX] (init_mac_osx_environment): Fall back on terminal mode
9628 if the executable is not contained in a bundle.
9629
9630 * macfns.c: Don't include stdlib.h or string.h. Include atimer.h.
9631 (gray_width, gray_height): Remove defines.
9632 (gray_bits, gray_bitmap_width, gray_bitmap_height)
9633 (gray_bitmap_bits): Remove variables.
9634 (lispy_function_keys): Remove extern.
9635 (free_frame_menubar): Add extern.
9636 (x_window_to_frame): Remove function.
9637 (unwind_create_tip_frame): Add declaration.
9638 (x_set_name_internal): New function.
9639 (x_set_name, x_set_title): Use it.
9640 (Fx_create_frame, Fx_display_grayscale_p, Fx_display_pixel_width)
9641 (Fx_display_pixel_height, Fx_display_planes)
9642 (Fx_display_color_cells, Fx_server_max_request_size)
9643 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
9644 (Fx_display_mm_height, Fx_display_mm_width)
9645 (Fx_display_backing_store, Fx_display_visual_class)
9646 (Fx_display_save_under, Fx_synchronize, Fx_show_tip): Doc fixes.
9647
9648 * macmenu.c (Fx_popup_menu, Fx_popup_dialog): Doc fixes.
9649
9650 * macselect.c (Fx_own_selection_internal): Follow error conventions.
9651 (Fx_get_selection_internal, Fx_selection_owner_p)
9652 (Fx_selection_exists_p): Doc fixes.
9653 (syms_of_macselect) <selection-converter-alist>: Likewise.
9654
9655 2005-07-21 Juanma Barranquero <lekktu@gmail.com>
9656
9657 * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
9658
9659 * ccl.c (Fregister_ccl_program): Fix typos in docstring.
9660 (Fccl_execute_on_string): Likewise; add usage info.
9661
9662 * composite.c (Fcompose_region_internal)
9663 (Fcompose_string_internal):
9664 Improve argument/docstring consistency.
9665
9666 * minibuf.c (Fminibuffer_prompt_end, Feval_minibuffer):
9667 Fix typos in docstrings.
9668
9669 * textprop.c (Fnext_char_property_change)
9670 (Fprevious_char_property_change): Doc fixes.
9671
9672 * window.c (Fset_window_margins, Fset_window_fringes):
9673 Improve argument/docstring consistency.
9674
9675 * xfaces.c (Finternal_lisp_face_p): Doc fix.
9676
9677 2005-07-21 Andreas Schwab <schwab@suse.de>
9678
9679 * eval.c (restore_stack_limits): Return a value.
9680
9681 2005-07-20 Juanma Barranquero <lekktu@gmail.com>
9682
9683 * eval.c (Fdefvar): Doc fix.
9684
9685 2005-07-20 Kim F. Storm <storm@cua.dk>
9686
9687 * fileio.c (Fdo_auto_save, do_auto_save_unwind):
9688 Use make_save_value to unwind protect stream.
9689
9690 * lread.c (Fload, load_unwind):
9691 Use make_save_value to unwind protect stream.
9692
9693 2005-07-19 Juanma Barranquero <lekktu@gmail.com>
9694
9695 * eval.c (Fprog2, Fcalled_interactively_p),
9696 (syms_of_eval) <debug-on-quit>: Doc fixes.
9697 (syms_of_eval) <max-specpdl-size>:
9698 (Finteractive_p): Fix typos in docstrings.
9699
9700 2005-07-19 Kim F. Storm <storm@cua.dk>
9701
9702 * w32fns.c (Vx_hand_shape): Variable removed.
9703 (syms_of_w32fns): Intern and staticpro Qw32_charset_default.
9704
9705 2005-07-19 Kenichi Handa <handa@m17n.org>
9706
9707 * fns.c (Fstring_as_multibyte): Escape backslashes in the docstring.
9708
9709 2005-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9710
9711 * buffer.h (Fgenerate_new_buffer_name): Declare (for use in coding.c).
9712
9713 2005-07-18 Kim F. Storm <storm@cua.dk>
9714
9715 * frame.h (struct frame): New member already_hscrolled_p.
9716
9717 * xdisp.c (redisplay_internal): Only try to hscroll each frame once
9718 to avoid redisplay looping hscrolling back and forth ad infinitum.
9719
9720 2005-07-18 Juri Linkov <juri@jurta.org>
9721
9722 * buffer.c (scroll-up-aggressively, scroll-down-aggressively):
9723 * keymap.c (Fminor_mode_key_binding):
9724 * macterm.c (mac-emulate-three-button-mouse):
9725 Delete duplicate duplicate words.
9726
9727 2005-07-18 Ken Raeburn <raeburn@gnu.org>
9728
9729 * minibuf.c (Ftest_completion): Fix odd syntax in test.
9730
9731 2005-07-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9732
9733 * macfns.c (x_set_cursor_color): Use XSetBackground and XSetForeground.
9734
9735 * macgui.h (struct _XGC): New struct.
9736 (GC): Use it.
9737 (GCForeground, GCBackground, GCFont): Use X11 mask values.
9738 (XCreateGC, XParseGeometry): Move externs to macterm.h.
9739
9740 * macterm.c (x_bitmap_icon, x_make_frame_visible): Remove declarations.
9741 (XSetFont): Add declaration.
9742 (mac_set_forecolor, mac_set_backcolor, mac_set_colors):
9743 Remove functions.
9744 (GC_FORE_COLOR, GC_BACK_COLOR, GC_FONT, MAC_WINDOW_NORMAL_GC):
9745 New defines.
9746 (XDrawLine, mac_draw_line_to_pixmap, XClearWindow)
9747 (mac_draw_bitmap, XCreatePixmapFromBitmapData, XFillRectangle)
9748 (mac_draw_rectangle, mac_draw_string_common, mac_scroll_area):
9749 Use them.
9750 (mac_erase_rectangle): New function.
9751 (XClearArea, x_draw_fringe_bitmap, x_clear_glyph_string_rect)
9752 (x_draw_stretch_glyph_string): Use it.
9753 (XChangeGC, XCreateGC, XGetGCValues, XSetForeground)
9754 (XSetBackground, XSetFont): Adjust for new GC implementation.
9755 (x_draw_fringe_bitmap, x_draw_box_rect): Use GC to set colors.
9756 (XTset_vertical_scroll_bar): Clear area under scroll bar.
9757
9758 * macterm.h (struct mac_display_info): Change types of
9759 scratch_cursor_gc black_relief.gc, and white_relief.gc to GC.
9760 (XCreateGC, XParseGeometry): Move externs from macgui.h.
9761
9762 * xfaces.c [MAC_OS] (XCreateGC): Remove extern.
9763
9764 2005-07-16 Richard M. Stallman <rms@gnu.org>
9765
9766 * buffer.c (Fmake_overlay): Doc fix.
9767
9768 2005-07-16 Eli Zaretskii <eliz@gnu.org>
9769
9770 * w32proc.c (syms_of_ntproc): staticpro Qhigh, Qlow,
9771 Vw32_valid_locale_ids, and Vw32_valid_codepages.
9772
9773 2005-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9774
9775 * mac.c [TARGET_API_MAC_CARBON] (Fmac_code_convert_string):
9776 Use Fstring_as_unibyte instead of string_make_unibyte.
9777
9778 2005-07-15 Richard M. Stallman <rms@gnu.org>
9779
9780 * xdisp.c (select_frame_for_redisplay): Use find_symbol_value.
9781
9782 2005-07-15 Kim F. Storm <storm@cua.dk>
9783
9784 * xdisp.c: Fix redisplay loop in last change.
9785 (IT_POS_VALID_AFTER_MOVE_P): New macro.
9786 (move_it_vertically_backward, move_it_by_lines): Use it.
9787
9788 2005-07-14 Jason Rumney <jasonr@gnu.org>
9789
9790 * w32.c (init_environment): Default HOME directory to user's
9791 appdata directory if possible.
9792
9793 2005-07-14 Kim F. Storm <storm@cua.dk>
9794
9795 * .gdbinit (pitx): Fix output format. Print string charpos.
9796
9797 * lread.c (syms_of_lread): Initialize seen_list.
9798
9799 * search.c (syms_of_search): Staticpro searchbuf.whitespace_regexp.
9800
9801 * syntax.c (syms_of_syntax): Staticpro lisp objects in gl_state.
9802 Staticpro re_match_object.
9803
9804 2005-07-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9805
9806 * macselect.c (get_scrap_target_type_list): Avoid NULL pointer
9807 dereference.
9808
9809 * macterm.c (mac_window_to_frame): Remove duplicate define.
9810
9811 2005-07-14 Kenichi Handa <handa@m17n.org>
9812
9813 * coding.c (code_convert_region_unwind): ARG is changed to a cons.
9814 (code_convert_region): Adjust for the above change.
9815 (set_conversion_work_buffer): If the work buffer is already in
9816 use, generate a new buffer and return it. Otherwise return Qnil.
9817 (run_pre_post_conversion_on_str): Adjust for the above change.
9818 (run_pre_write_conversin_on_c_str): Likewise.
9819
9820 2005-07-13 Kim F. Storm <storm@cua.dk>
9821
9822 * xdisp.c (start_display): Don't reseat to next visible line start
9823 if current start position is in a string or image.
9824 (move_it_vertically_backward): Be sure to move out of strings and
9825 images when moving it2 forward.
9826 (move_it_by_lines): When moving forward, move to next buffer
9827 position if we end up in a string or image. When moving backward,
9828 count rows moved over when moving to start of current row in case
9829 row starts in middle of a string or image. Also move further
9830 backward if we end up in a string or image.
9831 (try_cursor_movement): If overlay string spans multiple lines,
9832 move backward to set cursor on start of an overlay string.
9833 (cursor_row_p): Row is ok if cursor is at newline from string, but
9834 string starts on this line (so we always position cursor at start
9835 of string).
9836
9837 * indent.c (Fvertical_motion): If start position is on an image,
9838 don't move back if we move too far (that's almost certain to happen).
9839
9840 * xdisp.c (cursor_row_fully_visible_p): Allow partially visible
9841 row in minibuffer windows.
9842 (try_window): Don't check margins in minibuffer windows.
9843
9844 2005-07-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9845
9846 * macterm.c: Don't include stdlib.h or composite.h.
9847 (x_use_underline_position_properties, last_mouse_press_frame)
9848 (x_noop_count, Qvendor_specific_keysyms): Remove unused variables.
9849 (syms_of_macterm, mac_initialize): Don't initialize them.
9850 (waiting_for_input, initial_argv, initial_argc)
9851 (Vcommand_line_args, Vx_no_window_manager, errno, window_scroll)
9852 (set_frame_menubar, path_from_vol_dir_name): Remove externs.
9853 (extra_keyboard_modifiers): Fix type in extern.
9854 (x_window_to_frame, x_window_to_scroll_bar): Remove declarations.
9855 (x_scroll_bar_report_motion): Add argument types to declaration.
9856 (mac_compute_glyph_string_overhangs): Add declaration.
9857 (disable_mouse_highlight): Remove unused variable.
9858 [USE_TOOLKIT_SCROLL_BARS] (construct_scroll_bar_click)
9859 (x_scroll_bar_handle_press, x_scroll_bar_handle_release)
9860 (x_scroll_bar_handle_drag): Remove argument `timestamp'.
9861 All callers changed.
9862 [USE_TOOLKIT_SCROLL_BARS] (construct_scroll_bar_click): Don't set
9863 timestamp.
9864 [USE_CARBON_EVENTS] (mac_handle_mouse_event): Likewise.
9865 (x_scroll_bar_create, XTset_vertical_scroll_bar): Show scroll bar
9866 only when its width is less than the height.
9867 (XTredeem_scroll_bar): Sync with xterm.c.
9868 (font_name_table, font_name_table_size, font_name_count):
9869 Make static.
9870 (drag_and_drop_file_list): Remove variable. Previous use is now
9871 local to function.
9872 (do_ae_open_documents): Move DRAG_N_DROP event construction part
9873 from XTread_socket.
9874 (XTread_socket): Consolidate setting of event timestamp.
9875 Move DRAG_N_DROP event construction part to do_ae_open_documents.
9876 Support extra_keyboard_modifiers.
9877
9878 * xfaces.c (try_font_list) [MAC_OS]: Try font family name
9879 beginning with that for ASCII.
9880
9881 2005-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
9882
9883 * alloc.c (gc_cons_combined_threshold, Vgc_cons_percentage): New vars.
9884 (Fgarbage_collect, init_alloc_once): Set gc_cons_combined_threshold.
9885 (syms_of_alloc): Declare gc-cons-percentage.
9886
9887 * eval.c (Feval, Ffuncall):
9888 * keyboard.c (read_char):
9889 * bytecode.c (MAYBE_GC): Use gc_cons_combined_threshold.
9890
9891 * lisp.h (gc_cons_combined_threshold): Declare.
9892
9893 2005-07-12 Kim F. Storm <storm@cua.dk>
9894
9895 * coding.c (Qprocess_argument):
9896 * coding.h (Qprocess_argument): Remove unused var.
9897
9898 * xselect.c (intern): Remove dup. intern and staticpro for QTIMESTAMP.
9899
9900 2005-07-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9901
9902 * mac.c [!TARGET_API_MAC_CARBON]: Include charset.h, coding.h, and
9903 Endian.h.
9904 [!MAC_OSX] (fchmod, fchown): New functions.
9905 (mac_get_code_from_arg): Don't accept Lisp integer as argument.
9906 Use SBYTES and EndianU32_BtoN.
9907 (mac_get_object_from_code): Return 4 byte string even if argument
9908 is 0. Use make_unibyte_string and EndianU32_NtoB.
9909 (Fmac_get_file_creator, Fmac_get_file_type, Fmac_set_file_creator)
9910 (Fmac_set_file_type): Fix documents and argument declarations.
9911 Don't specify kFSCatInfoNodeFlags. Support Mac OS Classic.
9912
9913 2005-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
9914
9915 * window.c (Frecenter): Yet another int/Lisp_Object mixup (YAILOM).
9916
9917 2005-07-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
9918
9919 * xfaces.c (x_update_menu_appearance): Use fontSet resource for
9920 Lucid if X_I18N, font otherwise.
9921
9922 2005-07-10 Steven Tamm <steventamm@mac.com>
9923
9924 * mac.c (Fmac_get_file_type, Fmac_get_file_creator): Add.
9925 (Fmac_set_file_type, Fmac_set_file_creator): Add.
9926 (mac_get_object_from_code, mac_get_code_from_arg): Add.
9927
9928 2005-07-10 Richard M. Stallman <rms@gnu.org>
9929
9930 * lread.c (Qeval_buffer_list, Veval_buffer_list): New vars.
9931 (syms_of_lread): Set up eval-buffer-list.
9932 (Feval_buffer, Feval_region): Bind eval-buffer-list.
9933
9934 2005-07-08 Richard M. Stallman <rms@gnu.org>
9935
9936 * eval.c (Fdefvar): Allow defvaring a constant to itself quoted.
9937
9938 2005-07-08 Kim F. Storm <storm@cua.dk>
9939
9940 * keyboard.c (menu_bar_items): Don't GCPRO menu_bar_items_vector here.
9941 (syms_of_keyboard): Initialize and staticpro menu_bar_items_vector.
9942
9943 2005-07-07 Kim F. Storm <storm@cua.dk>
9944
9945 * window.c (Frecenter): Fix last change (set iarg before use).
9946
9947 2005-07-06 Richard M. Stallman <rms@gnu.org>
9948
9949 * window.c (Frecenter): When arg is inside the scroll margin,
9950 move it out of the margin.
9951
9952 2005-07-06 Jason Rumney <jasonr@gnu.org>
9953
9954 * w32console.c (initialize_w32_display): Detect when the console
9955 dimensions are insane, and default to 80x25 instead.
9956 (w32_use_full_screen_buffer): Default to nil.
9957
9958 2005-07-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9959
9960 * macterm.c (mac_draw_vertical_window_border): Use foreground of
9961 VERTICAL_BORDER_FACE_ID for vertical border line.
9962 (mac_encode_char): Call check_ccl_update in advance.
9963 (mac_to_x_fontname, x_font_name_to_mac_font_name)
9964 (init_font_name_table, mac_do_list_fonts, XLoadQueryFont):
9965 Don't assume that font family length is less than 32.
9966 (x_compute_min_glyph_bounds): Make static.
9967 (x_load_font): Never set fonts_changed_p to zero.
9968
9969 2005-07-04 Lute Kamstra <lute@gnu.org>
9970
9971 * Update FSF's address in GPL notices.
9972
9973 2005-07-03 Richard M. Stallman <rms@gnu.org>
9974
9975 * xdisp.c (try_window): Fix previous change in how it handles
9976 a partially-visible line or one only partly past the margin.
9977
9978 * window.c (window_scroll_pixel_based): Take account
9979 of this_scroll_margin when finding point when scrolling up.
9980
9981 2005-06-29 Ralf Angeli <angeli@iwi.uni-sb.de>
9982
9983 * window.c (window_scroll_pixel_based, window_scroll_line_based):
9984 Handle `scroll-preserve-screen-position' non-nil, non-t specially.
9985 (syms_of_window) <scroll-preserve-screen-position>: Doc fix.
9986
9987 2005-07-02 Juri Linkov <juri@jurta.org>
9988
9989 * w32term.c (w32_draw_vertical_window_border): Use foreground of
9990 VERTICAL_BORDER_FACE_ID for vertical border line.
9991
9992 2005-07-02 Eli Zaretskii <eliz@gnu.org>
9993
9994 * fileio.c (Fcopy_file): Rearrange the code that calls fchown and
9995 fchmod so that chmod doesn't get called on MSDOS before the file
9996 is closed.
9997
9998 2005-07-01 Jason Rumney <jasonr@gnu.org>
9999
10000 * w32term.c (cleartype_active): New flag for enabling sub-pixel
10001 workaround.
10002 (w32_initialize): Initialize it.
10003 (w32_native_per_char_metric): Allow a couple of extra pixels when
10004 Cleartype is active.
10005
10006 * w32term.c (w32_initialize): Move check for screen reader here
10007 from syms_of_w32term.
10008
10009 2005-06-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10010
10011 * xterm.c (handle_one_xevent): bzero compose_status when nbytes
10012 is not zero.
10013
10014 2005-07-01 Masatake YAMATO <jet@gyve.org>
10015
10016 * emacs.c (main): Passing ADD_NO_RANDOMIZE to `personality'.
10017
10018 2005-06-30 Juri Linkov <juri@jurta.org>
10019
10020 * xdisp.c (x_draw_vertical_border): If left fringe is not present
10021 decrease x coord of vertical border by 1 pixel to not occupy text
10022 area of the right window.
10023
10024 * xterm.c (x_draw_vertical_window_border): Use foreground of
10025 VERTICAL_BORDER_FACE_ID for vertical border line.
10026
10027 * term.c (turn_on_face): In standout mode apply specified
10028 fg to bg, and specified bg to fg (this makes the logic of
10029 inversion on terminal consistent with X).
10030
10031 2005-06-29 Juanma Barranquero <lekktu@gmail.com>
10032
10033 * eval.c (user_variable_p_eh): New function.
10034 (Fuser_variable_p): Use it. Clarify docstring.
10035 Return t for aliases of user options, nil for alias loops.
10036
10037 2005-06-27 Richard M. Stallman <rms@gnu.org>
10038
10039 * eval.c (Fdefvar): Improve error message.
10040
10041 2005-06-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10042
10043 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Fix last
10044 change.
10045
10046 2005-06-27 Juanma Barranquero <lekktu@gmail.com>
10047
10048 * eval.c (Fdefvar): Don't try to set constant symbols.
10049
10050 2005-06-25 Richard M. Stallman <rms@gnu.org>
10051
10052 * macfns.c (Fx_show_tip): Pass new arg to try_window.
10053
10054 * w32fns.c (Fx_show_tip): Pass new arg to try_window.
10055
10056 * xfns.c (Fx_show_tip): Pass new arg to try_window.
10057
10058 * xdisp.c (try_window): New arg CHECK_MARGINS. Calls changed.
10059 (redisplay_window): Handle try_window reporting point in scroll margin.
10060
10061 * dispextern.h (try_window): Declare new arg.
10062
10063 * fileio.c (Fcopy_file): New arg PRESERVE_UID_GID.
10064 Use fchmod to copy the file modes.
10065 (Frename_file): Don't copy UID and GID here;
10066 instead, specify t for PRESERVE_UID_GID when calling Fcopy_file.
10067
10068 * eval.c (call_debugger): Take full care of extending stack limits
10069 to make space for the debugger, and restore the change afterward.
10070 Bind debug-on-error to nil.
10071 (restore_stack_limits): New subroutine.
10072 (Fsignal): Extend specpdl bound along with eval depth bound,
10073 for calling edebug. Don't do either one, for calling debugger.
10074 (find_handler_clause): Don't bind debug-on-error here.
10075 Don't unbind anything either.
10076 Temporarily advance max_specpdl_size for calling
10077 internal_with_output_to_temp_buffer.
10078 (grow_specpdl): Don't alter max_specpdl_size before signaling
10079 an error.
10080 (syms_of_eval) <max-specpdl-size>: Doc fix.
10081
10082 * lread.c (read1): 0.0e+NaN should make a "positive" NaN.
10083
10084 2005-06-24 Eli Zaretskii <eliz@gnu.org>
10085
10086 * fileio.c (Frename_file): Undo last change: no need to ifdef away
10087 chown on DOS_NT platforms.
10088
10089 * w32.c (sys_chown): New function.
10090
10091 * s/ms-w32.h (chown): New; define to sys_chown.
10092
10093 2005-06-24 Juanma Barranquero <lekktu@gmail.com>
10094
10095 * xdisp.c (syms_of_xdisp) <nobreak-char-display>: Doc fix.
10096 (syms_of_xdisp) <void-text-area-pointer>: Doc fix.
10097
10098 * fileio.c (Frename_file)[!DOS_NT]: Don't call chown on MSDOS/Windows.
10099
10100 2005-06-23 Richard M. Stallman <rms@gnu.org>
10101
10102 * xdisp.c (get_next_display_element): Finish reversing the tests of
10103 Vnobreak_char_display.
10104
10105 * xdisp.c (Vnobreak_char_display): Rename from Vshow_nonbreak_escape.
10106 All uses changed.
10107 (Qnobreak_space): Rename from Qno_break_space. All uses changed.
10108 (syms_of_xdisp): Define nobreak-char-display and nobreak-space.
10109
10110 * fileio.c (Frename_file): Preserve owner and group, if possible,
10111 when copying.
10112
10113 2005-06-23 Juanma Barranquero <lekktu@gmail.com>
10114
10115 * abbrev.c (Funexpand_abbrev):
10116 * category.c (Fmake_category_set):
10117 * dispnew.c (Fsleep_for, Fsit_for):
10118 * editfns.c (Fsubst_char_in_region):
10119 * eval.c (Fdefvar, Fdefconst, Feval, Ffuncall):
10120 * frame.c (make_frame_without_minibuffer):
10121 * lread.c (read_vector):
10122 * macfns.c (check_x_frame):
10123 * process.c (Fstop_process, Fcontinue_process):
10124 * search.c (Freplace_match):
10125 * syntax.c (Fstring_to_syntax):
10126 * w32fns.c (check_x_frame, check_x_display_info):
10127 * xfaces.c (x_supports_face_attributes_p):
10128 * xselect.c (Fx_own_selection_internal): Follow error conventions.
10129
10130 * image.c (fn_png_init_io): Don't define it.
10131 (init_png_functions) [HAVE_NTGUI]: Don't initialize fn_png_init_io.
10132 (png_read_from_file): New function, based on png_read_from_memory.
10133 (png_load): Use it, instead of fn_png_init_io.
10134
10135 2005-06-23 Kim F. Storm <storm@cua.dk>
10136
10137 * search.c (Fmatch_data): Remove evaporate option.
10138 (Fset_match_data): Do not mention evaporate option in doc string.
10139 Add commentary explaining evaporate arg (for internal use only).
10140 (unwind_set_match_data): Add comment on evaporate use.
10141
10142 2005-06-22 Miles Bader <miles@gnu.org>
10143
10144 * xfaces.c (Qvertical_border): Rename from `Qvertical_divider'.
10145 (realize_basic_faces, syms_of_xfaces): Update references to it.
10146 * dispextern.h (enum face_id): Rename `VERTICAL_DIVIDER_FACE_ID'
10147 to `VERTICAL_BORDER_FACE_ID'.
10148 * dispnew.c (build_frame_matrix_from_leaf_window): Update references.
10149
10150 2005-06-21 Juri Linkov <juri@jurta.org>
10151
10152 * dispextern.h: Add extern Qframe_set_background_mode.
10153
10154 * xfaces.c: Rename obsolete function Qframe_update_face_colors to
10155 Qframe_set_background_mode.
10156
10157 * frame.c (Fmodify_frame_parameters):
10158 Call frame-set-background-mode after changing the background color
10159 on non-window non-dos branch.
10160
10161 2005-06-21 Juanma Barranquero <lekktu@gmail.com>
10162
10163 * fns.c (Fchar_table_range):
10164 * process.c (Fmake_network_process): Fix spellings.
10165
10166 2005-06-20 Kim F. Storm <storm@cua.dk>
10167
10168 * fns.c (Fsort): Doc fix.
10169
10170 2005-06-20 Miles Bader <miles@gnu.org>
10171
10172 * xfaces.c (Qvertical_divider): New variable.
10173 (realize_basic_faces): Realize its face.
10174 (syms_of_xfaces): Initialize it.
10175
10176 * dispextern.h (enum face_id): Add `VERTICAL_DIVIDER_FACE_ID'.
10177
10178 * dispnew.c (build_frame_matrix_from_leaf_window): Display vertical
10179 window-separator on ttys using `vertical-divider' face by default.
10180
10181 2005-06-17 Richard M. Stallman <rms@gnu.org>
10182
10183 * xdisp.c (get_next_display_element):
10184 Reverse test of Vshow_nonbreak_escape.
10185
10186 * term.c (produce_special_glyphs): Use spec_glyph_lookup_face.
10187 (Ftty_no_underline): New function.
10188 (syms_of_term): defsubr it.
10189
10190 * keyboard.c (read_char): Call restore_getcjmp after jump occurs.
10191
10192 * dispnew.c (spec_glyph_lookup_face): New function.
10193 (build_frame_matrix_from_leaf_window): Use it.
10194
10195 * dispextern.h (spec_glyph_lookup_face): Add declaration.
10196
10197 * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
10198
10199 2005-06-12 Richard M. Stallman <rms@gnu.org>
10200
10201 * keyboard.c (read_char): After catching a longjmp,
10202 call restore_getcjmp.
10203
10204 2005-06-17 Juanma Barranquero <lekktu@gmail.com>
10205
10206 * xselect.c (lisp_data_to_selection_data): Fix spelling.
10207
10208 2005-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10209
10210 * macterm.c (mac_compute_glyph_string_overhangs): Don't set
10211 overhangs unless the given glyph type is noncomposite CHAR_GLYPH.
10212 [USE_CARBON_EVENTS] (mac_convert_event_ref): Convert dead key down
10213 events.
10214 (XTread_socket): Don't pass keyboard events with the option
10215 modifier to the system when Vmac_command_key_is_meta is nil or
10216 Vmac_option_modifier is non-nil.
10217 [USE_CARBON_EVENTS] (read_socket_inev): New variable.
10218 [USE_CARBON_EVENTS] (init_command_handler): Fix argument.
10219 [USE_CARBON_EVENTS] (mac_handle_mouse_event): New Carbon event
10220 handler function.
10221 (install_window_handler) [USE_CARBON_EVENTS]: Install it.
10222 (XTread_socket) [USE_CARBON_EVENTS]: Move mouse wheel event
10223 handler part to mac_handle_mouse_event.
10224
10225 2005-06-14 Juanma Barranquero <lekktu@gmail.com>
10226
10227 * eval.c (Fdefvaralias): Rename arguments SYMBOL and ALIASED to
10228 NEW-ALIAS and BASE-VARIABLE, respectively.
10229
10230 2005-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
10231
10232 * xdisp.c (note_mode_line_or_margin_highlight): Lisp_Object/int mixup.
10233 (get_phys_cursor_geometry, format_mode_line_unwind_data)
10234 (get_line_height_property, x_produce_glyphs): Remove unused vars.
10235
10236 * coding.c (run_pre_post_conversion_on_str): Remove unused var `buf'.
10237
10238 2005-06-13 Eli Zaretskii <eliz@gnu.org>
10239
10240 * w32term.c (x_use_underline_position_properties): New variable.
10241 (x_draw_glyph_string): Remind in a comment to change doc string of
10242 x-use-underline-position-properties if/when underline positioning
10243 is implemented.
10244 (syms_of_w32term): DEFVAR_BOOL x-use-underline-position-properties,
10245 and initialize it to nil.
10246
10247 2005-06-12 Jason Rumney <jasonr@gnu.org>
10248
10249 * w32fns.c (NEWOPENFILENAME): New struct.
10250 (Fx_file_dialog): Use it to trick the system into giving us up to
10251 date dialogs on systems that are documented to support it.
10252 Do not set OFN_FILEMUSTEXIST flag if looking for a directory.
10253
10254 2005-06-12 Eli Zaretskii <eliz@gnu.org>
10255
10256 * w32fns.c (w32_abort): Use the MB_YESNO dialog instead of
10257 MB_ABORTRETRYIGNORE. Never return, even if DebugBreak does.
10258
10259 2005-06-11 Eli Zaretskii <eliz@gnu.org>
10260
10261 * image.c (x_create_x_image_and_pixmap) [HAVE_NTGUI]: Cast 4th arg
10262 to CreateDIBSection to avoid a compiler warning.
10263 (pbm_load): Cast 3rd arg to IMAGE_BACKGROUND to avoid a compiler
10264 warning.
10265 (png_load): Cast return values of fn_png_create_read_struct and
10266 fn_png_create_info_struct, to avoid compiler warnings on W32.
10267 Cast 3rd arg to IMAGE_BACKGROUND and image_background_transparent
10268 to avoid compiler warnings.
10269 (jpeg_load): Cast return value of fn_jpeg_std_error to avoid a
10270 compiler warning on W32. Cast 3rd arg to IMAGE_BACKGROUND to
10271 avoid a compiler warning.
10272 (tiff_load): Cast return values of fn_TIFFOpen and
10273 fn_TIFFClientOpen to avoid compiler warning on W32. Cast 3rd arg
10274 to IMAGE_BACKGROUND to avoid a compiler warning.
10275 (gif_load): Cast return values of fn_DGifOpenFileName and
10276 fn_DGifOpen to avoid compiler warnings on W32. Cast 3rd arg to
10277 IMAGE_BACKGROUND to avoid a compiler warning.
10278 (DrawText) [HAVE_NTGUI || MAC_OS]: If already defined, undef
10279 before redefining.
10280
10281 * w32bdf.c (create_offscreen_bitmap): Cast `bitsp' to `void **' in
10282 the call to CreateDIBSection, to avoid a compiler warning.
10283
10284 2005-06-11 Jason Rumney <jasonr@gnu.org>
10285
10286 * w32fns.c (Fx_file_dialog): Unblock input before falling back to
10287 minibuffer.
10288 * macfns.c (Fx_file_dialog): Likewise.
10289
10290 2005-06-10 Eli Zaretskii <eliz@gnu.org>
10291
10292 * makefile.w32-in ($(TEMACS)): Depend on addsection.exe.
10293
10294 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
10295
10296 * process.c (syms_of_process) [ADAPTIVE_READ_BUFFERING]:
10297 * w32fns.c (syms_of_w32fns): Fix spellings.
10298
10299 2005-06-10 Eli Zaretskii <eliz@gnu.org>
10300
10301 * unexw32.c (COPY_CHUNK, COPY_PROC_CHUNK): Add a new argument
10302 `verbose'; print diagnostic messages only if it is non-zero.
10303 All callers changed to pass a zero value unless DEBUG_DUMP is defined
10304 in the environment.
10305 (copy_executable_and_dump_data): Print section names with %.8s.
10306
10307 2005-06-10 Masatake YAMATO <jet@gyve.org>
10308
10309 * xdisp.c (note_mode_line_or_margin_highlight): Call clear_mouse_face
10310 when mouse_face is not given.
10311
10312 2005-06-09 Luc Teirlinck <teirllm@auburn.edu>
10313
10314 * window.c (Fselect_window): Adapt call to Fselect_frame.
10315
10316 * lisp.h: Update EXFUN of Fselect_frame.
10317
10318 * keyboard.c (command_loop_1): Adapt call to Fselect_frame.
10319
10320 * frame.c (Fhandle_switch_frame, Fselect_frame): Delete unused arg
10321 no_enter.
10322 (Fset_mouse_position, Fset_mouse_pixel_position, Ficonify_frame):
10323 Adapt to above change.
10324
10325 2005-06-10 Juanma Barranquero <lekktu@gmail.com>
10326
10327 * fns.c (Fmemq, Fmaphash): Doc fixes.
10328
10329 2005-06-09 Juanma Barranquero <lekktu@gmail.com>
10330
10331 * xfaces.c (Fdisplay_supports_face_attributes_p):
10332 Fix typo in docstring.
10333
10334 2005-06-08 Steven Tamm <steventamm@mac.com>
10335
10336 * unexmacosx.c (copy_data_segment): Copy __la_sym_ptr2 section
10337 used by gcc4 on intel mac.
10338
10339 2005-06-09 Kim F. Storm <storm@cua.dk>
10340
10341 * search.c (Fmatch_data): Add optional RESEAT arg. Unchain markers
10342 in REUSE list if non-nil; free them if equal to evaporate.
10343 (Fset_match_data): Add optional RESEAT arg. Unchain markers in LIST
10344 if non-nil; free them if equal to evaporate. Use XCAR/XCDR.
10345 (restore_search_regs): Rename from restore_match_data. Uses changed.
10346 (unwind_set_match_data): New function.
10347 (record_unwind_save_match_data): New function like save-match-data.
10348
10349 * lisp.h (Fmatch_data, Fset_match_data): Fix EXFUN.
10350 (record_unwind_save_match_data): Add prototype.
10351 (restore_search_regs): Rename from restore_match_data.
10352
10353 * composite.c (compose_chars_in_text):
10354 * eval.c (do_autoload):
10355 * macmenu.c (set_frame_menubar):
10356 * process.c (read_process_output, exec_sentinel):
10357 * xmenu.c (set_frame_menubar):
10358 * xdisp.c (prepare_menu_bars, update_menu_bar, update_tool_bar):
10359 * w32menu.c (set_frame_menubar):
10360 Use record_unwind_save_match_data.
10361
10362 2005-06-08 Richard M. Stallman <rms@gnu.org>
10363
10364 * xdisp.c (get_next_display_element): Alter previous change:
10365 Distinguish Vshow_nonbreak_escape = t or not t.
10366 For t, use escape_glyph once again, as before previous change.
10367 Use space or hyphen for display, instead of the non-ASCII char.
10368 (syms_of_xdisp) <show-nonbreak-escape>: Doc fix.
10369
10370 * process.c (Fstart_process): Don't touch command_channel_p slot.
10371
10372 * process.h (struct process): Delete command_channel_p.
10373
10374 2005-06-07 Masatake YAMATO <jet@gyve.org>
10375
10376 * xdisp.c (note_mode_line_or_margin_highlight):
10377 Check the overlapping of re-rendering area to avoid flickering.
10378 (note_mouse_highlight): Call clear_mouse_face if PART
10379 is not ON_MODE_LINE nor ON_HEADER_LINE.
10380
10381 2005-06-07 Kim F. Storm <storm@cua.dk>
10382
10383 * process.c: Improve commentary for adaptive read buffering.
10384
10385 2005-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
10386
10387 * xterm.c (x_create_toolkit_scroll_bar): Use XtNarrowScrollbars
10388 if available.
10389
10390 2005-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10391
10392 * macmenu.c (menu_quit_handler, install_menu_quit_handler):
10393 New functions for popping down menus on C-g.
10394 (set_frame_menubar, mac_menu_show): Call install_menu_quit_handler.
10395
10396 * macterm.c: Make mac_quit_char_modifiers and mac_quit_char_keycode
10397 non-static.
10398
10399 * config.in: Add HAVE_CANCELMENUTRACKING.
10400
10401 2005-06-06 Eli Zaretskii <eliz@gnu.org>
10402
10403 * w32heap.h (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_PTR): Remove macros.
10404
10405 * unexw32.c (RVA_TO_PTR): Move here from w32heap.h.
10406
10407 * w32proc.c (RVA_TO_PTR): New macro.
10408
10409 * w32heap.c (RVA_TO_PTR): No need to #undef now.
10410
10411 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/w32select.$(O)):
10412 Depend on w32heap.h.
10413
10414 2005-06-06 Luc Teirlinck <teirllm@auburn.edu>
10415
10416 * keyboard.c (command_loop_1): Update Vthis_original_command.
10417
10418 2005-06-06 Richard M. Stallman <rms@gnu.org>
10419
10420 * xmenu.c (popup_get_selection): Undo previous change.
10421
10422 2005-06-06 Juri Linkov <juri@jurta.org>
10423
10424 * xdisp.c (Qno_break_space): New variable.
10425 (syms_of_xdisp): Initialize it.
10426 (get_next_display_element): Add no-break space and soft hypen
10427 codes for iso8859-2 and iso8859-5. Don't add `\' for them.
10428 Use `no-break-space' face for no-break spaces.
10429
10430 2005-06-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10431
10432 * window.c (delete_window): Handle the case where a h/vchild has
10433 a h/vchild.
10434
10435 2005-06-05 Eli Zaretskii <eliz@gnu.org>
10436
10437 * w32.c (sys_setsockopt): Change arg 4 to `const void *'. In the
10438 call to pfn_setsockopt, cast optval to `const char *'.
10439
10440 2005-06-04 Eli Zaretskii <eliz@gnu.org>
10441
10442 * w32.c (gettimeofday): Use struct _timeb, not struct timeb.
10443 (open_unc_volume): Cast return value of map_w32_filename, to avoid
10444 compiler warnings.
10445
10446 * s/ms-w32.h (fileno): Don't define if already defined.
10447
10448 * emacs.c: Include w32heap.h, to avoid compiler warning about sbrk.
10449
10450 * makefile.w32-in (DOC): Define to point to the generated DOC-X.
10451
10452 2005-06-04 Richard M. Stallman <rms@gnu.org>
10453
10454 * xmenu.c (popup_get_selection): Click not in menu deactivates menu.
10455
10456 2005-06-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10457
10458 * macmenu.c (cleanup_popup_menu): New function.
10459 (Fx_popup_menu): Unwind protect cleanup_popup_menu in case
10460 mac_menu_show Quit:s.
10461 (mac_menu_show): Quit on cancel if not popped up on click (i.e.
10462 a dialog).
10463
10464 2005-06-04 Kim F. Storm <storm@cua.dk>
10465
10466 * coding.c (decode_coding_string): Handle CODING_FINISH_INTERRUPT.
10467
10468 * callproc.c (Fcall_process): Don't use alloca to gradually
10469 increase size of buf, as it effectively uses twice the necessary
10470 space on the stack. Instead, pre-allocate buf of full size, and
10471 gradually increase the read size.
10472
10473 * bytecode.c (BYTE_CODE_QUIT): Check Vthrow_on_input.
10474
10475 * eval.c (unbind_to): Preserve value of Vquit_flag.
10476
10477 * xterm.c (handle_one_xevent): Also ignore mouse motion just
10478 before a button release event.
10479
10480 2005-06-03 Juanma Barranquero <lekktu@gmail.com>
10481
10482 * xfaces.c (Finternal_lisp_face_equal_p): Really report
10483 on faces in a frame, if the argument FRAME is non-nil.
10484 Improve argument/docstring consistency.
10485
10486 2005-06-02 Kim F. Storm <storm@cua.dk>
10487
10488 * xdisp.c (MODE_LINE_NOPROP_LEN): New macro.
10489 (x_consider_frame_title, Fformat_mode_line): Save offset into
10490 mode_line_noprop_buf rather than pointer, in case buffer is relocated.
10491
10492 2005-06-01 Kim F. Storm <storm@cua.dk>
10493
10494 * fns.c (mapcar1): Maybe exit loop if original sequence was modified.
10495
10496 2005-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10497
10498 * macterm.c (mac_to_x_fontname, mac_do_list_fonts): Set XLFD
10499 resolution fields for scalable fonts to 0.
10500
10501 * xfaces.c (build_scalable_font_name): Round pixel size to the
10502 nearest integer.
10503
10504 2005-06-01 Kim F. Storm <storm@cua.dk>
10505
10506 * xdisp.c (display_mode_line): Support nested calls to redisplay
10507 and format-mode-line. Set mode_line_target to MODE_LINE_DISPLAY.
10508
10509 2005-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
10510
10511 * fileio.c (Finsert_file_contents):
10512 * xdisp.c (note_mode_line_or_margin_highlight): Lisp_Object/int mixup.
10513
10514 2005-05-31 Kim F. Storm <storm@cua.dk>
10515
10516 * xdisp.c (mode_line_noprop_buf, mode_line_noprop_buf_end)
10517 (mode_line_noprop_ptr): Rename from frame_title_*.
10518 (store_mode_line_noprop_char): Rename from store_frame_title_char.
10519 (store_mode_line_noprop): Rename from store_frame_title.
10520 (mode_line_target): New enum to specify current output target
10521 for mode line formatting.
10522 (display_mode_element): Test it rather than frame_title_ptr and
10523 mode_line_string_list to determine where output should go.
10524 (mode_line_proptrans_alist, mode_line_string_alist): Make static.
10525 (Vmode_line_unwind_vector): New variable.
10526 (format_mode_line_unwind_data, unwind_format_mode_line):
10527 New functions for unwind protection in mode line formatting.
10528 (x_consider_frame_title): Use them and new local var 'title_start'
10529 to support nested calls to format-mode-line and redisplay.
10530 Set mode_line_target to MODE_LINE_TITLE.
10531 (Fformat_mode_line): Use them and new local var 'string_start' to
10532 support nested calls to format-mode-line and redisplay.
10533 Set mode_line_target to MODE_LINE_NOPROP or MODE_LINE_STRING.
10534 Don't trim trailing dashes.
10535 (decode_mode_spec): Don't make infinite number of trailing dashes
10536 for MODE_LINE_NOPROP and MODE_LINE_STRING targets.
10537 (syms_of_xdisp): Initialize and staticpro mode_line_string_face,
10538 mode_line_string_face_prop, and Vmode_line_unwind_vector.
10539 (init_xdisp): Initialize mode_line_noprop_ptr to start of _buf.
10540 Initialize mode_line_target to MODE_LINE_DISPLAY.
10541
10542 2005-05-29 Richard M. Stallman <rms@gnu.org>
10543
10544 * buffer.c (Fbuffer_local_value): Call indirect_variable.
10545
10546 2005-05-28 Masatake YAMATO <jet@gyve.org>
10547
10548 * xdisp.c (note_mode_line_or_margin_highlight): Change the
10549 pointer to a hand cursor when hoovering over a mouse-face.
10550
10551 2005-05-27 Kenichi Handa <handa@m17n.org>
10552
10553 * xterm.c (x_encode_char): Call check_ccl_update in advance.
10554
10555 * ccl.c: Now an element of Vccl_program_table is a vector of
10556 length 4, not 3.
10557 (ccl_get_compiled_code): New arg idx. Caller changed.
10558 Adjust for the change of Vccl_program_table.
10559 (setup_ccl_program): Adjust for the change of Vccl_program_table.
10560 (check_ccl_update): New function.
10561 (Fregister_ccl_program): Use ASET to set an element of a vector.
10562 Adjusted for the change of Vccl_program_table.
10563
10564 * ccl.h (struct ccl_program): New member idx.
10565 (check_ccl_update): Extern it.
10566
10567 2005-05-27 Juanma Barranquero <lekktu@gmail.com>
10568
10569 * image.c (Vimage_library_alist): Move from image.el.
10570 (syms_of_image): Defvar it.
10571 (lookup_image_type): Use it.
10572
10573 * buffer.c (Fbuffer_local_value): Make argument name match its use
10574 in docstring.
10575
10576 2005-05-26 Juanma Barranquero <lekktu@gmail.com>
10577
10578 * keyboard.c (Frecursive_edit): Fix typo in docstring.
10579 (Fposn_at_x_y): Make argument name match its use in docstring.
10580
10581 2005-05-26 Lute Kamstra <lute@gnu.org>
10582
10583 * eval.c (Frun_hooks): Mention run-mode-hooks in docstring.
10584
10585 2005-05-24 Masatake YAMATO <jet@gyve.org>
10586
10587 * xdisp.c (note_mode_line_or_margin_highlight): Use b and e
10588 as loop sentinels.
10589
10590 2005-05-24 Nick Roberts <nickrob@snap.net.nz>
10591
10592 * xmenu.c (Fx_popup_dialog): Add a third boolean argument to
10593 select frame title ("Question"/"Information").
10594 (xdialog_show): Use it.
10595
10596 * macmenu.c (Fx_popup_dialog, mac_dialog_show): As for xmenu.c.
10597
10598 * w32menu.c (Fx_popup_dialog, w32_dialog_show): As for xmenu.c.
10599
10600 * fns.c (Fyes_or_no_p, Fy_or_n_p): Call Fx_popup_dialog with
10601 a third argument (Qnil).
10602
10603 * lisp.h: x-popup-dialog can have three arguments.
10604
10605 * editfns.c (Fmessage_box): Use "Information" for frame title.
10606
10607 2005-05-23 Thien-Thi Nguyen <ttn@gnu.org>
10608
10609 * termcap.c [VMS]: Include <starlet.h>.
10610
10611 2005-05-23 Masatake YAMATO <jet@gyve.org>
10612
10613 * xdisp.c (note_mode_line_or_margin_highlight): Add code
10614 for mouse-face. Change the type of the first argument from `window'
10615 to `Lisp_Object'.
10616 (note_mouse_highlight): Call note_mode_line_or_margin_highlight with
10617 window instead of w.
10618
10619 2005-05-22 Andreas Schwab <schwab@suse.de>
10620
10621 * process.c (send_process): Move misplaced volatile.
10622
10623 2005-05-21 Richard M. Stallman <rms@gnu.org>
10624
10625 * xdisp.c (display_mode_element): If we're processing a list and
10626 padding is specified, put it after the last element.
10627
10628 2005-05-21 Eli Zaretskii <eliz@gnu.org>
10629
10630 * fileio.c (Fexpand_file_name) [DOS_NT]: Don't try to support
10631 "superroot" on DOS_NT systems.
10632
10633 2005-05-21 David Hunter <hunterd42@comcast.net> (tiny change)
10634
10635 * process.c (send_process): Restore the SIGPIPE handler if we
10636 catch a SIGPIPE.
10637
10638 2005-05-20 Juanma Barranquero <lekktu@gmail.com>
10639
10640 * image.c (lookup_image, png_read_from_memory): Remove hacks (and
10641 misleading comments).
10642 (DEF_IMGLIB_FN): Use C calling convention for image libraries.
10643
10644 2005-05-20 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
10645
10646 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges):
10647 Correct the right value.
10648
10649 2005-05-19 Nick Roberts <nickrob@snap.net.nz>
10650
10651 * keyboard.c (syms_of_keyboard): Remove Lisp variables
10652 post-command-idle-hook and post-command-idle-delay.
10653 (command_loop_1): Don't try to execute post-command-idle-hook.
10654
10655 2005-05-16 Kim F. Storm <storm@cua.dk>
10656
10657 * xdisp.c (handle_display_prop): Handle empty replacement.
10658 (handle_single_display_spec): Return -1 for empty replacement.
10659
10660 * keyboard.c (adjust_point_for_property): Skip empty overlay string.
10661
10662 * .gdbinit (pitx): Print more info about iterator.
10663
10664 2005-05-16 Andreas Schwab <schwab@suse.de>
10665
10666 * unexmacosx.c (unexec_realloc): Move declarations before statements.
10667
10668 2005-05-14 Richard M. Stallman <rms@gnu.org>
10669
10670 * xdisp.c (message3): Call cancel_echoing.
10671
10672 * alloc.c (Fmemory_full_p): New function.
10673 (syms_of_alloc): defsubr it.
10674
10675 * process.c (send_process_trap): Unblock SIGPIPE.
10676 (send_process): Reset SIGPIPE handler before reporting error.
10677
10678 2005-05-14 Nick Roberts <nickrob@snap.net.nz>
10679
10680 * emacs.c (syms_of_emacs): Fix doc string for system-type.
10681
10682 2005-05-13 Richard M. Stallman <rms@gnu.org>
10683
10684 * fileio.c (Ffind_file_name_handler): Handle lambda-exp as handler.
10685 (Finsert_file_contents): If we read 0 bytes from a special file,
10686 unlock the visited file if we locked it.
10687 (Fmake_symbolic_link, Frecent_auto_save_p): Doc fixes.
10688 (Ffile_exists_p, Ffile_symlink_p): Doc fixes.
10689
10690 2005-05-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10691
10692 * emacs.c (main) [MAC_OS8]: Call init_atimer before mac_term_init.
10693
10694 * keyboard.c (readable_events) [USE_TOOLKIT_SCROLL_BARS]:
10695 Regard toolkit scroll bar thumb drag events as squeezable and prevent
10696 redisplay from being paused by them.
10697
10698 * mac.c [!MAC_OSX]: Include keyboard.h and syssignal.h.
10699 [!MAC_OSX] (target_ticks): Remove variable.
10700 [!MAC_OSX] (check_alarm, pause, index): Remove functions.
10701 [!MAC_OSX && __MRC__] (sys_strftime): Likewise.
10702 [!MAC_OSX] (select): If fd 0 is not set in rfds and some input
10703 event occurs before timeout, behave as if the function were interrupted.
10704 [!MAC_OSX] (sigblock, sigsetmask, alarm): Simulate SIGALRM
10705 handling using Time Manager routines.
10706 [!MAC_OSX] (mac_atimer_task, mac_atimer_qlink, signal_mask):
10707 New variables.
10708 [!MAC_OSX] (mac_atimer_handler, set_mac_atimer, remove_mac_atimer)
10709 (setitimer): New functions.
10710
10711 * macfns.c, macmenu.c: Don't include signal.h.
10712
10713 * macterm.c [USE_TOOLKIT_SCROLL_BARS] (get_control_part_bounds):
10714 Rename from get_control_part_bound. All callers changed.
10715 (x_scroll_bar_clear): New function.
10716 (x_clear_frame): Use it.
10717 (XTset_vertical_scroll_bar): Don't call Draw1Control.
10718 (x_scroll_bar_handle_click): Change type of second argument from
10719 int to ControlPartCode.
10720 (check_alarm): Remove declaration.
10721 (XTread_socket) [!TARGET_API_MAC_CARBON]: Don't call it.
10722 (XTread_socket): Use ControlPartCode instead of SInt16.
10723
10724 2005-05-13 Nozomu Ando <nand@mac.com>
10725
10726 * unexmacosx.c: Include assert.h.
10727 (MACOSX_MALLOC_MULT16): New define.
10728 [MACOSX_MALLOC_MULT16] (ptr_in_unexec_regions): Determine whether
10729 ptr is in unexec regions by checking it is multiple of 16.
10730 (unexec_malloc_header_t): New typedef.
10731 (unexec_malloc, unexec_realloc, unexec_free): Store and use
10732 allocated size information in unexec_malloc_header.
10733
10734 2005-05-10 Richard M. Stallman <rms@gnu.org>
10735
10736 * xterm.c (noinclude): Add #undef.
10737
10738 * image.c, xfns.c, xmenu.c: Don't include signal.h.
10739
10740 2005-05-09 Juanma Barranquero <lekktu@gmail.com>
10741
10742 * fileio.c (Fexpand_file_name, Frename_file, Fadd_name_to_file)
10743 (Fmake_symbolic_link, Faccess_file, Frecent_auto_save_p):
10744 Doc fixes.
10745
10746 * dired.c (Ffile_name_completion): Make argument name
10747 match its use in docstring.
10748
10749 2005-05-08 Luc Teirlinck <teirllm@auburn.edu>
10750
10751 * eval.c (Fdefvaralias): Remove any pre-existing
10752 variable-documentation property of the alias.
10753
10754 2005-05-07 Thien-Thi Nguyen <ttn@gnu.org>
10755
10756 * xfns.c (start_hourglass): Do nothing when running on a tty.
10757
10758 2005-05-07 Juanma Barranquero <lekktu@gmail.com>
10759
10760 * fns.c (Fchar_table_range): Fix typos in docstring.
10761
10762 2005-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
10763
10764 * fns.c (Fchar_table_range): Yet Another Int/Lisp_Object Mixup.
10765
10766 2005-05-06 Eli Zaretskii <eliz@gnu.org>
10767
10768 * lread.c (Flocate_file_internal): Doc fix.
10769
10770 * Makefile.in (lisp, shortlisp): Add jka-cmpr-hook.elc.
10771
10772 2005-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10773
10774 * macselect.c (x_own_selection): Accept Lisp string as result of
10775 selection converter function.
10776 (x_clear_frame_selections): Don't call x-lost-selection-functions
10777 if Emacs is not owner of the selection.
10778 (Vmac_services_selection): Put variable and initialization in
10779 #ifdef MAC_OSX.
10780 (syms_of_macselect) [MAC_OSX]: Set default value of
10781 Vmac_services_selection to PRIMARY.
10782
10783 * macterm.c (toolkit_scroll_bar_interaction): Remove unused variable.
10784 (mac_handle_tool_bar_click): Remove unused function and declaration.
10785 [USE_TOOLKIT_SCROLL_BARS] (scroll_bar_timer_callback)
10786 (install_scroll_bar_timer, set_scroll_bar_timer)
10787 (control_part_code_to_scroll_bar_part, construct_scroll_bar_click)
10788 (get_control_part_bound, x_scroll_bar_handle_press)
10789 (x_scroll_bar_handle_release, x_scroll_bar_handle_drag)
10790 (x_set_toolkit_scroll_bar_thumb): New functions and declarations.
10791 [USE_TOOLKIT_SCROLL_BARS] (last_scroll_bar_part, scroll_bar_timer)
10792 (scroll_bar_timer_event_posted_p): New variables.
10793 [USE_TOOLKIT_SCROLL_BARS] (SCROLL_BAR_FIRST_DELAY)
10794 (SCROLL_BAR_CONTINUOUS_DELAY): New macros.
10795 (x_scroll_bar_create): Set control reference with NewControl.
10796 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
10797 Initialize track_top and track_height to nil.
10798 (x_scroll_bar_set_handle, x_scroll_bar_note_movement):
10799 Put functions in #ifndef USE_TOOLKIT_SCROLL_BARS.
10800 (XTset_vertical_scroll_bar): Don't make space between scroll bar
10801 and associated window.
10802 (XTset_vertical_scroll_bar) [MAC_OSX]: Get scroll bar area width
10803 from window config.
10804 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
10805 Set track_top and track_height to nil when scroll bar size is changed.
10806 Recalculate them if they are nil.
10807 (XTread_socket) [MAC_OSX]: Use control kind to determine if the
10808 clicked control is a scroll bar.
10809 (XTread_socket) [USE_TOOLKIT_SCROLL_BARS]: Use toolkit scroll bar
10810 event handler functions. Don't add modifiers to scroll bar click
10811 events. Call scroll bar release handler when window is deactivated.
10812 (mac_initialize): Remove unused code for X toolkit.
10813 (syms_of_macterm) [!USE_TOOLKIT_SCROLL_BARS]:
10814 Initialize Vx_toolkit_scroll_bars to nil.
10815
10816 * macterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
10817 New members track_top and track_height.
10818
10819 * sysselect.h [DARWIN || MAC_OSX]: Temporarily undefine
10820 init_process when including sys/select.h.
10821
10822 2005-05-05 Luc Teirlinck <teirllm@auburn.edu>
10823
10824 * eval.c (Fdefvaralias): Doc fix.
10825
10826 * xmenu.c (Fx_popup_menu, Fx_popup_dialog): Doc fixes.
10827
10828 2005-05-05 Kim F. Storm <storm@cua.dk>
10829
10830 * buffer.c (init_buffer_once): Set cursor_in_non_selected_windows
10831 default value.
10832 (syms_of_buffer): Add default-cursor-in-non-selected-windows.
10833 Fix type of cursor-in-non-selected-windows.
10834
10835 2005-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
10836
10837 * mac.c: #undef init_process so not to conflict with system headers.
10838
10839 2005-05-02 Richard M. Stallman <rms@gnu.org>
10840
10841 * buffer.c (syms_of_buffer): Define cursor-in-non-selected-windows.
10842
10843 * buffer.h (struct buffer): Add cursor_in_non_selected_windows slot.
10844
10845 * xdisp.c (Vcursor_in_non_selected_windows)
10846 (Qcursor_in_non_selected_windows): Vars deleted.
10847 (syms_of_xdisp): Don't initialize them.
10848 (get_window_cursor_type): Use cursor_in_non_selected_windows
10849 buffer slot.
10850
10851 2005-05-02 Kim F. Storm <storm@cua.dk>
10852
10853 * macros.c (executing_kbd_macro_index): Rename from
10854 executing_macro_index. All uses changed.
10855 (executing_kbd_macro_iterations): Rename from
10856 executing_macro_iterations. All uses changed.
10857 (executing_kbd_macro): Rename from executing_macro.
10858 All uses changed.
10859 (syms_of_macros): Rename Lisp var executing-macro-index to
10860 executing-kbd-macro-index.
10861
10862 * xdisp.c (move_it_in_display_line_to): Fix last change.
10863
10864 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
10865
10866 * xmenu.c (Fx_popup_menu): Doc fix.
10867
10868 * charset.c (syms_of_charset): Delete defsubr for Schars_in_region.
10869
10870 2005-05-02 Jason Rumney <jasonr@gnu.org>
10871
10872 * emacs.c (USAGE3, USAGE4): Keep strings below 2048 bytes.
10873
10874 2005-05-02 Nozomu Ando <nand@mac.com>
10875
10876 * sysselect.h: Fix typo.
10877
10878 2005-05-02 Nick Roberts <nickrob@snap.net.nz>
10879
10880 * charset.c (Fchars_in_region): Remove as obsolete.
10881
10882 2005-05-01 Kim F. Storm <storm@cua.dk>
10883
10884 * xdisp.c (move_it_in_display_line_to): Stop if we move beyond
10885 TO_CHARPOS. This may happen if last glyphs was an image or stretch
10886 glyph.
10887
10888 2005-05-01 Luc Teirlinck <teirllm@auburn.edu>
10889
10890 * dispnew.c (sit_for): Vexecuting_macro -> Vexecuting_kbd_macro.
10891
10892 2005-05-01 Richard M. Stallman <rms@gnu.org>
10893
10894 * xmenu.c [not HAVE_X_TOOLKIT] (xmenu_show):
10895 If user cancels the menu, quit unless FOR_CLICK.
10896
10897 * macros.c (Vexecuting_kbd_macro): Rename from Vexecuting_macro.
10898 All uses changed.
10899 (syms_of_macros): Define only executing-kbd-macro, not executing-macro.
10900 * keyboard.c: Change Vexecuting_macro to Vexecuting_kbd_macro.
10901 * macros.h (Vexecuting_kbd_macro): Declare instead of Vexecuting_macro.
10902 * commands.h (Vexecuting_kbd_macro): Likewise.
10903
10904 2005-05-01 Thien-Thi Nguyen <ttn@gnu.org>
10905
10906 * sysdep.c (get_frame_size) [VMS]: Use a fresh i/o channel.
10907
10908 2005-04-30 Richard M. Stallman <rms@gnu.org>
10909
10910 * fileio.c (Ffind_file_name_handler): Handle the `operations'
10911 property of the file name handler.
10912 (Qoperations): New variable.
10913 (syms_of_fileio): Initialize and staticpro it.
10914
10915 * xdisp.c (set_message_1): Delete xassert.
10916
10917 2005-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10918
10919 * mac.c: Don't include time.h. Include sysselect.h after systime.h.
10920
10921 * macfns.c (Fx_server_version): Add BLOCK_INPUT around Gestalt.
10922
10923 * macgui.h [HAVE_CARBON && MAC_OSX]: Don't undefine/define mktime
10924 before/after including Carbon.h if there is a working mktime.
10925
10926 2005-04-28 Kim F. Storm <storm@cua.dk>
10927
10928 * xfaces.c (resolve_face_name): Add arg SIGNAL_P. Calls changed.
10929 Fix cyclic alias check. If alias loop is detected, signal
10930 circular-list error if SIGNAL_P, and return Qdefault if !SIGNAL_P.
10931
10932 2005-04-28 Lute Kamstra <lute@gnu.org>
10933
10934 * eval.c (do_autoload): Record only autoloads in the autoload
10935 property of symbols.
10936
10937 2005-04-28 Nick Roberts <nickrob@snap.net.nz>
10938
10939 * emacs.c (USAGE1): Add --basic-display and --quick options.
10940
10941 2005-04-27 Kim F. Storm <storm@cua.dk>
10942
10943 * data.c (syms_of_data) Staticpro Qcyclic_variable_indirection.
10944
10945 2005-04-26 Richard M. Stallman <rms@gnu.org>
10946
10947 * window.c (Fsame_window_p, Fspecial_display_p): Doc fixes.
10948 (syms_of_window): Doc fixes.
10949
10950 * indent.c (Fvertical_motion): Undo previous change.
10951
10952 2005-04-26 Kenichi Handa <handa@m17n.org>
10953
10954 * fns.c (char_table_range): New function.
10955 (Fchar_table_range): Signal an error if characters in the range
10956 have inconsistent values. Don't check the parent.
10957
10958 2005-04-25 Kenichi Handa <handa@m17n.org>
10959
10960 * fontset.c (fontset_set): Fix previous change.
10961
10962 2005-04-24 Richard M. Stallman <rms@gnu.org>
10963
10964 * indent.c (Fvertical_motion): Bind fontification-functions to nil.
10965
10966 2005-04-24 Eli Zaretskii <eliz@gnu.org>
10967
10968 * regex.c (re_search_2, re_match_2_internal): Convert second arg
10969 of RE_TRANSLATE to int, to shut up GCC warnings.
10970
10971 * fileio.c (Fcopy_file): Doc fix.
10972 [MSDOS]: Fix call to emacs_open: buffer_file_type not defined and
10973 not needed.
10974
10975 2005-04-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10976
10977 * Makefile.in [HAVE_CARBON] (MAC_OBJ): Add macselect.o.
10978 (SOME_MACHINE_OBJECTS): Likewise.
10979 (mac.o): Depend on ccl.h.
10980 (macselect.o): New target.
10981
10982 * emacs.c (main) [MAC_OS8 || MAC_OSX && HAVE_CARBON]:
10983 Call syms_of_macselect.
10984
10985 * frame.c (Fdelete_frame) [MAC_OS]: Call x_clear_frame_selections.
10986
10987 * mac.c [!TARGET_API_MAC_CARBON]: Don't include charset.h or coding.h.
10988 (QCLIPBOARD): Remove variable.
10989 (syms_of_mac): Don't initialize it.
10990 (Fmac_paste_function, Fmac_cut_function, Fx_selection_exists_p):
10991 Remove functions.
10992 (syms_of_mac): Don't defsubr them.
10993 [TARGET_API_MAC_CARBON] (Qmime_charset, QNFD, QNFKD, QNFC, QNFKC)
10994 (QHFS_plus_D, QHFS_plus_C): New variables.
10995 (syms_of_mac) [TARGET_API_MAC_CARBON]: Initialize them.
10996 [TARGET_API_MAC_CARBON] (get_cfstring_encoding_from_lisp)
10997 (cfstring_create_normalized): New functions.
10998 [TARGET_API_MAC_CARBON] (Fmac_code_convert_string): Likewise.
10999 (syms_of_mac) [TARGET_API_MAC_CARBON]: Defsubr it.
11000
11001 * macterm.c (handling_window_update, terminate_flag):
11002 Remove variables.
11003 (do_window_update, do_ae_quit_application, XTread_socket):
11004 Don't use them.
11005 (WNE_SLEEP_AT_SUSPEND, WNE_SLEEP_AT_RESUME): Don't define.
11006 [USE_CARBON_EVENTS && MAC_OSX] (mac_handle_service_event)
11007 (init_service_handler): Move to macselect.c. Remove declarations.
11008 [USE_CARBON_EVENTS && MAC_OSX] (init_service_handler): Add extern.
11009 (Qapplication, Qabout): New variables.
11010 (syms_of_mac): Initialize them.
11011 [USE_CARBON_EVENTS && MAC_OSX] (Qpreferences, Qservices, Qpaste)
11012 (Qperform): New variables.
11013 (syms_of_mac) [USE_CARBON_EVENTS && MAC_OSX]: Initialize them.
11014 (do_get_menus) [TARGET_API_MAC_CARBON]: Don't call AppendResMenu.
11015 (do_menu_choice): Unhighlight menu bar also when menu_id is 0.
11016 (mac_store_application_menu_event, init_menu_bar): New functions.
11017 [USE_CARBON_EVENTS] (mac_handle_command_event)
11018 (init_command_handler): New functions.
11019 (mac_handle_window_event): Return noErr on window update event.
11020 (do_ae_quit_application): Call mac_store_application_menu_event.
11021 (mac_initialize) [USE_CARBON_EVENTS]: Call init_command_handler
11022 and init_menu_bar.
11023
11024 * macterm.h (x_clear_frame_selections): Add extern.
11025
11026 * macselect.c: New file for selection processing on Mac OS.
11027
11028 2005-04-23 Richard M. Stallman <rms@gnu.org>
11029
11030 * fileio.c (Fcopy_file): New arg MUSTBENEW.
11031 (Frename_file): Pass new arg to Fcopy_file.
11032
11033 * window.c (window_size_fixed): Variable deleted.
11034 (syms_of_window): Initialize window-size-fixed to nil.
11035 But don't DEFVAR window_size_fixed.
11036
11037 2005-04-23 Andreas Schwab <schwab@suse.de>
11038
11039 * m/macppc.h (LD_SWITCH_MACHINE) [LINUX]: Don't define.
11040 (START_FILES, LIB_STANDARD) [LINUX && _ARCH_PPC64]: Override to
11041 use lib64 instead of lib.
11042 (_LP64) [_ARCH_PPC64]: Define if not defined.
11043
11044 2005-04-23 David Hunter <hunterd42@comcast.net> (tiny change)
11045
11046 * s/ms-w32.h (HAVE_PWD_H): Define.
11047
11048 2005-04-22 Kenichi Handa <handa@m17n.org>
11049
11050 * fns.c (copy_sub_char_table): Explicitly copy the default value
11051 of the sub-chartable.
11052
11053 * fontset.c (fontset_set): When a sub-chartable is created,
11054 explicitly sets the defalt value.
11055
11056 2005-04-22 Kim F. Storm <storm@cua.dk>
11057
11058 * fns.c (Fplist_get): Replace by Fsafe_plist_get.
11059 (Fsafe_plist_get): Rename to Fplist_get.
11060 (Fsafe_get): Remove, as Fget now uses safe Fplist_get.
11061 (defsubr): Remove defsubr for Fsafe_plist_get and Fsafe_get.
11062
11063 * lisp.h (Fsafe_plist_get, Fsafe_get): Remove EXFUN.
11064
11065 * xdisp.c (store_mode_line_string, produce_stretch_glyph)
11066 (note_mode_line_or_margin_highlight, note_mouse_highlight):
11067 Use Fplist_get instead of Fsafe_plist_get.
11068
11069 * xfaces.c (resolve_face_name): Use Fget instead of Fsafe_get.
11070
11071 2005-04-21 Miles Bader <miles@gnu.org>
11072
11073 * xdisp.c (dump_glyph_row): Don't display overlay_arrow_p field.
11074
11075 2005-04-20 Thien-Thi Nguyen <ttn@gnu.org>
11076
11077 * sysdep.c: Remove reference to defunct vms-pwd.h.
11078 * dired.c: Likewise. Also, for pwd.h, use HAVE_PWD_H, not !VMS.
11079 * editfns.c, fileio.c, filelock.c, sysdep.c, xrdb.c: Likewise.
11080
11081 * config.in: Regenerate.
11082
11083 2005-04-20 Kenichi Handa <handa@m17n.org>
11084
11085 * lisp.h (CHAR_TABLE_DEFAULT_SLOT_ASCII): New macro.
11086 (CHAR_TABLE_DEFAULT_SLOT_8_BIT_CONTROL): New macro.
11087 (CHAR_TABLE_DEFAULT_SLOT_8_BIT_GRAPHIC): New macro.
11088
11089 * alloc.c (make_sub_char_table): Argument changed to initial
11090 value of the slots.
11091
11092 * data.c (Faref): Handle special slots used as default values of
11093 ascii, eight-bit-control, eight-bit-control. Don't ignore a
11094 default value set for a group of characters.
11095 (Faset): Signal an error if IDXVAL is not a valid character code.
11096 Make a sub-chartable with correct initial value.
11097
11098 * fns.c (Fset_char_table_range): Don't set slots used as default
11099 values for ascii, eight-bit-control, eight-bit-graphic.
11100 Don't call Faref with charset-id.
11101 (Fset_char_table_default): Document how to treat normal character
11102 argument. Handle special slots used as default values of ascii,
11103 eight-bit-control, eight-bit-control. Make a sub chartable if
11104 necessary.
11105
11106 2005-04-20 Kenichi Handa <handa@m17n.org>
11107
11108 * search.c (boyer_moore): Fix previous change.
11109
11110 2005-04-19 Kim F. Storm <storm@cua.dk>
11111
11112 * xdisp.c (setup_for_ellipsis): Reset saved_face_id to use default
11113 face unless last visible char and first invisible char have the
11114 same face. Also use default face if saved_face_id is undefined.
11115
11116 2005-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11117
11118 * macgui.h (MacFontStruct): Remove member `fontname'. Add member
11119 `full_name'.
11120 [TARGET_API_MAC_CARBON] (MacFontStruct): Use type int for
11121 mac_scriptcode member.
11122
11123 * macterm.c (Qbig5, Qcn_gb, Qsjis, Qeuc_kr): Remove variables.
11124 (syms_of_mac): Don't initialize them.
11125 (Vmac_charset_info_alist): New variable.
11126 (syms_of_mac): Defvar it.
11127 (create_text_encoding_info_alist): New function.
11128 (decode_mac_font_name, mac_to_x_fontname)
11129 (x_font_name_to_mac_font_name, init_font_name_table): Don't hard
11130 code the correspondence among XLFD charsets, Mac script codes, and
11131 Emacs coding systems. Use Vmac_charset_info_alist and result of
11132 create_text_encoding_info_alist instead.
11133 (init_font_name_table) [TARGET_API_MAC_CARBON]: Use Font Manager
11134 routines also on Mac OS Classic.
11135 (init_font_name_table) [!TARGET_API_MAC_CARBON]:
11136 Use add_font_name_table_entry.
11137 (mac_do_list_fonts): Regard 0 in XLFD scaleble fields as
11138 specified. Derive unspecified scalable fields from specified one.
11139 (x_list_fonts): Consider Valternate_fontname_alist.
11140 (kDefaultFontSize): Change value from 9 to 12.
11141 (XLoadQueryFont): Get decoded font family, font face, and charset
11142 from x_font_name_to_mac_font_name. Set full name of loaded font.
11143 (mac_unload_font): Free `full_name' member.
11144 (x_load_font): Don't try XLoadQueryFont if x_list_fonts returns
11145 NULL. Copy full_name member of struct MacFontStruct to that of
11146 struct font_info.
11147
11148 2005-04-19 Kim F. Storm <storm@cua.dk>
11149
11150 * xdisp.c (handle_stop): Set saved_face_id to current face if
11151 selective_display_ellipsis_p so ellipsis will be shown in same
11152 face as preceding text.
11153 (setup_for_ellipsis): Don't set saved_face_id here.
11154 (next_element_from_display_vector): Default to saved_face_id.
11155
11156 * fns.c (Fsafe_get): New function.
11157 (syms_of_fns): Defsubr it.
11158
11159 * lisp.h (Fsafe_get): EXFUN it.
11160
11161 * xfaces.c (resolve_face_name): Use Fsafe_get to avoid redisplay
11162 loops in case of bad face property lists. Limit number of face
11163 alias lookups to 10 (in case of face alias loops).
11164
11165 2005-04-18 Kim F. Storm <storm@cua.dk>
11166
11167 * dispextern.h (struct glyph_row): New member overlay_arrow_bitmap.
11168 It replaces the corresponding member from struct window, as a
11169 window may now show multiple overlay arrows.
11170 Remove member overlay_arrow_p, superseeded by overlay_arrow_bitmap.
11171
11172 * dispnew.c (row_equal_p, update_window_line, scrolling_window):
11173 Compare overlay_arrow_bitmap than overlay_arrow_p members.
11174
11175 * fringe.c (draw_fringe_bitmap): Use overlay_arrow_bitmap from row
11176 rather than from window.
11177 (update_window_fringes): Compare overlay_arrow_bitmap rather than
11178 overlay_arrow_p members.
11179 (Ffringe_bitmaps_at_pos): Return fringe overlay_arrow_bitmap name
11180 if not default.
11181
11182 * window.h (struct window): Remove member overlay_arrow_bitmap.
11183
11184 * window.c (make_window): Don't initialize overlay_arrow_bitmap.
11185
11186 * xdisp.c (overlay_arrow_string_or_property): Remove PBITMAP arg.
11187 Calls changed. Don't check for overlay-arrow-bitmap property here.
11188 (overlay_arrow_at_row): Remove PBITMAP arg. Instead, if left
11189 fringe is present, return Lisp integer for bitmap (or -1 for default).
11190 Fix value of overlay-arrow-bitmap property to be a symbol, use
11191 lookup_fringe_bitmap to parse it.
11192 (display_line): Change call to overlay_arrow_at_row. Store integer
11193 return value as overlay bitmap in row rather than window.
11194 Only show overlay arrow if row displays text, or if no other overlay
11195 arrow is seen in window (if overlay marker is at point-max).
11196
11197 2005-04-18 Thien-Thi Nguyen <ttn@gnu.org>
11198
11199 * xfaces.c (realize_x_face) [!HAVE_WINDOW_SYSTEM]: Return NULL.
11200
11201 2005-04-18 Lute Kamstra <lute@gnu.org>
11202
11203 * lread.c (Vloads_in_progress): Static.
11204 * fns.c (Vloads_in_progress): Remove extern.
11205 (load_in_progress): Add extern.
11206 (Frequire): Use load_in_progress instead of Vloads_in_progress.
11207
11208 2005-04-18 Thien-Thi Nguyen <ttn@gnu.org>
11209
11210 * xmenu.c (Fx_popup_menu): Initialize error_name to NULL.
11211
11212 2005-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11213
11214 * macterm.c (XTread_socket): Don't beep on keyboard input even if
11215 no frame is visible.
11216
11217 2005-04-16 Dan Nicolaescu <dann@ics.uci.edu>
11218
11219 * term.c (struct keys): Add support for shifted keys.
11220
11221 2005-04-16 Richard M. Stallman <rms@gnu.org>
11222
11223 * xdisp.c (with_echo_area_buffer): Delete WHICH < 0 case.
11224 (set_message): Call with_echo_area_buffer with WHICH = 0.
11225 (set_message_1): Erase the echo area buffer first thing.
11226 (echo_area_display): Don't clear echo_message_buffer.
11227
11228 2005-04-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11229
11230 * Makefile.in (mac.o): Depend on charset.h and coding.h.
11231
11232 * mac.c: Include charset.h and coding.h.
11233 [TARGET_API_MAC_CARBON] (Qutf_8): Remove extern.
11234 [TARGET_API_MAC_CARBON] (cfstring_create_with_string): New function.
11235 [TARGET_API_MAC_CARBON] (Fmac_get_preference): Use it.
11236
11237 * macfns.c [TARGET_API_MAC_CARBON] (Fx_file_dialog): Likewise.
11238
11239 * image.c [MAC_OSX] (image_load_quartz2d): Likewise.
11240
11241 * macterm.c (x_autoselect_window_p): Remove variable.
11242 (last_window): New variable.
11243 (XTreassert_line_highlight, x_change_line_highlight):
11244 Remove declarations.
11245 (mac_focus_changed, x_detect_focus_change): New functions and
11246 declarations.
11247 (XTextExtents16, front_emacs_window): Remove function.
11248 (mac_focus_frame): New function.
11249 (XTmouse_position, do_menu_choice, do_zoom_window, XTread_socket)
11250 (mac_check_for_quit_char): Use it instead of front_emacs_window.
11251 (x_scroll_bar_report_motion): Obtain window from control owner.
11252 (x_make_frame_invisible): Set window manager size hint.
11253 (do_mouse_moved): Remove function.
11254 (XTread_socket): Move its contents here. Generate select-window
11255 event on mouse movement if needed. Use x_detect_focus_change on
11256 activate/deactivate events. Don't deiconify frame or invalidate
11257 window rectangle when dnd items are dropped.
11258 Don't activate/deactivate root control.
11259 (frame_highlight, frame_unhighlight): Activate/deactivate root
11260 control here.
11261 (syms_of_macterm): Delete DEFVAR_BOOL for x_autoselect_window_p.
11262
11263 * macterm.h (cfstring_create_with_string) [TARGET_API_MAC_CARBON]:
11264 New extern.
11265
11266 2005-04-15 Luc Teirlinck <teirllm@auburn.edu>
11267
11268 * Makefile.in: Define new macro TOOLTIP_SUPPORT.
11269 (lisp): Use it.
11270 (SOME_MACHINE_LISP): Add tooltip.
11271
11272 2005-04-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11273
11274 * mac.c [!TARGET_API_MAC_CARBON]: Include MacLocales.h.
11275 Don't include TextEncodingConverter.h.
11276 (mac_system_script_code, Vmac_system_locale): New variables.
11277 (syms_of_mac): Defvar them.
11278 (mac_get_system_locale): New function.
11279
11280 * macfns.c (x_set_name, x_set_title) [!TARGET_API_MAC_CARBON]:
11281 Use ENCODE_SYSTEM to encode title bar string.
11282 (x_create_tip_frame): Apply 2005-03-18 change for xfns.c.
11283 (Fx_file_dialog) [TARGET_API_MAC_CARBON && !MAC_OSX]:
11284 Use CFStringGetSystemEncoding to get system default string encoding.
11285
11286 * macterm.c [!TARGET_API_MAC_CARBON]: Don't include
11287 TextEncodingConverter.h.
11288
11289 2005-04-13 Steven Tamm <steventamm@mac.com>
11290
11291 * macterm.c (syms_of_macterm): Remove redundant definition of
11292 mac-pass-control-to-system.
11293
11294 2005-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
11295
11296 * window.c (Fset_window_configuration): Be careful when you choose
11297 among several possible points for the new_current_buffer.
11298
11299 2005-04-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11300
11301 * keyboard.c (poll_for_input) [SYNC_INPUT]: Don't call
11302 poll_for_input_1. Set interrupt_input_pending to 1 instead.
11303 (Qlanguage_change) [MAC_OS]: New variable.
11304 (syms_of_keyboard) [MAC_OS]: Intern and staticpro it.
11305 (kbd_buffer_get_event) [MAC_OS]: Make event for LANGUAGE_CHANGE_EVENT.
11306
11307 * macterm.c (mac_keyboard_text_encoding)
11308 (current_mac_keyboard_text_encoding): Remove variables.
11309 (XTread_socket): Store language-change event if keyboard script change
11310 is detected. Don't convert input to `mac_keyboard_text_encoding'.
11311 (syms_of_macterm): Delete DEFVAR_INT for mac-keyboard-text-encoding.
11312
11313 * termhooks.h (enum event_kind) [MAC_OS]: Add LANGUAGE_CHANGE_EVENT.
11314
11315 2005-04-10 Richard M. Stallman <rms@gnu.org>
11316
11317 * emacs.c (standard_args): Rename --bare-bones to --quick.
11318 Add -D aka --basic-display.
11319
11320 * buffer.c (Fmake_indirect_buffer): Clear out some local variables.
11321
11322 2005-04-09 Richard M. Stallman <rms@gnu.org>
11323
11324 * keymap.c (where_is_internal): Convert a string used as event type
11325 into "(any string)".
11326
11327 * lread.c (Vloads_in_progress): Not static.
11328 * fns.c (Vloads_in_progress): Add extern.
11329 (Frequire): Don't do LOADHIST_ATTACH if Vloads_in_progress is nil.
11330
11331 2005-04-09 Thien-Thi Nguyen <ttn@surf.glug.org>
11332
11333 * dispnew.c (mirror_line_dance): Avoid crash if W2 is null.
11334
11335 2005-04-09 Lute Kamstra <lute@gnu.org>
11336
11337 * print.c (PRINTPREPARE): Check if the marker PRINTCHARFUN is
11338 within the accessible part of the buffer.
11339
11340 2005-04-09 Kim F. Storm <storm@cua.dk>
11341
11342 * lread.c (readevalloop): Add args START and END as region in
11343 current buffer to read. Callers changed.
11344 When specified, narrow to this region only when reading,
11345 not during eval. Track next point to read from during eval.
11346 Also restore point to "real" buffer position before eval.
11347 (Feval_region): Don't save excursion and restriction here, and
11348 don't narrow to region. Just pass region to readevalloop.
11349 Note: Point is now preserved even when PRINTFLAG is nil.
11350
11351 2005-04-08 Kim F. Storm <storm@cua.dk>
11352
11353 * xdisp.c (syms_of_xdisp): Init overlay-arrow-string to "=>".
11354
11355 2005-04-06 Kim F. Storm <storm@cua.dk>
11356
11357 * emacs.c (standard_args): Add -Q, --bare-bones, -bare-bones.
11358
11359 2005-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11360
11361 * mac.c (cfdate_to_lisp): Add `const' for variable `epoch_gdate'.
11362 (Fmac_get_preference): Doc fix.
11363
11364 * macfns.c (Fx_create_frame, x_create_tip_frame):
11365 Add "fontset-mac" to fallback font/fontsets.
11366
11367 2005-04-04 Kim F. Storm <storm@cua.dk>
11368
11369 * alloc.c (Fgarbage_collect): Call CHECK_CONS_LIST before and after gc.
11370
11371 * eval.c (Ffuncall): Always call CHECK_CONS_LIST on entry.
11372 Call it again after autoload.
11373
11374 2005-04-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11375
11376 * alloc.c (allocate_string_data): Call BLOCK_INPUT before calling
11377 mallopt.
11378
11379 * ralloc.c (r_alloc_init): Ditto.
11380
11381 2005-04-01 Kenichi Handa <handa@m17n.org>
11382
11383 * lisp.h (Vascii_upcase_table, Vascii_canon_table)
11384 (Vascii_eqv_table): Extern them.
11385
11386 * casetab.c (set_case_table): If standard is nonzero, setup
11387 Vascii_upcase_table, Vascii_canon_table, and Vascii_eqv_table.
11388
11389 * search.c (looking_at_1): Use current_buffer->case_canon_table,
11390 not DOWNCASE_TABLE.
11391 (string_match_1): Likewise.
11392 (fast_c_string_match_ignore_case): Use Vascii_canon_table, not
11393 Vascii_downcase_table.
11394 (fast_string_match_ignore_case): Likewise.
11395 (search_buffer): Fix checking of boyer-moore usability.
11396 (boyer_moore): Calculate translate_prev_byte1/2/3 in advance.
11397 No need of tranlating characters in PAT. Fix calculation of
11398 simple_translate.
11399
11400 2005-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
11401
11402 * xterm.c [HAVE_XAW3D]: Include ThreeD.h for XtNbeNiceToColormap.
11403 (x_create_toolkit_scroll_bar): Test XtNbeNiceToColormap before using it.
11404 Use XtNtopShadowPixel and XtNbottomShadowPixel.
11405 (x_set_toolkit_scroll_bar_thumb): Remove ugly old hack that didn't
11406 really work and that breaks with some versions of Xaw3d.
11407
11408 2005-03-31 Kenichi Handa <handa@m17n.org>
11409
11410 * coding.c (syms_of_coding): Fix previous change.
11411
11412 2005-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
11413
11414 * fileio.c (search_embedded_absfilename): Fix last change.
11415
11416 2005-03-25 Kenichi Handa <handa@m17n.org>
11417
11418 * coding.c (syms_of_coding): Suggest to use set-coding-category in
11419 the docstring of coding-category-list.
11420
11421 2005-03-31 Kim F. Storm <storm@cua.dk>
11422
11423 * keyboard.c (Qmouse_fixup_help_message): New var.
11424 (syms_of_keyboard): Intern and staticpro it.
11425 (show_help_echo): Apply mouse-fixup-help-message to help string.
11426
11427 2005-03-30 Kim F. Storm <storm@cua.dk>
11428
11429 * xdisp.c (display_line): Allow multiple overlay arrows in window.
11430
11431 2005-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
11432
11433 * fileio.c (Fexpand_file_name): Use IS_DEVICE_SEP.
11434 (file_name_absolute_p): New fun, extracted from Ffile_name_absolute_p.
11435 (Ffile_name_absolute_p): Use it.
11436 (search_embedded_absfilename): New fun, extracted from
11437 Fsubstitute_in_file_name. Use file_name_absolute_p.
11438 Free the pw data after use.
11439 (Fsubstitute_in_file_name): Use it.
11440 After cutting a prefix, re-check file-name-handler.
11441
11442 2005-03-26 Lennart Borgman <lennart.borgman.073@student.lu.se>
11443
11444 * w32term.h (x_output): Add focus_state.
11445
11446 * w32term.c (x_focus_changed, w32_detect_focus_change): New functions.
11447 (w32_read_socket) <WM_SETFOCUS>: Call w32_detect_focus_change.
11448
11449 2005-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
11450
11451 * minibuf.c (Fminibuffer_complete_and_exit, Fself_insert_and_exit):
11452 Use Fexit_minibuffer.
11453 (Fexit_minibuffer): Mark it as no-return, deactivate the mark.
11454
11455 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
11456
11457 * dired.c (Ffile_attributes): Add a missing gcpro.
11458
11459 * alloc.c (make_number): The arg can be bigger than `int'.
11460 * lisp.h (make_number): Make prototype more precise.
11461
11462 * process.c, dired.c (Vfile_name_coding_system)
11463 (Vdefault_file_name_coding_system):
11464 * callproc.c (Vdoc_file_name, Vfile_name_coding_system)
11465 (Vdefault_file_name_coding_system): Remove unused declarations.
11466
11467 2005-03-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11468
11469 * xmenu.c (create_and_show_popup_menu): Just remove menu and return
11470 if it failed to pop up (Gnome "show pointer on ctrl" option makes
11471 menus fail to pop up).
11472
11473 2005-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
11474
11475 * xdisp.c (get_next_display_element): Also use `\ ' & `\-' for latin-9.
11476 Just prepend a backslash without replacing the NBSP by an SPC.
11477
11478 2005-03-22 Kim F. Storm <storm@cua.dk>
11479
11480 * xfaces.c (lookup_derived_face): Add arg SIGNAL_P.
11481 * dispextern.h (lookup_derived_face): Fix prototype.
11482 * msdos.c (XMenuActivate): Fix call to lookup_derived_face.
11483
11484 * xdisp.c (handle_single_display_spec): Derive left-fringe and
11485 right-fringe face from fringe face.
11486
11487 * fringe.c (draw_fringe_bitmap_1, Fset_fringe_bitmap_face):
11488 Derive face from fringe face.
11489
11490 2005-03-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11491
11492 * xrdb.c (x_load_resources): Undo previous change (2005-03-18).
11493
11494 2005-03-22 David Kastrup <dak@gnu.org>
11495
11496 * textprop.c (Fnext_char_property_change)
11497 (Fprevious_char_property_change): Allow marker as limit.
11498 (Fnext_single_char_property_change)
11499 (Fprevious_single_char_property_change): Check that limit is a
11500 number in strings.
11501 (Fnext_single_char_property_change): Coerce position to integer.
11502 (Fprevious_single_char_property_change): Same here.
11503
11504 2005-03-21 Thien-Thi Nguyen <ttn@gnu.org>
11505
11506 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Define if undefined.
11507
11508 2005-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
11509
11510 * frame.c (Fignore_event): Remove.
11511 (syms_of_frame): Don't defsubr it.
11512
11513 * keyboard.c (keys_of_keyboard): Just use `ignore' instead of the
11514 redundant `ignore-event'.
11515
11516 2005-03-19 Eli Zaretskii <eliz@gnu.org>
11517
11518 * unexec.c (write_segment, unexec): Move these functions to avoid
11519 forward references (which cause errors with "gcc -gcoff").
11520
11521 2005-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11522
11523 * xfns.c (x_create_tip_frame): Remove setting of Vx_resource_name so
11524 that it doesn't become "tooltip". The specbind is enough.
11525
11526 * xrdb.c (x_load_resources): Use different char *helv when I18N
11527 is present.
11528
11529 2005-03-17 Kenichi Handa <handa@m17n.org>
11530
11531 * coding.c (syms_of_coding): Docstring of coding-category-list fixed.
11532
11533 2005-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
11534
11535 * xfaces.c (x_update_menu_appearance) [HAVE_X_I18N]:
11536 Use xic_create_fontsetname even for non-Motif menus.
11537 Don't forget to free the fontsetname.
11538
11539 * xfns.c (xic_create_fontsetname): Add a final catch-all font pattern.
11540
11541 2005-03-17 Richard M. Stallman <rms@gnu.org>
11542
11543 * dispnew.c (mirror_line_dance): Set W2 according to FRAME_FROM.
11544
11545 * fileio.c (Fcopy_file, Frename_file, Fadd_name_to_file)
11546 (Fmake_symbolic_link): Use G to read the new file name.
11547
11548 * callint.c (Finteractive): Document G option.
11549 (Fcall_interactively): Implement G option.
11550
11551 * buffer.c (buffer_lisp_local_variables): New function,
11552 broken out from Fbuffer_local_variables.
11553 (clone_per_buffer_values): Use buffer_lisp_local_variables.
11554
11555 2005-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
11556
11557 * xfns.c (xic_create_fontsetname): Add `motif' argument.
11558 Always return a freshly allocated string.
11559 (xic_create_xfontset): Adjust call.
11560
11561 * xfaces.c (x_update_menu_appearance) [USE_MOTIF]:
11562 Use xic_create_fontsetname to create a fontset so utf-8 locales work.
11563 (dump_realized_face): Fix warning.
11564
11565 * emacs.c (Fkill_emacs): YAILOM.
11566
11567 * frame.c (Fignore_event): Fix ancient obscure C-u handling bug.
11568
11569 2005-03-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11570
11571 * mac.c (HASHKEY_TERMINAL): Remove.
11572 (HASHKEY_MAX_NID): New macro.
11573 (xrm_q_get_resource_1): Rename from xrm_q_get_resource. Add extra
11574 argument.
11575 (xrm_q_get_resource): Call xrm_q_get_resource_1 with extra argument.
11576 (xrm_create_database, xrm_q_put_resource)
11577 (xrm_merge_string_database, xrm_q_get_resource_1)
11578 (xrm_q_get_resource): Change resource database representation so
11579 that it may not use multiple hash tables for a single database.
11580 [TARGET_API_MAC_CARBON] (xrm_cfproperty_list_to_value): YAILOM.
11581
11582 2005-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
11583
11584 * xmenu.c (ENCODE_MENU_STRING) [HAVE_X_I18N]: Use ENCODE_SYSTEM.
11585
11586 * coding.h (ENCODE_SYSTEM, DECODE_SYSTEM) [!WINDOWSNT]: Use the
11587 locale-coding-system, as was already done for WINDOWSNT.
11588
11589 * keyboard.c (read_char): Only do the 7-bit-meta -> 27-bit-meta
11590 translation for chars in the 0-255 range.
11591
11592 2005-03-16 Lute Kamstra <lute@gnu.org>
11593
11594 * floatfns.c (Ffloor): Doc fix.
11595
11596 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11597
11598 * mac.c: Include macterm.h instead of directly including Carbon.h.
11599 [TARGET_API_MAC_CARBON] (Qstring, Qnumber, Qboolean, Qdate, Qdata)
11600 (Qarray, Qdictionary): New variables.
11601 (syms_of_mac) [TARGET_API_MAC_CARBON]: Initialize them.
11602 [TARGET_API_MAC_CARBON] (Qutf_8): Add extern.
11603 [TARGET_API_MAC_CARBON] (DECODE_UTF_8): New macro.
11604 [TARGET_API_MAC_CARBON] (struct cfdict_context): New struct used
11605 in callback for CFDictionaryApplyFunction.
11606 [TARGET_API_MAC_CARBON] (cfdata_to_lisp, cfstring_to_lisp)
11607 (cfnumber_to_lisp, cfdate_to_lisp, cfboolean_to_lisp)
11608 (cfobject_desc_to_lisp, cfdictionary_add_to_list)
11609 (cfdictionary_puthash, cfproperty_list_to_lisp): New functions.
11610 [TARGET_API_MAC_CARBON] (Fmac_get_preference): New function.
11611 (syms_of_mac) [TARGET_API_MAC_CARBON]: Defsubr it.
11612 (P, LOOSE_BINDING, SINGLE_COMPONENT, HASHKEY_TERMINAL): New macro.
11613 (skip_white_space, parse_comment, parse_include_file)
11614 (parse_binding, parse_component, parse_resource_name, parse_value)
11615 (parse_resource_line, xrm_create_database, xrm_q_put_resource)
11616 (xrm_merge_string_database, xrm_q_get_resource, xrm_get_resource)
11617 (xrm_cfproperty_list_to_value, xrm_get_preference_database):
11618 New functions.
11619
11620 * macfns.c (mac_get_rdb_resource): Remove function.
11621 (x_get_string_resource): Use xrm_get_resource.
11622
11623 * macgui.h (XrmDatabase): Typedef to Lisp_Object.
11624
11625 * macterm.c (x_list_fonts): FONT-LIST-CACHE is now cadr part of
11626 name_list_element.
11627 (mac_make_rdb): Create resource database from preferences and
11628 argument string.
11629 (mac_term_init): Save resource database to cddr part of
11630 name_list_element.
11631
11632 * macterm.h (xrm_merge_string_database, xrm_get_resource)
11633 (xrm_get_preference_database): Add externs.
11634 [TARGET_API_MAC_CARBON] (cfdata_to_lisp, cfstring_to_lisp)
11635 (cfnumber_to_lisp, cfdate_to_lisp, cfboolean_to_lisp)
11636 (cfobject_desc_to_lisp, cfproperty_list_to_lisp): Likewise.
11637
11638 * process.c (init_process): Change `#ifdef DARWIN' to `#if
11639 defined (DARWIN) || defined (MAC_OSX)'.
11640
11641 * s/darwin.h (DARWIN): Don't define.
11642
11643 2005-03-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11644
11645 * macfns.c (Qhyper, Qsuper, Qmeta, Qalt, Qctrl, Qcontrol, Qshift):
11646 Remove unused variables.
11647 (syms_of_macfns): Don't initialize them. Likewise for
11648 Qface_set_after_frame_default. Defvar and initialize
11649 Vx_window_horizontal_drag_shape.
11650 (x_set_mouse_color): Change mouse pointer shape.
11651 (mac_window) [!MAC_OSX]: Create root control.
11652 (Fx_create_frame): Remove initializations of mouse pointer shapes.
11653 (hourglass_started): New function (from xfns.c).
11654 (start_hourglass, cancel_hourglass): Put function body in #ifdef
11655 MAC_OSX.
11656 (show_hourglass) [TARGET_API_MAC_CARBON]: Create progress
11657 indicator for each non-tooltip frame if needed, and show it.
11658 (hide_hourglass) [TARGET_API_MAC_CARBON]: Hide progress indicators.
11659
11660 * macgui.h [!TARGET_API_MAC_CARBON]: Include Appearance.h and
11661 Controls.h. Use ThemeCursor instead of CursHandle.
11662
11663 * macterm.c (activate_scroll_bars, deactivate_scroll_bars):
11664 Remove functions and declarations.
11665 (mac_set_colors): Take argument for saving background color.
11666 All callers changed.
11667 (XDrawLine, XClearArea, mac_draw_bitmap, XFillRectangle)
11668 (mac_draw_rectangle, mac_draw_string_common): Save and Restore
11669 background color.
11670 (x_update_end, mac_do_track_drag): Don't reset background color.
11671 (mac_define_frame_cursor) [!TARGET_API_MAC_CARBON]:
11672 Use SetThemeCursor.
11673 (x_set_window_size) [TARGET_API_MAC_CARBON]: Move progress
11674 indicator control to the upper-right corner of the window.
11675 (arrow_cursor) [!TARGET_API_MAC_CARBON]: Remove variable.
11676 (do_init_managers) [!TARGET_API_MAC_CARBON]: Don't initialize it.
11677 (do_window_update): Update controls after updating content area.
11678 (mac_handle_window_event): Remove unused extern.
11679 (XTread_socket): Check both control handle and control part code
11680 to determine whether a scroll bar is clicked. Activate/deactivate
11681 root control instead of contained scroll bar controls.
11682 (make_mac_terminal_frame): Use ThemeCursor constants.
11683
11684 * macterm.h (struct mac_output) [TARGET_API_MAC_CARBON]:
11685 New member hourglass_control.
11686 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): New defines.
11687 (activate_scroll_bars, deactivate_scroll_bars): Remove declarations.
11688
11689 2005-03-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11690
11691 * macterm.c (keycode_to_xkeysym_table): Change mapping so that it
11692 coincides with that in Apple X11 except `clear', `enter' on
11693 laptops, and fn + `enter' on laptops.
11694
11695 2005-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
11696
11697 * xmenu.c (ENCODE_MENU_STRING): Explicitly use string_make_unibyte.
11698 (list_of_panes, list_of_items, Fx_popup_menu): Use XCAR/XCDR.
11699 (digest_single_submenu, xmenu_show): Use ENCODE_MENU_STRING.
11700
11701 * xfns.c (xic_defaut_fontset): New constant.
11702 (xic_create_fontsetname): New function.
11703 Extracted from create_frame_xic. Try to generate a slightly
11704 better fontset.
11705 (xic_create_xfontset): Use it.
11706 (create_frame_xic): Simplify.
11707
11708 2005-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
11709
11710 * fileio.c (Fmake_symbolic_link): Fix last change.
11711
11712 2005-03-11 Richard M. Stallman <rms@gnu.org>
11713
11714 * fileio.c (Frename_file, Fadd_name_to_file)
11715 (Fmake_symbolic_link): If NEWNAME or LINKNAME is a directory,
11716 expand the basename of FILE relative to it.
11717
11718 2005-03-11 Kenichi Handa <handa@m17n.org>
11719
11720 * fileio.c (Finsert_file_contents): Call Fcheck_coding_system
11721 before calling setup_coding_system so that autoloading of a coding
11722 system work.
11723
11724 2005-03-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11725
11726 * xfns.c (hourglass_started): New function.
11727
11728 * dispextern.h: Declare hourglass_started.
11729
11730 * keyboard.c (Fexecute_extended_command): Restart hourglass
11731 after call to Fcompleting_read if already started.
11732
11733 * gtkutil.c (xg_update_scrollbar_pos): Call x_sync so that the
11734 GTK main loop is entered in xterm.c, thus doing the redraw.
11735
11736 2005-03-10 Kim F. Storm <storm@cua.dk>
11737
11738 * xdisp.c (pos_visible_p): Fix X value in last line of buffer.
11739
11740 2005-03-08 Kenichi Handa <handa@m17n.org>
11741
11742 * frame.c (x_set_font): Call set_default_ascii_font if an
11743 available font is found.
11744
11745 * fontset.c (set_default_ascii_font): New function.
11746 (syms_of_fontset): Don't set FONTSET_ASCII (Vdefault_fontset) here.
11747
11748 * fontset.h (set_default_ascii_font): Extern it.
11749
11750 2005-03-07 Kim F. Storm <storm@cua.dk>
11751
11752 * xdisp.c (CLEAR_IMAGE_CACHE_COUNT): New const.
11753 (clear_image_cache_count): New var.
11754 (redisplay_internal): Don't clear face and image caches in the
11755 middle of redisplay; do it afterwards.
11756
11757 * blockinput.h (TOTALLY_UNBLOCK_INPUT): Avoid dangling else.
11758
11759 * xdisp.c (notice_overwritten_cursor): Check that phys_cursor.vpos
11760 is valid. If not, clear phys_cursor_on_p and return.
11761
11762 2005-03-07 Andreas Schwab <schwab@suse.de>
11763
11764 * blockinput.h (UNBLOCK_INPUT_TO): Always call UNBLOCK_INPUT.
11765
11766 2005-03-06 Richard M. Stallman <rms@gnu.org>
11767
11768 * keyboard.c (Ftop_level): Let Fthrow deal with UNBLOCK_INPUT.
11769
11770 * eval.c (unwind_to_catch): Use UNBLOCK_INPUT_TO.
11771 (Feval, Ffuncall): Use CHECK_CONS_LIST.
11772
11773 * lisp.h (CHECK_CONS_LIST): New macro (two definitions).
11774
11775 * blockinput.h (UNBLOCK_INPUT_TO): New macro.
11776 (TOTALLY_UNBLOCK_INPUT): Handle a pending signal if any.
11777
11778 2005-03-05 Juri Linkov <juri@jurta.org>
11779
11780 * emacs.c (USAGE1): Replace Info node name "command arguments"
11781 with "emacs invocation".
11782 (USAGE3): Fix usage of `--color=MODE' which actually doesn't
11783 allow arguments `--color' and `MODE' to be separated by space.
11784 Add --no-blinking-cursor, -nbc.
11785 (standard_args): Add -nbc, --no-blinking-cursor.
11786
11787 2005-03-04 Thien-Thi Nguyen <ttn@gnu.org>
11788
11789 * s/vms.h: Define NO_HYPHENS_IN_FILENAMES.
11790 * s/vms4-4.h, s/vms5-5.h: Undefine NO_HYPHENS_IN_FILENAMES.
11791 * fileio.c (Fexpand_file_name) [VMS]:
11792 Use NO_HYPHENS_IN_FILENAMES, not VMS4_4.
11793 * doc.c (munge_doc_file_name) [VMS]: Likewise.
11794 (Fsnarf_documentation): Call munge_doc_file_name.
11795
11796 2005-03-04 Thien-Thi Nguyen <ttn@gnu.org>
11797
11798 * s/vms.h (FILE_SYSTEM_CASE): New macro.
11799 * fileio.c (Fexpand_file_name) [VMS]: Don't upcase the name
11800 "manually"; this is now handled generally via FILE_SYSTEM_CASE.
11801
11802 2005-03-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11803
11804 * emacs.c (main): Change `#ifdef HAVE_CARBON' to `#if
11805 defined (MAC_OSX) && defined (HAVE_CARBON)'.
11806
11807 * image.c [!MAC_OSX && TARGET_API_MAC_CARBON]: Include QuickTime.h.
11808
11809 * mac.c [!MAC_OSX && HAVE_CARBON]: Include Carbon.h.
11810 [!MAC_OSX] (select) [TARGET_API_MAC_CARBON]: Use ReceiveNextEvent.
11811 (posix_pathname_to_fsspec, fsspec_to_posix_pathname): New functions.
11812 (mac_clear_font_name_table): Move extern to macterm.h.
11813
11814 * macfns.c (install_window_handler): Move extern to macterm.h.
11815 (Fx_file_dialog): Check STRINGP (default_filename) to see it is
11816 valid. Don't check !NILP (dir) because it is already checked with
11817 CHECK_STRING.
11818 (Fx_file_dialog) [!MAC_OSX]: Use FSSpec instead of FSRef for
11819 specifying the default location and obtaining the selected filename.
11820
11821 * macgui.h [!MAC_OSX && HAVE_CARBON]: Include Carbon.h.
11822
11823 * macmenu.c [TARGET_API_MAC_CARBON]: Don't include headers that
11824 are included via Carbon.h.
11825
11826 * macterm.c [TARGET_API_MAC_CARBON && !MAC_OSX]:
11827 Define USE_CARBON_EVENTS to 1.
11828 (qd) [__MRC__ && TARGET_API_MAC_CARBON]: Don't declare.
11829 (x_free_frame_resources): Call remove_window_handler for
11830 non-tooltip windows.
11831 [TARGET_API_MAC_CARBON]: Don't include headers that are included
11832 via Carbon.h.
11833 [TARGET_API_MAC_CARBON] (mac_do_track_dragUPP)
11834 (mac_do_receive_dragUPP): New variables.
11835 (mac_handle_service_event, init_service_handler): Put declarations
11836 and definitions in #ifdef MAC_OSX.
11837 (install_window_handler) [TARGET_API_MAC_CARBON]: Create UPPs for
11838 drag-and-drop handler functions and register them.
11839 (remove_window_handler): New function.
11840 (do_ae_open_documents, mac_do_receive_drag) [!MAC_OSX]:
11841 Use fsspec_to_posix_pathname.
11842 (main): Change #if !TARGET_API_MAC_CARBON to #ifdef MAC_OS8.
11843 (XTread_socket) [!MAC_OSX]: Don't pass keyboard events to TSM.
11844 [MAC_OS8] (make_mac_terminal_frame) [TARGET_API_MAC_CARBON]:
11845 Set default cursors.
11846 (mac_initialize) [USE_CARBON_EVENTS && !MAC_OSX]: Don't call
11847 init_service_handler or init_quit_char_handler.
11848 (mac_initialize) [!MAC_OSX]: Don't call MakeMeTheFrontProcess.
11849
11850 * macterm.h (install_window_handler, remove_window_handler)
11851 (posix_pathname_to_fsspec, fsspec_to_posix_pathname)
11852 (mac_clear_font_name_table): New externs.
11853
11854 2005-03-03 Thien-Thi Nguyen <ttn@gnu.org>
11855
11856 * fileio.c (FILE_SYSTEM_CASE): Define macro if not already defined.
11857 (Ffile_name_directory): Use FILE_SYSTEM_CASE unconditionally.
11858 (Fexpand_file_name): Likewise.
11859
11860 2005-03-03 Thien-Thi Nguyen <ttn@gnu.org>
11861
11862 * emacs.c (Fkill_emacs): Use EXIT_SUCCESS;
11863 no longer special-case VMS. Add bogus return value.
11864
11865 2005-03-02 Kim F. Storm <storm@cua.dk>
11866
11867 * dispextern.h (XASSERTS): Define to 0 if not already defined.
11868 (xassert) [!XASSERTS]: Define dummy version.
11869
11870 2005-03-02 Kim F. Storm <storm@cua.dk>
11871
11872 * xdisp.c (redisplay_window): YABX (yet another bogus xassert).
11873 Reported by David Kastrup.
11874
11875 2005-03-01 Ehud Karni <ehud@unix.mvs.co.il>
11876
11877 * xdisp.c (get_next_display_element): Fix control and escape
11878 glyph from display vector.
11879
11880 2005-03-01 Stefan Monnier <monnier@iro.umontreal.ca>
11881
11882 * keyboard.c (Fposn_at_x_y): Check integerness of X and Y.
11883
11884 2005-02-27 Richard M. Stallman <rms@gnu.org>
11885
11886 * xdisp.c (fast_find_position): Rename END to BEG.
11887 (syms_of_xdisp) <menu-bar-update-hook>: Doc fix.
11888
11889 2005-02-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
11890
11891 * gtkutil.c (xg_resize_outer_widget): Remove unneeded call to
11892 gtk_window_resize and x_wm_set_size_hint.
11893
11894 2005-02-25 Kim F. Storm <storm@cua.dk>
11895
11896 * dispextern.h (OVERLAY_STRING_CHUNK_SIZE): Increase from 3 to 16.
11897
11898 * xdisp.c (init_from_display_pos): Don't read past end of
11899 it->overlay_strings array.
11900
11901 2005-02-25 Stephan Stahl <stahl@eos.franken.de> (tiny change)
11902
11903 * buffer.c (syms_of_buffer): Fix typo.
11904
11905 2005-02-23 Lute Kamstra <lute@gnu.org>
11906
11907 * buffer.c (Foverlay_buffer): Doc fix.
11908
11909 2005-02-22 Kim F. Storm <storm@cua.dk>
11910
11911 * minibuf.c (Ftry_completion, Fall_completions): Allow both string
11912 and symbol keys in alists and hash tables.
11913
11914 * xdisp.c (fast_find_position): Fix search for start of overlay.
11915
11916 2005-02-21 Kim F. Storm <storm@cua.dk>
11917
11918 * window.c (window_scroll_pixel_based): When scrolling backwards,
11919 handle partial visible line at end of window even when we hit PT.
11920
11921 2005-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
11922
11923 * keymap.h: Declare Fcurrent_active_maps, used in doc.c.
11924
11925 2005-02-21 Kim F. Storm <storm@cua.dk>
11926
11927 * xdisp.c (move_it_vertically_backward): Eliminate two xasserts.
11928 I think those asserts are bogus if buffer contains invisible text
11929 or images.
11930
11931 2005-02-21 David Kastrup <dak@gnu.org>
11932
11933 * gtkutil.c (xg_create_frame_widgets): UNBLOCK_INPUT on error.
11934
11935 2005-02-20 Kim F. Storm <storm@cua.dk>
11936
11937 * xdisp.c (pos_visible_p): Be sure to move to the specified
11938 position. Always get the full ascent / descent of the
11939 corresponding row, to return reliable rtop and rbot values.
11940 (back_to_previous_visible_line_start): Fix 2005-01-18 change.
11941 Must look one character back, as back_to_previous_line_start
11942 returns position after the newline.
11943 (move_it_vertically_backward): Fix heuristic for when to move further
11944 back in case line_height * 2/3 is larger than window height.
11945 (cursor_row_fully_visible_p): Rename make_cursor_line_fully_visible_p
11946 as it does not do anything anymore. Add arg current_matrix_p to
11947 use current matrix rather than desired matrix when set.
11948 (try_cursor_movement): Don't scroll to make cursor row fully
11949 visible if cursor didn't move. This avoids unexpected recentering
11950 in case of blinking cursor or accepting process output.
11951 Use current matrix to check cursor row visibility.
11952 (redisplay_window): Fix whether to recenter or move to top in case
11953 cursor line is taller than window height.
11954 (find_first_unchanged_at_end_row): Stop search if we reach a row
11955 which not enabled (instead of abort).
11956
11957 2005-02-18 Kim F. Storm <storm@cua.dk>
11958
11959 * xfaces.c (Finternal_set_lisp_face_attribute): Allow :color property
11960 to be nil in a :box attribute value list; customize prints that
11961 as lisp value when no box color is specified.
11962
11963 * .gdbinit (pitx, pit): Pretty print display iterator.
11964 (prowx, prow): Pretty print glyph row.
11965 (pcursorx, pcursor): Pretty print a window cursor.
11966 (pwinx, pwin): Pretty print struct window.
11967
11968 2005-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
11969
11970 * alloc.c (BLOCK_BYTES): Harmless typo.
11971
11972 2005-02-17 Andreas Schwab <schwab@suse.de>
11973
11974 * xfns.c (hack_wm_protocols): Use correct type for last parameter
11975 of XGetWindowProperty to avoid aliasing issues.
11976 (Fx_window_property): Likewise.
11977
11978 * xselect.c (Fx_disown_selection_internal): Use union of struct
11979 input_event and struct selection_input_event to avoid aliasing issues.
11980
11981 * xterm.c (handle_one_xevent): Use union of struct input_event and
11982 struct selection_input_event to avoid aliasing issues.
11983 (SET_SAVED_MENU_EVENT): Adapt reference to inev.
11984
11985 2005-02-17 Kim F. Storm <storm@cua.dk>
11986
11987 * dispextern.h (enum it_method): New enum.
11988 (GET_FROM_*): Its members.
11989 (struct it): Change member method from function pointer to enum.
11990
11991 * xdisp.c (check_it, init_from_display_pos, handle_stop)
11992 (setup_for_ellipsis, handle_single_display_spec)
11993 (handle_composition_prop, next_overlay_string)
11994 (get_overlay_strings, reseat_1, reseat_to_string)
11995 (next_element_from_ellipsis, BUFFER_POS_REACHED_P)
11996 (in_display_vector_p, display_line, get_next_display_element):
11997 Change it->method from function pointer to enum.
11998 (get_next_element): New array to map it->method to function.
11999 (get_next_display_element): Use it.
12000 (set_iterator_to_next): Use switch instead of if/else chain.
12001
12002 2005-02-15 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
12003
12004 * w32select.c: Summary: Thorough rework to implement Unicode
12005 clipboard operations and delayed rendering.
12006
12007 Drop last_clipboard_text and related code, keep track of
12008 ownership via clipboard_owner instead. Drop old #if0 sections.
12009
12010 (DEFAULT_LCID, ANSICP, OEMCP, QUNICODE, QANSICP, QOEMCP)
12011 (clipboard_owner, modifying_clipboard, cfg_coding_system)
12012 (cfg_codepage, cfg_lcid, cfg_clipboard_type, current_text)
12013 (current_coding_system, current_requires_encoding)
12014 (current_num_nls, current_clipboard_type, current_lcid):
12015 New static variables.
12016
12017 (convert_to_handle_as_ascii, convert_to_handle_as_coded)
12018 (render, render_all, run_protected, lisp_error_handler)
12019 (owner_callback, create_owner, setup_config)
12020 (enum_locale_callback, cp_from_locale, coding_from_cp):
12021 New local functions.
12022
12023 (term_w32select, globals_of_w32select): New global functions.
12024
12025 (Fw32_set_clipboard_data): Ignore parameter FRAME, use
12026 clipboard_owner instead. Use delayed rendering and provide
12027 all text formats. Provide CF_LOCALE if necessary.
12028
12029 (Fw32_get_clipboard_data): Handle CF_UNICODETEXT and
12030 CF_LOCALE. Fall back to CF_TEXT, if CF_UNICODETEXT is not
12031 available. Force DOS line-ends for decoding.
12032
12033 (Fx_selection_exists_p): Handle CF_UNICODETEXT.
12034
12035 (syms_of_w32select): Init and register new variables.
12036
12037 * w32.h: Add prototypes for globals_of_w32select and
12038 term_w32select. Make the neighboring K&R declarations into
12039 prototypes, too.
12040
12041 * emacs.c: Include w32.h to get function prototypes.
12042 (main): Call globals_of_w32select.
12043
12044 * w32.c (term_ntproc): Call term_w32select.
12045
12046 * s/ms-w32.h: Guard MSC-specific #pragmas with an #ifdef.
12047
12048 2005-02-16 Kim F. Storm <storm@cua.dk>
12049
12050 * xdisp.c (BUFFER_POS_REACHED_P): Return true if pos reached and
12051 at end of display vector.
12052
12053 2005-02-15 Richard M. Stallman <rms@gnu.org>
12054
12055 * xdisp.c (get_next_display_element): Fix escape-glyph criterion
12056 for mode and header lines.
12057
12058 * lread.c (syms_of_lread) <user-init-file>: Doc fix.
12059
12060 * keymap.h (describe_map_tree): Change decl.
12061
12062 * keyboard.c (command_loop_1): Always use safe_run_hooks
12063 to run Qdeferred_action_function.
12064
12065 * keymap.c (describe_map_tree): New arg MENTION_SHADOW. Calls changed.
12066 (describe_map, describe_vector): Likewise. When it's 1,
12067 don't omit shadowed bindings, instead mark them as shadowed.
12068
12069 * doc.c (Fsubstitute_command_keys): Compute list of shadowing maps
12070 for describe_map_tree. Pass 1 for MENTION_SHADOW.
12071
12072 * data.c (Fsetq_default): Allow no arg case.
12073
12074 2005-02-14 Kenichi Handa <handa@m17n.org>
12075
12076 * coding.c (encode_coding_string): Always return a unibyte string.
12077 If NOCOPY is nonzero and there's no need of encoding, make STR
12078 unibyte directly.
12079
12080 * xselect.c (lisp_data_to_selection_data): If OBJ is a non-ASCII
12081 multibyte string, signal an error instead of aborting.
12082
12083 2005-02-12 Dan Nicolaescu <dann@ics.uci.edu>
12084
12085 * keyboard.c: If HAVE_FCNTL_H include fcntl.h.
12086
12087 2005-02-12 Kim F. Storm <storm@cua.dk>
12088
12089 * xdisp.c (expose_window): Don't fix overlaps for mode lines.
12090
12091 2005-02-10 Kim F. Storm <storm@cua.dk>
12092
12093 * xdisp.c (try_window_id): Set first_unchanged_at_end_row to NULL
12094 if it moves outside window or it doesn't display text.
12095
12096 2005-02-09 Kim F. Storm <storm@cua.dk>
12097
12098 * undo.c (Fprimitive_undo): Check that undo function does not
12099 switch buffer.
12100
12101 2005-02-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12102
12103 * xselect.c (selection_data_to_lisp_data): For the special case
12104 type == XA_ATOM, data contains array of int, not array of Atom.
12105 (x_property_data_to_lisp, selection_data_to_lisp_data):
12106 Comment update: data must be array of int for format == 32.
12107
12108 2005-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
12109
12110 * undo.c (Fprimitive_undo): Check veracity of delta,start,end.
12111
12112 2005-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12113
12114 * xfns.c (Fx_change_window_property): Use long array when format is 32.
12115 (Fx_window_property): If format is 32 and long is bigger than 32 bits,
12116 convert long array returned from XGetWindowProperty to an int array.
12117 (x_set_tool_bar_lines): Check that width and height is greater than
12118 zero before clearing area.
12119
12120 * xselect.c (x_reply_selection_request): Pass long array to
12121 XChangeProperty so that 64 bit longs are handeled correctly.
12122 (x_get_window_property): If format is 32 and long is bigger than 32
12123 bits convert data from XGetWindowProperty from long array to int array.
12124 (lisp_data_to_selection_data): When the input is a vector and the
12125 format is 32, allocate a long array even if long is bigger than 32 bits.
12126 (x_fill_property_data): Use char, short and long as the man page
12127 for XChangeProperty specifies. This way the data returned is OK for
12128 both 32 and 64 bit machines.
12129 (x_handle_dnd_message): Calculate size correctly even for 64 bit
12130 machines.
12131 (Fx_send_client_event): Undo change from 2005-02-05,
12132 x_fill_property_data now handles that case.
12133
12134 * xfns.c (Fx_backspace_delete_keys_p): Add comment about the
12135 reason for the approach in the code.
12136
12137 2005-02-07 Kim F. Storm <storm@cua.dk>
12138
12139 * undo.c (Fprimitive_undo): Record max one dummmy apply element.
12140
12141 2005-02-06 Richard M. Stallman <rms@gnu.org>
12142
12143 * eval.c (Frun_hook_with_args)
12144 (Frun_hook_with_args_until_success)
12145 (Frun_hook_with_args_until_failure): Doc fixes.
12146
12147 2005-02-05 Andreas Schwab <schwab@suse.de>
12148
12149 * sysdep.c (sys_subshell): Properly terminate execlp argument list.
12150
12151 2005-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12152
12153 * xselect.c (Fx_send_client_event, x_handle_dnd_message): Handle
12154 the longs in a XClientMessageEvent correctly when long is 64 bits.
12155
12156 2005-02-05 Eli Zaretskii <eliz@gnu.org>
12157
12158 * xfaces.c (face_color_supported_p): Use HAVE_WINDOW_SYSTEM
12159 instead of HAVE_X_WINDOWS, for non-X windowed sessions.
12160
12161 2005-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12162
12163 * xmenu.c (menubar_selection_callback): Force out GTK buffered
12164 events so the menu event comes after them. This is to prevent sit-for
12165 from exiting on buffered events directly after a menu selection,
12166 lisp code for Help => About Emacs uses sit-for.
12167
12168 * gtkutil.c (create_menus): Connect selection-done event instead of
12169 the deactivate event to deactivate_cb. This will make the last
12170 leave event come before the call to deactivate_cb, so the leave
12171 event does not make sit-for exit after a menu selection.
12172
12173 2005-02-03 Kim F. Storm <storm@cua.dk>
12174
12175 * dispnew.c (build_frame_matrix_from_leaf_window)
12176 [!GLYPH_DEBUG]: Fix xassert.
12177
12178 * xfaces.c (x_free_gc) [!GLYPH_DEBUG]: Fix xassert.
12179
12180 * xfns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
12181
12182 2005-02-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12183
12184 * mac.c: Use MAC_OS_X_VERSION_MAX_ALLOWED to conditionalize by
12185 the compiling OS version.
12186
12187 * macfns.c (x_create_tip_frame): Likewise.
12188
12189 * macterm.c (mac_draw_string_common, x_make_frame_visible): Likewise.
12190
12191 2005-02-03 Richard M. Stallman <rms@gnu.org>
12192
12193 * xterm.c (x_error_quitter): On GCC 3 and up, specify noinline.
12194
12195 * xdisp.c (echo_area_display): Clear echo_message_buffer.
12196
12197 * buffer.c (Fbury_buffer): Doc fix.
12198
12199 2005-02-02 Steven Tamm <steventamm@mac.com>
12200
12201 * macfns.c (unwind_create_frame): Fix compile error due to
12202 xassert being uncondition, but predicate is.
12203 * dispnew.c (update_window): Fix compile error due to
12204 xassert being uncondition, but predicate is.
12205
12206 2005-02-02 Miles Bader <miles@gnu.org>
12207
12208 * dispextern.h (xassert): Enable unconditionally.
12209
12210 2005-02-02 Kim F. Storm <storm@cua.dk>
12211
12212 * undo.c (Fprimitive_undo): Fix dummy apply undo entry.
12213
12214 2005-02-02 Kenichi Handa <handa@m17n.org>
12215
12216 * casefiddle.c (casify_object): Enable changing characters of
12217 different byte length.
12218 (casify_region): Fix loop condition, args to replace_range_2, and
12219 update opoint_byte.
12220
12221 * insdel.c (replace_range_2): Fix bugs in adjusting markers and point.
12222
12223 2005-02-01 Kim F. Storm <storm@cua.dk>
12224
12225 * xdisp.c (back_to_previous_visible_line_start): Reset iterator
12226 stack before calling handle_display_prop.
12227
12228 2005-01-31 Kim F. Storm <storm@cua.dk>
12229
12230 * undo.c (Qapply): New lisp var.
12231 (syms_of_undo): Intern and staticpro it.
12232 (Fprimitive_undo): Support formats (apply FUNNAME . ARGS) and
12233 (apply DELTA BEG END FUNNAME . ARGS) instead of (FUNNAME . ARGS).
12234
12235 * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
12236
12237 2005-01-30 Jesper Harder <harder@phys.au.dk>
12238
12239 * macterm.c (syms_of_macterm) <mac-reverse-ctrl-meta>
12240 <mac-emulate-three-button-mouse>: Fix docstring indentation.
12241
12242 2005-01-29 Luc Teirlinck <teirllm@auburn.edu>
12243
12244 * undo.c (syms_of_undo) <undo-outer-limit>: Doc update.
12245 Increase value to 3 Meg.
12246
12247 2005-01-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12248
12249 * xfns.c (show_hourglass): Use FRAME_X_WINDOW as parent for GTK,
12250 button events are not received otherwise.
12251
12252 2005-01-29 Richard M. Stallman <rms@gnu.org>
12253
12254 * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
12255
12256 * undo.c (Fprimitive_undo): Handle (FUNNAME . ARGS) by calling FUNNAME.
12257
12258 2005-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
12259
12260 * keymap.c (access_keymap): YAILOM.
12261
12262 2005-01-27 Kim F. Storm <storm@cua.dk>
12263
12264 * xdisp.c (get_phys_cursor_geometry): New function to calculate
12265 phys cursor position and size for hollow cursor. Position is
12266 aligned with get_glyph_string_clip_rect and ensures that a hollow
12267 cursor is shown, even when the actual glyph is not visible.
12268
12269 * dispextern.h (get_phys_cursor_geometry): Add prototype.
12270
12271 * xterm.c (x_clip_to_row): Ensure y >= 0.
12272 (x_draw_hollow_cursor): Use get_phys_cursor_geometry.
12273
12274 * w32term.c (x_draw_hollow_cursor): Use get_phys_cursor_geometry.
12275
12276 * macterm.c (x_draw_hollow_cursor): Use get_phys_cursor_geometry.
12277
12278 2005-01-27 Stefan Monnier <monnier@iro.umontreal.ca>
12279
12280 * xterm.c (x_error_quitter): Add a prototype. Make it static again.
12281
12282 2005-01-27 Kim F. Storm <storm@cua.dk>
12283
12284 * xdisp.c (get_glyph_string_clip_rect): Always show a cursor
12285 glyph, even when row is only partially visible and actual cursor
12286 position is not visible.
12287
12288 2005-01-24 Richard M. Stallman <rms@gnu.org>
12289
12290 * xterm.c (x_error_quitter): No longer static, and moved after
12291 x_error_handler.
12292
12293 2005-01-24 Kim F. Storm <storm@cua.dk>
12294
12295 * xdisp.c (move_it_by_lines): If we move forward after going too
12296 far back, cancel move if end position is same as start position.
12297
12298 2005-01-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12299
12300 * dispextern.h (struct glyph_string): New members clip_head and
12301 clip_tail.
12302
12303 * xdisp.c (get_glyph_string_clip_rect): Restrict horizontal clip
12304 region to the area between clip_head and clip_tail.
12305 (draw_glyphs): Record the area that need to be actually redrawn to
12306 the new variables clip_head and clip_tail when there are
12307 overhangs. Set values of these variables to the corresponding
12308 members in struct glyph_string. Refine x coordinates for
12309 notice_overwritten_cursor using clip_head and clip_tail.
12310
12311 * macgui.h (STORE_XCHARSETSTRUCT): New macro.
12312
12313 * macterm.c (mac_compute_glyph_string_overhangs): Implement with
12314 QDTextBounds.
12315 (x_draw_glyph_string): Don't fill the background of the successor
12316 of a glyph with a right overhang if the successor will draw a cursor.
12317 (XLoadQueryFont): Obtain font metrics using QDTextBounds.
12318 (x_redisplay_interface): Add entry for compute_glyph_string_overhangs.
12319
12320 2005-01-24 Kim F. Storm <storm@cua.dk>
12321
12322 * window.c (window_scroll_pixel_based): Fix scrolling in the wrong
12323 direction if window height was smaller than next-screen-context-lines.
12324 Now always scroll at least one line in the requested direction.
12325 Ensure that we actually do scroll backwards when requested to do so.
12326
12327 * xdisp.c (redisplay_window): Only try to make cursor line fully
12328 visible once (to avoid redisplay loop).
12329
12330 2005-01-23 Kim F. Storm <storm@cua.dk>
12331
12332 * window.c (Fpos_visible_in_window_p): Simplify return value for
12333 partially visible rows.
12334 (window_scroll_pixel_based): Adapt to that change.
12335
12336 * window.c (window_scroll_pixel_based): Force moving to next line
12337 if scrolling doesn't move start point, e.g. if looking at tall image.
12338
12339 * xdisp.c (pos_visible_p): Return 0 if non-interactive.
12340 Clear last_height before calling line_bottom_y to get real height.
12341 Fix calculation of y.
12342
12343 2005-01-22 Steven Tamm <steventamm@mac.com>
12344
12345 * s/darwin.h: Removed PTY_ITERATION from here.
12346 (DARWIN): Define.
12347
12348 * process.c (init_process): Default process-connection-type to
12349 nil on darwin 6 or less, t if it is 7 or higher. This way the
12350 broken pty behavior is still allowed on darwin 6 for interactive
12351 processes for people that know what they are doing.
12352
12353 2005-01-22 Kim F. Storm <storm@cua.dk>
12354
12355 * window.c (auto_window_vscroll_p): New boolean.
12356 (syms_of_window): DEFVAR_BOOL it.
12357 (Fpos_visible_in_window_p): Extend return value to include RTOP
12358 and RBOT values if FULLY is nil.
12359 (window_scroll_pixel_based): Adjust vscroll for partially visible
12360 rows if auto_window_vscroll_p is set.
12361 (Fset_window_vscroll): Do nothing if vscroll is not modified.
12362
12363 * xdisp.c (pos_visible_p): Replace FULLY arg by RTOP and RBOT args
12364 to return number of partially invisible pixels at top and bottom
12365 of the dislay row at POS.
12366
12367 * lisp.h (pos_visible_p): Fix prototype.
12368
12369 2005-01-21 Richard M. Stallman <rms@gnu.org>
12370
12371 * fileio.c (Fcopy_file): Doc fix.
12372
12373 2005-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12374
12375 * gtkutil.c (xg_tool_bar_detach_callback): Remove unused variable bw.
12376 (xg_get_file_name): Move declaration ofx_use_old_gtk_file_dialog to
12377 start of function for older compilers.
12378
12379 2005-01-20 Richard M. Stallman <rms@gnu.org>
12380
12381 * editfns.c (Fmessage): If arg is "", return "" (as before).
12382
12383 * keymap.c (access_keymap): Protect from bad value of meta_prefix_char.
12384
12385 * .gdbinit (xgetptr, xgetint, xgettype): Copy $arg0 into a temp
12386 variable.
12387
12388 2005-01-20 Steven Tamm <steventamm@mac.com>
12389
12390 * editfns.c (Voperating_system_release): Add.
12391 (init_editfns): Assign new variable operating-system-release
12392 based on call to uname if available.
12393 (get_operating_system_release): Add function to
12394 allow c-level access to operating system release.
12395
12396 * config.h: Regenerated.
12397
12398 * s/darwin.h (PTY_ITERATION): Don't allow PTYs on darwin 6 or less.
12399 (MIN_PTY_KERNEL_VERSION): Define minimum kernel version for
12400 using ptys as '7'.
12401
12402 2005-01-20 Kim F. Storm <storm@cua.dk>
12403
12404 * alloc.c (STRING_MARKED_P, VECTOR_MARKED_P): Return boolean.
12405
12406 * xterm.c (x_draw_glyph_string_box): Fix last_x for full width rows.
12407 Thanks to Chong Yidong <cyd@stupidchicken.com> for debugging this.
12408
12409 * macterm.c (x_draw_glyph_string_box): Likewise.
12410
12411 * w32term.c (x_draw_glyph_string_box): Likewise.
12412
12413 * indent.c (Fvertical_motion): Temporarily disable selective display.
12414
12415 2005-01-19 Kim F. Storm <storm@cua.dk>
12416
12417 * xdisp.c (note_mode_line_or_margin_highlight): Fix :pointer
12418 image property.
12419
12420 * fns.c (sweep_weak_table): Advance prev pointer when we keep a pair.
12421
12422 2005-01-18 Kim F. Storm <storm@cua.dk>
12423
12424 * xdisp.c (fast_find_position): Backtrack to find first row if
12425 charpos is inside a display overlay that spans multiple lines.
12426
12427 2005-01-18 Kenichi Handa <handa@m17n.org>
12428
12429 * coding.c (decode_coding_iso2022): Translate invalid codes if
12430 translation-table is specified.
12431
12432 2005-01-18 Kim F. Storm <storm@cua.dk>
12433
12434 * xdisp.c (back_to_previous_visible_line_start): Undo 2004-12-28
12435 change. If handle_display_prop indicates newline is replaced by
12436 image or text, move back to start of relevant overlay or interval
12437 and continue scan from there. Simplify.
12438
12439 2005-01-17 Kim F. Storm <storm@cua.dk>
12440
12441 * dispnew.c (mode_line_string, marginal_area_string):
12442 Fix off-by-one error in search for glyph.
12443
12444 2005-01-16 Kim F. Storm <storm@cua.dk>
12445
12446 * macterm.c (syms_of_macterm) <mac-allow-anti-aliasing>: Doc fix.
12447
12448 2005-01-16 Steven Tamm <steventamm@mac.com>
12449
12450 * macterm.c (mac_to_x_fontname): Remove spurious argument.
12451
12452 2005-01-16 Andreas Schwab <schwab@suse.de>
12453
12454 * macterm.c (mac_draw_string_common): Fix compilation on OSX 10.1.
12455
12456 2005-01-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12457
12458 * fringe.c (Fdefine_fringe_bitmap, init_fringe): When assigning
12459 fringe_faces, cast result from xmalloc/xrealloc to Lisp_Object *.
12460
12461 2005-01-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12462
12463 * keyboard.c (READABLE_EVENTS_DO_TIMERS_NOW)
12464 (READABLE_EVENTS_FILTER_EVENTS, READABLE_EVENTS_IGNORE_SQUEEZABLES):
12465 New flags for readable_events.
12466 (get_filtered_input_pending, readable_filtered_events): Remove.
12467 (tracking_off): Call readable_events and get_input_pending with
12468 flag READABLE_EVENTS_DO_TIMERS_NOW.
12469 (readable_events): Move code from old readable_filtered_events here,
12470 but check new READABLE_EVENTS_* in argument flags instead of previous
12471 two boolean arguments do_timers_now and filter_events.
12472 If we are doing mouse tracking and the mouse moved, return only if
12473 READABLE_EVENTS_IGNORE_SQUEEZABLES is not set in flags.
12474 (swallow_events): Call get_input_pending with flag
12475 READABLE_EVENTS_DO_TIMERS_NOW.
12476 (get_input_pending): Move code from old get_filtered_input_pending
12477 here. Replace boolean arguments do_timers_now, filter_events with
12478 flags, and pass flags to readable_events. Document new
12479 READABLE_EVENTS_* flags.
12480 (detect_input_pending_ignore_squeezables): New function.
12481 (detect_input_pending_run_timers): Call get_input_pending with flag
12482 READABLE_EVENTS_DO_TIMERS_NOW.
12483 (Finput_pending_p): Call get_input_pending with flags
12484 READABLE_EVENTS_DO_TIMERS_NOW and READABLE_EVENTS_FILTER_EVENTS.
12485
12486 * dispnew.c (update_window, update_frame_1): Replace calls to
12487 detect_input_pending with detect_input_pending_ignore_squeezables
12488 so that redisplay is not paused if the event queue contains only
12489 mouse movements.
12490
12491 * lisp.h: Declare detect_input_pending_ignore_squeezables.
12492
12493 2005-01-15 Steven Tamm <steventamm@mac.com>
12494
12495 * macterm.c (Vmac_use_core_graphics): Declare variable for
12496 mac-allow-anti-aliasing.
12497 (syms_of_macterm): DEFVAR_LISP and initialize it.
12498 (mac_draw_string_common): Use core graphics text rendering if
12499 mac-allow-anti-aliasing is enabled.
12500
12501 * macfns.c (Fx_file_dialog): Save As dialog includes only the
12502 file name in the text box.
12503
12504 2005-01-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12505
12506 * macfns.c (x_set_foreground_color, x_set_background_color):
12507 Sync with xfns.c.
12508 (mac_window, x_create_tip_frame): Use XSetWindowBackground.
12509 * macterm.c (XSetBackground, XSetWindowBackground): New functions.
12510 * macterm.h (XSetBackground, XSetWindowBackground): Add externs.
12511
12512 2005-01-14 Kim F. Storm <storm@cua.dk>
12513
12514 * keyboard.c (Fposn_at_x_y): Add optional arg WHOLE.
12515
12516 2005-01-13 Richard M. Stallman <rms@gnu.org>
12517
12518 * keymap.c (Fcurrent_active_maps): Ignore Voverriding_local_map
12519 if Voverriding_terminal_local_map is non-nil.
12520
12521 * keyboard.c (syms_of_keyboard): Doc fix.
12522
12523 2005-01-13 Kim F. Storm <storm@cua.dk>
12524
12525 * xdisp.c (Fformat_mode_line): Fix last change. Remove NO_PROPS arg
12526 (specify 0 for FACE instead). Reorder arg list. Doc fix.
12527
12528 2005-01-12 Richard M. Stallman <rms@gnu.org>
12529
12530 * xdisp.c (Fformat_mode_line): New arg FACE specifies a default
12531 face property for characters that don't specify one.
12532
12533 * fns.c (Frequire): Record in load-history unconditionally.
12534
12535 2005-01-10 Kim F. Storm <storm@cua.dk>
12536
12537 * dispextern.h (merge_faces): Rename from merge_into_realized_face.
12538
12539 * xfaces.c (merge_faces): Rename from merge_into_realized_face.
12540 Callers changed.
12541 Add support to merge with lisp face id too (if face_name is t).
12542
12543 * xdisp.c (get_next_display_element, next_element_from_display_vector):
12544 Don't lookup lface_id from display table glyphs here; instead use
12545 merge_faces to merge the lisp face id into current face.
12546
12547 2005-01-09 Kim F. Storm <storm@cua.dk>
12548
12549 * dispextern.h (struct it): New member dpvec_face_id.
12550 (merge_into_realized_face): Add prototype.
12551
12552 * xfaces.c (merge_into_realized_face): New function. Used to
12553 merge escape-glyph face or face from display table into current face.
12554
12555 * xdisp.c (Vshow_nonbreak_escape): New lisp var.
12556 (syms_of_xdisp): DEFVAR_LISP it.
12557 (escape_glyph_face): Remove var.
12558 (redisplay_window): Don't initialize it.
12559 (setup_for_ellipsis, get_next_display_element):
12560 Set it->dpvec_face_id to -1.
12561 (get_next_display_element): Test Vshow_nonbreak_escape.
12562 Do not setup escape_glyph_face.
12563 Properly merge escape-glyph face or face from display table with
12564 current face for escape and control characters.
12565 Set it->dpvec_face_id to relevant face id instead of adding it to each
12566 element of display vector.
12567 (next_element_from_display_vector): If it->dpvec_face_id is set,
12568 use that instead of lface_id from glyph itself.
12569
12570 2005-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12571
12572 * xterm.h (struct x_output): New member, toolbar_detached.
12573
12574 * gtkutil.c (xg_create_frame_widgets): Set initial tool bar height to
12575 38.
12576 (xg_tool_bar_detach_callback): Set toolbar_detached to 1.
12577 (xg_tool_bar_attach_callback): Set toolbar_detached to 0.
12578 (xg_create_tool_bar): Initialize toolbar_detached.
12579 (update_frame_tool_bar): Only set FRAME_TOOLBAR_HEIGHT (f) if
12580 toolbar_detached is zero.
12581
12582 2005-01-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12583
12584 * xmenu.c (create_and_show_popup_menu): Pass zero as button to
12585 gtk_menu_popup if not for_click, so callbacks for the menu are called.
12586
12587 * gtkutil.c (xg_gtk_scroll_destroy, xg_create_scroll_bar)
12588 (xg_tool_bar_callback, xg_tool_bar_help_callback)
12589 (update_frame_tool_bar): Cast to EMACS_INT to avoid compiler warning.
12590
12591 * xselect.c (x_get_foreign_selection, x_fill_property_data)
12592 (Fx_get_atom_name, Fx_send_client_event): Replace XFLOAT with
12593 XFLOAT_DATA to get extract number from Lisp object.
12594
12595 2005-01-07 Kim F. Storm <storm@cua.dk>
12596
12597 * xdisp.c (set_iterator_to_next): Fix 2004-12-13 change.
12598 Set stop_charpos to current charpos instead of 0.
12599
12600 2005-01-06 Nick Roberts <nickrob@snap.net.nz>
12601
12602 * xdisp.c (Fformat_mode_line): First arg now required.
12603
12604 2005-01-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12605
12606 * macterm.c (XLoadQueryFont): Correctly handle 0 size
12607 font widths that are returned from some Japanese fonts.
12608
12609 2005-01-06 Kim F. Storm <storm@cua.dk>
12610
12611 * fringe.c (fringe_faces): Change to Lisp_Object pointer.
12612 (draw_fringe_bitmap_1): Lookup user defined fringe faces here.
12613 (destroy_fringe_bitmap): Set fringe_faces element to nil.
12614 (Fdefine_fringe_bitmap, init_fringe): Change allocation of
12615 fringe_faces array and init elements to nil.
12616 (Fset_fringe_bitmap_face): Set fringe_faces to face name instead of
12617 non-persistent face id.
12618 (mark_fringe_data): New function for GC.
12619
12620 * alloc.c (mark_fringe_data): Declare extern.
12621 (Fgarbage_collect): Call mark_fringe_data.
12622
12623 * alloc.c (overrun_check_free): Invalidate freed memory if
12624 XMALLOC_CLEAR_FREE_MEMORY is defined.
12625
12626 2005-01-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12627
12628 * macfns.c: Include sys/param.h.
12629 [TARGET_API_MAC_CARBON] (mac_nav_event_callback): New declaration
12630 and function.
12631 [TARGET_API_MAC_CARBON] (Fx_file_dialog): Use MAXPATHLEN for size
12632 of filename string. Set event callback function when creating
12633 dialog boxes. Add code conversions for filenames. Don't dispose
12634 of apple event descriptor record if failed to create it.
12635
12636 * macterm.c: Include sys/param.h.
12637 [USE_CARBON_EVENTS] (mac_handle_window_event): Add handler for
12638 kEventWindowUpdate.
12639 (install_window_handler) [USE_CARBON_EVENTS]: Register it.
12640 (do_ae_open_documents) [TARGET_API_MAC_CARBON]: Get FSRef instead
12641 of FSSpec from apple event descriptor record.
12642 (do_ae_open_documents) [TARGET_API_MAC_CARBON]: Use MAXPATHLEN for
12643 size of filename string.
12644 [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Likewise.
12645 [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Return error when a
12646 file dialog is in action.
12647 [TARGET_API_MAC_CARBON] (mac_do_track_drag): Likewise.
12648 Reject only when there are no filename items. Set background color
12649 before (un)highlighting the window below the dragged items.
12650 (XTread_socket) [USE_CARBON_EVENTS]: Don't call do_window_update.
12651
12652 2005-01-05 Romain Francoise <romain@orebokech.com>
12653
12654 * term.c (encode_terminal_code): Fix buffer size computation.
12655
12656 2005-01-04 Richard M. Stallman <rms@gnu.org>
12657
12658 * xdisp.c (Fformat_mode_line): Doc fix.
12659
12660 2005-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
12661
12662 * alloc.c (refill_memory_reserve): Move.
12663 (emacs_blocked_free, emacs_blocked_malloc, emacs_blocked_realloc)
12664 (reset_malloc_hooks, uninterrupt_malloc) [SYNC_INPUT]: Don't define.
12665
12666 2005-01-03 Richard M. Stallman <rms@gnu.org>
12667
12668 * window.c (window_scroll_pixel_based): Don't correct preserve_y
12669 for CURRENT_HEADER_LINE_HEIGHT when moving backwards.
12670
12671 2005-01-03 Jason Rumney <jasonr@gnu.org>
12672
12673 * w32bdf.c (w32_load_bdf_font): Set fontp->average_width and
12674 fontp->space_width to FONT_WIDTH so they are valid.
12675
12676 * w32fns.c (w32_load_system_font): Set FONT_WIDTH to maximum, not
12677 average width. Set fontp->average_width and fontp->space_width to
12678 their appropriate values.
12679
12680 * w32term.c (x_new_font): Set FRAME_COLUMN_WIDTH to
12681 fontp->average_width, not FONT_WIDTH. Set FRAME_SPACE_WIDTH to
12682 fontp->space_width.
12683
12684 2005-01-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12685
12686 * macterm.c (x_new_font): Set FRAME_SPACE_WIDTH.
12687 (x_font_min_bounds, XLoadQueryFont): Use the correct font width
12688 metrics for max and min bounds.
12689 (x_load_font): Correctly calculate average font width metrics.
12690
12691 2005-01-02 Richard M. Stallman <rms@gnu.org>
12692
12693 * alloc.c (Fgarbage_collect): Don't truncate_undo_list on dead buffers.
12694
12695 2004-12-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12696
12697 * xterm.c (handle_one_xevent): Clear area in expose event for GTK.
12698
12699 2004-12-31 Richard M. Stallman <rms@gnu.org>
12700
12701 * xdisp.c (setup_for_ellipsis, get_next_display_element):
12702 Set it->ellipsis_p to 1 or 0.
12703 (display_line): Record whether row ends in mid-ellipsis.
12704 (set_cursor_from_row): If ends in ellipsis, find start of it.
12705 (cursor_row_p): If PT's at the end of the ellipsis the row
12706 ends within, don't display cursor on this row.
12707
12708 * dispextern.h (struct it): New element ellipsis_p.
12709 (struct glyph_row): New element ends_in_ellipsis_p.
12710
12711 * xdisp.c (BUFFER_POS_REACHED_P): We haven't reached the specified
12712 position if we're reading from something other than the buffer.
12713
12714 * window.c (window_scroll_pixel_based): Only look at
12715 Vscroll_preserve_screen_position if the old PT can't be kept.
12716 (syms_of_window) <scroll-preserve-screen-position>: Doc fix.
12717
12718 2004-12-30 Kim F. Storm <storm@cua.dk>
12719
12720 * xdisp.c (get_line_height_property): New function extracted from
12721 original calc_line_height_property.
12722 (calc_line_height_property): Rework. Handle t and (nil . ratio).
12723 (x_produce_glyphs): Use them to handle line-height and
12724 line-spacing according to new height spec.
12725 (Qtotal): Remove.
12726 (syms_of_xdisp): Remove intern and staticpro for Qtotal.
12727
12728 2004-12-30 Kenichi Handa <handa@m17n.org>
12729
12730 * fileio.c (Finsert_file_contents): Don't use
12731 current_buffer->buffer_file_coding_system even if REPLACE is
12732 non-nil. Call Qafter_insert_file_set_coding with the second arg VISIT.
12733
12734 * fontset.h (struct font_info): New members space_width and
12735 average_width.
12736
12737 * frame.h (struct frame): New member space_width.
12738 (FRAME_SPACE_WIDTH): New macro.
12739
12740 * xterm.h (struct x_display_info): New member Xatom_AVERAGE_WIDTH.
12741
12742 * xterm.c (x_new_font): Set FRAME_COLUMN_WIDTH to
12743 fontp->average_width, not FONT_WIDTH. Set FRAME_SPACE_WIDTH to
12744 fontp->space_width.
12745 (x_load_font): Calculate fontp->space_width and fontp->average_width.
12746 (x_term_init): Initialize dpyinfo->Xatom_AVERAGE_WIDTH.
12747
12748 * xdisp.c (x_produce_glyphs): Calculate tab width by
12749 FRAME_SPACE_WIDTH, not FRAME_COLUMN_WIDTH.
12750
12751 2004-12-29 Sanghyuk Suh <han9kin@mac.com>
12752
12753 * macterm.c (SelectionRange): Add Xcode position apple event struct.
12754 (do_ae_open_documents): Handle Xcode-style file position open events.
12755
12756 2004-12-29 Luc Teirlinck <teirllm@auburn.edu>
12757
12758 * buffer.c (syms_of_buffer) <vertical-scroll-bar>: Correct typo.
12759
12760 2004-12-29 Richard M. Stallman <rms@gnu.org>
12761
12762 * buffer.c (syms_of_buffer) <vertical-scroll-bar>: Doc fix.
12763
12764 2004-12-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12765
12766 * macfns.c (install_window_handler): Modify extern to return OSErr
12767 value.
12768 (mac_window): Handle return value of install_window_handler.
12769
12770 * macterm.c (reflect_byte): Remove function.
12771 (mac_create_bitmap_from_bitmap_data): Don't call reflect_byte.
12772 Lookup table instead.
12773 (mac_do_font_lists): Simplify calculation of the longest
12774 nonspecial string.
12775 (init_mac_drag_n_drop): Remove function and declaration.
12776 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
12777 init_mac_drag_n_drop.
12778 (mac_do_track_drag): New function and declaration.
12779 (install_window_handler): Return OSErr value.
12780 (install_window_handler) [TARGET_API_MAC_CARBON]:
12781 Register handlers for tracking/receiving drag-and-drop items.
12782 (do_ae_open_documents): Generate unibyte strings for filenames.
12783 (mac_do_receive_drag) [TARGET_API_MAC_CARBON]: Likewise.
12784 Reject only non-filename items. Set event modifiers, and return value.
12785
12786 2004-12-28 Dan Nicolaescu <dann@ics.uci.edu>
12787
12788 * coding.c (decode_coding): Fix previous change.
12789
12790 2004-12-28 Richard M. Stallman <rms@gnu.org>
12791
12792 * xdisp.c (back_to_previous_visible_line_start):
12793 Don't call handle_display_prop.
12794
12795 2004-12-28 Dan Nicolaescu <dann@ics.uci.edu>
12796
12797 * coding.c (decode_coding_XXX, decode_composition_emacs_mule)
12798 (decode_coding_emacs_mule, encode_coding_emacs_mule)
12799 (decode_coding_iso2022, encode_designation_at_bol)
12800 (encode_coding_iso2022, decode_coding_sjis_big5, decode_eol)
12801 (decode_coding): Constify arguments and local vars.
12802
12803 2004-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12804
12805 * xmenu.c (popup_get_selection): Only pop down dialogs
12806 on C-g and Escape.
12807 (popup_get_selection): Remove parameter down_on_keypress.
12808 (create_and_show_popup_menu, create_and_show_dialog):
12809 Remove parameter down_on_keypress to popup_get_selection.
12810
12811 2004-12-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12812
12813 * dispextern.h: Change HAVE_CARBON to MAC_OS.
12814 (struct glyph_string): Likewise.
12815
12816 * emacs.c (main) [MAC_OS8]: Call mac_term_init instead of
12817 mac_initialize.
12818
12819 * fileio.c (Fnext_read_file_uses_dialog_p, Fread_file_name):
12820 Change TARGET_API_MAC_CARBON to HAVE_CARBON.
12821
12822 * fns.c (vector): Change MAC_OSX to MAC_OS.
12823
12824 * frame.c (x_set_frame_parameters, x_report_frame_params)
12825 (x_set_fullscreen): Remove #ifndef HAVE_CARBON.
12826 (x_set_border_width, Vdefault_frame_scroll_bars):
12827 Change HAVE_CARBON to MAC_OS.
12828
12829 * image.c [MAC_OS]: Include sys/stat.h.
12830 [MAC_OS && !MAC_OSX]: Include sys/param.h, ImageCompression.h, and
12831 QuickTimeComponents.h.
12832
12833 * mac.c [!MAC_OSX] (mac_wait_next_event): Add extern.
12834 [!MAC_OSX] (select): Use mac_wait_next_event.
12835 [!MAC_OSX] (run_mac_command): Change EXEC_SUFFIXES to Vexec_suffixes.
12836 [!MAC_OSX] (select, run_mac_command): Change `#ifdef
12837 TARGET_API_MAC_CARBON' to `#if TARGET_API_MAC_CARBON'.
12838 (mac_clear_font_name_table): Add extern.
12839 (Fmac_clear_font_name_table): New defun.
12840 (syms_of_mac): Defsubr it.
12841 [MAC_OSX] (SELECT_POLLING_PERIOD_USEC): New define.
12842 [MAC_OSX] (select_and_poll_event): New function.
12843 [MAC_OSX] (sys_select): Use it.
12844 [MAC_OSX && SELECT_USE_CFSOCKET] (socket_callback): New function.
12845 [MAC_OSX && SELECT_USE_CFSOCKET]
12846 (SELECT_TIMEOUT_THRESHOLD_RUNLOOP, EVENT_CLASS_SOCK): New defines.
12847 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]: Use CFSocket and
12848 RunLoop for simultaneously monitoring two kinds of inputs, window
12849 events and process outputs, without periodically polling.
12850
12851 * macfns.c (mac_initialized): Remove extern.
12852 (stricmp): Put in #if 0. All callers changed to use xstricmp in
12853 xfaces.c.
12854 (strnicmp): Decrement `n' at the end of each loop, not the beginning.
12855 (check_mac): Use the term "Mac native windows" instead of "Mac OS".
12856 (check_x_display_info, x_display_info_for_name): Sync with xfns.c.
12857 (mac_get_rdb_resource): New function (from w32reg.c).
12858 (x_get_string_resource): Use it.
12859 (install_window_handler): Add extern.
12860 (mac_window): New function.
12861 (Fx_create_frame): Use it instead of make_mac_frame.
12862 Set parameter for Qfullscreen. Call x_wm_set_size_hint.
12863 (Fx_open_connection, Fx_close_connection): New defuns.
12864 (syms_of_macfns): Defsubr them.
12865 (x_create_tip_frame) [TARGET_API_MAC_CARBON]:
12866 Add kWindowNoUpdatesAttribute to the window attribute.
12867 (x_create_tip_frame) [!TARGET_API_MAC_CARBON]: Use NewCWindow.
12868 (x_create_tip_frame): Don't call ShowWindow.
12869 (Fx_show_tip): Call ShowWindow.
12870 (Fx_file_dialog): Change `#ifdef TARGET_API_MAC_CARBON' to `#if
12871 TARGET_API_MAC_CARBON'.
12872 (mac_frame_parm_handlers): Set handlers for Qfullscreen.
12873 (syms_of_macfns) [MAC_OSX]: Initialize mac_in_use to 0.
12874
12875 * macgui.h [!MAC_OSX]: Don't include Controls.h. Include Windows.h.
12876 (Window): Typedef to WindowPtr and move outside `#if
12877 TARGET_API_MAC_CARBON'.
12878 (XSizeHints): New struct.
12879
12880 * macterm.c (x_update_begin, x_update_end)
12881 [TARGET_API_MAC_CARBON]: Disable screen updates during update of a
12882 frame.
12883 (x_draw_glyph_string_background, x_draw_glyph_string_foreground)
12884 [MAC_OS8]: Use XDrawImageString/XDrawImageString16.
12885 (construct_mouse_click): Put in #if 0.
12886 (x_check_fullscreen, x_check_fullscreen_move): Remove decls.
12887 (x_scroll_bar_create, x_scroll_bar_handle_click): Change `#ifdef
12888 TARGET_API_MAC_CARBON' to `#if TARGET_API_MAC_CARBON'.
12889 (activate_scroll_bars, deactivate_scroll_bars)
12890 [!TARGET_API_MAC_CARBON]: Use ActivateControl/DeactivateControl.
12891 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Reposition window
12892 if the position is neither user-specified nor program-specified.
12893 (x_free_frame_resources): Free size_hints.
12894 (x_wm_set_size_hint): Allocate size_hints if needed. Set size_hints.
12895 (mac_clear_font_name_table): New function.
12896 (mac_do_list_fonts): Initialize font_name_table if needed.
12897 (x_list_fonts): Don't initialize font_name_table. Add BLOCK_INPUT
12898 around mac_do_list_fonts.
12899 (mac_unload_font): New function.
12900 (x_load_font): Add BLOCK_INPUT around XLoadQueryFont.
12901 (init_mac_drag_n_drop, mac_do_receive_drag): Enclose declarations
12902 and definitions with #if TARGET_API_MAC_CARBON.
12903 [USE_CARBON_EVENTS] (mac_handle_window_event): Add decl.
12904 (install_window_handler): Add decl.
12905 (do_window_update): Add BeginUpdate/EndUpdate for the tooltip
12906 window. Use UpdateControls. Get the rectangle that should be
12907 updated and restrict the target of expose_frame to it.
12908 (do_grow_window): Set minimum height/width according to size_hints.
12909 (do_grow_window) [TARGET_API_MAC_CARBON]: Use ResizeWindow.
12910 (do_zoom_window): Don't use x_set_window_size.
12911 [USE_CARBON_EVENTS] (mac_handle_window_event): New function.
12912 (install_window_handler): New function.
12913 [!USE_CARBON_EVENTS] (mouse_region): New variable.
12914 [!USE_CARBON_EVENTS] (mac_wait_next_event): New function.
12915 (XTread_socket) [USE_CARBON_EVENTS]: Move call to
12916 GetEventDispatcherTarget inside BLOCK_INPUT.
12917 (XTread_socket) [!USE_CARBON_EVENTS]: Use mac_wait_next_event.
12918 Update mouse_region when mouse is moved.
12919 (make_mac_frame): Remove.
12920 (make_mac_terminal_frame): Put in #ifdef MAC_OS8.
12921 Initialize mouse pointer shapes. Change values of f->left_pos and
12922 f->top_pos. Don't use make_mac_frame. Use NewCWindow.
12923 Don't call ShowWindow.
12924 (mac_initialize_display_info) [MAC_OSX]: Create mac_id_name from
12925 Vinvocation_name and Vsystem_name.
12926 (mac_make_rdb): New function (from w32term.c).
12927 (mac_term_init): Use it. Add BLOCK_INPUT. Error if display has
12928 already been opened. Don't pass argument to
12929 mac_initialize_display_info. Don't set dpyinfo->height/width.
12930 Add entries to x_display_list and x_display_name_list.
12931 (x_delete_display): New function.
12932 (mac_initialize): Don't call mac_initialize_display_info.
12933 (syms_of_macterm) [!MAC_OSX]: Don't call Fprovide.
12934
12935 * macterm.h (check_mac): Add extern.
12936 (struct mac_output): New member size_hints.
12937 (FRAME_SIZE_HINTS): New macro.
12938 (mac_unload_font): Add extern.
12939
12940 * xdisp.c (expose_window, expose_frame): Remove kludges for Mac.
12941
12942 * xfaces.c (clear_font_table) [MAC_OS]: Call mac_unload_font.
12943
12944 2004-12-27 Richard M. Stallman <rms@gnu.org>
12945
12946 * buffer.c (Fbuffer_disable_undo): Delete (move to simple.el).
12947 (syms_of_buffer): Don't defsubr it.
12948
12949 * process.c (list_processes_1): Set undo_list instead
12950 of calling Fbuffer_disable_undo.
12951
12952 * xdisp.c (single_display_spec_string_p): Rename from
12953 single_display_prop_string_p.
12954 (single_display_spec_intangible_p): Rename from
12955 single_display_prop_intangible_p.
12956 (handle_single_display_spec): Rename from handle_single_display_prop.
12957 Rewritten to be easier to understand.
12958
12959 Change in load-history format. Functions now get (defun . NAME),
12960 and variables get just NAME.
12961
12962 * data.c (Fdefalias): Use (defun . FN_NAME) in LOADHIST_ATTACH.
12963
12964 * eval.c (Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
12965 (Fdefvaralias, Fdefvar, Fdefconst): Use just SYM in LOADHIST_ATTACH.
12966 (Qdefvar): Var deleted.
12967 (syms_of_eval): Don't initialze it.
12968
12969 * lread.c (syms_of_lread) <load-history>: Doc fix.
12970
12971 2004-12-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12972
12973 * xmenu.c (popup_get_selection): Pop down on C-g.
12974 (set_frame_menubar): Install translations for Lucid/Motif/Lesstif that
12975 pops down menu on C-g.
12976 (xdialog_show): If dialog popped down and no button in the dialog was
12977 pushed, call Fsignal to quit.
12978 (xmenu_show): In no toolkit version, if menu returns NO_SELECT call
12979 Fsignal to quit.
12980
12981 * xfns.c (Fx_file_dialog): Motif/Lesstif version: Pop down on C-g.
12982
12983 * gtkutil.c (xg_initialize): Install bindings for C-g so that
12984 dialogs and menus pop down.
12985
12986 2004-12-27 Kenichi Handa <handa@m17n.org>
12987
12988 * coding.c (code_convert_region): Fix calculation of `ratio'.
12989
12990 2004-12-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
12991
12992 * gtkutil.c (update_frame_tool_bar): Make the value of
12993 tool-bar-button-margin control margins of images in tool bar.
12994
12995 * alloc.c (check_depth): New variable.
12996 (overrun_check_malloc, overrun_check_realloc): Only add
12997 overhead and write check pattern if check_depth is 1 (to handle
12998 recursive calls). Increase/decrease check_depth in entry/exit.
12999 (overrun_check_free): Only check for overhead if check_depth is 1.
13000 Increase/decrease check_depth in entry/exit.
13001
13002 2004-12-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13003
13004 * keyboard.c (input_available_signal): Call SIGNAL_THREAD_CHECK
13005 before touching input_available_clear_time, to avoid accessing it
13006 from multiple threads.
13007
13008 2004-12-23 Jason Rumney <jasonr@gnu.org>
13009
13010 * image.c (__WIN32__) [HAVE_NTGUI]: Define for correct behaviour
13011 of JPEG library.
13012
13013 2004-12-22 Richard M. Stallman <rms@gnu.org>
13014
13015 * emacs.c (main): If batch mode, set Vundo_outer_limit to nil.
13016
13017 * lisp.h (Vundo_outer_limit): Fix decl.
13018
13019 * undo.c (Vundo_outer_limit): Replaces undo_outer_limit.
13020 Uses changed.
13021 (syms_of_undo): Initialize appropriately.
13022 (truncate_undo_list): If it's nil, there's no limit.
13023
13024 2004-12-22 Kenichi Handa <handa@m17n.org>
13025
13026 * xselect.c (Fx_get_cut_buffer_internal): Return a unibyte string.
13027
13028 2004-12-21 Richard M. Stallman <rms@gnu.org>
13029
13030 * eval.c (unwind_to_catch): Clear immediate_quit.
13031
13032 * xdisp.c (get_next_display_element): Display codes 8a0 and 8ad
13033 specially as `\ ' and `\-'.
13034
13035 * keyboard.c (kbd_buffer_store_event_hold):
13036 In the code for while-no-input, handle immediate_quit.
13037
13038 * alloc.c (Fgarbage_collect): Update call to truncate_undo_list.
13039 Call that at the very start.
13040 (undo_limit, undo_strong_limit, undo_outer_limit): Move to undo.c.
13041 (syms_of_alloc): Don't define undo-limit,
13042 undo-strong-limit and undo-outer-limit here.
13043
13044 * undo.c (truncate_undo_list): Return void.
13045 Take just one argument, the buffer.
13046 Make it current, and inhibit recursive GC.
13047 Access and update the undo list directly; return void.
13048 Refer to the undo...limit variables directly.
13049 Test undo_outer_limit only after counting the whole current command.
13050 When it's exceeded, call the function in undo-outer-limit-function.
13051 (undo_limit, undo_strong_limit, undo_outer_limit): From alloc.c.
13052 (Vundo_outer_limit_function): New variable.
13053 (syms_of_undo): Define undo-limit, undo-strong-limit
13054 and undo-outer-limit here, and undo-outer-limit-function.
13055 Doc fixes.
13056
13057 * lisp.h (truncate_undo_list): Update decl.
13058
13059 2004-12-21 Piet van Oostrum <piet@cs.uu.nl>
13060
13061 * fileio.c (Fread_file_name): Delete duplicates in
13062 file-name-history when history_delete_duplicates is true.
13063
13064 2004-12-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13065
13066 * macterm.c (mac_do_list_fonts): Fix memory leak.
13067
13068 2004-12-20 Richard M. Stallman <rms@gnu.org>
13069
13070 * regex.c (re_match_2_internal) <symend, wordend>:
13071 Fix calls to UPDATE_SYNTAX_TABLE_FORWARD.
13072
13073 2004-12-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13074
13075 * macterm.c (endif, x_font_name_to_mac_font_name):
13076 Use maccentraleurroman instead of maccentraleuropean
13077 (mac_c_string_match, mac_do_list_fonts): Speed up font search by
13078 quickly finding a specific font without needing regexps.
13079
13080 2004-12-15 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13081
13082 * syssignal.h: Declare main_thread.
13083 (SIGNAL_THREAD_CHECK): New macro.
13084
13085 * keyboard.c (input_available_signal): Move thread checking code
13086 to macro SIGNAL_THREAD_CHECK and call that macro.
13087 (interrupt_signal): Call SIGNAL_THREAD_CHECK.
13088
13089 * alloc.c (uninterrupt_malloc): Move main_thread to emacs.c.
13090
13091 * emacs.c: Define main_thread.
13092 (main): Initialize main_thread.
13093 (handle_USR1_signal, handle_USR2_signal, fatal_error_signal)
13094 (memory_warning_signal): Call SIGNAL_THREAD_CHECK.
13095
13096 * floatfns.c (float_error): Call SIGNAL_THREAD_CHECK.
13097
13098 * dispnew.c (window_change_signal): Call SIGNAL_THREAD_CHECK.
13099
13100 * sysdep.c (select_alarm): Call SIGNAL_THREAD_CHECK.
13101
13102 * process.c (send_process_trap, sigchld_handler):
13103 Call SIGNAL_THREAD_CHECK.
13104
13105 * data.c (arith_error): Call SIGNAL_THREAD_CHECK.
13106
13107 * atimer.c (alarm_signal_handler): Call SIGNAL_THREAD_CHECK.
13108
13109 * xterm.c (xg_scroll_callback): Update XG_LAST_SB_DATA before
13110 returning when xg_ignore_gtk_scrollbar is true.
13111
13112 2004-12-14 Kim F. Storm <storm@cua.dk>
13113
13114 * keyboard.c (read_char): Save and restore echo_string when
13115 handling input method.
13116
13117 2004-12-13 Richard M. Stallman <rms@gnu.org>
13118
13119 * eval.c (syms_of_eval) <quit-flag>: Doc fix.
13120
13121 * keyboard.c (Vthrow_on_input): New variable.
13122 (syms_of_keyboard): Defvar and initialize it.
13123 (kbd_buffer_store_event_hold): Handle Vthrow_on_input.
13124
13125 * lisp.h (QUIT): Check for Vthrow_on_input.
13126 (Vthrow_on_input): Declare it.
13127
13128 2004-12-13 Kim F. Storm <storm@cua.dk>
13129
13130 * xdisp.c (set_iterator_to_next): Reset stop_charpos after display
13131 vector.
13132
13133 2004-12-12 Richard M. Stallman <rms@gnu.org>
13134
13135 * indent.c (Fvertical_motion): Call move_it_by_lines even if LINES = 0.
13136
13137 * minibuf.c (Fall_completions): Add var `zero' and use it in loop.
13138 (Ftry_completion): Really use outer `zero'; eliminate inner one.
13139
13140 2004-12-12 Kenichi Handa <handa@m17n.org>
13141
13142 * term.c (encode_terminal_code): Fix previous change.
13143
13144 2004-12-11 Stefan Monnier <monnier@iro.umontreal.ca>
13145
13146 * keyboard.c (handle_async_input): Remove pthread mutex handling.
13147 (input_available_signal): Move pthread thingy to !SYNC_INPUT branch.
13148
13149 * syntax.c (Fforward_word): Avoid non-idempotent side-effects
13150 in macro arguments.
13151
13152 * minibuf.c (Ftry_completion, Fall_completions): Don't use
13153 XFASTINT blindly.
13154
13155 * emacs.c (main, Fdump_emacs): Don't touch malloc hooks if SYNC_INPUT.
13156
13157 2004-12-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13158
13159 * w32term.c (x_calc_absolute_position): Remove calculation of
13160 difference between inner and outer window. Don't subtract difference
13161 for left and top calculations.
13162
13163 * xterm.c (x_calc_absolute_position): Don't subtract outer_pixel_diff
13164 for left and top calculations. Remove call to x_real_positions.
13165 [Bug report by Drew Adams in November.]
13166 (x_check_expected_move): Do not set change_gravity to 1 when calling
13167 x_set_offset.
13168
13169 2004-12-08 Richard M. Stallman <rms@gnu.org>
13170
13171 * xdisp.c (get_next_display_element): Use `escape-glyph' for
13172 control chars and escaped octal codes.
13173 (Qescape_glyph): New variable.
13174 (syms_of_xdisp): Initialize it.
13175 (escape_glyph_face): New variable.
13176 (redisplay_window): Initialize it.
13177
13178 2004-12-07 Paul Eggert <eggert@cs.ucla.edu>
13179
13180 * image.c (our_fill_input_buffer, jpeg_load, CHECK_LIB_AVAILABLE)
13181 (init_image): Use 1 rather than TRUE. TRUE's not always defined.
13182
13183 2004-12-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13184
13185 * emacs.c (Fdump_emacs): Add ! defined (SYSTEM_MALLOC) around
13186 reset_malloc_hooks.
13187
13188 * keyboard.c (handle_async_input, input_available_signal):
13189 Add ! defined (SYSTEM_MALLOC) around thread code.
13190
13191 * alloc.c: Add comment about the reason for (UN)BLOCK_INPUT_ALLOC.
13192
13193 2004-12-07 Stefan Monnier <monnier@iro.umontreal.ca>
13194
13195 * eval.c (init_eval_once): Increase max_specpdl_size to 1000.
13196
13197 * config.in: Regenerate.
13198
13199 2004-12-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13200
13201 * xmenu.c (Fx_popup_menu): Correct documentation about position.
13202 (xmenu_show): Do not call XTranslateCoordinates. Adjust position
13203 if not given by a mouse click to correspond with x-popup-menu
13204 documentation.
13205
13206 * config.in: Regenerate.
13207
13208 * gtkutil.c: Include signal.h and syssignal.h.
13209 (xg_get_file_name): Block and unblock __SIGRTMIN if defined.
13210
13211 * alloc.c: If HAVE_GTK_AND_PTHREAD, include pthread.h,
13212 new variables main_thread and alloc_mutex,
13213 define (UN)BLOCK_INPUT_ALLOC to use alloc_mutex to protect
13214 emacs_blocked_* calls and only do (UN)BLOCK_INPUT in the main thread.
13215 If not HAVE_GTK_AND_PTHREAD, (UN)BLOCK_INPUT_ALLOC is the same
13216 as (UN)BLOCK_INPUT.
13217 (emacs_blocked_free, emacs_blocked_malloc)
13218 (emacs_blocked_realloc): Use (UN)BLOCK_INPUT_ALLOC.
13219 (uninterrupt_malloc): Initialize main_thread and alloc_mutex.
13220 (reset_malloc_hooks): New function.
13221
13222 * lisp.h: Declare reset_malloc_hooks.
13223
13224 * emacs.c (Fdump_emacs): Call reset_malloc_hooks.
13225
13226 * keyboard.c: Conditionally include pthread.h.
13227 (handle_async_input, input_available_signalt): If not in the main
13228 thread, block signal, send signal to main thread and return.
13229
13230 * gtkutil.c (xg_get_file_with_chooser): Handle local files only.
13231 Set current folder in file chooser if default_filename is a directory.
13232
13233 2004-12-05 Stefan Monnier <monnier@iro.umontreal.ca>
13234
13235 * regex.c (GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
13236 Remove redundant correctness checks.
13237 (regex_compile): Fix up error codes for \{..\} expressions.
13238
13239 2004-12-05 Richard M. Stallman <rms@gnu.org>
13240
13241 * regex.c (regex_compile): Fix end-of-pattern case for space.
13242
13243 2004-12-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13244
13245 * macterm.h (cfstring_create_with_utf8_cstring): Add prototype.
13246 * mac.c (cfstring_create_with_utf8_cstring): Add to prevent
13247 crashes with invalid characters.
13248 * macmenu.c (add_menu_item): Use it.
13249 * image.c (image_load_quartz2d): Likewise.
13250 * macfns.c (x_set_name, x_set_title): Likewise.
13251 (Fx_file_dialog): Likewise. Use constant CFRefs instead of
13252 creating them each time for labels.
13253
13254 2004-12-02 Richard M. Stallman <rms@gnu.org>
13255
13256 * config.in (RE_TRANSLATE_P): If make_number is not a macro,
13257 don't use it here.
13258
13259 * eval.c (Fcalled_interactively_p): Don't check INTERACTIVE.
13260 (interactive_p): Skip Scalled_interactively_p frames
13261 like Sinteractive_p frames.
13262 (unwind_to_catch): Clear handling_signal.
13263
13264 * data.c (Fmake_variable_buffer_local): Doc fix.
13265 (Fmake_local_variable): Doc fix.
13266
13267 * insdel.c (insert_from_string_before_markers)
13268 (insert_from_string): Don't modify buffer on empty insertion.
13269
13270 * window.c (Fget_lru_window, Fget_largest_window): Doc fixes.
13271
13272 2004-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13273
13274 * macmenu.c (add_menu_item): Fallback on MacRoman if encoding
13275 menu text as UTF8 fails.
13276
13277 2004-12-01 Kim F. Storm <storm@cua.dk>
13278
13279 * alloc.c: Add commentary for last change.
13280 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): New macros to handle
13281 sizeof(size_t) != 4.
13282 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
13283 Use them. Also clear header and trailer of freed memory.
13284 (GC_STRING_OVERRUN_COOKIE_SIZE): Rename from GC_STRING_EXTRA.
13285 (string_overrun_cookie): Rename from string_overrun_pattern.
13286 (GC_STRING_EXTRA): Define from GC_STRING_OVERRUN_COOKIE_SIZE.
13287
13288 2004-12-01 Andreas Schwab <schwab@suse.de>
13289
13290 * lisp.h: Declare string_to_multibyte.
13291
13292 2004-12-01 Kenichi Handa <handa@m17n.org>
13293
13294 * w32console.c (w32con_write_glyphs): Decide coding here.
13295 Adjusted for the change of encode_terminal_code.
13296
13297 * term.c (encode_terminal_code): Don't make it "static".
13298
13299 2004-11-30 Kenichi Handa <handa@m17n.org>
13300
13301 * term.c (encode_terminal_buf, encode_terminal_bufsize): New variables.
13302 (encode_terminal_code): Argument changed. Encode all
13303 characters at once, and return a pointer to the result of encoding.
13304 (write_glyphs): Decide coding here. Adjusted for the above change.
13305 (insert_glyphs): Likewise.
13306 (term_init): Initialize encode_terminal_bufsize to 0.
13307
13308 * coding.c (Vcode_conversion_workbuf_name): New variable.
13309 (syms_of_coding): Initialize and staticpro it.
13310 (set_conversion_work_buffer): New function.
13311 (run_pre_post_conversion_on_str): Use it.
13312 (run_pre_write_conversin_on_c_str): New function.
13313
13314 * coding.h (run_pre_write_conversin_on_c_str): Extern it.
13315
13316 2004-11-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13317
13318 * keyboard.c: Don't undef SIGIO
13319 * s/darwin.h (NO_SOCK_SIGIO): Define NO_SOCK_SIGIO on carbon
13320 * Makefile.in (mac.o): Depend on blockinput.h and atimer.h.
13321 (macfns.o): Don't depend on ccl.h.
13322 * macfns.c (mac_frame_parm_handlers): Set handlers for
13323 Qleft_fringe and Qright_fringe.
13324 * macterm.c (mac_fill_rectangle_to_pixmap)
13325 (mac_draw_rectangle_to_pixmap, mac_copy_area_to_pixmap)
13326 (mac_copy_area_with_mask_to_pixmap, x_draw_image_foreground_1):
13327 Put in #if 0.
13328 (mac_scroll_area) [TARGET_API_MAC_CARBON]: Use ScrollWindowRect.
13329 (x_flush) [TARGET_API_MAC_CARBON]: Don't traverse frames.
13330 (XFlush) [TARGET_API_MAC_CARBON]: Define to an empty replacement.
13331 (x_draw_glyph_string_background, x_draw_glyph_string_foreground)
13332 [!MAC_OS8]: Added ifdef'd out code for os8. Don't use
13333 XDrawImageString. Always draw background and foreground separately.
13334 (x_draw_image_foreground): Use clipping instead of computing the
13335 intersection rectangle.
13336 (x_draw_image_glyph_string): Don't draw an image with mask to a
13337 pixmap.
13338 (x_redisplay_interface): Set flush_display_optional member to 0.
13339 (XTread_socket): Correctly reset the TEConverter
13340 object.
13341
13342 2004-11-30 Kim F. Storm <storm@cua.dk>
13343
13344 * lisp.h: New defines to enable buffer overrun checking.
13345 (GC_CHECK_STRING_OVERRUN, GC_CHECK_STRING_FREE_LIST)
13346 (XMALLOC_OVERRUN_CHECK, GC_CHECK_CONS_LIST): Add.
13347
13348 * alloc.c: Add more checks for buffer overruns.
13349 (XMALLOC_OVERRUN_CHECK_SIZE, xmalloc_overrun_check_header)
13350 xmalloc_overrun_check_trailer, overrun_check_malloc)
13351 overrun_check_realloc, overrun_check_free): Add.
13352 (GC_STRING_EXTRA, string_overrun_pattern): Add.
13353 (check_sblock, allocate_string_data, compact_small_strings):
13354 Set and check string_overrun_pattern if GC_CHECK_STRING_OVERRUN.
13355 (check_cons_list): Condition on GC_CHECK_CONS_LIST.
13356 (check_string_free_list): Add.
13357 (allocate_string, sweep_strings): Call check_string_free_list.
13358
13359 * emacs.c (malloc_initialize_hook): Don't free malloc_state_ptr if
13360 XMALLOC_OVERRUN_CHECK to avoid crash during load.
13361
13362 2004-11-29 Kim F. Storm <storm@cua.dk>
13363
13364 * fns.c (concat): Use SAFE_ALLOCA.
13365
13366 2004-11-29 Stefan Monnier <monnier@iro.umontreal.ca>
13367
13368 * sysdep.c (emacs_write): Don't use QUIT.
13369
13370 2004-11-29 Kenichi Handa <handa@m17n.org>
13371
13372 * buffer.c (init_buffer): Set current_buffer->directory to a
13373 multibyte string made by string_to_multibyte.
13374
13375 * emacs.c (init_cmdargs): Set unibyte strings in Vcommand_line_args.
13376
13377 2004-11-27 Andreas Schwab <schwab@suse.de>
13378
13379 * alloc.c (mark_stack): Call GC_MARK_SECONDARY_STACK if defined.
13380
13381 * s/gnu-linux.h: Enable no-op gcpros on ia64.
13382 (GC_MARK_SECONDARY_STACK) [__ia64__]: Define.
13383
13384 * filelock.c (lock_file_1): Call get_boot_time early.
13385 Increase buffer size.
13386
13387 2004-11-27 Eli Zaretskii <eliz@gnu.org>
13388
13389 * lisp.h (DECL_ALIGN): Define non-trivially only if NO_DECL_ALIGN
13390 is not defined.
13391
13392 2004-11-27 Kim F. Storm <storm@cua.dk>
13393
13394 * search.c (syms_of_search) <search-spaces-regexp>: Move 'doc:'
13395 marker out of doc string.
13396
13397 2004-11-26 Stefan Monnier <monnier@iro.umontreal.ca>
13398
13399 * s/darwin.h (POSIX_SIGNALS): Undo the removal of 2002-08-25,
13400 which was not mentioned in the log.
13401
13402 2004-11-26 Kim F. Storm <storm@cua.dk>
13403
13404 * fringe.c (update_window_fringes): Prefer truncation bitmaps over
13405 angle bitmaps at top/bottom line.
13406
13407 * xdisp.c: Undo recent changes for restoring saved_face_id. Instead,
13408 set it when it->method is set to next_element_from_display_vector.
13409 (setup_for_ellipsis): Add LEN argument. Callers changed.
13410 Set it->saved_face_id.
13411 (get_next_display_element): Use loop instead of recursion.
13412 Set it->saved_face_id. Combine duplicate code for ctr chars.
13413 (next_element_from_display_vector): Do not set it->saved_face_id.
13414 (next_element_from_ellipsis): Use setup_for_ellipsis.
13415
13416 2004-11-26 Eli Zaretskii <eliz@gnu.org>
13417
13418 * eval.c (Fdefvar): Declare pdl from last change as `volatile' to
13419 prevent compiler warnings.
13420
13421 2004-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
13422
13423 * keyboard.c (command_loop_1): Print a message describing the key
13424 the user just pressed when this key has no binding.
13425
13426 * sysdep.c (sys_signal): Don't use SA_RESTART if SYNC_INPUT is set.
13427 (emacs_open, emacs_read, emacs_write): Check QUIT when interrupted.
13428
13429 * lread.c (readchar): Check QUIT when `getc' is interrupted.
13430
13431 2004-11-24 Richard M. Stallman <rms@gnu.org>
13432
13433 * coding.c (run_pre_post_conversion_on_str): Bind Qinhibit_read_only.
13434
13435 * buffer.c (syms_of_buffer) <indicate-buffer-boundaries>: Doc fix.
13436
13437 2004-11-24 Kim F. Storm <storm@cua.dk>
13438
13439 * xdisp.c (move_it_in_display_line_to, display_line):
13440 Restore saved_face_id also when truncate-lines or hscrolled.
13441
13442 2004-11-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13443
13444 * gtkutil.c (xg_get_file_name): Rename use-old-gtk-file-dialog to
13445 x-use-old-gtk-file-dialog.
13446
13447 * xfns.c: Define x_use_old_gtk_file_dialog.
13448 (syms_of_xfns): Rename use-old-gtk-file-dialog to x-... Move it
13449 outside ifdef USE_GTK.
13450
13451 2004-11-23 Stefan Monnier <monnier@iro.umontreal.ca>
13452
13453 * coding.h (ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
13454 Don't use XFASTINT blindly.
13455
13456 * config.in (RE_TRANSLATE_P): Don't use XFASTINT blindly.
13457
13458 * indent.c (skip_invisible): Avoid non-idempotent side-effects
13459 in macro arguments.
13460
13461 * keymap.c (Flookup_key): Check INTEGERP before XINT.
13462
13463 * lread.c (oblookup): Don't use XFASTINT blindly.
13464
13465 * window.c (Fset_window_scroll_bars): Don't use XINT if it isn't int.
13466 (decode_next_window_args, window_loop): Don't use XFASTINT blindly.
13467
13468 2004-11-23 Kim F. Storm <storm@cua.dk>
13469
13470 * dispextern.h (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P)
13471 (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Not if dpvec_index is zero.
13472
13473 * xfaces.c (lookup_named_face): Add signal_p arg. Return -1 if
13474 signal_p is zero and face name is unknown.
13475 (Fx_list_fonts): Don't signal error in lookup_named_face.
13476 (Fface_font): Signal error in lookup_named_face.
13477 (ascii_face_of_lisp_face): Likewise.
13478
13479 * dispextern.h (lookup_named_face): Fix prototype.
13480
13481 * xdisp.c (handle_single_display_prop): Don't signal error in
13482 lookup_named_face for unknown fringe face name.
13483 (highlight_trailing_whitespace): Don't signal error in
13484 lookup_named_face if trailing-whitespace face unknown.
13485 (calc_line_height_property): Don't signal error in
13486 lookup_named_face if specified face name is unknown.
13487
13488 * fringe.c (update_window_fringes): Show top row indicator if
13489 window has header-line. Don't show arrow at bob and eob
13490 if the boundary indicators are not used.
13491 (Fset_fringe_bitmap_face): Signal error in lookup_named_face.
13492
13493 * window.c (set_window_buffer): Clear display_error_modiff.
13494
13495 2004-11-22 Kim F. Storm <storm@cua.dk>
13496
13497 * fringe.c (update_window_fringes): Provide sensible fall-back
13498 value for non-nil indicate-buffer-boundaries setting.
13499
13500 2004-11-22 Markus Rost <rost@ias.edu>
13501
13502 * minibuf.c (Fminibuffer_complete_and_exit): Fix previous change.
13503
13504 2004-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
13505
13506 * eval.c (Fdefvar): Warn when var is let-bound but globally void.
13507
13508 2004-11-21 Kim F. Storm <storm@cua.dk>
13509
13510 * xdisp.c (erase_phys_cursor): Clear hollow cursor inside TEXT_AREA.
13511
13512 * xterm.c (x_clip_to_row): Add area arg. Callers changed.
13513 (x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
13514
13515 * w32term.c (w32_clip_to_row): Add area arg. Callers changed.
13516 (x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
13517
13518 * macterm.c (x_clip_to_row): Add area arg. Callers changed.
13519 (x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
13520
13521 * xdisp.c (move_it_in_display_line_to, display_line):
13522 Restore saved_face_id if overflow-newline-into-fringe is enabled and
13523 line is continued before or in middle of element from display vector.
13524
13525 * indent.c (Fvertical_motion): Fix last change. Use another
13526 method to detect if iterator moved too far ahead after reseat.
13527
13528 * xdisp.c (IT_EXPAND_MATRIX_WIDTH): New macro. Do not
13529 expand matrix width for overflow in zero-width area.
13530 (append_glyph, append_composite_glyph, produce_image_glyph)
13531 (append_stretch_glyph): Use it to avoid loop in redisplay.
13532 (note_mode_line_or_margin_highlight): Don't let help-echo from
13533 string override help-echo from image map.
13534
13535 2004-11-20 Luc Teirlinck <teirllm@auburn.edu>
13536
13537 * fns.c (Fyes_or_no_p): Call Fread_from_minibuffer with extra argument.
13538 * callint.c (Fcall_interactively): Ditto.
13539
13540 2004-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
13541
13542 * minibuf.c (Fminibuffer_complete_and_exit):
13543 Fixup the case of the completed value, for case-indep completion.
13544
13545 2004-11-20 Richard M. Stallman <rms@gnu.org>
13546
13547 * lisp.h (Fread_from_minibuffer): Add arg in decl.
13548
13549 * minibuf.c (read_minibuf): New arg KEEP_ALL. Callers changed.
13550 (Fread_from_minibuffer): New arg KEEP_ALL. Callers changed.
13551
13552 * search.c (Vsearch_spaces_regexp):
13553 Rename from Vsearch_whitespace_regexp. All uses changed.
13554
13555 2004-11-20 Thien-Thi Nguyen <ttn@gnu.org>
13556
13557 * eval.c (init_eval_once): Increase `max_specpdl_size' to 650.
13558
13559 2004-11-19 Richard M. Stallman <rms@gnu.org>
13560
13561 * search.c (Vsearch_whitespace_regexp): New variable.
13562 (syms_of_search): Defvar it.
13563 (compile_pattern_1): Call re_set_whitespace_regexp with it.
13564 (search_buffer): No regexp is trivial if Vsearch_whitespace_regexp
13565 is non-nil.
13566 (struct regexp_cache): New element whitespace_regexp.
13567 (syms_of_search): Initialize whitespace_regexp elements.
13568 (compile_pattern): Compare whitespace_regexp elements.
13569 (compile_pattern_1): Set whitespace_regexp elements.
13570
13571 * regex.c (regex_compile): Substitute whitespace_regexp
13572 for spaces, if it is nonzero.
13573 (whitespace_regexp): New variable.
13574 (re_set_whitespace_regexp): New function.
13575
13576 2004-11-19 Kim F. Storm <storm@cua.dk>
13577
13578 * indent.c (Fvertical_motion): Fix last change.
13579
13580 2004-11-18 Kim F. Storm <storm@cua.dk>
13581
13582 * indent.c (Fvertical_motion): Undo 2004-11-16 change.
13583 Instead, move back again if reseating moves too far ahead.
13584
13585 2004-11-17 Luc Teirlinck <teirllm@auburn.edu>
13586
13587 * xdisp.c (message3): Call clear_message.
13588
13589 2004-11-17 Kim F. Storm <storm@cua.dk>
13590
13591 * xdisp.c (erase_phys_cursor): Adjust cursor row visible height.
13592
13593 2004-11-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13594
13595 * gtkutil.c (xg_get_file_name): Typo in HAVE_GTK_FILE_SELECTION_NEW.
13596
13597 * xmenu.c (x_menu_in_use): Remove.
13598 (x_menu_set_in_use): Also set popup_activated_flag.
13599
13600 * xfns.c (Fx_file_dialog): Call popup_activated instead of
13601 x_menu_in_use. Call x_menu_set_in_use in Motif version also.
13602
13603 * xterm.h (x_menu_in_use): Remove.
13604
13605 2004-11-16 Richard M. Stallman <rms@gnu.org>
13606
13607 * keymap.c (Fmap_keymap): New arg SORT-FIRST.
13608 Use map-keymap-internal to implement that.
13609
13610 * indent.c (Fvertical_motion): In batch mode, use vmotion directly.
13611
13612 2004-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
13613
13614 * xdisp.c (get_glyph_string_clip_rect, init_glyph_string): Check it's
13615 a window before using XWINDOW.
13616
13617 * window.c (make_window, Fselect_window, make_dummy_parent)
13618 (save_window_save):
13619 * frame.c (make_frame):
13620 * fns.c (concat): Avoid side-effects inside XSETFASTINT's arguments.
13621
13622 * lisp.h (NILP): Use EQ rather than XFASTINT.
13623
13624 2004-11-16 Kim F. Storm <storm@cua.dk>
13625
13626 * fringe.c (Fdefine_fringe_bitmap): Always set 'h'. Simplify.
13627
13628 * indent.c (Fvertical_motion): Fix last change. Only reseat when
13629 moving backwards.
13630
13631 2004-11-16 Luc Teirlinck <teirllm@auburn.edu>
13632
13633 * dispextern.h: Extern reseat_at_previous_visible_line_start.
13634
13635 2004-11-16 Kenichi Handa <handa@m17n.org>
13636
13637 * xdisp.c (display_mode_element): Fix previous change (calculate
13638 end position of substring to display correctly).
13639
13640 2004-11-16 Kim F. Storm <storm@cua.dk>
13641
13642 * keyboard.c (Fposn_at_point): Remove extra */ after doc string.
13643 Reported by Andrew M. Scott.
13644
13645 2004-11-15 Kim F. Storm <storm@cua.dk>
13646
13647 * fns.c (Fsafe_plist_get): New defun.
13648 (syms_of_fns): Defsubr it.
13649
13650 * lisp.h (Fsafe_plist_get): Add EXFUN.
13651
13652 * xdisp.c (store_mode_line_string, produce_stretch_glyph):
13653 Use Fsafe_plist_get.
13654 (note_mode_line_or_margin_highlight, note_mouse_highlight):
13655 Fix image map element parsing. Use Fsafe_plist_get.
13656
13657 2004-11-15 Richard M. Stallman <rms@gnu.org>
13658
13659 * xdisp.c (get_next_display_element): Fix previous change.
13660
13661 2004-11-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13662
13663 * window.c (shrink_windows): Handle special case of one window left
13664 when trying to shrink the final reminder. Grow windows if
13665 total_removed is less than total_shrink.
13666
13667 * xmenu.c (pop_down_menu): Remove global variable current_menu,
13668 extract pointer from arg with XSAVE_VALUE.
13669 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
13670 Construct arg to record_unwind_protect with make_save_value.
13671
13672 2004-11-13 Richard M. Stallman <rms@gnu.org>
13673
13674 * xdisp.c (reseat_at_previous_visible_line_start): No longer static.
13675 (get_next_display_element): Fix previous change to apply only to \n.
13676
13677 * indent.c (Fvertical_motion): Scan to PT from start of line to
13678 make iterator consistent.
13679
13680 * minibuf.c (syms_of_minibuf) <completion-ignore-case>: Doc fix.
13681
13682 2004-11-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13683
13684 * gtkutil.c (pop_down_file_dialog): Add BLOCK_INPUT.
13685
13686 * xfns.c (Fx_file_dialog): Call x_menu_in_use and x_menu_set_in_use.
13687 Record unwind with clean_up_file_dialog.
13688
13689 * xterm.h (x_menu_in_use, x_menu_set_in_use, x_menu_wait_for_event):
13690 Declare.
13691
13692 * xmenu.c (x_menu_in_use, x_menu_set_in_use): New functions.
13693
13694 2004-11-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13695
13696 * gtkutil.c (xg_file_sel_ok, xg_file_sel_cancel)
13697 (xg_file_sel_destroy): Remove.
13698 (xg_file_response_cb, pop_down_file_dialog)
13699 (xg_get_file_name_from_chooser, xg_get_file_name_from_selector):
13700 New functions.
13701 (xg_get_file_with_chooser, xg_get_file_with_selection):
13702 Take new arg func, set it to xg_get_file_name_from_chooser/selector.
13703 Move common code to xg_get_file_name. Return widget created.
13704 (xg_get_file_name): Set name, transient for, modal and destroy
13705 with parent here. Connect response signal to xg_file_response_cb,
13706 connect delete-event to gtk_true. Record pop_down_file_dialog
13707 for unwind. Do event loop and call x_menu_wait_for_event in loop.
13708 (xg_create_widget): Make dialogs modal.
13709
13710 * xmenu.c (unuse_menu_items, pop_down_menu): Arg is of type
13711 Lisp_Object.
13712 (popup_get_selection): Move unwind protect ...
13713 (create_and_show_popup_menu, create_and_show_dialog): ... to here.
13714 Move destroy of widget to pop_down_menu.
13715 (popup_widget_loop): Move unwind protect ...
13716 (create_and_show_popup_menu, create_and_show_dialog): ... to here.
13717 Move destroy of widget to pop_down_menu.
13718 (pop_down_menu): BLOCK_INPUT and destroy widget/window.
13719 (xmenu_show): Record unwind pop_down_menu. Move XMenuDestroy,
13720 x_mouse_leave and grabbed = 0 to pop_down_menu.
13721
13722 2004-11-13 Kim F. Storm <storm@cua.dk>
13723
13724 * xdisp.c (make_cursor_line_fully_visible_p): New variable.
13725 (syms_of_xdisp): DEFVAR_BOOL it.
13726 (make_cursor_line_fully_visible, try_cursor_movement)
13727 (try_window_id): Use it.
13728
13729 2004-11-12 Kim F. Storm <storm@cua.dk>
13730
13731 * dispextern.h (struct glyph_row): New member extra_line_spacing.
13732 (struct it): New member max_extra_line_spacing.
13733 (MR_PARTIALLY_VISIBLE, MR_PARTIALLY_VISIBLE_AT_TOP)
13734 (MR_PARTIALLY_VISIBLE_AT_BOTTOM): New helper macros.
13735 (MATRIX_ROW_PARTIALLY_VISIBLE_P): Fix to return false if invisible
13736 part of last line is only extra line spacing (so the text on the
13737 line is fully visible). Use helper macros.
13738 Add W arg (to use them). All callers changed.
13739 (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P)
13740 (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P): Use helper macros.
13741
13742 * window.c (window_scroll_pixel_based, Frecenter):
13743 Use move_it_vertically_backward directly.
13744 (Frecenter): Fix calculation of new start pos for negative arg.
13745 Before, the new start pos was sometimes chosen too far back, so
13746 the last line became only partially visible, and thus would be
13747 either only semi-visible or automatically scrolled to the middle
13748 of the window by redisplay.
13749
13750 * xdisp.c (init_iterator): Clear it.max_extra_line_spacing.
13751 (move_it_vertically_backward): Don't recure to move further back.
13752 (move_it_vertically): Remove superfluous condition.
13753 (move_it_by_lines): Clear last_height when moved 0 lines.
13754 (resize_mini_window): Use it.max_extra_line_spacing.
13755 (display_tool_bar_line): Clear row->extra_line_spacing.
13756 (try_scrolling): Use move_it_vertically_backward directly.
13757 (redisplay_window): Likewise.
13758 (compute_line_metrics): Set row->extra_line_spacing.
13759 (display_line, display_string): Likewise.
13760 (x_produce_glyphs): Update it->max_extra_line_spacing.
13761
13762 * xmenu.c (pop_down_menu): Return nil.
13763
13764 2004-11-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13765
13766 * xmenu.c (x_menu_wait_for_event): New function.
13767 (popup_get_selection, popup_widget_loop): Call x_menu_wait_for_event
13768 to handle timers.
13769 (popup_widget_loop): Add argument do_timers.
13770 (create_and_show_popup_menu, create_and_show_dialog): Pass 1 for
13771 do_timers to popup_widget_loop.
13772 (xmenu_show): Call XMenuActivateSetWaitFunction so that
13773 x_menu_wait_for_event is called by XMenuActivate.
13774 (create_and_show_popup_menu): Pass 1 for do_timers to
13775 popup_get_selection.
13776 (pop_down_menu): New function.
13777 (popup_get_selection, popup_widget_loop): Unwind protect to
13778 pop_down_menu.
13779 (popup_widget_loop): Add argument widget.
13780 (create_and_show_popup_menu, create_and_show_dialog): Pass new
13781 argument widget to popup_widget_loop.
13782
13783 2004-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
13784
13785 * keymap.c (Fkeymap_prompt): Accept symbol keymaps.
13786
13787 2004-11-09 Kim F. Storm <storm@cua.dk>
13788
13789 * xselect.c: Include <sys/types.h> and <unistd.h> (for getpid).
13790 Fix various comments referring to XEvents instead of input events.
13791 (x_queue_event): Fix format strings.
13792 (x_stop_queuing_selection_requests): Likewise.
13793
13794 * xdisp.c (produce_image_glyph): Remove unused variable 'face_ascent'.
13795 (pint2hrstr): Add extra braces to silence compiler.
13796
13797 * print.c (print_object): Fix format string.
13798
13799 * lread.c (read1): Fix next_char matching.
13800
13801 * lisp.h (Fdelete): Add EXFUN.
13802 (replace_range_2): Add prototype.
13803
13804 * keyboard.c (read_avail_input): Remove unused variable 'discard'.
13805
13806 * intervals.h (NULL_INTERVAL_P): Add separate version when
13807 ENABLE_CHECKING is not defined to silence compiler.
13808 (compare_string_intervals): Add prototype.
13809
13810 * fringe.c (destroy_fringe_bitmap): Fix return type.
13811 (Ffringe_bitmaps_at_pos): Remove unused var 'old_buffer'.
13812
13813 * emacs.c (Fdump_emacs): Fix format string.
13814
13815 * doc.c: Include <ctype.h>.
13816 (Fsubstitute_command_keys): Remove unused variable 'firstkey'.
13817
13818 * data.c (store_symval_forwarding): Remove unused variables.
13819
13820 * callint.c (Fcall_interactively): Remove unused variable 'funcar'.
13821
13822 2004-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13823
13824 * Makefile.in (stamp-oldxmenu): If HAVE_GTK, don't add dependencies
13825 to ${OLDXMENU}.
13826
13827 2004-11-09 Kim F. Storm <storm@cua.dk>
13828
13829 * process.c (Fmake_network_process): Remove kludge for interrupted
13830 connects on BSD. If connect is interrupted, just close socket and
13831 start over rather than sleeping and retry with same socket.
13832
13833 2004-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13834
13835 * .cvsignore: Add buildobj.lst.
13836
13837 * doc.c: New variable Vbuild_files.
13838 (Fsnarf_documentation): If Vbuild_files is nil, populate it with
13839 file names from buildobj.lst. Only attach docstrings from files
13840 that are in Vbuild_files.
13841 (syms_of_doc): Defvar Vbuild_files.
13842
13843 * Makefile.in (SOME_MACHINE_OBJECTS): Add fringe.o, image.o
13844 and w32*.o.
13845 (temacs${EXEEXT}): Generate buildobj.lst when temacs is linked.
13846 (mostlyclean): Rm buildobj.lst.
13847
13848 * makefile.w32-in ($(TEMACS)): Generate buildobj.lst when temacs
13849 is linked.
13850
13851 2004-11-09 Kim F. Storm <storm@cua.dk>
13852
13853 * fringe.c (update_window_fringes): Update fringe bitmaps if
13854 cur and row ends_at_zv_p differs. If bitmaps of a row is updated,
13855 also update previous row to get rid of misc. artifacts.
13856
13857 2004-11-08 Kim F. Storm <storm@cua.dk>
13858
13859 * xdisp.c (fast_find_position): Fix start pos if header line present.
13860 (note_mouse_highlight): Clear mouse face if we move out of text area.
13861
13862 2004-11-08 Eli Zaretskii <eliz@gnu.org>
13863
13864 * editfns.c: Move #include "systime.h" before <sys/resource.h>.
13865 Don't include <sys/time.h> explicitly.
13866 Include <stdio.h> unconditionally, not just on MacOS.
13867
13868 2004-11-08 Kenichi Handa <handa@m17n.org>
13869
13870 * fontset.c (fontset_pattern_regexp): Cancel my previous change;
13871 don't pay attention to '\' before '*'.
13872 (fontset_pattern_regexp): Change the meaning of the second arg.
13873 (Fnew_fontset): Call fs_query_fontset, not Fquery_fontset.
13874 (check_fontset_name): Try NAME as literal at first, and if it
13875 failes, try NAME as pattern.
13876
13877 2004-11-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13878
13879 * emacs.c (Fdump_emacs): Only output warning on GNU/Linux.
13880
13881 2004-11-07 Andreas Schwab <schwab@suse.de>
13882
13883 * lisp.h (Fmsdos_downcase_filename): Declare.
13884 * dired.c (Fmsdos_downcase_filename): Don't declare here.
13885 * fileio.c: Likewise.
13886
13887 2004-11-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13888
13889 * dosfns.c (Fdos_memget, Fdos_memput): Use integer variable offs in
13890 comparisons with integers instead of Lisp_Object address.
13891 (Fmsdos_set_keyboard): Declare argument allkeys.
13892
13893 * msdos.c (IT_set_frame_parameters): Use EQ, not ==, for Lisp_Object:s.
13894
13895 * dired.c (Fmsdos_downcase_filename): Declare extern on MSDOS to avoid
13896 int/Lisp_Object mixup.
13897
13898 * fileio.c: Ditto.
13899
13900 2004-11-06 Steven Tamm <steventamm@mac.com>
13901
13902 * editfns.c: Need to include sys/time.h before resource.h on darwin.
13903
13904 2004-11-06 Richard M. Stallman <rms@gnu.org>
13905
13906 * callint.c (Fcall_interactively): Avoid reusing EVENT for other data.
13907
13908 * xfaces.c (merge_named_face): GCPRO the face_name in the
13909 named_merge_point struct that we make.
13910 (merge_face_heights): Eliminate GCPRO arg. All callers changed.
13911
13912 * keyboard.c (command_loop_1): Change Vtransient_mark_mode
13913 before deciding whether to inactivate mark.
13914
13915 2004-11-06 Lars Brinkhoff <lars@nocrew.org>
13916
13917 * config.in: Regenerate (add HAVE_GETRUSAGE).
13918 * editfns.c (Fget_internal_run_time): New function.
13919 (syms_of_data): Defsubr it.
13920 * fns.c (sxhash): As far as possible, merge calculation of
13921 hash code for symbols and strings.
13922
13923 2004-11-06 Eli Zaretskii <eliz@gnu.org>
13924
13925 * frame.c (syms_of_frame): Fix the example in the doc string.
13926
13927 2004-11-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13928
13929 * eval.c (Feval): Remove check for INPUT_BLOCKED_P.
13930
13931 * xmenu.c (popup_get_selection, create_and_show_popup_menu)
13932 (create_and_show_dialog): Revert change from 2004-10-31.
13933
13934 2004-11-05 Luc Teirlinck <teirllm@auburn.edu>
13935
13936 * macros.c (syms_of_macros) <defining-kbd-macro>: Doc fix.
13937
13938 2004-11-05 Kim F. Storm <storm@cua.dk>
13939
13940 * print.c (print_object): Print Lisp_Misc_Save_Value objects.
13941
13942 * fileio.c (Ffile_modes): Doc fix.
13943 (auto_save_1): Check for Ffile_modes nil value.
13944
13945 2004-11-05 Kim F. Storm <storm@cua.dk>
13946
13947 * xselect.c (struct selection_event_queue, selection_queue)
13948 (x_queue_selection_requests, x_queue_event)
13949 (x_start_queuing_selection_requests)
13950 (x_stop_queuing_selection_requests): Add new queue for selection
13951 input events to replace previous XEvent queue in xterm.c.
13952 (queue_selection_requests_unwind): Adapt to new queue.
13953 (x_reply_selection_request): Adapt to new queue.
13954 Unexpect wait_object in case of x errors (memory leak).
13955 (x_handle_selection_request, x_handle_selection_clear): Make static.
13956 (x_handle_selection_event): New function. May queue selection events.
13957 (wait_for_property_change_unwind): Use save_value instead of cons.
13958 Clear property_change_reply_object.
13959 (wait_for_property_change): Abort if already waiting.
13960 Use save_value instead of cons for unwind data.
13961 (x_handle_property_notify): Skip events already arrived, but don't
13962 free them, as "arrived" field is checked by wait_for_property_change,
13963 and it will be freed by unwind or explicit unexpect_property_change.
13964 (x_get_foreign_selection): Add to new queue.
13965 (receive_incremental_selection): Don't unexpect wait_object when done
13966 as it has already been freed by previous wait_for_property_change.
13967
13968 * xterm.h (x_start_queuing_selection_requests)
13969 (x_stop_queuing_selection_requests, x_handle_selection_request)
13970 (x_handle_selection_clear): Remove prototypes.
13971 (x_handle_selection_event): Add prototype.
13972
13973 * xterm.c (handle_one_xevent): Don't queue X selection events
13974 here, it may be too late if we start queuing after we have already
13975 stored some selection events into the kbd buffer.
13976 (struct selection_event_queue, queue, x_queue_selection_requests)
13977 (x_queue_event, x_unqueue_events, x_start_queuing_selection_requests)
13978 (x_stop_queuing_selection_requests): Remove/move to xselect.c.
13979 (x_catch_errors_unwind): Block input around final XSync.
13980
13981 * keyboard.h (kbd_buffer_unget_event): Add prototype.
13982
13983 * keyboard.c (kbd_buffer_store_event_hold): Remove obsolete code.
13984 (kbd_buffer_unget_event): New function.
13985 (kbd_buffer_get_event, swallow_events): Combine SELECTION events
13986 and use x_handle_selection_event.
13987 (mark_kboards): Don't mark x and y of SELECTION_CLEAR_EVENT.
13988
13989 2004-11-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
13990
13991 * xselect.c (TRACE3): New debug macro.
13992 (x_reply_selection_request): Use it.
13993 (receive_incremental_selection): In call to TRACE0, the name of
13994 a symbol is in xname.
13995
13996 2004-11-05 Kim F. Storm <storm@cua.dk>
13997
13998 * fontset.c (fontset_pattern_regexp): Use unsigned char.
13999
14000 2004-11-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14001
14002 * fileio.c (Fnext_read_file_uses_dialog_p): New function.
14003
14004 * gtkutil.h (use_old_gtk_file_dialog): Declare.
14005
14006 * gtkutil.c: Make use_old_gtk_file_dialog non-static.
14007 (xg_initialize): Move DEFVAR_BOOL for use_old_gtk_file_dialog ...
14008 * xfns.c (syms_of_xfns): ... to here.
14009
14010 * gtkutil.c (xg_get_file_with_chooser): Expand DEFAULT_FILENAME if
14011 it doesn't start with /.
14012
14013 2004-11-04 Kenichi Handa <handa@m17n.org>
14014
14015 * fontset.c (fontset_pattern_regexp): If '*' is preceded by '\',
14016 treat it as a literal character.
14017
14018 2004-11-03 Kim F. Storm <storm@cua.dk>
14019
14020 * .gdbinit (ppt): New function.
14021
14022 2004-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14023
14024 * xterm.c (x_window_to_scroll_bar): Only call
14025 xg_get_scroll_id_for_window if toolkit scroll bars are used.
14026
14027 * gtkutil.c (xg_get_file_with_chooser): Use GTK_STOCK_OK instead
14028 of save.
14029
14030 2004-11-02 Andreas Schwab <schwab@suse.de>
14031
14032 * window.c (Fscroll_right): Fix last change.
14033
14034 2004-11-02 Kim F. Storm <storm@cua.dk>
14035
14036 * Makefile.in (callproc.o): Depend on blockinput.h, atimer.h, systime.h.
14037
14038 2004-11-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14039
14040 * callproc.c (Fcall_process): Block input around vfork.
14041
14042 2004-11-02 Kim F. Storm <storm@cua.dk>
14043
14044 * eval.c (Fcalled_interactively_p): Rename from Fcall_interactive_p.
14045 (syms_of_eval): Defsubr it.
14046
14047 2004-11-02 Richard M. Stallman <rms@gnu.org>
14048
14049 * insdel.c (replace_range_2): New function.
14050
14051 * casefiddle.c (casify_region): Handle changes in byte-length
14052 using replace_range_2.
14053
14054 * emacs.c (USAGE3): Delete --horizontal-scroll-bars, -hb.
14055
14056 * xdisp.c (back_to_previous_visible_line_start):
14057 Subtract 1 from pos when checking previous newline for invisibility.
14058
14059 * window.c (window_scroll_pixel_based): Update preserve_y
14060 for header line if any.
14061 (Fscroll_left, Fscroll_right): Don't call interactive_p;
14062 use a new second argument instead.
14063
14064 * eval.c (Fcall_interactive_p): New function.
14065 (interactive_p): Don't test INTERACTIVE here.
14066 (Finteractive_p): Doc fix.
14067
14068 * eval.c (Feval): Abort if INPUT_BLOCKED_P.
14069
14070 2004-11-02 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
14071
14072 * w32fns.c (w32_font_match): Use fast_string_match_ignore_case for
14073 comparing font names.
14074
14075 2004-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14076
14077 * fileio.c (Fread_file_name): Pass Qt as fifth parameter to
14078 Fx_file_dialog if only directories should be read.
14079
14080 * lisp.h: Fx_file_dialog takes 5 parameters.
14081
14082 * xfns.c (Fx_file_dialog): Both Motif and GTK version:
14083 Add parameter only_dir_p.
14084 In Motif version, don't put DEFAULT_FILENAME in filter part of the
14085 dialog, just text field part. Do not add DEFAULT_FILENAME
14086 to list of files if it isn't there.
14087 In GTK version, pass only_dir_p parameter to xg_get_file_name.
14088
14089 * macfns.c (Fx_file_dialog): Add parameter only_dir_p.
14090 Check only_dir_p instead of comparing prompt to "Dired". When using
14091 a save dialog, add option kNavDontConfirmReplacement, change title
14092 to "Enter name", change text for save button to "Ok".
14093
14094 * w32fns.c (Fx_file_dialog): Add parameter only_dir_p.
14095 Check only_dir_p instead of comparing prompt to "Dired".
14096
14097 * gtkutil.c (xg_get_file_with_chooser, xg_get_file_with_selection):
14098 New functions, only defined ifdef HAVE_GTK_FILE_CHOOSER_DIALOG_NEW
14099 and HAVE_GTK_FILE_SELECTION_NEW respectively.
14100 (xg_get_file_name): Add parameter only_dir_p.
14101 Call xg_get_file_with_chooser or xg_get_file_with_selection
14102 depending on HAVE_GTK_FILE* and the value of use_old_gtk_file_dialog.
14103 (xg_initialize): New DEFVAR_BOOL use_old_gtk_file_dialog.
14104
14105 * gtkutil.h (xg_get_file_name): Add parameter only_dir_p.
14106
14107 * config.in: Rebuild (added HAVE_GTK_FILE_*).
14108
14109 2004-11-01 Kim F. Storm <storm@cua.dk>
14110
14111 * process.c (connect_wait_mask, num_pending_connects):
14112 Only declare and use them if NON_BLOCKING_CONNECT is defined.
14113 (init_process): Initialize them if NON_BLOCKING_CONNECT defined.
14114 (IF_NON_BLOCKING_CONNECT): New helper macro.
14115 (wait_reading_process_output): Only declare and use local vars
14116 Connecting and check_connect when NON_BLOCKING_CONNECT is defined.
14117
14118 2004-11-01 Andy Petrusenco <Igrek@star-sw.com> (tiny change)
14119
14120 * w32term.c (x_scroll_run): Delete region objects after use.
14121
14122 2004-10-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14123
14124 * xmenu.c: Add prototypes for forward function declarations.
14125 (popup_get_selection): Remove parameter do_timers, remove call to
14126 timer_check.
14127 (create_and_show_popup_menu, create_and_show_dialog):
14128 Remove parameter do_timers from call to popup_get_selection.
14129
14130 * xdisp.c (update_tool_bar): Pass a copy of f->tool_bar_items to
14131 tool_bar_items and assign the result to f->tool_bar_items if
14132 not equal. Move BLOCK/UNBLOCK_INPUT from around call to
14133 tool_bar_items to assignment of result.
14134
14135 * atimer.c (alarm_signal_handler): Do not call set_alarm if
14136 pending_atimers is non-zero.
14137
14138 2004-10-31 Kim F. Storm <storm@cua.dk>
14139
14140 * dispnew.c (margin_glyphs_to_reserve): Don't use ncols_scale_factor.
14141
14142 2004-10-28 Will <will@glozer.net>
14143
14144 * macterm.c: Allow user to assign key modifiers to the Mac Option
14145 key via a 'mac-option-modifier' variable.
14146
14147 2004-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
14148
14149 * xselect.c (Vx_lost_selection_functions, Vx_sent_selection_functions):
14150 Rename from Vx_lost_selection_hooks and Vx_sent_selection_hooks.
14151 (x_handle_selection_request, x_handle_selection_clear)
14152 (x_clear_frame_selections, syms_of_xselect): Adjust accordingly.
14153
14154 2004-10-28 Richard M. Stallman <rms@gnu.org>
14155
14156 * w32fns.c (Fx_server_vendor, Fx_server_version): Doc fixes.
14157
14158 * xfns.c (Fx_server_vendor, Fx_server_version): Doc fixes.
14159
14160 2004-10-27 Stefan Monnier <monnier@iro.umontreal.ca>
14161
14162 * syntax.c (scan_sexps_forward): Give precedence to a 2-char
14163 comment-starter over a 1-char one.
14164
14165 2004-10-27 Richard M. Stallman <rms@gnu.org>
14166
14167 * xdisp.c (get_next_display_element): In mode lines,
14168 treat newline and tab like other control characters.
14169
14170 * editfns.c (Fmessage): Doc fix.
14171
14172 * indent.c (vmotion): When moving up, check the newline before.
14173 Make prevline an int, not a Lisp_Object.
14174
14175 2004-10-27 Kim F. Storm <storm@cua.dk>
14176
14177 * editfns.c (Fformat): Allocate discarded table with SAFE_ALLOCA.
14178 Only allocate info and discarded tables once.
14179
14180 * lisp.h (USE_SAFE_ALLOCA): Add and init sa_must_free integer.
14181 (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Increment it when malloc is used.
14182 (SAFE_FREE): Test it to determine if we need to unwind to free.
14183 Remove size arg. All users changed.
14184 (SAFE_FREE_LISP): Remove. All users changed to use SAFE_FREE.
14185
14186 2004-10-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14187
14188 * gtkutil.c: Put empty line between comment and function body.
14189 (xg_destroy_widgets): Rename from remove_from_container.
14190 Just destroy all widgets in list. Argument wcont removed.
14191 (xg_update_menubar, xg_update_submenu): Call xg_destroy_widgets
14192 instead of remove_from_container.
14193 (xg_display_close, xg_create_tool_bar, update_frame_tool_bar)
14194 (free_frame_tool_bar): Add comment.
14195
14196 * xfns.c (xic_create_xfontset): Check that FRAME_XIC_BASE_FONTNAME
14197 is not NULL before strcmp.
14198
14199 2004-10-26 Kim F. Storm <storm@cua.dk>
14200
14201 * callint.c (Fcall_interactively): Add 'U' code to get the
14202 up-event discarded by a previous 'k' or 'K' argument.
14203
14204 2004-10-26 David Kastrup <dak@gnu.org>
14205
14206 * buffer.c (syms_of_buffer): Fix a few typos.
14207
14208 2004-10-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14209
14210 * xsmfns.c: Put empty line between comment and function body.
14211 Use two spaces before comment end.
14212
14213 2004-10-25 Kenichi Handa <handa@m17n.org>
14214
14215 * fontset.c (fontset_pattern_regexp): Optimize for the case that
14216 PATTERN is full XLFD.
14217
14218 2004-10-24 Kenichi Handa <handa@m17n.org>
14219
14220 * regex.h (enum reg_errcode_t): New value REG_ERANGEX.
14221
14222 * regex.c (re_error_msgid): Add an entry for REG_ERANGEX.
14223 (regex_compile): Return REG_ERANGEX if appropriate.
14224
14225 2004-10-22 Kenichi Handa <handa@m17n.org>
14226
14227 * editfns.c (Ftranslate_region_internal): New function.
14228 (syms_of_editfns): Defsubr it.
14229
14230 2004-10-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14231
14232 * xfns.c (xic_create_xfontset): Initialize missing_list to NULL.
14233
14234 2004-10-21 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
14235
14236 * xterm.h (x_output): New member `xic_base_fontname'.
14237 (FRAME_XIC_BASE_FONTNAME): New macro.
14238 (xic_free_xfontset): Declare.
14239
14240 * xfns.c (xic_create_xfontset): Share fontsets between frames
14241 based on base_fontname.
14242 (xic_free_xfontset): New function.
14243 (free_frame_xic): Use it.
14244 (xic_set_xfontset): Ditto.
14245
14246 * xterm.c (xim_destroy_callback): Ditto.
14247
14248 2004-10-20 B. Anyos <banyos@freemail.hu> (tiny change)
14249
14250 * w32term.c (x_draw_glyph_string): Use overline_color for overlines.
14251
14252 2004-10-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14253
14254 * xterm.h (XSync): If USE_GTK, define XSync as process_all and then
14255 XSync.
14256
14257 * emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
14258 New variables and constant.
14259 (main): Calculate heap_bss_diff. If we are dumping and the
14260 heap_bss_diff is greater than MAX_HEAP_BSS_DIFF, set PER_LINUX32
14261 and exec ourself again.
14262 (Fdump_emacs): If heap_bss_diff is greater than MAX_HEAP_BSS_DIFF
14263 print a warning.
14264
14265 * lastfile.c: Make my_endbss and my_endbss_static available on all
14266 platforms.
14267
14268 * Makefile.in (RUN_TEMACS): Remove @SETARCH@.
14269 * config.in (HAVE_PERSONALITY_LINUX32): Regenerate.
14270
14271 2004-10-19 Luc Teirlinck <teirllm@auburn.edu>
14272
14273 * data.c (Flocal_variable_if_set_p): Doc fix.
14274
14275 2004-10-19 Jason Rumney <jasonr@gnu.org>
14276
14277 * w32.c (init_environment): Set emacs_dir correctly when running
14278 emacs from the build directory.
14279
14280 2004-10-19 Richard M. Stallman <rms@gnu.org>
14281
14282 * editfns.c (Fdelete_and_extract_region):
14283 If region is empty, return null string.
14284
14285 2004-10-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14286
14287 * gtkutil.h (xg_update_scrollbar_pos): Remove arguments real_left
14288 and canon_width.
14289 (xg_frame_cleared): Remove.
14290
14291 * gtkutil.c (xg_frame_cleared, xg_fixed_handle_expose)
14292 (xg_find_top_left_in_fixed): Remove.
14293 (xg_create_scroll_bar): Put an event box widget between
14294 the scroll bar widget and the edit widget.
14295 (xg_show_scroll_bar): Show the parent widget (the event box).
14296 (xg_remove_scroll_bar): Destroy parent (the event box) also.
14297 (xg_update_scrollbar_pos): Remove arguments real_left and canon_width.
14298 Move the parent (the event box) widget inside the fixed widget.
14299 Move window clear to xterm.c.
14300
14301 * gtkutil.h (xg_frame_cleared): Remove.
14302
14303 * xterm.c (x_clear_frame): Remove call to xg_frame_cleared
14304 (x_scroll_bar_create, XTset_vertical_scroll_bar):
14305 Remove arguments left and width to xg_update_scrollbar_pos.
14306 (XTset_vertical_scroll_bar): Do x_clear_area for USE_GTK also.
14307
14308 2004-10-19 Kenichi Handa <handa@m17n.org>
14309
14310 * xdisp.c (display_mode_element): Fix display of wide chars.
14311
14312 2004-10-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14313
14314 * gtkutil.c (xg_update_scrollbar_pos): Change XClearWindow to
14315 gdk_window_clear and move gdk_window_process_all_updates after
14316 clear so events are sent to the X server in correct order.
14317
14318 2004-10-18 Kenichi Handa <handa@m17n.org>
14319
14320 * fontset.c (fs_load_font): Use fast_string_match_ignore_case for
14321 comparing font names.
14322 (fs_query_fontset): Use fast_string_match for comparing fontset names.
14323 (list_fontsets): Likewise.
14324
14325 * search.c (fast_string_match_ignore_case): New function.
14326
14327 * lisp.h (fast_string_match_ignore_case): Extern it.
14328
14329 2004-10-17 Kim F. Storm <storm@cua.dk>
14330
14331 * xdisp.c (overlay_arrow_at_row): Return overlay string rather
14332 than bitmap if there is not left fringe.
14333 (get_overlay_arrow_glyph_row): Also used on windows system.
14334 (display_line): Display overlay string if no left fringe.
14335
14336 2004-10-16 Jason Rumney <jasonr@gnu.org>
14337
14338 * w32fns.c (w32_font_match): Encode font name being matched.
14339
14340 2004-10-16 Richard M. Stallman <rms@gnu.org>
14341
14342 * window.c (Fspecial_display_p): Doc fix.
14343
14344 2004-10-15 Stefan Monnier <monnier@iro.umontreal.ca>
14345
14346 * doc.c (Fsubstitute_command_keys): Fix remap-handling.
14347 Don't ignore menus, because where-is-internal already does it for us.
14348
14349 2004-10-15 Kim F. Storm <storm@cua.dk>
14350
14351 * xdisp.c (redisplay_window): Only update fringes and vertical
14352 border on window frames.
14353
14354 2004-10-14 Andreas Schwab <schwab@suse.de>
14355
14356 * m/ia64.h (DATA_SEG_BITS): Don't define.
14357
14358 2004-10-14 Kim F. Storm <storm@cua.dk>
14359
14360 * xterm.h: Include Xutil.h after keysym.h to work around bug
14361 in some X versions.
14362
14363 2004-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
14364
14365 * fns.c (map_char_table): Add missing gcpros.
14366
14367 2004-10-13 Stefan Monnier <monnier@iro.umontreal.ca>
14368
14369 * keymap.c (get_keymap): An autoload form is not a keymap.
14370
14371 * textprop.c (syms_of_textprop): Make `syntax-table' nonsticky.
14372
14373 2004-10-13 Kim F. Storm <storm@cua.dk>
14374
14375 * callproc.c (Fcall_process): Simplify handling of display arg.
14376 Resume `display_on_the_fly' once a coding system is determined.
14377
14378 * xdisp.c (redisplay_preserve_echo_area): Fix last change.
14379
14380 2004-10-12 Kim F. Storm <storm@cua.dk>
14381
14382 * xdisp.c (redisplay_preserve_echo_area): Flush display in case
14383 caller, such as call-process, is not going to poll for input.
14384 (calc_line_height_property): Handle case where it->object is nil.
14385
14386 * xterm.c (x_redisplay_interface): Fix flush_display_optional.
14387
14388 2004-10-12 Kenichi Handa <handa@m17n.org>
14389
14390 * xdisp.c (get_next_display_element):
14391 If unibyte_display_via_language_environment is zero, display 8-bit
14392 chars in octal in unibyte buffer.
14393
14394 2004-10-12 Kim F. Storm <storm@cua.dk>
14395
14396 * doc.c (Fsubstitute_command_keys): Ignore remappings unless there
14397 are no ordinary bindings.
14398
14399 2004-10-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14400
14401 * xfns.c (syms_of_xfns): Defsubr x-file-dialog for GTK also.
14402
14403 2004-10-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14404
14405 * macterm.c (x_raise_frame): Add BLOCK_INPUT around SelectWindow.
14406 (x_lower_frame): Add BLOCK_INPUT around SendBehind.
14407 (make_mac_frame): Add BLOCK_INPUT around the making of a
14408 terminal frame.
14409 (mac_initialize): Add BLOCK_INPUT around carbon initialization.
14410 * macgui.h (mktime): Use emacs_mktime.
14411 * macfns.c (Fx_file_dialog): Add BLOCK_INPUT around more code.
14412 Make a cancel file-open dialog be like C-g.
14413 * mac.c (mktime): Use emacs_mktime.
14414 (Fdo_applescript): Add BLOCK_INPUT around do_applescript.
14415 (Fmac_paste_function): Add better error handling for carbon cut/paste.
14416
14417 2004-10-10 Kim F. Storm <storm@cua.dk>
14418
14419 * keyboard.c (timer_resume_idle): New function to resume idle
14420 timer without resetting timers on the idle list.
14421 (read_char): Use timer_resume_idle. Remove local var last_idle_start.
14422 (timer_start_idle, timer_stop_idle): Declare static.
14423 (read_key_sequence): Use timer_resume_idle instead of timer_start_idle.
14424
14425 * keyboard.h (timer_start_idle, timer_stop_idle): Remove prototypes.
14426
14427 2004-10-08 Steven Tamm <steventamm@mac.com>
14428
14429 * config.in (HAVE_MALLOC_MALLOC_H): Regenerate.
14430 * macterm.c (mac_check_for_quit_char): Remove warning for using
14431 NULL where 0 should be used.
14432 * unexmacosx.c: Use malloc/malloc.h on Tiger instead of
14433 objc/malloc.h
14434 * mac.c: Include time.h for Tiger compatibility.
14435
14436 2004-10-07 Kim F. Storm <storm@cua.dk>
14437
14438 * xdisp.c (redisplay_window): Fix flicker on vertical line between
14439 windows. Update vertical line after drawing window fringes, but
14440 only if actually drawing any bitmaps--or there is no fringe.
14441
14442 * xterm.c (x_update_window_end): Likewise.
14443 * macterm.c (x_update_window_end): Likewise.
14444 * w32term.c (x_update_window_end): Likewise.
14445
14446 * fringe.c (draw_window_fringes): Return value now indicates if
14447 any fringe bitmaps were redrawn (or there are no fringes).
14448
14449 * dispextern.h (draw_window_fringes): Update prototype.
14450
14451 2004-10-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14452
14453 * macfns.c (mac_get_window_bounds): Add extern.
14454 (x_real_positions): Use mac_get_window_bounds.
14455
14456 * macmenu.c (update_submenu_strings): Apply 2004-09-07 change for
14457 xmenu.c (YAILOM).
14458
14459 * macterm.c [!MAC_OSX]: Include Windows.h.
14460 (front_emacs_window): Rename from mac_front_window. All uses
14461 changed. Return the frontmost non-tooltip emacs window.
14462 (mac_get_window_bounds): New function.
14463 (x_calc_absolute_position): Use the difference of width and height
14464 between the inner and outer window.
14465 (x_set_offset): Specify window position by the coordinae of the
14466 outer window. Adjust the position if the title bar is completely
14467 outside the screen.
14468 (app_is_suspended, app_sleep_time): Remove unused variables.
14469 (do_app_resume, do_app_suspend): Remove their contents because
14470 window-activate/deactivate events will do the job.
14471 (do_zoom_window): Remove unused variables. Make compliant to the
14472 standard way of zooming. Set f->left_pos and f->top_pos.
14473 (XTread_socket): Don't use argument `expected'. Don't use
14474 FrontWindow to determine the clicked window. Exclude unprocessed
14475 mouseUp cases in the early stage. Add parentheses to fix operator
14476 precedence.
14477 (XTread_socket) [TARGET_API_MAC_CARBON]: Don't specify drag area.
14478
14479 2004-10-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14480
14481 * config.in: Regenerate.
14482
14483 * Makefile.in (RUN_TEMACS): Check HAVE_RANDOM_HEAPSTART instead of
14484 HAVE_EXECSHIELD.
14485
14486 2004-10-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14487
14488 * xterm.c (x_find_modifier_meanings): Ignore any Super or Hyper for
14489 a row if Alt or Meta has been found for that row. Also stop scanning
14490 for Keysyms for that row.
14491
14492 2004-10-04 Kim F. Storm <storm@cua.dk>
14493
14494 * fringe.c (Ffringe_bitmaps_at_pos): Change return value from cons
14495 to list. Include overlay arrow bitmap in return value.
14496
14497 * xterm.c (XTset_vertical_scroll_bar): Improve handling of scroll
14498 bars with fractional column width. If scroll bar separates two
14499 windows, move it towards the window it belongs to. Only update
14500 the padding area below the scroll bar widget when necessary,
14501 i.e. when scroll bar widget is created, moved, or resized.
14502
14503 * xdisp.c (define_frame_cursor1): Do not change frame cursor
14504 while tracking/dragging mouse.
14505 (x_draw_vertical_border): Do not draw line if frame has scroll bars.
14506
14507 * window.c (coordinates_in_window): Relax check for cursor
14508 on vertial border between mode lines.
14509 (Fset_window_fringes): Do not allow negative widths.
14510 (Fset_window_scroll_bars): Likewise.
14511
14512 * .gdbinit (pp): Shorthand for p ARG + pr.
14513 (ff): New command: flush frame updates (X only).
14514
14515 2004-10-03 Michael Albinus <michael.albinus@gmx.de>
14516
14517 * fileio.c (auto_save_1) Call Ffile_modes for remote files.
14518
14519 2004-09-30 Kenichi Handa <handa@m17n.org>
14520
14521 * process.c (send_process): Free composition data.
14522
14523 * fileio.c (Finsert_file_contents): Free composition data.
14524
14525 * coding.c (code_convert_region): Don't skip ASCIIs if there are
14526 compositions to encode.
14527 (encode_coding_string): Likewise. Free composition data.
14528
14529 2004-09-30 Florian Weimer <fw@deneb.enyo.de>
14530
14531 * coding.c (code_convert_region): Free composition data.
14532
14533 2004-09-29 Kim F. Storm <storm@cua.dk>
14534
14535 * fringe.c: Remove limit on number of bitmaps.
14536 (fringe_bitmaps, fringe_faces): Change to pointers.
14537 (max_fringe_bitmaps): New var.
14538 (Fdefine_fringe_bitmap): Expand fringe_bitmaps and fringe_faces.
14539 (init_fringe): Allocate fringe_bitmaps and fringe_faces.
14540
14541 * dispextern.h (FRINGE_ID_BITS): Increase to 16 bits (64K bitmaps).
14542 (struct glyph_row): Reorder fringe_bitmap related fields.
14543 (struct it): Likewise.
14544
14545 * w32term.c (fringe_bmp): Change to pointer.
14546 (max_fringe_bmp): New var.
14547 (w32_define_fringe_bitmap): Expand fringe_bmp.
14548 (w32_draw_fringe_bitmap): Check max_fringe_bmp.
14549 (w32_destroy_fringe_bitmap): Likewise.
14550
14551 2004-09-29 Kim F. Storm <storm@cua.dk>
14552
14553 * fringe.c: Simplify last change.
14554 (lookup_fringe_bitmap): New function.
14555 (valid_fringe_bitmap_p, resolve_fringe_bitmap): Remove.
14556 (Fdestroy_fringe_bitmap): Use lookup_fringe_bitmap.
14557 Keep standard bitmaps in Vfringe_bitmaps.
14558 (Fdefine_fringe_bitmap): Use lookup_fringe_bitmap.
14559 (Fset_fringe_bitmap_face): Likewise.
14560
14561 * dispextern.h (lookup_fringe_bitmap): Add prototype.
14562 (valid_fringe_bitmap_p): Remove prototype.
14563
14564 * xdisp.c (handle_single_display_prop): Use lookup_fringe_bitmap.
14565
14566 2004-09-29 Kim F. Storm <storm@cua.dk>
14567
14568 * fringe.c (destroy_fringe_bitmap, init_fringe_bitmap)
14569 (w32_init_fringe, w32_reset_fringes): Fix bootstrap (NULL rif).
14570
14571 * dispextern.h (valid_fringe_bitmap_p): Fix prototype.
14572
14573 * fringe.c (Vfringe_bitmaps): New variable.
14574 (syms_of_fringe): DEFVAR_LISP it.
14575 (valid_fringe_bitmap_p): Rename from valid_fringe_bitmap_id_p.
14576 Change arg to Lisp_Object and fail if not an integer.
14577 (get_fringe_bitmap_name, resolve_fringe_bitmap)
14578 (destroy_fringe_bitmap): New functions.
14579 (Fdestroy_fringe_bitmap): Change arg to bitmap symbol.
14580 Use destroy_fringe_bitmap. Remove symbol from Vfringe_bitmaps and
14581 clear its fringe property.
14582 (init_fringe_bitmap): Use destroy_fringe_bitmap instead of
14583 Fdestroy_fringe_bitmap.
14584 (Fdefine_fringe_bitmap): Add BITMAP arg specifying new or existing
14585 bitmap symbol; remove WHICH arg. Add symbol to Vfringe_bitmaps
14586 and set fringe property. Signal error if no free slots.
14587 (Fset_fringe_bitmap_face): Change arg to bitmap symbol.
14588 (Ffringe_bitmaps_at_pos): Return bitmap symbols instead of numbers.
14589
14590 * xdisp.c (handle_single_display_prop): Fringe bitmaps are now
14591 symbols with a fringe property.
14592
14593 2004-09-27 Kim F. Storm <storm@cua.dk>
14594
14595 * buffer.c (syms_of_buffer) <indicate-buffer-boundaries>:
14596 Doc fix. Format may now be a symbol or alist, not a cons.
14597
14598 * fringe.c (update_window_fringes): Handle new formats of
14599 indicate-buffer-boundaries (symbol or alist). No longer
14600 allow a simple cons.
14601 (Ffringe_bitmaps_at_pos): Use nil value for no bitmap.
14602
14603 2004-09-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14604
14605 * config.in: Rebuild.
14606
14607 2004-09-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14608
14609 * config.in: Rebuild.
14610
14611 * Makefile.in: Run setarch i386 ./temacs if exec-shield is present.
14612
14613 2004-09-18 Stefan Monnier <monnier@iro.umontreal.ca>
14614
14615 * xterm.c (x_term_init): Work around a bug in some X servers.
14616
14617 2004-09-18 Richard M. Stallman <rms@gnu.org>
14618
14619 * buffer.c (syms_of_buffer) <default-major-mode>: Doc fix.
14620
14621 * xdisp.c (try_window_reusing_current_matrix):
14622 Handle the case where we reach the old displayed text,
14623 out of sync with the old line boundary.
14624
14625 2004-09-14 Stefan Monnier <monnier@iro.umontreal.ca>
14626
14627 * fileio.c (Finsert_file_contents): Fix case of replacement in a
14628 narrowed buffer.
14629
14630 2004-09-14 Kim F. Storm <storm@cua.dk>
14631
14632 * puresize.h (PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT.
14633
14634 * xfaces.c (Qface_no_inherit): New var.
14635 (syms_of_xfaces): Intern and staticpro it.
14636 (Finternal_make_lisp_face, Finternal_set_lisp_face_attribute)
14637 (Finternal_copy_lisp_face, update_face_from_frame_parameter):
14638 Don't increment face_change_count when face has non-nil
14639 face-no-inherit property.
14640
14641 2004-09-13 Stefan Monnier <monnier@iro.umontreal.ca>
14642
14643 * bytecode.c (BYTE_CODE_QUIT): Add missing AFTER_POTENTIAL_GC.
14644 (Fbyte_code): Remove dead code after `wrong_type_argument'.
14645
14646 * alloc.c (Fgarbage_collect): Mark keyboards, gtk data, and specpdl
14647 before doing the mark_stack_check_gcpros since they're not on the stack.
14648
14649 2004-09-12 Kim F. Storm <storm@cua.dk>
14650
14651 * editfns.c (Fformat): Handle format strings with multiple text
14652 properties. Reverse text property list from the format string,
14653 so the positions are in increasing order.
14654
14655 2004-09-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14656
14657 * xselect.c (x_reply_selection_request): XSync and UNBLOCK before
14658 x_uncatch_errors so that possible protocol errors are delivered.
14659
14660 2004-09-10 Eli Zaretskii <eliz@gnu.org>
14661
14662 * Makefile.in (msdos.o): Depend on buffer.h, commands.h, and
14663 blockinput.h.
14664 (dosfns.o): Depend on blockinput.h, window.h, dispextern.h,
14665 charset.h, and coding.h
14666 (w16select.o): Depend on buffer.h, charset.h, coding.h, and composite.h.
14667 (term.o): Depend on window.h and keymap.h.
14668 (abbrev.o): Depend on syntax.h.
14669 (callint.o): Depend on keymap.h.
14670 (casefiddle.o): Depend on charset.h and keymap.h.
14671 (category.o): Depend on keymap.h.
14672 (coding.o): Depend on dispextern.h.
14673 (cmds.o): Depend on keyboard.h and keymap.h.
14674 (dispnew.o): Depend on indent.h and intervals.h.
14675 (doc.o): Depend on keymap.h.
14676 (editfns.o): Depend on frame.h.
14677 (emacs.o): Depend on dispextern.h.
14678 (fileio.o): Don't depend on ccl.h.
14679 (filelock.o): Depend on charset.h and coding.h.
14680 (frame.o): Depend on w32term.h and macterm.h.
14681 (insdel.o): Depend on region-cache.h.
14682 (keyboard.o): Depend on keymap.h, w32term.h, and macterm.h.
14683 (minibuf.o): Depend on $(INTERVALS_SRC) and keymap.h.
14684 (search.o): Depend on $(INTERVALS_SRC).
14685 (syntax.o): Depend on keymap.h, regex.h, and $(INTERVALS_SRC).
14686 (window.o): Depend on keymap.h, blockinput.h, $(INTERVALS_SRC),
14687 xterm.h, w32term.h, and macterm.h.
14688 (xdisp.o): Depend on keyboard.h, $(INTERVALS_SRC), xterm.h,
14689 w32term.h, and macterm.h.
14690 (xfaces.o): Depend on keyboard.h, $(INTERVALS_SRC),
14691 region-cache.h, xterm.h, w32term.h, and macterm.h.
14692 (bytecode.o): Depend on dispextern.h, frame.h, and xterm.h.
14693 (data.o): Depend on frame.h.
14694 (fns.o): Depend on keymap.h, xterm.h, and blockinput.h.
14695 (print.o): Depend on termchar.h and $(INTERVALS_SRC).
14696 (lread.o): Depend on $(INTERVALS_SRC), termhooks.h, and coding.h.
14697 (intervals.o): Depend on keymap.h.
14698
14699 * msdos.c (msdos_set_cursor_shape, IT_display_cursor):
14700 Add debugging print-out to termscript.
14701
14702 2004-09-09 Richard M. Stallman <rms@gnu.org>
14703
14704 * xdisp.c (decode_mode_spec): Use current buffer for most purposes.
14705
14706 2004-09-08 Richard M. Stallman <rms@gnu.org>
14707
14708 * window.c (Fset_window_buffer): Doc fix.
14709
14710 * xdisp.c (Fformat_mode_line): New arg BUFFER says which buffer to use.
14711
14712 2004-09-08 Dan Nicolaescu <dann@ics.uci.edu>
14713
14714 * minibuf.c (history_delete_duplicates): New variable.
14715 (read_minibuf): Use it.
14716 (syms_of_minibuf): Create the corresponding lisp variable.
14717
14718 2004-09-08 Kim F. Storm <storm@cua.dk>
14719
14720 * xdisp.c (set_cursor_from_row): Also look at 'cursor' property in
14721 overlay just before point.
14722
14723 2004-09-07 Luc Teirlinck <teirllm@auburn.edu>
14724
14725 * buffer.h (struct buffer): Add auto_save_file_format field.
14726 * buffer.c (reset_buffer, init_buffer_once):
14727 Handle auto_save_file_format field.
14728 (syms_of_buffer): Add DEFVAR_PER_BUFFER for
14729 `buffer-auto-save-file-format'.
14730 * fileio.c: Delete declaration for removed Vauto_save_file_format.
14731 (build_annotations): Adapt to replacement of
14732 `auto-save-file-format' with the new buffer-local variable
14733 `buffer-auto-save-file-format'.
14734 (syms_of_fileio): Delete DEFVAR_LISP for auto-save-file-format.
14735
14736 2004-09-07 Jason Rumney <jasonr@gnu.org>
14737
14738 * w32term.h (AppendMenuW_Proc): Move declaration from w32menu.c.
14739
14740 * w32fns.c (w32_wnd_proc) <WM_MEASUREITEM, WM_DRAWITEM>:
14741 Handle Unicode menu titles.
14742
14743 2004-09-07 Kim F. Storm <storm@cua.dk>
14744
14745 * xdisp.c (set_cursor_from_row): Fix last change. Only use 'cursor'
14746 property from text property or overlay strings at point.
14747
14748 2004-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14749
14750 * xmenu.c (update_submenu_strings): YAILOM.
14751 (set_frame_menubar): Make sure last_i is initialized.
14752
14753 2004-09-03 Jason Rumney <jasonr@gnu.org>
14754
14755 * w32menu.c (_widget_value): Add lname and lkey.
14756 (digest_single_submenu): Set lname and lkey in widget_value
14757 instead of name and key.
14758 (update_submenu_strings): New function.
14759 (set_frame_menubar): Remove call to inhibit_garbage_collection,
14760 call update_submenu_strings.
14761
14762 * w32menu.c (globals_of_w32menu): Check for Unicode API.
14763 (digest_single_submenu, w32_menu_show): Encode menu strings as
14764 UTF-8 if Unicode API is available.
14765 (utf8to16): New function.
14766 (add_menu_item): Use it when calling Unicode API.
14767
14768 2004-09-03 Kim F. Storm <storm@cua.dk>
14769
14770 * xdisp.c (set_cursor_from_row): Look for non-nil `cursor' property
14771 in overlay or text-property strings; set cursor on corresponding
14772 glyph rather than at end of the string.
14773
14774 2004-09-02 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14775
14776 * macfns.c (x_real_positions): Save the current window port and
14777 set a new one before obtaining the global coordinate.
14778 Use FRAME_MAC_WINDOW.
14779 (x_set_name, x_set_title): Encode title to UTF8.
14780 Use SetWindowTitleWithCFString.
14781 (Fx_server_version): Get correct OS version.
14782
14783 * macmenu.c (add_menu_item): Remove unused variable `i'.
14784 Don't let separator items destroy refence constants of other menu items.
14785
14786 * macterm.c (x_update_end): Move SetPortWindowPort to inside
14787 BLOCK_INPUT.
14788 (x_set_offset): Use FRAME_MAC_WINDOW.
14789
14790 * xdisp.c (note_mouse_highlight): Set the mouse pointer shape to
14791 nontext_cursor if it is on a scroll bar.
14792
14793 * s/darwin.h (LIBS_CARBON): New define to specify libraries for
14794 Carbon support.
14795 (LD_SWITCH_SYSTEM_TEMACS): Don't link with unused libstdc++.
14796 Use LIBS_CARBON.
14797
14798 2004-09-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14799
14800 * xfns.c (x_set_name_internal): New function. Check if we shall call
14801 xfree before ENCODE_UTF_8.
14802 (x_set_name, x_set_title): Call x_set_name_internal.
14803
14804 2004-08-31 NAKAMURA Toshikazu <nr-tkz@nifty.com> (tiny change)
14805
14806 * w32fns.c (w32_load_font): If a BDF font is already loaded, do not
14807 reload it.
14808
14809 2004-08-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14810
14811 * macmenu.c (_widget_value): Add lname and lkey.
14812 (single_submenu): Set lname and lkey in widget_value
14813 instead of name and key.
14814 (update_submenu_strings): New function.
14815 (set_frame_menubar): Remove call to inhibit_garbage_collection,
14816 call update_submenu_strings.
14817
14818 * xmenu.c (digest_single_submenu): Set lname and lkey in widget_value
14819 instead of name and key.
14820 (update_submenu_strings): New function.
14821 (set_frame_menubar): Remove call to inhibit_garbage_collection,
14822 call update_submenu_strings.
14823
14824 * gtkutil.h (_widget_value): Added lname and lkey.
14825
14826 2004-08-30 Steven Tamm <steventamm@mac.com>
14827
14828 * macmenu.c (mac_menu_show): Remove shadowing of menu variable
14829 by using different names for inner loop variables.
14830
14831 2004-08-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14832
14833 * xmenu.c (set_frame_menubar): Reintroduce inhibit_garbage_collection
14834 from 2002-07-15T00:01:34Z!raeburn@raeburn.org so that strings from ENCODE_UTF_8 isn't GC:ed before used.
14835
14836 * gtkutil.c (xg_create_frame_widgets): Compensate for tool bar when
14837 tool bar items is 0.
14838
14839 2004-08-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14840
14841 * macmenu.c (ENCODE_MENU_STRING): Added to handle multibyte
14842 strings in menu items.
14843 (single_submenu): Use ENCODE_MENU_STRING
14844 (mac_menu_show): Use ENCODE_MENU_STRING. Reset grabbed because
14845 button release isn't passed to event loop
14846 (add_menu_item): Use SetMenuItemWithCFString.
14847
14848 2004-08-26 Steven Tamm <steventamm@mac.com>
14849
14850 * fileio.c (Fread_file_name): Call x_file_dialog on carbon on
14851 tool-bar/menu click.
14852 * macfns.c (Fx_file_dialog): Implement using NavServices.
14853
14854 2004-08-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14855
14856 * xterm.c (x_catch_errors_unwind): Do not XSync if display has closed.
14857
14858 * xfns.c (x_window_to_frame, x_any_window_to_frame)
14859 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
14860 (x_top_window_to_frame): Return 0 if wdesc is None.
14861
14862 2004-08-22 Richard M. Stallman <rms@gnu.org>
14863
14864 * process.c (process_send_signal) [SIGNALS_VIA_CHARACTERS,
14865 HAVE_TERMIOS]: If there's no char for this signal, drop through
14866 and use system calls.
14867
14868 * bytecode.c (Fbyte_code) <unwind-protect>: Cannot GC.
14869
14870 2004-08-20 Kim F. Storm <storm@cua.dk>
14871
14872 * process.c (wait_reading_process_output): Rename from
14873 wait_reading_process_input. All uses changed.
14874 (wait_reading_process_output_1): Rename from
14875 wait_reading_process_input_1. All uses changed.
14876
14877 * dispnew.c (Fsleep_for): Remove obsolete code.
14878
14879 2004-08-20 Kenichi Handa <handa@m17n.org>
14880
14881 * syntax.c (skip_chars): Fix for unibyte case.
14882
14883 2004-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
14884
14885 * syntax.c (char_quoted): Mixup byte/char pos.
14886 (back_comment): Fixup globals in all cases.
14887
14888 2004-08-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
14889
14890 * xfns.c (x_set_name, x_set_title): Encode title to UTF8 before
14891 passing it to gtk_window_set_title.
14892
14893 2004-08-19 Kim F. Storm <storm@cua.dk>
14894
14895 * process.c (wait_reading_process_input): Clean up.
14896 Add wait_for_cell, wait_proc, and just_wait_proc args
14897 to avoid overloading `read_kbd' and `do_display' args.
14898 Change read_kbd arg to int. All callers changed.
14899
14900 * process.c (process_send_signal): Use CDISABLE.
14901
14902 * sysdep.c (child_setup_tty, init_sys_modes): Use CDISABLE.
14903
14904 2004-08-18 Kim F. Storm <storm@cua.dk>
14905
14906 * process.c (Faccept_process_output): Add arg JUST-THIS-ONE;
14907 forward to wait_reading_process_input via DO_DISPLAY arg.
14908 (wait_reading_process_input): If DO_DISPLAY < 0 for a process
14909 object, only process output from that process; also inhibit
14910 running timers if DO_DISPLAY==-2.
14911
14912 2004-08-17 Kim F. Storm <storm@cua.dk>
14913
14914 * process.c (process_send_signal): Fix last change--use
14915 _POSIX_VDISABLE instead of CVDISABLE when available.
14916
14917 2004-08-16 Richard M. Stallman <rms@gnu.org>
14918
14919 * sysdep.c (child_setup_tty) [SIGNALS_VIA_CHARACTERS]:
14920 Set VQUIT and VINTR chars to the standard ones if they are unset.
14921 [AIX]: Don't do that here. And don't force VINTR to standard
14922 when SIGNALS_VIA_CHARACTERS.
14923
14924 * process.c (process_send_signal)
14925 [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
14926 Do nothing if the character is CVDISABLE.
14927
14928 * xfaces.c (merge_face_ref): Specifying `unspecified' is a no-op.
14929
14930 * intervals.c (move_if_not_intangible):
14931 Force POSITION to be between BEGV and ZV.
14932
14933 2004-08-14 John Paul Wallington <jpw@gnu.org>
14934
14935 * buffer.c (Frestore_buffer_modified_p): Doc fix.
14936
14937 * fileio.c (Fread_file_name): Doc fix.
14938
14939 * minibuf.c (syms_of_minibuf) <completion-ignore-case>: Doc fix.
14940
14941 2004-08-09 Luc Teirlinck <teirllm@auburn.edu>
14942
14943 * keymap.c (Fmake_keymap, Fmap_keymap, Fwhere_is_internal): Doc fixes.
14944
14945 2004-08-08 Luc Teirlinck <teirllm@auburn.edu>
14946
14947 * keyboard.c: Declare Qdisabled_command_function instead of
14948 Qdisabled_command_hook.
14949 (Fcommand_execute): Use Qdisabled_command_function instead of
14950 Qdisabled_command_hook.
14951 (syms_of_keyboard): Ditto.
14952
14953 2004-08-07 Luc Teirlinck <teirllm@auburn.edu>
14954
14955 * keymap.c (Flocal_key_binding, Fglobal_key_binding)
14956 (syms_of_keymap) <key-translation-map>: Doc fixes.
14957
14958 2004-08-07 Stefan Monnier <monnier@iro.umontreal.ca>
14959
14960 * window.c (window_list_1): YAILOM.
14961
14962 * fileio.c (make_temp_name): Handle multibyte prefixes.
14963
14964 2004-08-06 Luc Teirlinck <teirllm@auburn.edu>
14965
14966 * keyboard.c (syms_of_keyboard) <overriding-terminal-local-map>:
14967 Doc fix.
14968
14969 2004-08-03 Kenichi Handa <handa@m17n.org>
14970
14971 * coding.c (decode_coding_string): Adjust coding->consumed, and
14972 etc. with shrinked_bytes.
14973
14974 2004-08-03 Kim F. Storm <storm@cua.dk>
14975
14976 * indent.c (compute_motion): Fix check for full width window
14977 in non-window case. Do not count left truncation glyph on
14978 window systems.
14979
14980 2004-08-02 Luc Teirlinck <teirllm@auburn.edu>
14981
14982 * data.c (Finteractive_form): Doc fix.
14983
14984 2004-08-02 Kim F. Storm <storm@cua.dk>
14985
14986 * indent.c (compute_motion): Use actual window width if WIDTH is -1,
14987 properly accounting for continuation glyph on non-window systems.
14988 (Fcompute_motion): Use actual window width if WIDTH is nil, and
14989 actual window width/height if TOPOS is nil, properly accounting for
14990 continuation glyphs on non-window systems, and optional header lines.
14991 (vmotion): Let compute_motion calculate actual window width.
14992
14993 * window.c (window_scroll_line_based): Let compute_motion
14994 calculate actual window width.
14995
14996 2004-08-02 Kim F. Storm <storm@cua.dk>
14997
14998 * process.c (read_process_output): Use whole read buffer.
14999 Don't trigger adaptive read buffering on errors.
15000
15001 2004-07-31 Luc Teirlinck <teirllm@auburn.edu>
15002
15003 * keymap.c (Fset_keymap_parent, Fdefine_prefix_command): Doc fixes.
15004
15005 * keyboard.c (syms_of_keyboard) <disable-point-adjustment>: Doc fix.
15006
15007 * callint.c (Fcall_interactively): Doc fix.
15008
15009 2004-07-30 Richard M. Stallman <rms@gnu.org>
15010
15011 * abbrev.c (Fexpand_abbrev): Undo previous change.
15012
15013 2004-07-30 Kim F. Storm <storm@cua.dk>
15014
15015 * editfns.c (Fformat): Allocate extra (dummy) element in info.
15016
15017 2004-07-28 Luc Teirlinck <teirllm@auburn.edu>
15018
15019 * eval.c (Fdefvar, Fdefconst): Doc fixes.
15020
15021 2004-07-27 Kim F. Storm <storm@cua.dk>
15022
15023 * xdisp.c (move_it_in_display_line_to): Check BUFFER_POS_REACHED_P after
15024 we have ensured that the glyph fits on the current line (or returned
15025 MOVE_LINE_CONTINUED otherwise).
15026
15027 2004-07-26 Kim F. Storm <storm@cua.dk>
15028
15029 * xdisp.c (move_it_in_display_line_to): If overflow-newline-into-fringe
15030 is enabled, return MOVE_LINE_CONTINUED rather than MOVE_POS_MATCH_OR_ZV
15031 if target position is at end of display line but char is not a newline.
15032
15033 2004-07-25 Richard M. Stallman <rms@gnu.org>
15034
15035 * window.c (coordinates_in_window): Return ON_SCROLL_BAR
15036 instead of ON_VERTICAL_BORDER, when on scroll bar.
15037 (Fcoordinates_in_window_p): Handle ON_SCROLL_BAR--return nil.
15038
15039 * dispextern.h (enum window_part): Add ON_SCROLL_BAR.
15040
15041 * window.c (Fcoordinates_in_window_p):
15042 Take account of FRAME_INTERNAL_BORDER_WIDTH.
15043
15044 * alloc.c (check_cons_list): New function (contents commented out).
15045
15046 2004-07-24 Luc Teirlinck <teirllm@auburn.edu>
15047
15048 * xfaces.c (Fcolor_supported_p): Doc fix.
15049
15050 * frame.c (Fselect_frame, Fset_frame_selected_window)
15051 (Fframe_visible_p, Fraise_frame): Doc fixes.
15052
15053 2004-07-24 Richard M. Stallman <rms@gnu.org>
15054
15055 * keyboard.h (not_single_kboard_state): Declare.
15056
15057 * fileio.c (Fwrite_region): Doc fix.
15058
15059 * window.c (Fwindow_at): Take account of FRAME_INTERNAL_BORDER_WIDTH.
15060
15061 * abbrev.c (Fexpand_abbrev): Run Qpre_abbrev_expand_hook
15062 only when a real abbrev is present.
15063
15064 * xfns.c (x_icon_verify): New function.
15065 (Fx_create_frame): Use it.
15066
15067 2004-07-22 Barry Fishman <barry_fishman@att.net> (tiny change)
15068
15069 * s/gnu-linux.h: Use GC_MARK_STACK if __amd64__ is defined.
15070
15071 2004-07-21 Kim F. Storm <storm@cua.dk>
15072
15073 * window.h (struct glyph_matrix): New members nrows_scale_factor
15074 and ncols_scale_factor.
15075
15076 * window.c (make_window): Initialize nrows_scale_factor and
15077 ncols_scale_factor members.
15078
15079 * dispnew.c (margin_glyphs_to_reserve): Apply ncols_scale_factor.
15080 (allocate_matrices_for_frame_redisplay): Fix left/right margin mix-up.
15081 (required_matrix_height): Apply nrows_scale_factor.
15082 (required_matrix_width): Apply ncols_scale_factor.
15083
15084 * xdisp.c (display_line): Increment nrows_scale_factor and set
15085 fonts_changed_p if past last allocated row.
15086 (append_glyph, append_composite_glyph, produce_image_glyph)
15087 (append_stretch_glyph): Increment ncols_scale_factor and set
15088 fonts_changed_p if current area is full.
15089
15090 2004-07-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15091
15092 * widget.c (EmacsFrameDestroy): Don't abort if normal_gc is 0.
15093
15094 2004-07-19 Luc Teirlinck <teirllm@auburn.edu>
15095
15096 * window.c (Fpos_visible_in_window_p, Fset_window_hscroll)
15097 (Fwindow_inside_pixel_edges, Fwindow_end, Fset_window_point)
15098 (Fset_window_start, Fscroll_up, Fscroll_down)
15099 (Fother_window_for_scrolling, Fscroll_other_window)
15100 (Fsave_window_excursion, Fset_window_vscroll)
15101 (syms_of_window) <window-size-fixed>: Doc fixes.
15102
15103 2004-07-19 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
15104
15105 * w32fns.c (Fx_file_dialog): Use ENCODE_FILE instead of
15106 ENCODE_SYSTEM for filenames.
15107
15108 2004-07-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15109
15110 * mac.c (sys_select): Block input around call to
15111 ReceiveNextEvent to prevent breakage. Correctly handle
15112 blocking on event queue only by calling ReceiveNextEvent
15113 instead of select (since GUI events aren't on an fd).
15114 (sys_read): Remove function
15115 * sysdep.c: Remove redefine of read to sys_read if HAVE_CARBON.
15116
15117 2004-07-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15118
15119 * mac.c (sys_select): Redo sys_select to use alarm-based
15120 polling instead of 1 sec timeouts (like solaris).
15121
15122 * macterm.c (x_make_frame_visible): Comment in polling on
15123 frame creation.
15124
15125 * keyboard.c: Undef SIGIO on Carbon.
15126
15127 * atimer.c (alarm_signal_handler): Call alarm handlers after
15128 scheduling.
15129
15130 * eval.c (Feval): Remove quit_char test.
15131
15132 * process.c (wait_reading_process_input): Remove clearing
15133 stdin for select call on process input.
15134
15135 2004-07-18 Luc Teirlinck <teirllm@auburn.edu>
15136
15137 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Correct
15138 capitalization error in docstring.
15139
15140 2004-07-17 Juanma Barranquero <lektu@terra.es>
15141
15142 * keyboard.c (not_single_kboard_state): Do nothing unless
15143 MULTI_KBOARD is defined.
15144
15145 2004-07-17 Richard M. Stallman <rms@gnu.org>
15146
15147 * window.c (coordinates_in_window): Inside the window but outside
15148 its box to the L or R, return ON_VERTICAL_BORDER.
15149 (window_list_1): Rotate the list to start with WINDOW.
15150
15151 * print.c (print_preprocess): Test for print_depth at limit
15152 before entering in being_printed.
15153
15154 * keyboard.c (not_single_kboard_state): New function.
15155 (stuff_buffered_input): Now no-op only if no SIGTSTP.
15156
15157 * frame.c (Fdelete_frame): If we're in single_bboard_state on
15158 this kboard, and we delete its last frame, go to any_kboard_state.
15159
15160 * buffer.c (syms_of_buffer) <transient-mark-mode>: Doc fix.
15161
15162 2004-07-15 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
15163
15164 * w32fns.c (Fx_file_dialog): Encode strings in system coding
15165 system before passing them to OS functions for display.
15166
15167 2004-07-15 David Kastrup <dak@gnu.org>
15168
15169 * search.c (syms_of_search): Staticpro `saved_last_thing_searched'.
15170 Apparently fixes an abort condition.
15171
15172 2004-07-14 Luc Teirlinck <teirllm@auburn.edu>
15173
15174 * fileio.c (Fvisited_file_modtime): Return a list of two integers,
15175 instead of a cons.
15176
15177 2004-07-14 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
15178
15179 * keyboard.c (echo_dash): Do nothing if there already is a dash
15180 at the end of the echo string.
15181
15182 2004-07-12 Kim F. Storm <storm@cua.dk>
15183
15184 * alloc.c (mark_object): Only look at Lisp_Misc_Save_Value
15185 if GC_MARK_STACK.
15186
15187 2004-07-10 Luc Teirlinck <teirllm@auburn.edu>
15188
15189 * buffer.c (Fswitch_to_buffer, Fpop_to_buffer): Doc fixes.
15190
15191 * window.c (Fwindow_buffer, Fother_window, Fget_lru_window)
15192 (Fget_largest_window, Fget_buffer_window, Fdelete_windows_on)
15193 (Freplace_buffer_in_windows, Fset_window_buffer)
15194 (Fselect-window, Fdisplay-buffer, Fsplit_window): Doc fixes.
15195 (syms_of_window): Expand docstring of `display-buffer-function'.
15196
15197 2004-07-09 Luc Teirlinck <teirllm@auburn.edu>
15198
15199 * editfns.c (Ffloat_time, Fformat_time_string, Fdecode_time)
15200 (Fcurrent_time_string, Fcurrent_time_zone): Mention in docstrings
15201 that time values of the type (HIGH . LOW) are considered obsolete.
15202
15203 2004-07-06 Luc Teirlinck <teirllm@auburn.edu>
15204
15205 * keyboard.c (syms_of_keyboard): Fix `keyboard-translate-table'
15206 docstring.
15207
15208 * fns.c (Fclear_string): Declare `len' before call to CHECK_STRING.
15209
15210 2004-07-06 John Paul Wallington <jpw@gnu.org>
15211
15212 * eval.c (Fdefmacro): Signal an error if NAME is not a symbol.
15213
15214 * fns.c (Fclear_string): Signal an error if STRING is not a string.
15215
15216 2004-07-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15217
15218 * macterm.c (mac_initialize_display_info): Use CGGetActiveDisplayList
15219 instead of CGMainDisplayID (only in OSX 10.2 and later).
15220
15221 2004-07-04 John Paul Wallington <jpw@gnu.org>
15222
15223 * fileio.c (read_file_name_completion_ignore_case): New variable.
15224 (syms_of_fileio): Declare and initialise it.
15225 (Fread_file_name): Bind `completion-ignore-case' to respect it.
15226
15227 2004-07-03 Eli Zaretskii <eliz@gnu.org>
15228
15229 * msdos.c (dos_rawgetc): Use make_number to produce Lisp objects
15230 for event.x and event.y.
15231
15232 2004-07-01 Kenichi Handa <handa@m17n.org>
15233
15234 * w32select.c (Fw32_set_clipboard_data): Update `nbytes' correctly
15235 after getting a new string by pre-write-conversion.
15236
15237 2004-06-30 Stefan Monnier <monnier@iro.umontreal.ca>
15238
15239 * xterm.c (x_detect_focus_change): Remove unused var `nr_events'.
15240 (x_calc_absolute_position): Remove unused var `child'.
15241
15242 * xfaces.c (x_supports_face_attributes_p)
15243 (Fdisplay_supports_face_attributes_p): YAILOM.
15244 (tty_supports_face_attributes_p): Remove unused var `i'.
15245
15246 * syntax.c (skip_chars): Remove unused labels fwd_unibyte_ok and
15247 back_unibyte_ok.
15248
15249 * search.c (match_limit, Fmatch_data, Fset_match_data): YAILOM.
15250
15251 * fontset.c (Fset_fontset_font): Remove unused vars `family' and
15252 `registry'.
15253
15254 * Makefile.in (${etc}DOC): Fix file name of make-docfile.
15255
15256 2004-06-30 Andreas Schwab <schwab@suse.de>
15257
15258 * image.c (CHECK_LIB_AVAILABLE): Add third parameter LIBRARIES.
15259 (Finit_image_library): Pass LIBRARIES through to
15260 CHECK_LIB_AVAILABLE. Declare parameters. Doc fix.
15261 (lookup_image_type): Pass Qnil as second argument to
15262 Finit_image_library.
15263
15264 * lisp.h (Finit_image_library): Declare.
15265
15266 2004-06-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15267
15268 * macterm.c (do_window_activate, do_window_deactivate): Remove.
15269 (XTread_socket): Send mouse button events to the toolbox
15270 dispatcher even when the mouse is grabbed. Don't process window
15271 activate events for non-Emacs windows. Replace function calls to
15272 do_window_activate and do_window_deactivate with their contents.
15273 Reset mouse grabbing status when a window is deactivated.
15274
15275 2004-06-29 Steven Tamm <steventamm@mac.com>
15276
15277 * macterm.c (mac_get_emulated_btn)
15278 (mac_event_to_emacs_modifiers): Fix emulated mouse button
15279 support to correctly mask out modifiers.
15280
15281 2004-06-29 David Kastrup <dak@gnu.org>
15282
15283 * search.c (Fset_match_data): Allow buffer before end of list
15284 which can happen if set-match-data is using a pre-consed list.
15285
15286 2004-06-28 Steven Tamm <steventamm@mac.com>
15287
15288 * macterm.c (XTread_socket): Correctly set the frame position
15289 after the window is moved.
15290
15291 2004-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15292
15293 * gtkutil.c (xg_get_image_for_pixmap): Call g_object_unref on
15294 gpix and gmask just before return to avoid memory leak.
15295 (xg_get_image_for_pixmap): Add workaround for monochrome displays
15296 so insensitive and activated icons look ok.
15297
15298 2004-06-27 Jason Rumney <jasonr@gnu.org>
15299
15300 * w32fns.c (file_dialog_callback): Disable edit control if set
15301 to directories only on CDN_INITDONE message.
15302 (Fx_file_dialog): Default to directories only when prompt starts
15303 with "Dired".
15304
15305 2004-06-25 Kim F. Storm <storm@cua.dk>
15306
15307 * alloc.c (allocate_misc): Update total_free_markers.
15308 (free_misc): New function.
15309 (safe_alloca_unwind, free_marker): Use it.
15310
15311 * lisp.h (free_misc): Add prototype.
15312
15313 * fns.c (Fmapconcat, Fmapcar): Remove superfluous GCPROs.
15314
15315 2004-06-24 Richard M. Stallman <rms@gnu.org>
15316
15317 * emacs.c (Vsignal_USR1_hook, Vsignal_USR2_hook): Definitions deleted.
15318 (syms_of_emacs): Lisp variables deleted.
15319
15320 2004-06-23 David Kastrup <dak@gnu.org>
15321
15322 * search.c (Freplace_match): Adjust the match-data more thoroughly
15323 when replacing strings in the buffer.
15324 (Fmatch_data): When INTEGERS is non-nil and the last match was in
15325 a buffer, add the buffer as last element to the match data.
15326 (Fset_match_data): If an additional element of the match-data is a
15327 buffer, restore it to last_thing_searched.
15328 (save_search_regs): Save last_thing_searched as part of the match data.
15329 (restore_match_data): Restore it again.
15330
15331 2004-06-23 Luc Teirlinck <teirllm@auburn.edu>
15332
15333 * keymap.c (Ftext_char_description): Doc fix.
15334 * doc.c (Fsnarf_documentation): Doc fix.
15335
15336 2004-06-22 Kim F. Storm <storm@cua.dk>
15337
15338 * fns.c (Fmapcar, Fmapconcat): GCPRO the args array.
15339
15340 * lisp.h (struct Lisp_Save_Value): New member dogc.
15341 (SAFE_ALLOCA_LISP): Change second arg to number of elements.
15342 Set dogc member in Lisp_Save_Value object so it will be GC'ed.
15343 (SAFE_FREE_LISP): New macro.
15344
15345 * alloc.c (safe_alloca_unwind): Clear dogc and pointer members.
15346 (make_save_value): Init new dogc member.
15347 (mark_object): Mark Lisp_Save_Value pointer array if dogc is set.
15348
15349 * fns.c (Fmapconcat, Fmapcar): Use new SAFE_ALLOCA_LISP and
15350 SAFE_FREE_LISP macros.
15351
15352 2004-06-22 Kim F. Storm <storm@cua.dk>
15353
15354 * lisp.h (SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects.
15355 Temporarily inhibits GC if memory is xmalloc'ed, as the Lisp_Objects
15356 in that memory area are unknown to GC. Add comments.
15357
15358 * fns.c (Fmapconcat, Fmapcar): Use SAFE_ALLOCA_LISP.
15359
15360 2004-06-21 Kim F. Storm <storm@cua.dk>
15361
15362 * lisp.h (MAX_ALLOCA): Define here.
15363 (safe_alloca_unwind): Add prototype.
15364 (USE_SAFE_ALLOCA, SAFE_ALLOCA, SAFE_FREE): New macros.
15365
15366 * alloc.c (safe_alloca_unwind): New function.
15367
15368 * casefiddle.c (casify_object): Use SAFE_ALLOCA.
15369
15370 * charset.c (Fstring): Use SAFE_ALLOCA.
15371
15372 * coding.c (MAX_ALLOCA): Remove define.
15373
15374 * data.c (MAX_ALLOCA): Remove define.
15375 (Faset): Use SAFE_ALLOCA.
15376
15377 * editfns.c (Fformat, Ftranspose_regions): Use SAFE_ALLOCA.
15378
15379 * fns.c (string_make_multibyte, string_to_multibyte)
15380 (string_make_unibyte, Fmapconcat, Fmapcar): Use SAFE_ALLOCA.
15381 (MAX_ALLOCA): Remove define.
15382 (Fbase64_encode_region, Fbase64_encode_string)
15383 (Fbase64_decode_region, Fbase64_decode_string): Use SAFE_ALLOCA.
15384 (Fbase64_encode_region, Fbase64_encode_string): Fix potential
15385 memory leak if encoding fails.
15386
15387 * xdisp.c (add_to_log): Use SAFE_ALLOCA.
15388
15389 2004-06-21 Eli Zaretskii <eliz@gnu.org>
15390
15391 * print.c (Fwith_output_to_temp_buffer): Doc fix.
15392
15393 2004-06-20 Richard M. Stallman <rms@gnu.org>
15394
15395 * xfaces.c (Finternal_copy_lisp_face): Small cleanup; doc fix.
15396
15397 * search.c (match_limit): Cleaner err msg when no match data available.
15398
15399 * window.c (syms_of_window): Doc fix.
15400
15401 * keyboard.c (command_loop_1): Handle values `only' and `identity'
15402 for Vtransient_mark_mode.
15403
15404 * buffer.c (syms_of_buffer): Doc fix.
15405
15406 2004-06-21 David Kastrup <dak@gnu.org>
15407
15408 * minibuf.c (Ftry_completion, Fall_completions): Do lazy binding
15409 and unbinding of `case-fold-search' according to
15410 `completion-ignore-case' around calls of string-match and
15411 predicates, respectively. Should give satisfactory performance
15412 in all relevant cases.
15413
15414 2004-06-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15415
15416 * xterm.c (x_draw_image_foreground_1): Subtract slice.x/y from
15417 clip_x/y_origin.
15418
15419 * fns.c (string_to_multibyte): Use xmalloc/xfree instead of alloca.
15420
15421 * macfns.c (Fx_display_color_cells): Do not limit return value to 256.
15422
15423 * macterm.c (mac_initialize_display_info): Initialize n_planes correctly
15424 on Mac OSX.
15425
15426 2004-06-16 Luc Teirlinck <teirllm@auburn.edu>
15427
15428 * buffer.c (syms_of_buffer): Clarify `fill-column' docstring.
15429
15430 2004-06-16 Kim F. Storm <storm@cua.dk>
15431
15432 * dispextern.h (Vimage_types): Remove extern.
15433
15434 2004-06-16 Miles Bader <miles@gnu.org>
15435
15436 * image.c (lookup_image_type): Initialize image type if necessary.
15437
15438 2004-06-15 Kim F. Storm <storm@cua.dk>
15439
15440 * xdisp.c (try_cursor_movement): Exclude header line from scroll
15441 margin at top of window.
15442 (try_window_reusing_current_matrix): Calculate proper cursor position
15443 after scrolling up with non-zero scroll margin, as the old cursor
15444 position corresponds to value of PT before executing this command.
15445 (try_window_id): Consider scroll margin at bottom of window too;
15446 otherwise we fail to scroll when hl-line-mode is enabled.
15447
15448 * syntax.c (skip_chars): Only recognize [:class:] when it has the
15449 proper format and class is a lower-case word.
15450
15451 2004-06-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
15452
15453 * gtkutil.c (xg_get_image_for_pixmap): New function.
15454 (xg_get_gdk_pixmap_and_mask): Remove.
15455 (update_frame_tool_bar): Call xg_get_image_for_pixmap instead of
15456 xg_get_gdk_pixmap_and_mask.
15457
15458 * xterm.h (struct x_display_info): Typo in comment fixed.
15459
15460 2004-06-14 Juanma Barranquero <lektu@terra.es>
15461
15462 * dispextern.h (Vimage_types): Make it conditional on
15463 HAVE_WINDOW_SYSTEM.
15464
15465 * image.c (Vimage_types): Move from xdisp.c.
15466 (Vimage_type_cache): New variable.
15467 (define_image_type): New argument indicating whether an image
15468 library was loaded; cache loaded status and return t on success,
15469 nil otherwise.
15470 (CACHE_IMAGE_TYPE, ADD_IMAGE_TYPE): New macros.
15471 (w32_delayed_load): New function to load an image library from a
15472 list of possible filenames.
15473 (init_xpm_functions, init_png_functions, init_jpeg_functions)
15474 (init_tiff_functions, init_gif_functions): Use `w32_delayed_load'.
15475 (CHECK_LIB_AVAILABLE): Call `define_image_library' with new argument.
15476 (Finit_image_library): New function, extracted from `init_image'.
15477 Try to initialize an image library on demand and cache whether we
15478 were successful or not.
15479 (syms_of_image): Initialize `Vimage_types' and
15480 `Vimage_type_cache'. Add recognized image types to Vimage_types.
15481 Export `init-image-library'.
15482 (init_image): Remove initialization of all image types, except xbm
15483 and pbm.
15484
15485 * xdisp.c (Vimage_types): Delete (moved to image.c).
15486
15487 2004-06-14 Andreas Schwab <schwab@suse.de>
15488
15489 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
15490 Avoid calling specbind when completion-regexp-list is empty.
15491
15492 2004-06-13 Richard M. Stallman <rms@gnu.org>
15493
15494 * regex.h (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
15495 (re_wctype, re_iswctype, re_wctype_to_bit):
15496 Non-function definitions moved here from regex.c.
15497
15498 * regex.c (re_wctype, re_iswctype): Function defs longer static.
15499 (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
15500 (re_wctype, re_iswctype, re_wctype_to_bit):
15501 Non-function definitions moved to regex.h.
15502
15503 * window.c (Fselect_window): Doc fix.
15504
15505 * syntax.c: Include regex.h.
15506 (skip_chars): New arg HANDLE_ISO_CLASSES. Callers changed.
15507 If requested, make a list of classes, then check the scanned
15508 chars for membership in them.
15509 (in_classes): New function.
15510 Doc fix.
15511
15512 * keyboard.c (cmd_error): Don't call any_kboard_state
15513 if inside a recursive edit level.
15514
15515 2004-06-13 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
15516
15517 * keyboard.c (command_loop): Call any_kboard_state before
15518 command_loop_2 when at top level.
15519
15520 2004-06-13 Andreas Schwab <schwab@suse.de>
15521
15522 * print.c (print_object): Always use %ld for printing EMACS_INT.
15523
15524 * keyboard.c (cancel_hourglass_unwind): Return a value.
15525 (modify_event_symbol): Always use %ld for printing EMACS_INT.
15526 (Fexecute_extended_command): Likewise.
15527
15528 * syntax.h (SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
15529 avoid clashes.
15530 (SYNTAX): Likewise.
15531 (SYNTAX_WITH_FLAGS): Likewise.
15532 (SYNTAX_MATCH): Likewise.
15533
15534 * syntax.c (char_quoted): Avoid warning about undefined operation.
15535 (find_defun_start): Likewise.
15536 (scan_lists): Likewise.
15537 (INC_FROM): Likewise.
15538 (scan_sexps_forward): Likewise.
15539
15540 * image.c: Include <ctype.h>.
15541
15542 * xfaces.c (face_attr_equal_p): Declare parameters.
15543
15544 2004-06-13 Kenichi Handa <handa@m17n.org>
15545
15546 * ccl.c (CCL_READ_CHAR): If hit EOF, set REG to -1.
15547
15548 2004-06-12 Matthew Mundell <matt@mundell.ukfsn.org>
15549
15550 * eval.c (Fdefun): Signal an error if NAME is not a symbol.
15551
15552 2004-06-12 Kenichi Handa <handa@m17n.org>
15553
15554 * ccl.c (CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
15555 ccl_prog_stack_struct and update it.
15556 (CCL_INVALID_CMD): If CCL_DEBUG is defined, call ccl_debug_hook.
15557 (CCL_READ_CHAR): Get instruction counter from eof_ic, not from
15558 ccl->eof_ic on EOF.
15559 (ccl_debug_hook): New function.
15560 (struct ccl_prog_stack): New member eof_ic.
15561 (ccl_driver): Handle EOF in subrountine call correctly.
15562
15563 2004-06-11 Kenichi Handa <handa@m17n.org>
15564
15565 * coding.c (encode_coding_string): Check CODING_FINISH_INTERRUPT.
15566
15567 2004-06-11 Kim F. Storm <storm@cua.dk>
15568
15569 * emacs.c (shut_down_emacs): Inhibit redisplay during shutdown.
15570
15571 2004-06-11 Juanma Barranquero <lektu@terra.es>
15572
15573 * keyboard.c (Fposn_at_point): Doc fix.
15574
15575 2004-06-11 David Kastrup <dak@gnu.org>
15576
15577 * search.c (match_limit): Don't flag an error if match-data
15578 exceeding the allocated search_regs.num_regs gets requested, just
15579 return Qnil.
15580
15581 2004-06-08 Miles Bader <miles@gnu.org>
15582
15583 * xfaces.c (push_named_merge_point): Return 0 when a cycle is detected.
15584
15585 2004-06-07 Juanma Barranquero <lektu@terra.es>
15586
15587 * editfns.c (Fuser_login_name, Ffloat_time, Fencode_time)
15588 (Fcurrent_time_string, Fcurrent_time_zone)
15589 (Finsert_buffer_substring, Ftranspose_regions): Doc fixes.
15590
15591 2004-06-07 Miles Bader <miles@gnu.org>
15592
15593 * xfaces.c (struct named_merge_point): New type.
15594 (push_named_merge_point): New function.
15595 (merge_named_face): New function.
15596 (merge_face_ref, face_at_buffer_position, face_at_string_position):
15597 Use `merge_named_face'.
15598 (merge_face_inheritance): Function removed.
15599 (merge_face_ref): Rename from `merge_face_vector_with_property'.
15600 Add new `err_msgs' and `named_merge_points' args. Return error
15601 status. Only print error messages if ERR_MSGS is true. Don't try to
15602 do :inherit attribute validation.
15603 (merge_face_heights): Handle `unspecified' in both directions.
15604 (merge_face_vectors): Rename `cycle_check' arg to `named_merge_points'.
15605 Call `merge_face_ref' instead of `merge_face_inheritance'.
15606 (Fdisplay_supports_face_attributes_p, Fface_attributes_as_vector)
15607 (compute_char_face, face_at_buffer_position)
15608 (face_at_string_position): Call `merge_face_ref' instead of
15609 `merge_face_vector_with_property'.
15610
15611 2004-06-07 Kenichi Handa <handa@m17n.org>
15612
15613 * coding.c (find_safe_codings): Check NILP (safe_codings) only at
15614 the necessary places.
15615
15616 2004-06-07 Kim F. Storm <storm@cua.dk>
15617
15618 * process.c (Fdelete_process): Undo 2004-05-28 change.
15619 Instead, call status_notify also for network process.
15620 (status_message): Use process instead of status as arg.
15621 Give messages "deleted" or "connection broken by remote peer" for
15622 an exited network process.
15623 (status_notify): Change call to status_message.
15624 (read_process_output): Increase readmax to 4096. Do not increase
15625 buffer size for datagram channels (default is now large enough).
15626
15627 2004-06-06 Steven Tamm <tamm@Steven-Tamms-Computer.local>
15628
15629 * macfns.c (x_create_tip_frame): Fix Mac OS X 10.1 compilation
15630 problem due to newly defined variable.
15631
15632 2004-06-06 Miles Bader <miles@gnu.org>
15633
15634 * xfaces.c (Fdisplay_supports_face_attributes_p): Give up
15635 immediately if non-interactive or not initialized.
15636
15637 2004-06-05 Richard M. Stallman <rms@gnu.org>
15638
15639 * minibuf.c (Fcompleting_read): Doc fix.
15640
15641 2004-06-05 Andreas Schwab <schwab@suse.de>
15642
15643 * macfns.c (x_create_tip_frame): Fix declaration after statement.
15644
15645 2004-06-05 Juanma Barranquero <lektu@terra.es>
15646
15647 * keymap.c (Fdescribe_vector): Fix docstring.
15648 (Fkey_description, Fglobal_key_binding): Fix typo in docstring.
15649
15650 2004-06-05 Miles Bader <miles@gnu.org>
15651
15652 * xfaces.c (tty_supports_face_attributes_p): Make sure the specified
15653 attributes have different values than the default face.
15654
15655 2004-06-04 Eli Zaretskii <eliz@gnu.org>
15656
15657 * xfaces.c (x_supports_face_attributes_p): Make this function
15658 conditional on HAVE_WINDOW_SYSTEM.
15659 (Fdisplay_supports_face_attributes_p) [HAVE_WINDOW_SYSTEM]:
15660 Don't call x_supports_face_attributes_p if it was not compiled in.
15661
15662 2004-06-04 Miles Bader <miles@gnu.org>
15663
15664 * xfaces.c (tty_supports_face_attributes_p): New function, mostly
15665 from Ftty_supports_face_attributes_p.
15666 (x_supports_face_attributes_p): New function.
15667 (Ftty_supports_face_attributes_p): Function deleted.
15668 (Fdisplay_supports_face_attributes_p): New function.
15669 (syms_of_xfaces): Initialize Sdisplay_supports_face_attributes_p.
15670 (face_attr_equal_p): New function.
15671 (lface_equal_p): Use it.
15672
15673 2004-06-03 Juanma Barranquero <lektu@terra.es>
15674
15675 * w32fns.c (Fx_display_grayscale_p, Fw32_send_sys_command)
15676 (Vw32_color_map): Fix typo in docstring.
15677 (Fx_create_frame, Fw32_find_bdf_fonts, Fx_show_tip)
15678 (Fw32_unregister_hot_key, Fw32_reconstruct_hot_key):
15679 Make argument names match their use in docstring.
15680
15681 2004-06-02 Juanma Barranquero <lektu@terra.es>
15682
15683 Work around bugs/problems with MinGW builds of graphics libraries
15684 called from MSVC builds of Emacs.
15685
15686 * image.c (lookup_image): Make pointer to img static.
15687 (png_read_from_memory): Disable "global" optimization.
15688
15689 2004-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
15690
15691 * eval.c (Fcondition_case): Fix usage. Simplify.
15692
15693 * mem-limits.h (EXCEEDS_LISP_PTR) [USE_LSB_TAG]: Never true.
15694
15695 2004-05-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15696
15697 * macfns.c: Don't include ccl.h.
15698 [MAC_OSX]: Don't include QuickTime/QuickTime.h.
15699 [!MAC_OSX]: Don't include alloca.h, Windows.h, Gestalt.h, or
15700 TextUtils.h.
15701 (Fx_create_frame): Sync with xfns.c. Initialize cursor descriptors.
15702 (Fx_display_mm_height, Fx_display_mm_width): Calculate length from
15703 display height/width.
15704 (compute_tip_xy, Vx_max_tooltip_size): Declare.
15705 (unwind_create_tip_frame, compute_tip_xy): New functions.
15706 (x_create_tip_frame, Fx_show_tip, Fx_hide_tip): Sync with xfns.c.
15707 (syms_of_macfns): Initialize Qcancel_timer, Vx_max_tooltip_size,
15708 and last_show_tip_args.
15709
15710 * macgui.h [!MAC_OSX]: Include Gestalt.h.
15711 (Cursor, No_Cursor): New defines.
15712 [!TARGET_API_MAC_CARBON] (SetPortWindowPort): New compatibility macro.
15713 [!TARGET_API_MAC_CARBON] (arrow_cursor): Declare.
15714
15715 * macmenu.c (mac_menu_show, mac_dialog): Use SetPortWindowPort.
15716
15717 * macterm.c: Don't include Gestalt.h.
15718 (enum mouse_tracking_type, mouse_tracking_in_progress): Remove.
15719 (XDrawLine, XClearArea, XClearWindow, mac_draw_bitmap)
15720 (mac_set_clip_rectangle, mac_reset_clipping, XCreatePixmap)
15721 (XFillRectangle, mac_draw_rectangle, mac_draw_string_common)
15722 (mac_copy_area, mac_copy_area_with_mask, x_update_end)
15723 (construct_mouse_click, XTmouse_position)
15724 (x_scroll_bar_report_motion, x_calc_absolute_position)
15725 (do_mouse_moved, do_zoom_window, mac_do_receive_drag)
15726 (XTread_socket, make_mac_frame): Use SetPortWindowPort.
15727 (note_mouse_movement): Clear the mouse face and reset the pointer
15728 shape when the pointer goes outside the frame without grabbing.
15729 (mac_front_window): New function.
15730 (mac_window_to_frame): New macro.
15731 (XTmouse_position, x_scroll_bar_report_motion, do_window_update)
15732 (do_window_activate, do_window_deactivate, do_app_resume)
15733 (do_app_suspend, do_mouse_moved, do_menu_choice, do_grow_window)
15734 (do_zoom_window, mac_do_receive_drag, XTread_socket)
15735 (mac_check_for_quit_char): Use mac_front_window and/or
15736 mac_window_to_frame.
15737 (x_scroll_bar_handle_click): Set `(PORTION . WHOLE)' part in a
15738 scroll-bar click event.
15739 (mac_define_frame_cursor): Change the pointer shape.
15740 (x_free_frame_resources): Reset tip_window to NULL when it is
15741 disposed of.
15742 [!TARGET_API_MAC_CARBON] (arrow_cursor): New variable.
15743 [!TARGET_API_MAC_CARBON] (do_init_managers): Initialize arrow_cursor.
15744 (do_window_update): Don't do anything if the updated window is the
15745 tooltip window.
15746 (do_mouse_moved): Handle mouse movement events here (previously in
15747 XTread_socket). Clear the mouse face if
15748 dpyinfo->mouse_face_hidden is set.
15749 (do_os_event, do_events): Remove (now in XTread_socket).
15750 (XTread_socket): Immediately return if interrupt_input_blocked.
15751 Loop until all the events in the queue are processed.
15752 Rearrange codes for mouse grabbing. Add tooltip support. Include the
15753 contents of do_os_event and do_events. Remove mouse movement
15754 handling (now in do_mouse_moved). Add the case where
15755 Vmouse_highlight has an integer value.
15756 (NewMacWindow): Remove.
15757 (make_mac_frame): Do what NewMacWindow previously did. Don't do
15758 excess initializations.
15759 (make_mac_terminal_frame): Previous initializations in
15760 make_mac_frame are moved here.
15761 (mac_initialize_display_info):
15762 Initialize dpyinfo->mouse_face_overlay and dpyinfo->mouse_face_hidden.
15763
15764 * xdisp.c [MAC_OS] (No_Cursor): Remove variable.
15765 (define_frame_cursor1): Don't treat HAVE_CARBON as a special case.
15766
15767 2004-05-29 Richard M. Stallman <rms@gnu.org>
15768
15769 * lisp.h (truncate_undo_list): Update decl.
15770
15771 * alloc.c (undo_outer_limit): New variable.
15772 (syms_of_alloc): Defvar it.
15773 (Fgarbage_collect): Pass undo_outer_limit to truncate_undo_list.
15774
15775 * undo.c (truncate_undo_list): New arg LIMITSIZE.
15776
15777 * alloc.c (lisp_align_malloc): Check for base == 0
15778 regardless of HAVE_POSIX_MEMALIGN.
15779 Clean up HAVE_POSIX_MEMALIGN handling of `err'.
15780
15781 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
15782
15783 * alloc.c: Undo Kim's recent changes and fix the same bug differently.
15784 (marker_blocks_pending_free): Remove.
15785 (Fgarbage_collect): Sweep after cleaning up undo-lists.
15786 Mark the undo lists after claning them up.
15787 Don't free block in marker_blocks_pending_free.
15788 (mark_buffer): Don't mark undo_list.
15789 (gc_sweep): Sweep hash-tables and strings first.
15790 Do free marker blocks that are empty.
15791
15792 2004-05-28 Jim Blandy <jimb@redhat.com>
15793
15794 * regex.c (print_partial_compiled_pattern): Add missing 'break'
15795 after 'case wordend'. For symbeg and symend, print to stderr,
15796 like the other cases.
15797
15798 2004-05-28 Noah Friedman <friedman@splode.com>
15799
15800 * process.c (Fdelete_process): Do not call remove_process.
15801
15802 2004-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
15803
15804 * alloc.c (struct backtrace): Remove.
15805 (Fgarbage_collect): Use the new mark_backtrace.
15806
15807 * eval.c (mark_backtrace): New function.
15808
15809 * minibuf.c (run_exit_minibuf_hook): New function.
15810 (read_minibuf_unwind): Don't run exit-minibuffer-hook any more.
15811 (read_minibuf): Use separate unwind handler to run exit-minibuf-hook.
15812
15813 2004-05-27 Kim F. Storm <storm@cua.dk>
15814
15815 * xdisp.c (back_to_previous_visible_line_start): Skip backwards
15816 over display properties, e.g. images, that replace buffer text.
15817
15818 2004-05-25 Kim F. Storm <storm@cua.dk>
15819
15820 * alloc.c (marker_blocks_pending_free): New var.
15821 (gc_sweep): Store free marker blocks on that list.
15822 (Fgarbage_collect): Free them after undo-list cleanup.
15823
15824 * process.c (wait_reading_process_input): Check connect_wait_mask
15825 before actually accepting connection in case it has already been
15826 accepted due to recursion.
15827
15828 2004-05-23 K\e,Aa\e(Broly L\e$,1 q\e(Brentey <lorentey@elte.hu>
15829
15830 * coding.c (Fset_safe_terminal_coding_system_internal):
15831 Set suppress_error in safe_terminal_coding, not terminal_coding.
15832
15833 2004-05-22 Richard M. Stallman <rms@gnu.org>
15834
15835 * alloc.c (Fmake_string): Doc fix.
15836
15837 * buffer.c (clone_per_buffer_values): Copy the alist of local vars,
15838 and the alist pairs too.
15839
15840 * casefiddle.c (casify_object): Return OBJ unchanged if not real char.
15841
15842 * emacs.c (main): Update copyright year.
15843
15844 * fileio.c (Fread_file_name): Expand DIR if not absolute.
15845
15846 * insdel.c (del_range_2, replace_range): Don't write an anchor
15847 if the gap is empty.
15848
15849 * xdisp.c (try_scrolling): If scroll-up-aggressively or
15850 scroll-down-aggressively is small but positive, put point
15851 near the screen edge.
15852
15853 2004-05-22 Juanma Barranquero <lektu@terra.es>
15854
15855 * keymap.c (Fdefine_key): Doc fix.
15856
15857 2004-05-22 Kim F. Storm <storm@cua.dk>
15858
15859 * alloc.c (struct backtrace): Add debug_on_exit member.
15860 (Fgarbage_collect): Clear out buffer undo_list markers after gc_sweep.
15861 Identify those markers as Lisp_Misc_Free objects. Clear car and cdr of
15862 the removed cons cells.
15863 (mark_object): Undo previous change - disallow Lisp_Misc_Free objects.
15864 (gc_sweep): Clear cons_blocks before sweeping strings, so we don't have
15865 any cons cells pointing to unallocated stings.
15866 Do not lisp_free any marker blocks, as there may still be pointers
15867 to them from buffer undo lists at this stage of GC.
15868
15869 * keyboard.c (struct backtrace): Add debug_on_exit member.
15870 (Fcommand_execute): Clear it.
15871
15872 2004-05-20 Luc Teirlinck <teirllm@auburn.edu>
15873
15874 * intervals.c (lookup_char_property): Do not prematurely return nil.
15875
15876 2004-05-19 Jim Blandy <jimb@redhat.com>
15877
15878 Add support for new '\_<' and '\_>' regexp operators, matching the
15879 beginning and end of symbols.
15880
15881 * regex.c (enum syntaxcode): Add Ssymbol.
15882 (init_syntax_once): Set the syntax for '_' to Ssymbol, not Sword.
15883 (re_opcode_t): New opcodes `symbeg' and `symend'.
15884 (print_partial_compiled_pattern): Print the new opcodes properly.
15885 (regex_compile): Parse the new operators.
15886 (analyse_first): Skip sym(beg|end) (they match only the empty string).
15887 (mutually_exclusive_p): `symend' is mutually exclusive with \s_ and
15888 \sw; `symbeg' is mutually exclusive with \S_ and \Sw.
15889 (re_match_2_internal): Match symbeg and symend.
15890
15891 * search.c (trivial_regexp_p): \_ is no longer a trivial regexp.
15892
15893 2004-05-19 Kim F. Storm <storm@cua.dk>
15894
15895 * .gdbinit (xsymbol): Fix last change.
15896
15897 2004-05-18 Stefan Monnier <monnier@iro.umontreal.ca>
15898
15899 * .gdbinit (xprintstr): New fun.
15900 (xstring, xprintsym): Use it.
15901
15902 * w32proc.c (create_child): Use INTMASK.
15903
15904 * alloc.c (Fgarbage_collect): Do all the marking before flushing
15905 unmarked elements of the undo list.
15906
15907 2004-05-18 David Ponce <david@dponce.com>
15908
15909 * print.c (print): Reset print_depth before to call print_object.
15910
15911 2004-05-18 Jason Rumney <jasonr@gnu.org>
15912
15913 * w32console.c: Prefix RIF functions with w32con_ to avoid
15914 namespace clash with functions in term.c and w32term.c.
15915
15916 * w32menu.c (add_menu_item, w32_menu_display_help)
15917 [USE_LISP_UNION_TYPE]: Cast from Lisp_Object using i member.
15918
15919 * w32term.h (display_x_get_resource, vga_stdcolor_name): Add prototype.
15920
15921 2004-05-18 Eli Zaretskii <eliz@gnu.org>
15922
15923 * lisp.h (DECL_ALIGN): Remove restriction on MS-DOS systems.
15924
15925 * msdos.c (syms_of_msdos): Initialize dos-unsupported-char-glyph
15926 with make_number.
15927 (IT_write_glyphs): Extract glyph from dos-unsupported-char-glyph
15928 with XINT.
15929
15930 2004-05-18 Kim F. Storm <storm@cua.dk>
15931
15932 * blockinput.h (INPUT_BLOCKED_P): New macros.
15933
15934 * keyboard.c (Frecursive_edit): Return immediately if input blocked.
15935 (Ftop_level): Unblock input if blocked.
15936
15937 * buffer.h (GET_OVERLAYS_AT): New macro.
15938 * msdos.c (IT_note_mouse_highlight): Use it.
15939 * textprop.c (get_char_property_and_overlay): Use it.
15940 * xdisp.c (next_overlay_change, note_mouse_highlight): Use it.
15941 * xfaces.c (face_at_buffer_position): Use it.
15942
15943 * print.c (print_object): Increase buf size.
15944
15945 2004-05-17 Jason Rumney <jasonr@gnu.org>
15946
15947 * w32fns.c (Fw32_register_hot_key, Fw32_unregister_hot_key)
15948 (Fw32_toggle_lock_key) [USE_LISP_UNION_TYPE]: Cast from
15949 Lisp_Object using i member.
15950 (w32_quit_key): Rename from Vw32_quit_key, and make an int.
15951 (syms_of_w32fns, globals_of_w32fns): Use Lisp_Object and int
15952 consistently.
15953
15954 * w32proc.c (create_child): Use make_number instead of masking pid.
15955
15956 * w32fns.c (w32_color_map_lookup): Return a Lisp_Object.
15957 (x_to_w32_charset, w32_to_x_charset, w32_to_all_x_charsets):
15958 Use EQ to compare Lisp_Objects.
15959 (w32_parse_hot_key): Use int for lisp_modifiers consistently.
15960
15961 * w32term.c (w32_num_mouse_buttons): Rename from
15962 Vw32_num_mouse_buttons and make it an int.
15963
15964 * w32.c (init_environment): Use it.
15965
15966 * w32fns.c (w32_wnd_proc): Likewise.
15967
15968 * w32proc.c (w32_pipe_read_delay): Rename from
15969 Vw32_pipe_read_delay and make it an int.
15970
15971 * w32.c (_sys_read_ahead): Use it.
15972
15973 * lisp.h (egetenv) [USE_CRT_DLL]: Remove condition.
15974
15975 * w32proc.c (create_child) [USE_LSB_TAG]: Don't try to mask pid.
15976
15977 * w32inevt.c (w32_console_mouse_position, do_mouse_event)
15978 (key_event): Don't mix Lisp_Object and int.
15979
15980 * w32heap.c (init_heap) [USE_LSB_TAG]: Don't check heap location.
15981
15982 * keyboard.c (kbd_buffer_get_event): Don't use event->code and
15983 modifiers in language change event.
15984
15985 2004-05-17 Kim F. Storm <storm@cua.dk>
15986
15987 * alloc.c (mark_object): Ignore Lisp_Misc_Free objects.
15988 Such objects may be freed markers which still exist on an undo list.
15989
15990 2004-05-16 Juanma Barranquero <lektu@terra.es>
15991
15992 * data.c (Fset_default): Make argument names match their use in
15993 docstring.
15994
15995 2004-05-15 Andreas Schwab <schwab@suse.de>
15996
15997 * emacs.c (gdb_array_mark_flag): Define.
15998 * .gdbinit: Mask off gdb_array_mark_flag from vector sizes.
15999
16000 2004-05-15 Eli Zaretskii <eliz@gnu.org>
16001
16002 * lisp.h (DECL_ALIGN) [MSDOS]: Don't define DECL_ALIGN to use
16003 __attribute__((__aligned__)), so that USE_LSB_TAG would not become
16004 defined for the MS-DOS build.
16005
16006 2004-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
16007
16008 * w32fns.c (Fw32_define_rgb_color): Avoid XSET.
16009
16010 2004-05-14 Kenichi Handa <handa@m17n.org>
16011
16012 * ccl.c (Fccl_execute_on_string): Fix setting elements of STATUS.
16013
16014 2004-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16015
16016 * lisp.h (Vx_resource_name, Vx_resource_class): Move from xfns.c
16017 section to frame.c section.
16018 (Fxw_display_color_p, Fx_file_dialog): Declare if
16019 HAVE_WINDOW_SYSTEM defined.
16020
16021 * macfns.c (Fx_create_frame): Fix int/Lisp_Object mixup.
16022
16023 * macmenu.c (set_frame_menubar): Use NILP to test a lisp value.
16024
16025 * macterm.c (mac_get_emulated_btn, mac_event_to_emacs_modifiers)
16026 (mac_get_mouse_btn): Use NILP and EQ to test/compare lisp values.
16027 (XTread_socket): Fix int/Lisp_Object mixup.
16028 (mac_check_for_quit_char): Fix pointer/Lisp_Object mixup.
16029
16030 * macterm.h (struct frame, struct face, struct image)
16031 (display_x_get_resource, Fx_display_color_p)
16032 (Fx_display_grayscale_p, Fx_display_planes, x_free_gcs):
16033 Add prototypes.
16034
16035 2004-05-14 Kim F. Storm <storm@cua.dk>
16036
16037 * process.c (wait_reading_process_input): Make reentrant.
16038 Make Available and Connecting non-static. Save and restore value
16039 of waiting_for_user_input_p.
16040
16041 2004-05-13 Kim F. Storm <storm@cua.dk>
16042
16043 * keyboard.c (mark_kboards): Don't mark x and y members
16044 that are overloaded in selection request events.
16045
16046 2004-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
16047
16048 * lisp.h (USE_LSB_TAG): Make it the default when it is known to work.
16049
16050 2004-05-13 Glenn Morris <gmorris@ast.cam.ac.uk>
16051
16052 * window.c (Fdisplay_buffer, Fsplit_window)
16053 (split-height-threshold): Doc fix.
16054
16055 2004-05-13 Juanma Barranquero <lektu@terra.es>
16056
16057 * xfaces.c (Ftty_supports_face_attributes_p)
16058 (Finternal_copy_lisp_face): Fix typo in docstring.
16059 (Finternal_get_lisp_face_attribute): Fix docstring.
16060
16061 2004-05-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16062
16063 * xfns.c (syms_of_xfns): Provide x-toolkit also for GTK.
16064
16065 2004-05-11 Steven Tamm <steventamm@mac.com>
16066
16067 * macfns.c (Fx_create_frame): Default to using tool-bar by
16068 setting tool-bar-lines to 1 in default-frame-alist.
16069
16070 2004-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16071
16072 * image.c (xpm_scan, xpm_make_color_table_v, xpm_put_color_table_v)
16073 (xpm_get_color_table_v, xpm_make_color_table_h)
16074 (xpm_put_color_table_h, xpm_get_color_table_h)
16075 (xpm_str_to_color_key, xpm_load_image, xpm_load)
16076 (syms_of_image): Support XPM on Carbon Emacs. Does not
16077 depend on libXpm, but only supports XPM version 3 without extensions.
16078
16079 2004-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16080
16081 * macterm.c (x_flush, XTframe_up_to_date): Use FRAME_MAC_P
16082 instead of FRAME_X_P.
16083
16084 2004-05-11 Kim F. Storm <storm@cua.dk>
16085
16086 * process.c (read_process_output): Grow decoding_buf when needed;
16087 this could cause a crash in allocate_string and compact_small_strings.
16088
16089 2004-04-29 Jim Blandy <jimb@redhat.com>
16090
16091 * regex.c (mutually_exclusive_p): In 'case wordbeg', compare op2
16092 against proper opcode.
16093
16094 2004-05-10 Juanma Barranquero <lektu@terra.es>
16095
16096 * process.c (Fstart_process): Fix docstring.
16097
16098 * charset.c (Fget_unused_iso_final_char): Fix typos in docstring.
16099 (Fchar_bytes, Fchar_width, Fstring_width, Fchar_direction)
16100 (Fsplit_char, Fchar_charset): Make argument names match their use
16101 in docstring.
16102
16103 2004-05-10 Richard M. Stallman <rms@gnu.org>
16104
16105 * print.c (print_preprocess): Use being_printed, loop_count and
16106 halftail to detect overdeep nesting and cyclic cdr chains.
16107
16108 2004-05-10 Andreas Schwab <schwab@suse.de>
16109
16110 * lisp.h (Fmake_symbolic_link): Declare.
16111
16112 * fileio.c (Frename_file): Remove extra argument in call to
16113 Fmake_symbolic_link.
16114
16115 2004-05-10 Kim F. Storm <storm@cua.dk>
16116
16117 * xdisp.c (calc_line_height_property): Use string position when
16118 object is a string.
16119
16120 2004-05-10 Kenichi Handa <handa@m17n.org>
16121
16122 * print.c (temp_output_buffer_setup): Bind inhibit-read-only and
16123 inhibit-modification-hooks to t temporarily before calling
16124 Ferase_buffer.
16125
16126 * xfns.c (x_create_tip_frame): Bind inhibit-read-only and
16127 inhibit-modification-hooks to t temporarily before calling
16128 Ferase_buffer.
16129
16130 * w32fns.c (x_create_tip_frame): Bind inhibit-read-only and
16131 inhibit-modification-hooks to t temporarily before calling
16132 Ferase_buffer.
16133
16134 * fns.c (count_combining): Delete it.
16135 (concat): Don't check combining bytes.
16136
16137 2004-05-09 Jason Rumney <jasonr@gnu.org>
16138
16139 * w32fns.c (Vw32_ansi_code_page): New Lisp variable.
16140 (globals_of_w32fns): Set it.
16141
16142 2004-05-09 Piet van Oostrum <piet@cs.uu.nl>
16143
16144 * data.c (Fquo): Simplify.
16145
16146 2004-05-08 Peter Whaite <emacs@whaite.ca> (tiny change)
16147
16148 * data.c (Fquo): If any argument is float, do the computation in
16149 floating point.
16150
16151 2004-05-08 Juanma Barranquero <lektu@terra.es>
16152
16153 * process.c (Fwaiting_for_user_input_p, Fmake_network_process)
16154 (Fset_process_query_on_exit_flag, Vprocess_adaptive_read_buffering):
16155 Fix spelling of Emacs on docstring.
16156 (Fset_process_coding_system, Fprocess_coding_system)
16157 (Fset_process_filter_multibyte, Fprocess_filter_multibyte_p):
16158 Make argument names match their use in docstring.
16159 (Fprocess_id, Fprocess_query_on_exit_flag, Finterrupt_process):
16160 Fix docstring.
16161
16162 * editfns.c (Finsert_buffer_substring): Make argument names match their
16163 use in docstring.
16164
16165 * syntax.c (Fmodify_syntax_entry): Fix docstring.
16166
16167 2004-05-07 Steven Tamm <steventamm@mac.com>
16168
16169 * macterm.c (mac_check_for_quit_char): Adding BLOCK_INPUT
16170 around call to ReceiveEvent to avoid certain crashes.
16171
16172 2004-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16173
16174 * macterm.c (mac_draw_line_to_pixmap, XCreatePixmapFromBitmapData)
16175 (mac_fill_rectangle_to_pixmap, mac_draw_rectangle_to_pixmap)
16176 (mac_copy_area_to_pixmap, mac_copy_area_with_mask_to_pixmap):
16177 Save/restore the current graphics port and device handle when
16178 drawing into an offscreen graphics world.
16179
16180 * image.c [MAC_OS] (XPutPixel, XGetPixel, image_load_qt_1)
16181 (gif_load): Likewise.
16182
16183 2004-05-07 Juanma Barranquero <lektu@terra.es>
16184
16185 * window.c (Fset_window_buffer): Fix docstring.
16186
16187 2004-05-06 Thien-Thi Nguyen <ttn@gnu.org>
16188
16189 * emacs.c (main) [VMS]: Fix var ref.
16190
16191 2004-05-06 Romain Francoise <romain@orebokech.com>
16192
16193 * data.c (Fsetq_default): Fix docstring.
16194
16195 2004-05-06 Jason Rumney <jasonr@gnu.org>
16196
16197 * image.c (Display) [HAVE_NTGUI]: Redefine while loading xpm.h
16198 to avoid name clash.
16199
16200 2004-05-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16201
16202 * fileio.c (barf_or_query_if_file_exists): Use lstat.
16203 (Frename_file): Handle renaming of symlinks across file systems.
16204 (Frename_file): Put symlink handling inside #ifdef S_IFLNK.
16205
16206 2004-05-04 Kim F. Storm <storm@cua.dk>
16207
16208 * xdisp.c (Qtotal): New var.
16209 (syms_of_xdisp): Intern and staticpro it.
16210 (calc_line_height_property): New arg total. Set it if
16211 line-spacing property has format (total . VALUE).
16212 (x_produce_glyphs): Ignore line-spacing if line-height is 0.
16213 Handle total line-spacing property.
16214
16215 2004-05-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16216
16217 * gtkutil.c (xg_update_scrollbar_pos): Call XClearWindow to clear
16218 "under" scroll bar when size/position changes.
16219
16220 2004-05-03 Jason Rumney <jasonr@gnu.org>
16221
16222 * makefile.nt: Remove.
16223
16224 2004-05-02 Eli Zaretskii <eliz@gnu.org>
16225
16226 * syntax.h (SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY_INT):
16227 Avoid compiler warnings.
16228
16229 * Makefile.in (region-cache.o): Depend on config.h.
16230
16231 2004-05-02 Romain Francoise <romain@orebokech.com>
16232
16233 * indent.c (compute_motion): Save vpos in prev_vpos when dealing
16234 with continuation lines, too.
16235
16236 2004-05-02 Thien-Thi Nguyen <ttn@gnu.org>
16237
16238 * syssignal.h (init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
16239
16240 2004-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
16241
16242 * xdisp.c (calc_line_height_property): YAILOM (yet another
16243 int/Lisp_Object mixup).
16244
16245 2004-05-01 Eli Zaretskii <eliz@gnu.org>
16246
16247 * msdos.c (top-level): Add "#pragma pack(0)" after <dir.h>, to
16248 undo bad effect of pack(4) in some versions of system headers.
16249
16250 2004-05-01 Jason Rumney <jasonr@gnu.org>
16251
16252 * w32term.c (x_draw_hollow_cursor): Sync with xterm.c.
16253
16254 2004-04-30 Kim F. Storm <storm@cua.dk>
16255
16256 * buffer.c (syms_of_buffer) <line-spacing>: Allow float value.
16257 (syms_of_buffer) <cursor-type>: Doc fix.
16258
16259 * dispextern.h (struct it): Remove member use_default_face.
16260 Add members override_ascent, override_descent, override_boff.
16261
16262 * xdisp.c (init_iterator): Handle line-spacing float value.
16263 Initialize override_ascent member.
16264 (append_space_for_newline): Reset override_ascent.
16265 Remove use_default_face.
16266 (calc_line_height_property): New function to calculate value of
16267 line-height and line-spacing properties. Look at overlays, too.
16268 Set override_ascent, override_descent, override_boff members when
16269 using another face than the current face. Float values are now
16270 relative to the frame default font, by default; accept a cons
16271 of ratio and face name to specify value relative to a specific face.
16272 (x_produce_glyphs): Use calc_line_height_property.
16273 Use override_ascent etc. when set to handle different face heights.
16274 A negative line-spacing property value is interpreted as a total
16275 line height, rather than inter-line spacing.
16276 (note_mouse_highlight): Allocate room for 40 overlays initially.
16277
16278 2004-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
16279
16280 * data.c (Fsubr_name): New fun.
16281 (syms_of_data): Defsubr it.
16282
16283 2004-04-29 Kim F. Storm <storm@cua.dk>
16284
16285 * xdisp.c (null_glyph_slice): New var.
16286 (append_glyph, append_composite_glyph, append_stretch_glyph):
16287 Use it to initialize glyph slice.
16288
16289 2004-04-27 Stefan Monnier <monnier@iro.umontreal.ca>
16290
16291 * xdisp.c (x_produce_glyphs): Fix the proverbial int/Lisp_Object mixup.
16292 (on_hot_spot_p): Make sure we always return a value.
16293 (Flookup_image_map): Remove unused var ix and iy.
16294 (note_mode_line_or_margin_highlight): Remove unused var `image'.
16295
16296 2004-04-27 Eli Zaretskii <eliz@gnu.org>
16297
16298 * msdos.c (init_environment): If one of the TMP... environment
16299 variables is set to a drive letter without a trailing slash,
16300 append a slash.
16301
16302 2004-04-27 Matthew Mundell <matt@mundell.ukfsn.org>
16303
16304 * editfns.c (lisp_time_argument): Provide externally.
16305
16306 * fileio.c (Fset_file_times): New function.
16307 (syms_of_fileio): Intern and staticpro it.
16308
16309 2004-04-27 Kim F. Storm <storm@cua.dk>
16310
16311 * xdisp.c (x_produce_glyphs): Fix last change; handle newline in
16312 header line strings.
16313
16314 * dispextern.h (struct it): New member use_default_face.
16315
16316 * xdisp.c (Qline_height): New variable.
16317 (syms_of_xdisp): Intern and staticpro it.
16318 (append_space_for_newline): Partially undo 2004-04-25 change;
16319 add default_face_p arg, and restore callers.
16320 Clear it->use_default_face after use.
16321 (x_produce_glyphs): Set default font for ascii char if
16322 it->use_default_font is set. Change line-spacing property to set
16323 just extra line spacing. Handle new line-height property.
16324
16325 2004-04-26 Andreas Schwab <schwab@suse.de>
16326
16327 * print.c (print_object): Print non-ascii characters in bool
16328 vector representation as octal escapes.
16329
16330 * lisp.h (BOOL_VECTOR_BITS_PER_CHAR): Define.
16331 * print.c (print_object): Use it instead of BITS_PER_CHAR for
16332 bool vectors.
16333 * lread.c (read1): Likewise.
16334 * alloc.c (Fmake_bool_vector): Likewise.
16335 * data.c (Faref, Faset): Likewise.
16336 * fns.c (Fcopy_sequence, concat, internal_equal, Ffillarray)
16337 (mapcar1): Likewise.
16338
16339 2004-04-26 Steven Tamm <tamm@Steven-Tamms-Computer.local>
16340
16341 * lread.c (init_lread): Fix typo in HAVE_CARBON test logic.
16342
16343 2004-04-26 Miles Bader <miles@gnu.org>
16344
16345 * lisp.h (CYCLE_CHECK): Macro moved from xfaces.c.
16346
16347 2004-04-26 Juanma Barranquero <lektu@terra.es>
16348
16349 * buffer.c (Fpop_to_buffer): Fix docstring.
16350
16351 2004-04-26 Steven Tamm <steventamm@mac.com>
16352
16353 * lread.c (init_lread): Don't display missing lisp directory
16354 warnings with Carbon Emacs because self-contained bundled Emacs
16355 may be built without correct installation path.
16356
16357 2004-04-25 Kim F. Storm <storm@cua.dk>
16358
16359 * macterm.c (x_draw_hollow_cursor): Fix height of box for narrow lines.
16360
16361 * xterm.c (x_draw_hollow_cursor): Fix height of box for narrow lines.
16362
16363 * xdisp.c (append_space_for_newline): Rename from append_space.
16364 Remove DEFAULT_FACE_P arg; always use current face. Callers changed.
16365 (x_produce_glyphs): Handle line-spacing property on newline char.
16366 If value is t, adjust ascent and descent to fit current row height.
16367 If value is an integer or float, set extra_line_spacing to integer
16368 value, or to float value x current line height.
16369
16370 2004-04-23 Kenichi Handa <handa@m17n.org>
16371
16372 * fontset.c (Finternal_char_font): If POSITION is nil, return
16373 font for displaying CH with the default face.
16374
16375 2004-04-23 Juanma Barranquero <lektu@terra.es>
16376
16377 * makefile.w32-in: Add "-*- makefile -*-" mode tag.
16378
16379 2004-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
16380
16381 * lisp.h (XINT) [EXPLICIT_SIGN_EXTEND && !NO_UNION_TYPE]:
16382 Don't make assumptions about the relative place of i and val.
16383 (EQ) [!NO_UNION_TYPE]: Don't forget to check the type match as well.
16384
16385 2004-04-21 Kim F. Storm <storm@cua.dk>
16386
16387 * dispextern.h (struct glyph_slice): New struct.
16388 (struct glyph): New member slice.
16389 (GLYPH_SLICE_EQUAL_P): New macro.
16390 (GLYPH_EQUAL_P): Use it.
16391 (struct glyph_string): New member slice.
16392 (struct it_slice): New struct.
16393 (struct it): New member slice, add member to stack too.
16394 New member constrain_row_ascent_descent_p.
16395 (image_ascent): Add prototype.
16396
16397 * dispnew.c (buffer_posn_from_coords): Return full image width
16398 and height even for image slices (posn is relative to full image).
16399 (marginal_area_string): Adjust x0,y0 for image slice.
16400
16401 * image.c (image_ascent): Add slice arg; calculate ascent for
16402 image slice (or full image).
16403
16404 * keyboard.c (Fposn_at_x_y, Fposn_at_point): New defuns.
16405 (syms_of_keyboard): Defsubr them.
16406
16407 * lisp.h (pos_visible_p): Fix prototype.
16408
16409 * macterm.c (x_draw_relief_rect): Add top_p and bot_p args.
16410 (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
16411 (x_draw_image_foreground, x_draw_image_relief)
16412 (x_draw_image_foreground_1, x_draw_image_glyph_string):
16413 Draw sliced images.
16414
16415 * w32term.c (w32_draw_relief_rect): Add top_p and bot_p args.
16416 (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
16417 (x_draw_image_foreground, x_draw_image_relief)
16418 (w32_draw_image_foreground_1, x_draw_image_glyph_string):
16419 Draw sliced images.
16420
16421 * w32term.h (image_ascent): Remove prototype.
16422
16423 * window.c (Fpos_visible_in_window_p): Return pixel position if
16424 PARTIALLY arg is non-nil. Simplify. Doc fix.
16425 (Fwindow_vscroll, Fset_window_vscroll): Add optional PIXEL_P arg
16426 to return/set vscroll in pixels.
16427
16428 * window.h (Fwindow_vscroll, Fset_window_vscroll): Fix EXFUN.
16429
16430 * xdisp.c (Qslice): New variable.
16431 (syms_of_xdisp): Intern and staticpro it.
16432 (pos_visible_p): Return pixel position in new x and y args.
16433 (init_iterator): Reset it->slice info.
16434 (handle_display_prop): Parse (slice ...) property.
16435 (push_it, pop_it): Save/restore slice info.
16436 (make_cursor_line_fully_visible): Fix 2004-04-14 change. Do not
16437 force repositioning of tall row if window is vscrolled, as that
16438 would reset vscroll.
16439 (append_space): Set it->constrain_row_ascent_descent_p to avoid
16440 increasing row height if row is non-empty.
16441 (fill_image_glyph_string): Copy slice info.
16442 (take_vertical_position_into_account): Simplify.
16443 (produce_image_glyph): Handle iterator slice info, setup glyph
16444 slice info. Do not force minimum line height.
16445 (x_produce_glyphs): If it->constrain_row_ascent_descent_p is set,
16446 do not increase height (ascent/descent) of non-empty row when
16447 adding normal character glyph; instead reduce glyph ascent/descent
16448 appropriately; if row is higher than current glyph, adjust glyph
16449 descent/ascent to reposition glyph within the existing row.
16450 Likewise, when char is newline, only set ascent/descent if row is
16451 currently empty.
16452 (note_mouse_highlight): Handle hotspots with sliced image.
16453
16454 * xterm.c (x_draw_relief_rect): Add top_p and bot_p args.
16455 (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
16456 (x_draw_image_foreground, x_draw_image_relief)
16457 (x_draw_image_foreground_1, x_draw_image_glyph_string):
16458 Draw sliced images.
16459
16460 * xterm.h (image_ascent): Remove prototype.
16461
16462 2004-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
16463
16464 * keymap.c (Fkey_description): Fix the usual int/Lisp_Object mixup.
16465
16466 2004-04-20 John Paul Wallington <jpw@gnu.org>
16467
16468 * fns.c (Fassoc, Feql): Fix indentation.
16469
16470 * fontset.c (regularize_fontname): Rename from regulalize_fontname.
16471
16472 2004-04-19 John Paul Wallington <jpw@gnu.org>
16473
16474 * fns.c (Feql): New function.
16475 (syms_of_fns): Defsubr it.
16476
16477 2004-04-18 Jason Rumney <jasonr@gnu.org>
16478
16479 * w32select.c (Fw32_set_clipboard_data): Get sequence number
16480 after closing the clipboard.
16481
16482 2004-04-16 Luc Teirlinck <teirllm@auburn.edu>
16483
16484 * buffer.c (Fbuffer_base_buffer): Doc fix.
16485
16486 2004-04-17 Kim F. Storm <storm@cua.dk>
16487
16488 * keymap.c (Fkey_description): Add optional PREFIX arg.
16489 Combine prefix with KEYS to make up the full key sequence to describe.
16490 Correlate meta_prefix_char and following (simple) key to describe
16491 as meta modifier. All callers changed.
16492 (describe_map): Rename arg `keys' to `prefix'. Remove local
16493 `elt_prefix' var. Use Fkey_description with prefix instead of
16494 elt_prefix combined with Fsingle_key_description.
16495 (describe_vector): Declare static. Replace arg `elt_prefix' with
16496 `prefix'. Add KEYMAP_P arg. Add local var `elt_prefix'; use it
16497 if !KEYMAP_P. Use Fkey_description with prefix instead of
16498 Fsingle_key_description.
16499
16500 * keymap.h (Fkey_description): Fix prototype.
16501 (describe_vector): Remove prototype.
16502
16503 * xdisp.c (update_overlay_arrows): Fix handling of up_to_date < 0.
16504
16505 * image.c (PNG_BG_COLOR_SHIFT): Remove.
16506 (png_load): Fix calculation of transparent background color on X
16507 and W32 platforms.
16508
16509 2004-04-16 Juanma Barranquero <lektu@terra.es>
16510
16511 * xdisp.c (try_scrolling): Make sure `scroll-conservatively' is
16512 not too large before computing how much to scroll.
16513
16514 2004-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16515
16516 * dired.c (Ffile_attributes): Don't pass extra nil arg to file-handler.
16517
16518 2004-04-14 Luc Teirlinck <teirllm@auburn.edu>
16519
16520 * fileio.c (Fverify_visited_file_modtime, Fvisited_file_modtime):
16521 Add hyperlink to Elisp manual to the docstring.
16522
16523 2004-04-14 Stefan Monnier <monnier@iro.umontreal.ca>
16524
16525 * callint.c (fix_command): Use XDCR.
16526
16527 2004-04-14 Nick Roberts <nick@nick.uklinux.net>
16528
16529 * window.c (Fget_lru_window): Doc fix.
16530
16531 2004-04-14 Kim F. Storm <storm@cua.dk>
16532
16533 * editfns.c (Fformat): Fix allocation size of precision array.
16534
16535 * dispnew.c (update_window): Only set changed_p if
16536 scrolling_window actually did scroll.
16537 (scrolling_window): Only return 1 if we actually did scroll.
16538
16539 * xdisp.c (get_glyph_string_clip_rect): Fix reduction of cursor
16540 height to glyph height when cursor row is not fully visible.
16541 (make_cursor_line_fully_visible): Add FORCE_P arg to return
16542 failure in case row is higher than window. Callers changed.
16543 (try_scrolling): Fix loop in scrolling if last_line_misfit (from Gerd).
16544 Try to scroll partially visible, higher-than-window cursor row.
16545 (redisplay_window): Always try to scroll partially visible,
16546 higher-than-window cursor row - both initially and again with
16547 centering_position = 0.
16548 Clear desired matrix before retrying with centering_position = 0.
16549
16550 2004-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
16551
16552 * syntax.c (scan_lists): Simplify backward string scan.
16553 Fix off-by-one boundary check for string and comment fences.
16554
16555 2004-04-13 Joe Buehler <jbuehler@hekimian.com>
16556
16557 * sheap.c, unexcw.c: New files.
16558
16559 2004-04-12 Luc Teirlinck <teirllm@auburn.edu>
16560
16561 * buffer.c (Fmake_indirect_buffer): Throw an error if the intended
16562 base buffer has been killed. Correct the error message if the
16563 base buffer does not exist.
16564
16565 2004-04-12 Joe Buehler <jbuehler@hekimian.com>
16566
16567 * s/cygwin.h: Changes for Cygwin unexec() support, changes in
16568 Cygwin itself. Add support for Xaw3d scrollbars.
16569
16570 * puresize.h: Set up PURE_P() for Cygwin unexec() support.
16571
16572 * lastfile.c: Define my_endbss[] for Cygwin unexec() support.
16573
16574 * gmalloc.c (__default_morecore): Use bss_sbrk(), not __sbrk(),
16575 before Cygwin unexec.
16576
16577 * Makefile.in: Link changes for Cygwin unexec() support.
16578
16579 2004-04-12 Andreas Schwab <schwab@suse.de>
16580
16581 * buffer.c (Fmake_indirect_buffer): Check that NAME is a string.
16582
16583 2004-04-11 Luc Teirlinck <teirllm@auburn.edu>
16584
16585 * buffer.c (Fgenerate_new_buffer_name): Return NAME argument if
16586 IGNORE argument equals NAME. Doc fix.
16587
16588 2004-04-11 Masatake YAMATO <jet@gyve.org>
16589
16590 * buffer.c (fix_start_end_in_overlays): Make overlays
16591 empty if they are backwards.
16592
16593 2004-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
16594
16595 * xfaces.c (face_color_supported_p): Fix compilation without X11.
16596
16597 2004-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
16598
16599 * doc.c (Fsnarf_documentation): Ignore new file name entries.
16600
16601 2004-04-06 Kim F. Storm <storm@cua.dk>
16602
16603 * msdos.c (clear_mouse_face): Only clear mouse highlight if not hidden.
16604 (dos_rawgetc): Set mouse_face_hidden after clearing highlight.
16605
16606 * w32term.c (w32_read_socket): Set mouse_face_hidden after
16607 clearing highlight.
16608
16609 * xdisp.c (clear_mouse_face): Only clear mouse highlight if not hidden.
16610
16611 * xterm.c (handle_one_xevent): Set mouse_face_hidden after
16612 clearing highlight.
16613
16614 * indent.c (vmotion): Do not reserve one column for continuation
16615 marks on window frames.
16616
16617 2004-04-04 Eli Zaretskii <eliz@gnu.org>
16618
16619 * charset.h (SINGLE_BYTE_CHAR_P): Fix macro to avoid warnings
16620 from GCC.
16621
16622 2004-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
16623
16624 * .gdbinit-union: Remove.
16625
16626 * .gdbinit: Make it work for USE_LSB_TAG and !NO_LISP_UNION.
16627 (xgetptr, xgetint, xgettype): New funs. Use them everywhere.
16628 ($nonvalbits): Remove.
16629 ($valmask): Set it by calling xreload to avoid redundancy.
16630
16631 * emacs.c (gdb_use_union, gdb_use_lsb): New vars.
16632 (gdb_emacs_intbits): Remove.
16633
16634 2004-03-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16635
16636 * data.c (Fbyteorder): Make test work even if unsigned is not 4 bytes.
16637
16638 2004-03-30 Kenichi Handa <handa@m17n.org>
16639
16640 * editfns.c (Fformat): Fix initialization of the array info.
16641
16642 2004-03-30 Kim F. Storm <storm@cua.dk>
16643
16644 * xterm.c (x_mouse_click_focus_ignore_position): New var.
16645 (syms_of_xterm): DEFVAR_BOOL it.
16646 (ignore_next_mouse_click_timeout): New var.
16647 (handle_one_xevent): Clear it on KeyPress, set it on EnterNotify.
16648 Use it to filter mouse clicks following focus event.
16649
16650 2004-03-29 David Ponce <david@dponce.com>
16651
16652 * callint.c (Fcall_interactively): Fix last change.
16653
16654 2004-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
16655
16656 * eval.c (Fcommandp): Simplify.
16657
16658 * data.c (Finteractive_form): Rename from Fsubr_interactive_form.
16659 Extend to handle all kinds of functions.
16660
16661 * lisp.h (Finteractive_form): Declare.
16662
16663 * callint.c (Fcall_interactively): Use it.
16664
16665 2004-03-26 Kim F. Storm <storm@cua.dk>
16666
16667 * xdisp.c (syms_of_xdisp): Include `void-variable' in list_of_error
16668 to catch errors in calc_pixel_width_or_height during redisplay.
16669
16670 2004-03-26 Masatake YAMATO <jet@gyve.org>
16671
16672 * buffer.c (fix_start_end_in_overlays): Rename fix_overlays_in_range.
16673
16674 * lisp.h (fix_start_end_in_overlays): Likewise.
16675
16676 * insdel.c (adjust_markers_for_insert): Call fix_start_end_in_overlays.
16677
16678 * editfns.c (Ftranspose_regions): Likewise.
16679
16680 2004-03-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16681
16682 * xterm.c (handle_one_xevent): Do not pass key press events to GTK.
16683
16684 2004-03-19 Richard M. Stallman <rms@gnu.org>
16685
16686 * s/sol2-6.h: Delete previous change.
16687
16688 2004-03-19 Kim F. Storm <storm@cua.dk>
16689
16690 * xdisp.c (move_it_in_display_line_to): Fix MOVE_TO_POS case when
16691 to_charpos corresponds to newline in right fringe. Use local
16692 BUFFER_POS_REACHED_P macro.
16693
16694 2004-03-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
16695
16696 * xdisp.c (calc_pixel_width_or_height): Add ifdef HAVE_WINDOW_SYSTEM
16697 to compile on non-window system.
16698
16699 2004-03-19 Kim F. Storm <storm@cua.dk>
16700
16701 * dispextern.h (calc_pixel_width_or_height): Add prototype.
16702
16703 * image.c (Qcenter): Move to xdisp.c.
16704
16705 * xdisp.c (Qcenter): Declare here.
16706 (syms_of_xdisp): Intern and staticpro it.
16707 (handle_single_display_prop): Allow space display property on all
16708 platforms.
16709 (display_mode_line): Set mode_line_p before displaying line.
16710 (calc_pixel_width_or_height): Declare extern. Add separate :align-to
16711 handling. Remove complex cases for fringes and scroll-bars.
16712 Add left, right, and center alignment positions. Add text (area)
16713 width/height. Return width or height for image specs.
16714 (produce_stretch_glyph): Improve handling of :align-to. Is now
16715 relative to left of text area by default, but other base offsets
16716 can be specified -- also for text lines.
16717
16718 * term.c (produce_glyphs): Handle IT_STRETCH.
16719 (produce_stretch_glyph): New function to handle space width and
16720 align-to display properties on non-window systems.
16721
16722 2004-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
16723
16724 * fileio.c (Fread_file_name): Set completion-ignore-case for
16725 case-insensitive systems.
16726
16727 2004-03-14 Masatake YAMATO <jet@gyve.org>
16728
16729 * xdisp.c (note_mode_line_or_margin_highlight): Accept HEADER_LINE
16730 when keymap and cursor are setup.
16731
16732 2004-03-14 Steven Tamm <steventamm@mac.com>
16733
16734 * Makefile.in (XMENU_OBJ) [HAVE_CARBON]: Do not include xmenu.o.
16735
16736 2004-03-14 Kim F. Storm <storm@cua.dk>
16737
16738 * dispextern.h (x_find_image_file): Add prototype.
16739
16740 * image.c (x_find_image_file): Make extern.
16741
16742 * xfns.c (x_find_image_file): Remove prototype.
16743
16744 2004-03-13 Eli Zaretskii <eliz@gnu.org>
16745
16746 * Makefile.in (XMENU_OBJ): Include xmenu.o if HAVE_MENUS is defined.
16747
16748 * emacs.c (main): Call syms_of_xmenu only if HAVE_MENUS is defined.
16749
16750 2004-03-12 Richard M. Stallman <rms@gnu.org>
16751
16752 * fns.c (internal_equal): New arg PROPS controls comparing
16753 text properties. All callers changed.
16754 (Fequal_including_properties): New function.
16755 (syms_of_fns): defsubr it.
16756
16757 2004-03-12 Kim F. Storm <storm@cua.dk>
16758
16759 Fix image support on MAC. From YAMAMOTO Mitsuharu.
16760
16761 * dispextern.h (XImagePtr, XImagePtr_or_DC): Add typedefs.
16762 (image_background, image_background_transparent): Fix prototypes.
16763
16764 * image.c (XImagePtr, XImagePtr_or_DC): Move typedefs to dispextern.h.
16765
16766 * macfns.c (x_list_fonts, x_get_font_info, x_load_font)
16767 (x_query_font, x_find_ccl_program, x_set_window_size)
16768 (x_make_frame_visible, mac_initialize, XCreatePixmap)
16769 (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
16770 (mac_draw_line_to_pixmap): Move prototypes to macterm.h.
16771
16772 * macterm.h (x_list_fonts, x_get_font_info, x_load_font)
16773 (x_query_font, x_find_ccl_program, x_set_window_size)
16774 (x_make_frame_visible, mac_initialize, XCreatePixmap)
16775 (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
16776 (mac_draw_line_to_pixmap): Add prototypes.
16777
16778 2004-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16779
16780 * macterm.c (XTread_socket): Fix mouse click on tool bar.
16781
16782 2004-03-11 Kim F. Storm <storm@cua.dk>
16783
16784 * dispextern.h: Move image related prototypes from xfns.c section
16785 to image.c. Condition them by HAVE_WINDOW_SYSTEM rather than
16786 HAVE_X_WINDOWS.
16787
16788 * Makefile.in (XOBJ): Consolidate into one list. Add image.o.
16789 Move gtkutil.o to new GTK_OBJ list.
16790 (XMENU_OBJ) [HAVE_MENUS]: Move declaration to proper place.
16791 (GTK_OBJ) [USE_GTK]: New declaration.
16792 (obj): Add $(GTK_OBJ) to list.
16793
16794 2004-03-11 Steven Tamm <steventamm@mac.com>
16795
16796 * image.c [MAC_OSX]: Include sys/stat.h.
16797
16798 * macfns.c (syms_of_macfns): Remove definitions of things now
16799 defined in image.c.
16800
16801 2004-03-11 Kim F. Storm <storm@cua.dk>
16802
16803 The following changes consolidates the identical/similar image
16804 support code previously found in xfns.c, w32fns.c, and macfns.c
16805 into a new file image.c.
16806
16807 * makefile.w32-in (OBJ1): Add image.o.
16808 ($(BLD)/image.$(O)): Add dependencies.
16809
16810 * Makefile.in (XOBJ, MAC_OBJ): Add image.o.
16811 (image.o): Add dependencies.
16812
16813 * image.c: New file with consolidated image support code.
16814 (COLOR_TABLE_SUPPORT): New define to control whether
16815 color table support is available (X only).
16816 (Bitmap_Record): Common name for x_bitmap_record,
16817 w32_bitmap_record, and mac_bitmap_record.
16818 (XImagePtr): Common name for pointer to XImage or equivalent.
16819 (XImagePtr_or_DC): New type to simplify code sharing; equivalent
16820 to XImagePtr on X+MAC, and to HDC on W32.
16821 (GET_PIXEL): Wrapper for XGetPixel or equivalent.
16822 (NO_PIXMAP): Common name for "None" or equivalent.
16823 (PNG_BG_COLOR_SHIFT): Bits to shift PNG background colors.
16824 (RGB_PIXEL_COLOR): Common type for an integer "pixel color" value.
16825 (PIX_MASK_RETAIN, PIX_MASK_DRAW): Portability macros (from macfns.c).
16826 (FRAME_X_VISUAL, x_defined_color, DefaultDepthOfScreen):
16827 Define with suitable equivalents on W32 and MAC for code sharing.
16828 (XDrawLine): Define on MAC for code sharing.
16829 (Destroy_Image, Free_Pixmap): Wrappers for code sharing.
16830 (IF_LIB_AVAILABLE): Macro to simplify code sharing.
16831 (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
16832 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
16833 (x_reference_bitmap, x_create_bitmap_from_data)
16834 (x_create_bitmap_from_file, x_destroy_bitmap)
16835 (x_destroy_all_bitmaps, x_create_bitmap_mask)
16836 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
16837 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
16838 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
16839 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
16840 (define_image_type, lookup_image_type, valid_image_p)
16841 (image_error, enum image_value_type, struct image_keyword)
16842 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
16843 (make_image, free_image, prepare_image_for_display, image_ascent)
16844 (four_corners_best, image_background, image_background_transparent)
16845 (x_clear_image_1, x_clear_image, x_alloc_image_color)
16846 (make_image_cache, free_image_cache, clear_image_cache)
16847 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
16848 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
16849 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
16850 (find_image_fsspec, image_load_qt_1, image_load_quicktime)
16851 (init_image_func_pointer, image_load_quartz2d)
16852 (struct ct_color, init_color_table, free_color_table)
16853 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
16854 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
16855 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
16856 (x_disable_image, x_build_heuristic_mask)
16857 (XBM support, XPM support, PBM support, PNG support, JPEG support)
16858 (TIFF support, GIF support, Ghostscript support): Consolidate image
16859 code from xfns.c, w32fns.c, and macfns.c.
16860 (syms_of_image): Consolidate image related symbol setup here.
16861 (init_image): Consolidate image related initializations here.
16862
16863 * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Add calls to syms_of_image
16864 and init_image. Remove call to init_xfns.
16865
16866 * macterm.h (struct mac_bitmap_record): Add file member.
16867 Not currently used, but simplifies code sharing.
16868
16869 * macfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
16870 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
16871 (x_reference_bitmap, x_create_bitmap_from_data)
16872 (x_create_bitmap_from_file, x_destroy_bitmap)
16873 (x_destroy_all_bitmaps, x_create_bitmap_mask)
16874 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
16875 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
16876 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
16877 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
16878 (define_image_type, lookup_image_type, valid_image_p)
16879 (image_error, enum image_value_type, struct image_keyword)
16880 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
16881 (make_image, free_image, prepare_image_for_display, image_ascent)
16882 (four_corners_best, image_background, image_background_transparent)
16883 (x_clear_image_1, x_clear_image, x_alloc_image_color)
16884 (make_image_cache, free_image_cache, clear_image_cache)
16885 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
16886 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
16887 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
16888 (find_image_fsspec, image_load_qt_1, image_load_quicktime)
16889 (init_image_func_pointer, image_load_quartz2d)
16890 (struct ct_color, init_color_table, free_color_table)
16891 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
16892 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
16893 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
16894 (x_disable_image, x_build_heuristic_mask)
16895 (XBM support, XPM support, PBM support, PNG support, JPEG support)
16896 (TIFF support, GIF support, Ghostscript support): Merge with image
16897 code from xfns.c and macfns.c into image.c.
16898 (syms_of_xfns): Move image related symbols to image.c.
16899 (init_external_image_libraries, init_xfns): Remove; initialization
16900 moved to init_image in image.c.
16901
16902 * w32fns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
16903 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
16904 (x_reference_bitmap, x_create_bitmap_from_data)
16905 (x_create_bitmap_from_file, x_destroy_bitmap)
16906 (x_destroy_all_bitmaps, x_create_bitmap_mask)
16907 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
16908 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
16909 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
16910 (define_image_type, lookup_image_type, valid_image_p)
16911 (image_error, enum image_value_type, struct image_keyword)
16912 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
16913 (make_image, free_image, prepare_image_for_display, image_ascent)
16914 (four_corners_best, image_background, image_background_transparent)
16915 (x_clear_image_1, x_clear_image, x_alloc_image_color)
16916 (make_image_cache, free_image_cache, clear_image_cache)
16917 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
16918 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
16919 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
16920 (struct ct_color, init_color_table, free_color_table)
16921 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
16922 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
16923 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
16924 (x_disable_image, x_build_heuristic_mask)
16925 (XBM support, XPM support, PBM support, PNG support, JPEG support)
16926 (TIFF support, GIF support, Ghostscript support): Merge with image
16927 code from xfns.c and macfns.c into image.c.
16928 (syms_of_xfns): Move image related symbols to image.c.
16929 (init_external_image_libraries, init_xfns): Remove; initialization
16930 moved to init_image in image.c.
16931
16932 * xfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
16933 (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
16934 (x_reference_bitmap, x_create_bitmap_from_data)
16935 (x_create_bitmap_from_file, x_destroy_bitmap)
16936 (x_destroy_all_bitmaps, x_create_bitmap_mask)
16937 (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
16938 (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
16939 (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
16940 (define_image_type, lookup_image_type, valid_image_p)
16941 (image_error, enum image_value_type, struct image_keyword)
16942 (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
16943 (make_image, free_image, prepare_image_for_display, image_ascent)
16944 (four_corners_best, image_background, image_background_transparent)
16945 (x_clear_image_1, x_clear_image, x_alloc_image_color)
16946 (make_image_cache, free_image_cache, clear_image_cache)
16947 (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
16948 (forall_images_in_image_cache, x_create_x_image_and_pixmap)
16949 (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
16950 (struct ct_color, init_color_table, free_color_table)
16951 (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
16952 (cross_disabled_images, x_to_xcolors, x_from_xcolors)
16953 (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
16954 (x_disable_image, x_build_heuristic_mask)
16955 (XBM support, XPM support, PBM support, PNG support, JPEG support)
16956 (TIFF support, GIF support, Ghostscript support): Merge with
16957 w32fns.c and macfns.c image code into image.c.
16958 (syms_of_xfns): Move image related symbols to image.c.
16959 (init_xfns): Remove; initialization moved to init_image in image.c.
16960
16961 * lisp.h (syms_of_image, init_image): Add protoypes.
16962 (init_xfns): Remove prototype.
16963
16964 * dispextern.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
16965 (x_reference_bitmap, x_create_bitmap_from_data)
16966 (x_create_bitmap_from_file, x_destroy_bitmap)
16967 (x_create_bitmap_mask): Move prototypes from dispextern.h.
16968 (gamma_correct) [MAC_OS]: Add prototype.
16969
16970 * xterm.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
16971 (x_reference_bitmap, x_create_bitmap_from_data)
16972 (x_create_bitmap_from_file, x_destroy_bitmap)
16973 (x_create_bitmap_mask): Move prototypes to dispextern.h.
16974
16975 2004-03-09 Kenichi Handa <handa@etlken2>
16976
16977 * coding.c (decode_coding_emacs_mule): Handle insufficent source
16978 correctly.
16979
16980 2004-03-04 Richard M. Stallman <rms@gnu.org>
16981
16982 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS): New definition.
16983
16984 * window.c (Fdisplay_buffer): Doc fix.
16985
16986 * buffer.c (Fpop_to_buffer): Doc fix.
16987
16988 2004-03-03 Kim F. Storm <storm@cua.dk>
16989
16990 * xdisp.c (display_line): Fix call to get_overlay_arrow_glyph_row.
16991
16992 2004-03-02 Stefan Monnier <monnier@iro.umontreal.ca>
16993
16994 * editfns.c (Ftranslate_region): Lisp_Object/int mixup.
16995
16996 2004-03-02 Richard M. Stallman <rms@gnu.org>
16997
16998 * indent.c (compute_motion): Save vpos in prev_vpos, like hpos etc.
16999
17000 2004-03-02 Kenichi Handa <handa@m17n.org>
17001
17002 * doc.c (Fsubstitute_command_keys): Fix counding bytes.
17003
17004 2004-03-02 Kim F. Storm <storm@cua.dk>
17005
17006 * window.h (struct window): New member overlay_arrow_bitmap.
17007
17008 * window.c (make_window): Initialize overlay_arrow_bitmap.
17009
17010 * xdisp.c (Voverlay_arrow_variable_list): New variable to properly
17011 implement and integrate multiple overlay arrows with redisplay.
17012 (syms_of_xdisp): DEFVAR_LISP and initialize it.
17013 (last_arrow_position, last_arrow_string): Replace by properties.
17014 (Qlast_arrow_position, Qlast_arrow_string)
17015 (Qoverlay_arrow_string, Qoverlay_arrow_bitmap): New variables.
17016 (syms_of_xdisp): Intern and staticpro them.
17017 (overlay_arrow_string_or_property, update_overlay_arrows)
17018 (overlay_arrow_in_current_buffer_p, overlay_arrows_changed_p)
17019 (overlay_arrow_at_row): New functions for multiple overlay arrows.
17020 (redisplay_internal): Use them instead of directly accessing
17021 Voverlay_arrow_position etc. for multiple overlay arrows.
17022 (mark_window_display_accurate): Use update_overlay_arrows.
17023 (try_cursor_movement): Use overlay_arrow_in_current_buffer_p.
17024 (try_window_id): Use overlay_arrows_changed_p.
17025 (get_overlay_arrow_glyph_row): Add overlay_arrow_string arg.
17026 (display_line): Use overlay_arrow_at_row to check multiple
17027 overlay arrows, and get relevant overlay-arrow-string and
17028 overlay-arrow-bitmap. Set w->overlay_arrow_bitmap accordingly.
17029 (produce_image_glyph): Set pixel_width = 0 for fringe bitmap.
17030 (syms_of_xdisp): Remove last_arrow_position and last_arrow_string.
17031
17032 * fringe.c (draw_fringe_bitmap): Use w->overlay_arrow_bitmap if set.
17033 (update_window_fringes): Remove unused code.
17034
17035 2004-03-01 Jason Rumney <jasonr@gnu.org>
17036
17037 * w32term.c (w32_read_socket): Fix last change to ButtonPress handling.
17038
17039 2004-03-01 Juanma Barranquero <lektu@terra.es>
17040
17041 * fringe.c (Fdefine_fringe_bitmap): Fix typo in docstring.
17042
17043 * makefile.w32-in ($(BLD)/fringe.$(O)): Add dependencies.
17044
17045 2004-03-01 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17046
17047 * xfns.c (Fx_display_color_cells): Use number of planes to calculate
17048 how many colors can be displayed.
17049
17050 2004-03-01 Kenichi Handa <handa@m17n.org>
17051
17052 * editfns.c (Ftranslate_region): Handle multibyte chars in TABLE
17053 correctly.
17054
17055 2004-02-28 Kim F. Storm <storm@cua.dk>
17056
17057 * dispnew.c (update_window): Update header line also if there are
17058 no other changes in window (move code after set_cursor label).
17059
17060 * lisp.h (mark_window_display_accurate): Remove prototype.
17061
17062 * window.c (window_loop, Fforce_window_update): Force mode line
17063 updates by setting prevent_redisplay_optimizations_p and
17064 update_mode_lines.
17065
17066 2004-02-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17067
17068 * xfns.c (x_window): Fix indentation.
17069
17070 * xterm.c (x_calc_absolute_position): Call x_real_positions
17071 to get WM window sizes and use those to calculate position.
17072 (x_set_offset): Remove code commented out.
17073
17074 2004-02-28 Miles Bader <miles@gnu.org>
17075
17076 * keyboard.c (adjust_point_for_property): #ifdef-out dodgy xassert.
17077
17078 2004-02-28 Kim F. Storm <storm@cua.dk>
17079
17080 * keyboard.c (kbd_buffer_store_event_hold): New function to store
17081 an event into kbd fifo, but with special handling of quit event;
17082 a quit event is saved for later, and further events are discarded
17083 until the saved quit event has been processed.
17084 (kbd_buffer_store_event): Use kbd_buffer_store_event_hold.
17085 (gen_help_event): Store help event in kbd fifo.
17086 (NREAD_INPUT_EVENTS): Remove.
17087 (read_avail_input): Adapt to new read_socket_hook interface.
17088 Remove allocation and initialization of local input_event buffer,
17089 as read_socket_hook stores events directly in fifo. Allocate and
17090 initialize local hold_quit event to handle postponed quit event
17091 (and store it if set by kbd_buffer_store_event_hold).
17092
17093 * keyboard.h (kbd_buffer_store_event_hold): Add prototype.
17094 (gen_help_event): Fix prototype.
17095
17096 * macterm.c (XTread_socket): Remove bufp_r and
17097 numcharsp args. Add hold_quit arg.
17098 Rework to use just one, local, inev input_event. Store inev
17099 directly in fifo using kbd_buffer_store_event_hold.
17100
17101 * sysdep.c (BUFFER_SIZE_FACTOR): Remove.
17102 (read_input_waiting): Adapt to new read_socket_hook interface.
17103 Remove allocation and initialization of local input_event buffer,
17104 as read_socket_hook stores events directly in fifo. Allocate and
17105 initialize local hold_quit event to handle postponed quit event
17106 (and store it if set by kbd_buffer_store_event_hold).
17107
17108 * term.c (read_socket_hook): Fix arg list.
17109
17110 * termhooks.h (read_socket_hook): Fix prototype.
17111
17112 * w32inevt.c (w32_console_read_socket): Remove bufp_r and
17113 numcharsp args. Add hold_quit arg.
17114 Rework to use just one, local, inev input_event. Store inev
17115 directly in fifo using kbd_buffer_store_event_hold.
17116
17117 * w32inevt.h (w32_console_mouse_position): Fix prototype.
17118
17119 * w32term.c (w32_read_socket): Remove bufp_r and numcharsp args.
17120 Add hold_quit arg. Rework to use just one, local, inev
17121 input_event. Store inev directly in fifo using
17122 kbd_buffer_store_event_hold. Update count in one place.
17123 Postpone call to gen_help_event until inev is stored; use new
17124 local do_help for this.
17125 Remove local emacs_event in handing of ButtonPress event; just use
17126 inev instead (so no reason to copy it later).
17127
17128 * xsmfns.c (x_session_check_input): Remove numchars arg.
17129
17130 * xterm.c (x_focus_changed, x_detect_focus_change):
17131 Remove numchars arg. Always store event into bufp arg.
17132 Return nothing. Callers changed accordingly.
17133 (glyph_rect): Simplify.
17134 (STORE_KEYSYM_FOR_DEBUG): New macro.
17135 (SET_SAVED_MENU_EVENT): Use inev instead of bufp, etc.
17136 (current_bufp, current_numcharsp) [USE_GTK]: Remove.
17137 (current_hold_quit) [USE_GTK]: Add.
17138 (event_handler_gdk): Adapt to new handle_one_xevent.
17139 (handle_one_xevent): Remove bufp_r and numcharsp args.
17140 Add hold_quit arg. Rework to use just one, local, inev
17141 input_event. Store inev directly in fifo using
17142 kbd_buffer_store_event_hold. Update count in one place.
17143 Postpone call to gen_help_event until inev is stored; use new
17144 local do_help for this.
17145 Simplify handling of keysyms (consolidate common code). Fix bug
17146 where count was updated with nchars instead of nbytes.
17147 Remove local emacs_event in handing of ButtonPress event; just use
17148 inev instead (so no reason to copy it later).
17149 Remove `out' label. Rename label `ret' to `done'; add various
17150 `goto done' to clarify code flow in deeply nested blocks.
17151 (x_dispatch_event): Simplify as handle_one_xevent now calls
17152 kbd_buffer_store_event itself.
17153 (XTread_socket): Remove bufp_r and numcharsp args. Add hold_quit
17154 arg. Call handle_one_xevent with new arglist. Store event from
17155 x_session_check_input in fifo.
17156 [USE_GTK]: Setup current_hold_quit.
17157 Decrement handling_signal before unblocking input.
17158 (x_initialize) [USE_GTK]: Initialize current_count.
17159
17160 * xterm.h (x_session_check_input): Fix prototype.
17161
17162 2004-02-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17163
17164 * s/darwin.h (LD_SWITCH_SYSTEM_TEMACS): Add `-framework QuickTime'.
17165
17166 * dispextern.h [MAC_OSX]: Do not include Carbon/Carbon.h (now in
17167 macgui.h).
17168
17169 * emacs.c (main) [HAVE_CARBON]: Call init_xfns.
17170
17171 * macgui.h [MAC_OSX]: Include Carbon/Carbon.h.
17172 (mktime, DEBUG, Z, free, malloc, realloc, max, min)
17173 (init_process) [MAC_OSX]: Avoid conflicts with Carbon/Carbon.h.
17174 [!MAC_OSX]: Include QDOffscreen.h and Controls.h.
17175 (INFINITY) [MAC_OSX]: Avoid conflict with definition in math.h.
17176 (Bitmap): Remove typedef.
17177 (Pixmap): Change int to GWorldPtr.
17178
17179 * macmenu.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
17180
17181 * macterm.h [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
17182 (RED16_FROM_ULONG, GREEN16_FROM_ULONG, BLUE16_FROM_ULONG):
17183 New #define to extract 16-bit depth color components from unsigned
17184 long representation.
17185 (PIX_MASK_DRAW, PIX_MASK_RETAIN): New #define to represent pixel
17186 colors used for masks.
17187 (struct mac_display_info): Add color_p. Remove n_cbits.
17188
17189 * macfns.c: Include sys/types.h and sys/stat.h.
17190 [MAC_OSX]: Do not include Carbon/Carbon.h (now in macgui.h).
17191 Include QuickTime/QuickTime.h.
17192 (XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
17193 (XSetForeground, mac_draw_line_to_pixmap): Add externs for
17194 functions defined in macterm.c.
17195 (XImagePtr): New typedef. Corresponds to XImage * in xfns.c.
17196 (ZPixmap): New #define for compatibility with xfns.c.
17197 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
17198 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
17199 (find_image_fsspec, image_load_qt_1, image_load_quicktime):
17200 New functions.
17201 (four_corners_best, x_create_x_image_and_pixmap)
17202 (x_destroy_x_image, unwind_create_frame, x_disable_image)
17203 (x_edge_detection, init_color_table, colors_in_color_table)
17204 (lookup_rgb_color, lookup_pixel_color, postprocess_image)
17205 (x_put_x_image, slurp_file, xbm_scan, xbm_load, xbm_load_image)
17206 (xbm_image_p, xbm_read_bitmap_data, xbm_file_p, x_to_xcolors)
17207 (x_from_xcolors, x_detect_edges): New declarations (from xfns.c).
17208 (mac_color_map_lookup, x_to_mac_color): Fix Lisp_Object/unsigned
17209 long mixup.
17210 (mac_defined_color, x_to_x_colors): Use RED16_FROM_ULONG etc.
17211 (x_decode_color): Don't use n_cbits (in struct mac_display_info).
17212 (x_set_foreground_color, x_set_cursor_color): Sync with w32fns.c.
17213 (x_set_cursor_type, Fxw_color_values, valid_image_p)
17214 (image_value_type, parse_image_spec, image_ascent, x_clear_image)
17215 (x_alloc_image_color, clear_image_cache, lookup_image)
17216 (x_find_image_file, xbm_read_bitmap_file_data)
17217 (enum xbm_keyword_index, xbm_format, xbm_image_p, xbm_scan)
17218 (xbm_read_bitmap_data, xbm_load, pbm_image_p, pbm_scan_number)
17219 (enum pbm_keyword_index, pbm_format, enum png_keyword_index)
17220 (png_format, png_image_p, enum jpeg_keyword_index, jpeg_format)
17221 (jpeg_image_p, enum tiff_keyword_index, tiff_format, tiff_image_p)
17222 (enum gif_keyword_index, gif_format, gif_image_p): Sync with xfns.c.
17223 (x_make_gc): Sync with xfns.c. Enclose unused `border_tile' with
17224 #if 0.
17225 (x_free_gcs): Sync with xfns.c. Enclose unused `border_tile' with
17226 #if 0. Free white_relief.gc and black_relief.gc.
17227 (unwind_create_frame, x_emboss, x_laplace, x_edge_detection):
17228 New functions (from xfns.c).
17229 (Fx_create_frame): Record unwind_create_frame.
17230 (Fxw_display_color_p): Use dpyinfo->color_p.
17231 (Fx_display_grayscale_p, Fx_display_planes): Don't use
17232 dpyinfo->n_cbits.
17233 (Fx_display_color_cells): Use dpyinfo->n_planes;
17234 (QCmatrix, QCcolor_adjustment, QCmask, Qemboss, Qedge_detection)
17235 (Qheuristic, cross_disabled_images, emboss_matrix)
17236 (laplace_matrix): New variables (from xfns.c).
17237 (Fimage_size, Fimage_mask_p, four_corners_best, image_background)
17238 (x_clear_image_1, postprocess_image, slurp_file, xbm_load_image)
17239 (xbm_file_p, x_to_xcolors, x_from_xcolors, x_detect_edges)
17240 (image_background_transparent): New function (from xfns.c).
17241 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
17242 (image_load_quicktime): Add declaration.
17243 [MAC_OSX] (image_load_quartz2d): Likewise.
17244 [MAC_OSX] (CGImageCreateWithPNGDataProviderProcType): New typedef.
17245 [MAC_OSX] (MyCGImageCreateWithPNGDataProvider): New variable.
17246 [MAC_OSX] (init_image_func_pointer, image_load_quartz2d): New funs.
17247 (xbm_load_image_from_file, x_laplace_read_row)
17248 (x_laplace_write_row, pbm_read_file): Remove functions.
17249 [HAVE_XPM] (enum xpm_keyword_index, xpm_format, xpm_image_p)
17250 (xpm_load): Sync with xfns.c (although XPM is not supported yet).
17251 (colors_in_color_table): Sync with xfns.c (although not used).
17252 (lookup_rgb_color): Don't lookup color table. Just do gamma
17253 correction.
17254 (COLOR_INTENSITY): New #define (from xfns.c).
17255 (x_disable_image): New function (from xfns.c).
17256 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
17257 (x_build_heuristic_mask): Sync with xfns.c.
17258 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
17259 (HAVE_PBM): Remove #ifdef.
17260 (pbm_load): Sync with xfns.c. Set img->width and img->height
17261 before IMAGE_BACKGROUND.
17262 (png_image_p, png_load): Don't enclose declarations with #if HAVE_PNG.
17263 (Qpng, enum png_keyword_index, png_format, png_type, png_image_p):
17264 Don't enclose with #if HAVE_PNG.
17265 [!HAVE_PNG] (png_load) [MAC_OSX]: Use image_load_quartz2d if a
17266 symbol _CGImageCreateWithPNGDataProvider is defined.
17267 Otherwise use image_load_quicktime.
17268 [!HAVE_PNG] (png_load) [!MAC_OSX]: Use image_load_quicktime.
17269 [HAVE_PNG] (png_load): Sync with xfns.c.
17270 Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
17271 (jpeg_image_p, jpeg_load): Don't enclose declarations with #if
17272 HAVE_JPEG.
17273 (Qjpeg, enum jpeg_keyword_index, jpeg_format, jpeg_type)
17274 (jpeg_image_p): Don't enclose with #if HAVE_JPEG.
17275 [!HAVE_JPEG] (jpeg_load) [MAC_OSX]: Use image_load_quartz2d.
17276 [!HAVE_JPEG] (jpeg_load) [!MAC_OSX]: Use image_load_quicktime.
17277 [HAVE_JPEG] (jpeg_load): Sync with xfns.c.
17278 (tiff_image_p, tiff_load): Don't enclose declarations with #if
17279 HAVE_TIFF.
17280 (Qtiff, enum tiff_keyword_index, tiff_format, tiff_type)
17281 (tiff_image_p): Don't enclose with #if HAVE_TIFF.
17282 [!HAVE_TIFF] (tiff_load): Use image_load_quicktime.
17283 [HAVE_TIFF] (tiff_error_handler, tiff_warning_handler):
17284 New functions (from xfns.c).
17285 [HAVE_TIFF] (tiff_load): Sync with xfns.c.
17286 (gif_image_p, gif_load): Don't enclose declarations with #if HAVE_GIF.
17287 (Qgif, enum gif_keyword_index, gif_format, gif_type, gif_image_p):
17288 Don't enclose with #if HAVE_GIF.
17289 [!HAVE_GIF] (gif_load): Use Quicktime Movie Toolbox if it is
17290 animated gif. Otherwise use image_load_quicktime.
17291 [HAVE_GIF] (gif_lib.h): Temporarily define DrawText as
17292 gif_DrawText to avoid conflict with QuickdrawText.h.
17293 [HAVE_GIF] (gif_load): Sync with xfns.c.
17294 (enum gs_keyword_index, gs_format, gs_image_p, gs_load)
17295 [HAVE_GHOSTSCRIPT] (x_kill_gs_process): Sync with xfns.c (although
17296 Ghostscript is not supported yet).
17297 (syms_of_macfns): Initialize Qemboss, Qedge_detection, Qheuristic,
17298 QCmatrix, QCcolor_adjustment, and QCmask. Add DEFVAR_BOOL
17299 cross_disabled_images (from xfns.c). Remove #if 0 for supported
17300 image types. Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
17301 HAVE_PNG. Add defsubr for Simage_size and Simage_mask_p.
17302 (init_xfns): Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
17303 HAVE_PNG. Call EnterMovies to support animated gifs.
17304 Call init_image_func_pointer to bind a symbol
17305 _CGImageCreateWithPNGDataProvider if it is defined.
17306
17307 * macterm.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
17308 (x_draw_bar_cursor): Sync declaration with xterm.c.
17309 (XFreePixmap, mac_draw_rectangle_to_pixmap, mac_copy_area)
17310 (mac_copy_area_to_pixmap): Implementation with GWorld (offscreen
17311 graphics).
17312 (mac_set_forecolor, mac_set_backcolor): Use RED16_FROM_ULONG etc.
17313 (mac_draw_line_to_pixmap, XCreatePixmap)
17314 (XCreatePixmapFromBitmapData, mac_fill_rectangle_to_pixmap)
17315 (mac_copy_area_with_mask, mac_copy_area_with_mask_to_pixmap):
17316 New functions.
17317 (mac_draw_bitmap) [TARGET_API_MAC_CARBON]:
17318 Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
17319 Cast bits to char *.
17320 (reflect_byte): New function (from w32fns.c).
17321 (mac_create_bitmap_from_bitmap_data): Use it and don't stuff bits
17322 due to byte alignment.
17323 (mac_scroll_area) [TARGET_API_MAC_CARBON]:
17324 Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
17325 (XSetForeground): Remove static (now used in macfns.c).
17326 (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New #define (from w32term.c).
17327 (mac_alloc_lighter_color, x_destroy_window): Sync with w32term.c.
17328 (x_setup_relief_color, x_setup_relief_colors, x_draw_box_rect)
17329 (x_draw_glyph_string_box, x_draw_image_foreground)
17330 (x_draw_image_foreground_1, x_draw_image_glyph_string)
17331 (x_draw_stretch_glyph_string, x_draw_glyph_string)
17332 (x_draw_hollow_cursor, x_draw_bar_cursor, mac_draw_window_cursor):
17333 Sync with xterm.c.
17334 (x_draw_relief_rect): Sync with xterm.c. Make 1 pixel shorter
17335 than the xterm.c version when a strictly horizontal or vertical
17336 line is drawn.
17337 (XTset_terminal_window): Add static.
17338 (x_make_frame_visible): Add UNBLOCK_INPUT.
17339 (x_free_frame_resources): New funcion (from xterm.c).
17340 (XTread_socket): Call handle_tool_bar_click if mouse up/down event
17341 occurs in tool bar area.
17342 (mac_initialize_display_info): Remove dpyinfo->n_cbits.
17343 Set dpyinfo->color_p. Determine dpyinfo->n_planes using HasDepth.
17344 Initialize image cache.
17345 (stricmp, wildstrieq, mac_font_pattern_match, mac_font_match):
17346 Enclose unused functions with #if 0.
17347 (Qbig5, Qcn_gb, Qsjis, Qeuc_kr): New variables.
17348 (decode_mac_font_name): New function to apply code conversions
17349 from a mac font name to an XLFD font name according to its script code.
17350 (x_font_name_to_mac_font_name): Apply code conversion from an XLFD
17351 font name to a mac font name according to REGISTRY and ENCODING fields.
17352 (init_font_name_table) [TARGET_API_MAC_CARBON]: Don't use a font
17353 whose name starts with `.'.
17354 (init_font_name_table): Use decode_mac_font_name. Add both
17355 jisx0208.1983-sjis and jisx0201.1976-0 entries if the script code
17356 of a font is smJapanese.
17357 (mac_do_list_fonts): New function to list fonts that match a given
17358 pattern.
17359 (x_list_fonts, XLoadQueryFont): Use it.
17360 (XLoadQueryFont): Set rbearing field for each variable width
17361 character to avoid needless redraw.
17362 (syms_of_macterm): Initialize Qbig5, Qcn_gb, Qsjis, and Qeuc_kr.
17363
17364 2004-02-26 Kim F. Storm <storm@cua.dk>
17365
17366 * keyboard.c (NREAD_INPUT_EVENTS): Temporarily increase to 512
17367 as read_socket_hook handler on X aborts if buffer is too small
17368 and W32 handler doesn't always check buffer limit.
17369
17370 * xdisp.c (handle_single_display_prop): Handle left-fringe and
17371 right-fringe similar to a display margin image. Specifically,
17372 the characters having the fringe prop are no longer shown, and
17373 we use IT_IMAGE/next_element_from_image with image_id = -1 to
17374 do this. Set fringe bitmap face_id in it->face_id.
17375 (produce_image_glyph): Handle image_id < 0 as "no image" case, but
17376 still realize it->face (i.e. the fringe bitmap face).
17377
17378 2004-02-25 Miles Bader <miles@gnu.org>
17379
17380 * xdisp.c (check_it): Check string/string_pos consistency.
17381 (init_iterator): Initialize string-related fields properly.
17382
17383 2004-02-11 Miles Bader <miles@gnu.org>
17384
17385 * xdisp.c (produce_image_glyph): Force negative descents to zero.
17386
17387 2004-02-10 Miles Bader <miles@gnu.org>
17388
17389 * xfns.c (lookup_image): Remove xassert(!interrupt_input_blocked);
17390 BLOCK_INPUT can be nested, so it doesn't make much sense.
17391
17392 2004-02-24 Michael Mauger <mmaug@yahoo.com>
17393
17394 * w32fns.c (slurp_file, xbm_scan, xbm_load_image)
17395 (xbm_read_bitmap_data): Use unsigned char for image data.
17396
17397 2004-02-23 Luc Teirlinck <teirllm@auburn.edu>
17398
17399 * abbrev.c (Finsert_abbrev_table_description): Doc fix.
17400
17401 2004-02-22 Jason Rumney <jasonr@gnu.org>
17402
17403 * w32term.c (w32_draw_fringe_bitmap): Draw overlaid bitmaps
17404 correctly over other bitmaps.
17405
17406 2004-02-21 Eli Zaretskii <eliz@gnu.org>
17407
17408 * emacs.c (USAGE1): Split into two halves.
17409 (USAGE2): Second half of the old USAGE1.
17410 (USAGE3): Rename from USAGE2.
17411 (USAGE4): Rename from USAGE3.
17412
17413 2004-02-21 Juri Linkov <juri@jurta.org>
17414
17415 * emacs.c (USAGE1): Add --no-desktop. Move --display from USAGE2.
17416 Fix --multibyte. Move --help, --version to USAGE2. Add alias
17417 --file. Fix -f, -l. Sort options. Untabify.
17418 (USAGE2): Add -hb. Fix --name, --title. Sort options. Untabify.
17419
17420 2004-02-19 Luc Teirlinck <teirllm@auburn.edu>
17421
17422 * category.c (Fdefine_category, Fcategory_docstring)
17423 (Fget_unused_category, Fset_category_table)
17424 (Fcategory_set_mnemonics): Doc fixes.
17425
17426 2004-02-20 Kim F. Storm <storm@cua.dk>
17427
17428 * keyboard.c: Undo 2004-02-16 and 2004-02-17 changes.
17429 The following changes are relative to the 2004-01-21 revision.
17430 (NREAD_INPUT_EVENTS): Define as max number of input events to read
17431 in one call to read_socket_hook. Value is 8.
17432 (read_avail_input): Separate and rework handling of read_socket_hook
17433 and non-read_socket_hook cases. Use smaller input_event buffer
17434 in read_socket_hook case, and repeat if full buffer is read.
17435 Use new local variable 'discard' to skip input after C-g.
17436 In non-read_socket_hook case, just use a single input_event, and
17437 call kbd_buffer_store_event on the fly for each character.
17438
17439 2004-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
17440
17441 * lisp.h (union Lisp_Object): Give a more precise type for `type'.
17442 Remove unused `gu' alternative.
17443
17444 2004-02-19 Andreas Schwab <schwab@suse.de>
17445
17446 * fringe.c (Fdefine_fringe_bitmap): Use && instead of & to avoid
17447 warning.
17448
17449 2004-02-18 Kim F. Storm <storm@cua.dk>
17450
17451 * xdisp.c (get_window_cursor_type, display_and_set_cursor):
17452 Fix last change.
17453
17454 2004-02-17 Kim F. Storm <storm@cua.dk>
17455
17456 * xdisp.c (fast_find_position): Fix return value of new version;
17457 it was inverted compared to the 21.1 version.
17458 (get_window_cursor_type): Don't look at glyph if NULL.
17459 (display_and_set_cursor): Set glyph to NULL if cursor in fringe.
17460
17461 * keyboard.c: Rework previous change; it didn't consider that the
17462 buf array was allocated on the stack.
17463 (prev_read): Remove variable.
17464 (read_avail_input_buf): New static event buffer array.
17465 (in_read_avail_input): New static variable to handle re-entrancy.
17466 (read_avail_input): Change buf to pinter to read_avail_input_buf.
17467 Use in_read_avail_input to handle re-entrance; when re-entered,
17468 fully initialize and use tmp_buf array instead of read_avail_input_buf.
17469 Do not initialize read_avail_input_buf in full here; instead assume it
17470 is always cleared on entry. To ensure that, we clear (just) the
17471 entries that were used before we return.
17472 (init_keyboard): Initialize read_avail_input_buf here.
17473
17474 2004-02-16 Jesper Harder <harder@ifa.au.dk>
17475
17476 * cmds.c (Fend_of_line): Doc fix.
17477
17478 2004-02-16 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
17479
17480 * keyboard.c (prev_read): New static variable.
17481 (read_avail_input): Use it to zero out only those slots in buf[]
17482 that were used last time we were called.
17483
17484 2004-02-16 Eli Zaretskii <eliz@gnu.org>
17485
17486 * Makefile.in (obj): Move fringe.o from here...
17487 (XOBJ, MAC_OBJ): ...to here.
17488
17489 2004-02-16 Stephen Eglen <stephen@gnu.org>
17490
17491 * fringe.c (init_fringe_bitmap): Define j in MAC_OS code.
17492
17493 2004-02-15 Stefan Monnier <monnier@iro.umontreal.ca>
17494
17495 * data.c (Fbyteorder):
17496 * fringe.c (Fdefine_fringe_bitmap):
17497 * xdisp.c (handle_single_display_prop):
17498 * xselect.c (x_handle_dnd_message): Lisp_Object/int mixup.
17499
17500 2004-02-16 Jason Rumney <jasonr@gnu.org>
17501
17502 * w32term.c (w32_draw_fringe_bitmap): Handle overlay fringe bitmaps.
17503
17504 2004-02-15 Steven Tamm <steventamm@mac.com>
17505
17506 * macterm.c (Vmac_emulate_three_button_mouse): New variable for
17507 controlling emulation of a three button mouse with option and
17508 command keys.
17509 (Qreverse, mac_get_enumlated_btn): Handle the emulation.
17510 (mac_event_to_emacs_modifiers, XTread_socket): Ditto.
17511
17512 2004-02-15 Kim F. Storm <storm@cua.dk>
17513
17514 * buffer.c (syms_of_buffer): Doc fix for indicate-buffer-boundaries.
17515
17516 * fringe.c (init_fringe_bitmap) [MAC_OS, WORDS_BIG_ENDIAN]:
17517 Perform byte-swapping.
17518
17519 2004-02-14 Kim F. Storm <storm@cua.dk>
17520
17521 * dispextern.h (struct draw_fringe_bitmap_params): Change member
17522 bits from char to short to facilitate wider bitmaps.
17523 (struct redisplay_interface): Fix prototype of define_fringe_bitmap
17524 member.
17525
17526 * fringe.c (struct fringe_bitmap): Change member bits from char to
17527 short to facilitate 16 bits wide bitmaps. Modify all standard
17528 bitmaps accordingly.
17529 (BYTES_PER_BITMAP_ROW, STANDARD_BITMAP_HEIGHT): New macros.
17530 (FRBITS): Use STANDARD_BITMAP_HEIGHT instead of just sizeof.
17531 (draw_fringe_bitmap): Ditto.
17532 (init_fringe_bitmap) [MAC_OS]: Don't bitswap.
17533 (init_fringe_bitmap) [HAVE_X_WINDOWS]: Enhance bitswapping to
17534 handle up to 16 bits wide bitmaps.
17535 (Fdefine_fringe_bitmap): Doc fix. Handle wider bitmaps.
17536 (Ffringe_bitmaps_at_pos): Add missing arg declarations.
17537
17538 * macterm.c (mac_draw_bitmap): Handle 16 bits wide bitmaps directly.
17539 (x_draw_fringe_bitmap): Use enhanced mac_draw_bitmap, so we no longer
17540 need to call mac_create_bitmap_from_bitmap_data and mac_free_bitmap.
17541
17542 * w32term.c (w32_define_fringe_bitmap): Bitmaps are now 16 bits wide,
17543 so it is no longer necessary to expand them here.
17544
17545 * xterm.c (x_draw_fringe_bitmap): Handle wider bitmaps (max 16 bits).
17546
17547 2004-02-12 Kim F. Storm <storm@cua.dk>
17548
17549 * window.c (Fwindow_fringes): Doc fix.
17550
17551 2004-02-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17552
17553 * xselect.c (x_get_foreign_selection): Add new optional parameter
17554 time_stamp.
17555 (Fx_get_selection_internal): Ditto, pass time_stamp to
17556 x_get_foreign_selection.
17557
17558 * data.c (Fbyteorder): New function.
17559
17560 2004-02-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17561
17562 * atimer.c: Move include stdio.h to same place as in other files.
17563
17564 * region-cache.c: Ditto.
17565
17566 * sysdep.c: Ditto.
17567
17568 * xfaces.c: Ditto.
17569
17570 2004-02-09 Sam Steingold <sds@gnu.org>
17571
17572 * w32term.c (w32_draw_fringe_bitmap): Fix a typo in the last patch.
17573
17574 2004-02-09 Kim F. Storm <storm@cua.dk>
17575
17576 * fringe.c: New file. Move original fringe related declarations
17577 and code from dispextern.h and xdisp.c here.
17578 Rework code to support user defined fringe bitmaps, redefining
17579 standard bitmaps, ability to overlay user defined bitmap with
17580 overlay arrow bitmap, and add faces to bitmaps.
17581 (Voverflow_newline_into_fringe): Declare here.
17582 (enum fringe_bitmap_align): New enum.
17583 (..._bits): All bitmaps are now defined without bitswapping; that
17584 is now done in init_fringe_once (if necessary).
17585 (standard_bitmaps): New array with specifications for the
17586 standard fringe bitmaps.
17587 (fringe_faces): New array.
17588 (valid_fringe_bitmap_id_p): New function.
17589 (draw_fringe_bitmap_1): Rename from draw_fringe_bitmap.
17590 (draw_fringe_bitmap): New function which draws fringe bitmap,
17591 possibly overlaying bitmap with cursor in right fringe or the
17592 overlay arrow in the left fringe.
17593 (update_window_fringes): Do not handle overlay arrow here.
17594 Compare and copy fringe bitmap faces.
17595 (init_fringe_bitmap): New function.
17596 (Fdefine_fringe_bitmap, Fdestroy_fringe_bitmap): New DEFUNs to
17597 define and destroy user defined fringe bitmaps.
17598 (Fset_fringe_bitmap_face): New DEFUN to set face for a fringe bitmap.
17599 (Ffringe_bitmaps_at_pos): New DEFUN to read current fringe bitmaps.
17600 (syms_of_fringe): New function. Defsubr new DEFUNs.
17601 DEFVAR_LISP Voverflow_newline_into_fringe.
17602 (init_fringe_once, init_fringe): New functions.
17603 (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: New functions.
17604
17605 * Makefile.in (obj): Add fringe.o.
17606 (fringe.o): New dependencies.
17607
17608 * dispextern.h (FRINGE_ID_BITS): New definition for number of
17609 bits allocated to hold a fringe number. Increase number of bits
17610 from 4 to 8 to allow user defined fringe bitmaps.
17611 (struct glyph_row, struct it): New members left_user_fringe_bitmap,
17612 left_user_fringe_face_id, right_user_fringe_bitmap,
17613 right_user_fringe_face_id.
17614 (enum fringe_bitmap_type, struct fringe_bitmap, fringe_bitmaps):
17615 Move to new file fringe.c.
17616 (MAX_FRINGE_BITMAPS): Define here.
17617 (struct draw_fringe_bitmap_params): New members bits, cursor_p,
17618 and overlay_p. Change member which to int.
17619 (struct redisplay_interface): New members define_fringe_bitmap
17620 and destroy_fringe_bitmap.
17621 (valid_fringe_bitmap_id_p): Add prototype.
17622 (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: Add prototypes.
17623
17624 * dispnew.c (row_equal_p): Compare fringe bitmap faces and overlay
17625 arrows.
17626 (update_frame): Do flush_display if force_flush_display_p to
17627 ensure display (specifically fringes) are updated in a timely
17628 manner when resizing the frame by dragging the mouse.
17629 (update_window_line): Update row if overlay arrow changed.
17630 (scrolling_window): Redraw fringe bitmaps if fringe bitmap faces
17631 or overlay arrow changed.
17632
17633 * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
17634 syms_of_fringe, and init_fringe.
17635
17636 * frame.h (struct frame): New member force_flush_display_p.
17637
17638 * lisp.h (syms_of_fringe, init_fringe, init_fringe_once):
17639 Add prototypes.
17640
17641 * macterm.c (mac_draw_bitmap): Add overlay_p arg.
17642 (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps;
17643 thanks to YAMAMOTO Mitsuharu for advice on how to do this.
17644 Use cursor color for displaying cursor in fringe.
17645 (x_redisplay_interface): Add null handlers for
17646 define_fringe_bitmap and destroy_fringe_bitmap functions.
17647
17648 * w32term.c (w32_draw_fringe_bitmap): Copy unadapted code from
17649 xterm.c to handle overlayed fringe bitmaps and to use cursor color
17650 for displaying cursor in fringe.
17651 (w32_define_fringe_bitmap, w32_destroy_fringe_bitmap): New W32
17652 specific functions to define and destroy fringe bitmaps in fringe_bmp.
17653 (w32_redisplay_interface): Add them to redisplay_interface.
17654 (w32_term_init): Call w32_init_fringe instead of explicitly
17655 defining fringe bitmaps in fringe_bmp array.
17656 (x_delete_display): Call w32_reset_fringes instead of explicitly
17657 destroying fringe bitmaps in fringe_bmp array.
17658
17659 * xdisp.c (Voverflow_newline_into_fringe, syms_of_xdisp)
17660 (left_bits, right_bits, up_arrow_bits, down_arrow_bits)
17661 (continued_bits, continuation_bits, ov_bits, first_line_bits)
17662 (last_line_bits, filled_box_cursor_bits, hollow_box_cursor_bits)
17663 (bar_cursor_bits, hbar_cursor_bits, zv_bits, hollow_square_bits)
17664 (fringe_bitmaps, draw_fringe_bitmap, draw_row_fringe_bitmaps)
17665 (draw_window_fringes, compute_fringe_widths, update_window_fringes):
17666 Move fringe handling vars and code to new file fringe.c.
17667 (handle_display_prop): Handle left-fringe and right-fringe
17668 display properties; store user fringe bitmaps in iterator.
17669 (move_it_in_display_line_to): Handle cursor in fringe at eob.
17670 (clear_garbaged_frames): Set force_flush_display_p if resized.
17671 (redisplay_window): Redraw fringe bitmaps if not just_this_one_p.
17672 (display_line): Handle cursor in fringe at eob.
17673 (display_line): Set row user fringe bitmaps from iterator.
17674
17675 * xterm.c (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps.
17676 Use cursor color for displaying cursor in fringe.
17677 (x_redisplay_interface): Add null handlers for
17678 define_fringe_bitmap and destroy_fringe_bitmap functions.
17679
17680 2004-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17681
17682 * macfns.c (Fx_change_window_property): Make doc string and
17683 parameters same as for X version.
17684
17685 * w32fns.c (Fx_change_window_property): Ditto.
17686
17687 2004-02-07 Kim F. Storm <storm@cua.dk>
17688
17689 * xdisp.c (hscroll_window_tree): Position cursor near to right
17690 margin in hscrolled window when jumping to end of line (rather
17691 than centering cursor).
17692
17693 * process.c (wait_reading_process_input): Don't do adaptive read
17694 buffering if waiting for a specific process.
17695
17696 2004-02-05 Luc Teirlinck <teirllm@auburn.edu>
17697
17698 * minibuf.c (Fminibufferp, Fread_from_minibuffer)
17699 (Fread_minibuffer, Feval_minibuffer)
17700 (Fread_string, Fread_no_blanks_input)
17701 (Fcompleting_read): Doc fixes.
17702 (syms_of_minibuf): Doc fixes for minibuffer-completion-table and
17703 completion-regexp-list. Define Qcase_fold_search and staticpro it.
17704 (read_minibuf): Fix initial comment.
17705 (Ftry_completion, Fall_completions, Ftest_completion): Bind
17706 case-fold-search to the value of completion-ignore-case when
17707 checking completion-regexp-list.
17708 (Fdisplay_completion_list): Make it handle arguments that are
17709 symbols. Doc fix.
17710
17711 2004-02-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17712
17713 * xterm.h: Add declaration of free_frame_menubar.
17714
17715 * xfns.c (x_create_bitmap_mask): Removed unused variable depth.
17716 (x_set_menu_bar_lines): Added ! defined USE_GTK for olines.
17717 (Fx_change_window_property): Add declaration of parameters type and
17718 format. Remove unused variable cons.
17719
17720 * xselect.c: Include stdio.h.
17721
17722 2004-02-05 Kenichi Handa <handa@m17n.org>
17723
17724 * fns.c (Fset_char_table_range): Fix previous change.
17725
17726 * buffer.c (Fset_buffer_multibyte): Fix docstring.
17727
17728 2004-02-04 Luc Teirlinck <teirllm@auburn.edu>
17729
17730 * editfns.c (Fchar_after, Fchar_before): Doc fixes.
17731
17732 2004-02-04 Stefan Monnier <monnier@iro.umontreal.ca>
17733
17734 * keymap.c (Vmouse_events): Rename from Vmenu_events.
17735 (syms_of_keymap): Add mouse-[45], header-line, and mode-line to it.
17736
17737 2004-02-04 Kenichi Handa <handa@m17n.org>
17738
17739 * fns.c (Fset_char_table_range): Handle charsets ascii,
17740 eight-bit-control, and eight-bit-graphic correctly.
17741
17742 2004-02-03 Jason Rumney <jasonr@gnu.org>
17743
17744 * w32select.c (Fw32_set_clipboard_data): Make coding iso2022 safe.
17745
17746 * w32fns.c (x_to_w32_font): Likewise.
17747
17748 2004-02-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17749
17750 * xterm.h: Add x_handle_dnd_message, x_check_property_data,
17751 x_fill_property_data, x_property_data_to_lisp and check_x_display_info.
17752
17753 * xterm.c (handle_one_xevent): Call x_handle_dnd_message for
17754 ClientMessages.
17755
17756 * xselect.c: Include termhooks.h and X11/Xproto.h.
17757 (x_check_property_data, x_fill_property_data)
17758 (x_property_data_to_lisp, mouse_position_for_drop)
17759 (Fx_get_atom_name, x_handle_dnd_message): New functions for DND support.
17760 (Fx_send_client_event): Move here from xfns.c.
17761 (syms_of_xselect): Add Sx_get_atom_name and Sx_send_client_message.
17762
17763 * xfns.c (x-send-client-message): Move to xselect.c.
17764 (Fx_change_window_property): Add optional arguments TYPE, FORMAT and
17765 OUTER_P.
17766 (Fx_window_property): Add optional arguments TYPE, SOURCE, DELETE_P,
17767 VECTOR_RET_P. Handle AnyPropertyType. Call x_property_data_to_lisp
17768 if vector_ret_p is true.
17769 (syms_of_xfns): Sx_send_client_message moved to xselect.c.
17770
17771 2004-02-02 Eli Zaretskii <eliz@gnu.org>
17772
17773 * fileio.c (Fcopy_file): If NEWNAME is a directory, expand the
17774 basename of FILE relative to it, not FILE itself.
17775
17776 2004-02-02 Kenichi Handa <handa@m17n.org>
17777
17778 * coding.c (coding_restore_composition): Check invalid
17779 composition data more rigidly.
17780
17781 2004-01-30 Luc Teirlinck <teirllm@auburn.edu>
17782
17783 * fileio.c (Fread_file_name_internal): Correctly handle the case
17784 where insert-default-directory is nil.
17785 (Fread_file_name): Always return an empty string if the user exits
17786 with an empty minibuffer. Adapt the docstring accordingly.
17787 (syms_of_fileio): Adapt the docstring of insert-default-directory
17788 to the change in Fread_file_name.
17789
17790 2004-01-29 Eli Zaretskii <eliz@gnu.org>
17791
17792 * alloca.c [!alloca]: Fix the prototype for xfree.
17793
17794 2004-01-29 Kenichi Handa <handa@m17n.org>
17795
17796 * fns.c (string_char_to_byte): Optimize for ASCII only string.
17797 (string_byte_to_char): Likewise.
17798
17799 2004-01-28 Peter Runestig <peter@runestig.com>
17800
17801 * makefile.w32-in, w32fns.c: Add `default-printer-name' function.
17802
17803 2004-01-27 Steven Tamm <steventamm@mac.com>
17804
17805 * unexmacosx.c (unexec_copy): Do not copy more than was
17806 requested to prevent overwriting during unexec.
17807
17808 2004-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17809
17810 * process.c (sigchld_handler): Add comment about not calling malloc.
17811
17812 * process.h: Add extern to synch_process_termsig.
17813
17814 2004-01-27 Steven Tamm <steventamm@mac.com>
17815
17816 * macterm.c (make_mac_frame, make_mac_terminal_frame):
17817 Move setting of scroll bars from make_mac_frame to
17818 make_mac_terminal_frame to prevent clobbering of scroll-bar-mode.
17819
17820 2004-01-26 Richard M. Stallman <rms@gnu.org>
17821
17822 * search.c (Freplace_match): Handle nonexistent
17823 back-references properly.
17824
17825 2004-01-03 Richard M. Stallman <rms@gnu.org>
17826
17827 * window.c (decode_any_window): New function.
17828 (Fwindow_height, Fwindow_width, Fwindow_edges)
17829 (Fwindow_pixel_edges, Fwindow_inside_edges)
17830 (Fwindow_inside_pixel_edges): Use decode_any_window.
17831
17832 2004-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17833
17834 * process.h: synch_process_termsig new variable.
17835
17836 * callproc.c: Define synch_process_termsig.
17837 (Fcall_process): Initiate synch_process_termsig to zero and
17838 check if non-zero and get signal name after subprocess has ended.
17839
17840 * process.c (sigchld_handler): Set synch_process_termsig
17841 if terminated by a signal. synch_process_death setting removed.
17842
17843 * sysdep.c (mkdir, rmdir): Also check synch_process_termsig.
17844
17845 2004-01-26 Andreas Schwab <schwab@suse.de>
17846
17847 * print.c (print_preprocess): Declare size as EMACS_INT to not
17848 lose bits.
17849 (print_object): Likewise.
17850 * alloc.c (Fpurecopy): Likewise.
17851
17852 2004-01-25 Luc Teirlinck <teirllm@auburn.edu>
17853
17854 * window.c (Fwindow_minibuffer_p): Doc fix.
17855
17856 2004-01-24 Jonathan Yavner <jyavner@member.fsf.org>
17857
17858 * editfns.c (Fformat): Make both passes accept the same set of flags.
17859
17860 2004-01-23 Kenichi Handa <handa@m17n.org>
17861
17862 * fns.c (Fmd5): If OBJECT is a buffer different from the current
17863 one, set buffer to OBJECT temporarily.
17864
17865 2004-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
17866
17867 * keyboard.c (kbd_buffer_gcpro): Remove.
17868 (kbd_buffer_store_event, clear_event, Fdiscard_input)
17869 (stuff_buffered_input, init_keyboard, syms_of_keyboard):
17870 Don't initialize and/or maintain the variable any more. It was made
17871 redundant by my commit of 2003-06-15.
17872
17873 * lisp.h [USE_LSB_TAG && !DECL_ALIGN]: Signal an error.
17874
17875 2004-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
17876
17877 * lisp.h: Add undef DECL_ALIGN.
17878
17879 2004-01-21 Stefan Monnier <monnier@iro.umontreal.ca>
17880
17881 * process.c (wait_reading_process_input) [SYNC_INPUT]:
17882 Check interrupt_input_pending explicitly.
17883
17884 * lisp.h (QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
17885
17886 * keyboard.c (handle_async_input): New fun,
17887 extracted from input_available_signal.
17888 (input_available_signal, reinvoke_input_signal): Use it.
17889
17890 2004-01-20 Stefan Monnier <monnier@iro.umontreal.ca>
17891
17892 * buffer.c (buffer_defaults, buffer_local_symbols): Use DECL_ALIGN.
17893
17894 * lisp.h [USE_LSB_TAG]: Add definitions for Lisp_Object value
17895 manipulation macros for when tags are in the lower bits.
17896 (struct Lisp_Free) [USE_LSB_TAG]: Add padding.
17897 (DECL_ALIGN): New macro.
17898 (DEFUN): Use it.
17899
17900 * lisp.h [ENABLE_CHECKING]: Don't force union type.
17901
17902 * s/darwin.h (__attribute__): Remove outdated workaround.
17903
17904 * macterm.c (main) [USE_LSB_TAG]: Don't range check the ram.
17905
17906 * alloc.c (lisp_malloc, lisp_align_malloc) [USE_LSB_TAG]:
17907 Don't check range of malloc address.
17908 (pure_alloc) [USE_LSB_TAG]: Enforce alignment.
17909
17910 * process.c (wait_reading_process_input): Lisp_Object/int mixup.
17911
17912 * dired.c (Ffile_attributes): Lisp_Object/int mixup.
17913
17914 2004-01-19 Kenichi Handa <handa@m17n.org>
17915
17916 * fontset.c (fontset_font_pattern): Fix previous change.
17917
17918 2004-01-16 Miles Bader <miles@gnu.ai.mit.edu>
17919
17920 * xdisp.c (Voverflow_newline_into_fringe)
17921 (move_it_in_display_line_to, redisplay_internal)
17922 (update_window_fringes, redisplay_window, display_line, window):
17923 Add `#ifdef HAVE_WINDOW_SYSTEM' around fringe-drawing stuff, so
17924 that it compiles without a window-system.
17925 * dispnew.c (direct_output_for_insert, update_window): Likewise.
17926
17927 2004-01-16 Kim F. Storm <storm@cua.dk>
17928
17929 * buffer.h (struct buffer): New member indicate_buffer_boundaries.
17930
17931 * buffer.c (init_buffer_once): Set buffer_defaults and
17932 buffer_local_flags for indicate_buffer_boundaries.
17933 (syms_of_buffer): Defvar_per_buffer it, and defvar_lisp_nopro
17934 default- variable for it.
17935
17936 * dispextern.h (struct glyph_row): New members left_fringe_bitmap,
17937 right_fringe_bitmap, redraw_fringe_bitmaps_p for new fringe handling.
17938 New members exact_window_width_line_p and cursor_in_fringe_p for
17939 overflowing newlines into right fringe.
17940 New members indicate_bob_p, indicate_top_line_p, indicate_eob_p,
17941 and indicate_bottom_line_p for buffer boundaries and scrolling.
17942 (enum fringe_bitmap_type): Add UP_ARROW_BITMAP, DOWN_ARROW_BITMAP,
17943 FIRST_LINE_BITMAP, LAST_LINE_BITMAP, FILLED_BOX_CURSOR_BITMAP,
17944 HOLLOW_BOX_CURSOR_BITMAP, BAR_CURSOR_BITMAP, HBAR_CURSOR_BITMAP,
17945 and HOLLOW_SQUARE_BITMAP.
17946 (draw_fringe_bitmap, draw_window_fringes, update_window_fringes):
17947 Add prototypes.
17948
17949 * dispnew.c (row_equal_p, update_window_line): Compare fringe bitmaps
17950 instead of related indicator fields.
17951 Compare exact_window_width_line_p and cursor_in_mouse_face_p indicators.
17952 (direct_output_for_insert): Handle exact width lines like
17953 contined lines. Call update_window_fringes.
17954 (update_window): Call update_window_fringes.
17955 (scrolling_window): Don't skip desired rows with changed bitmaps.
17956 Check if fringe bitmaps changes when assigning scrolled rows.
17957
17958 * xdisp.c (Voverflow_newline_into_fringe): New variable.
17959 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): New macro.
17960 (move_it_in_display_line_to): Overflow newline into fringe for
17961 rows that are exactly as wide as the window.
17962 (up_arrow_bits, down_arrow_bits, first_line_bits, last_line_bits)
17963 (filled_box_cursor_bits, hollow_box_cursor_bits, bar_cursor_bits)
17964 (hbar_cursor_bits, hollow_square_bits): New fringe bitmaps.
17965 (fringe_bitmaps): Add new bitmaps.
17966 (draw_fringe_bitmap): Make extern. Remove WHICH arg.
17967 Select proper bitmap for cursor in fringe when appropriate.
17968 Handle alignment of bitmap to top or bottom of row.
17969 (draw_row_fringe_bitmaps): Don't select bitmaps here; that is now
17970 done by update_window_fringes.
17971 (update_window_fringes, draw_window_fringes): New functions.
17972 (redisplay_internal): Call update_window_fringes in case only
17973 cursor row is updated.
17974 (redisplay_window): Call update_window_fringes.
17975 Explicitly call draw_window_fringes if redisplay was done using
17976 the current matrix or the overlay arrow is in the window.
17977 (try_window_reusing_current_matrix): Mark scrolled rows for
17978 fringe update (to update buffer-boundaries / scrolling icons).
17979 (find_last_unchanged_at_beg_row): Handle exact width lines line
17980 continued lines.
17981 (display_line): Overflow newline into fringe for rows that are
17982 exactly as wide as the window. Don't append space for newline
17983 in this case.
17984 (notice_overwritten_cursor): Explicitly clear cursor bitmap
17985 in fringe as if it had been overwritten.
17986 (erase_phys_cursor): Erase cursor bitmap in fringe.
17987 (syms_of_xdisp): Mark show-trailing-whitespace and
17988 void-text-area-pointer as user options.
17989 DEFVAR_LISP Voverflow_newline_into_fringe. Enable by default.
17990
17991 * xterm.c (x_update_window_end): Call draw_window_fringes.
17992 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
17993 in row instead of actually drawing fringe bitmaps.
17994 (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
17995 (x_draw_window_cursor): Draw cursor in fringe.
17996
17997 * w32term.c (x_update_window_end): Call draw_window_fringes.
17998 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
17999 in row instead of actually drawing fringe bitmaps.
18000 (w32_draw_fringe_bitmap): Handle bottom aligned bitmaps.
18001 (w32_draw_window_cursor): Draw cursor in fringe.
18002
18003 * macterm.c (x_update_window_end): Call draw_window_fringes.
18004 (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
18005 in row instead of actually drawing fringe bitmaps.
18006 (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
18007 (mac_draw_window_cursor): Draw cursor in fringe.
18008
18009 2004-01-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18010
18011 * xterm.c (handle_one_xevent): Don't handle characters that are part
18012 of an old style (XLookupString) compose sequence.
18013
18014 2004-01-15 Kenichi Handa <handa@m17n.org>
18015
18016 * search.c (Freplace_match): Use make_multibyte_string or
18017 make_unibyte_string according to the buffer multibyteness.
18018
18019 2004-01-14 Stefan Monnier <monnier@iro.umontreal.ca>
18020
18021 * alloc.c (struct interval_block, struct string_block)
18022 (struct symbol_block, struct marker_block, live_string_p)
18023 (live_cons_p, live_symbol_p, live_float_p, live_misc_p):
18024 Better preserve alignment for objects in blocks.
18025 (FLOAT_BLOCK_SIZE): Adjust for possible alignment padding.
18026
18027 * lread.c (defvar_per_buffer): Remove dead declaration.
18028
18029 * macterm.c (do_check_ram_size): Don't hardcode the lisp address
18030 space size.
18031
18032 2004-01-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18033
18034 * xmenu.c (popup_get_selection): Check new parameter down_on_keypress
18035 if a key press should pop down. Only pop down if a key is pressed
18036 outside the menu/dialog.
18037 (create_and_show_popup_menu): Pass 0 for down_on_keypress to
18038 popup_get_selection.
18039 (create_and_show_dialog): Pass 1 for down_on_keypress to
18040 popup_get_selection.
18041
18042 2004-01-11 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18043
18044 * alloc.c (allocate_vectorlike): Surround calls to mallopt with
18045 BLOCK/UNBLOCK_INPUT.
18046
18047 2004-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18048
18049 * xmenu.c (Fx_popup_dialog): Add an Ok button if no buttons are
18050 specified.
18051
18052 2004-01-08 Kenichi Handa <handa@m17n.org>
18053
18054 * editfns.c (Fformat): Fix '&' to '&&'.
18055
18056 2004-01-08 Andreas Schwab <schwab@suse.de>
18057
18058 * print.c (print_preprocess) <case Lisp_Vectorlike>: Only mask
18059 size if PSEUDOVECTOR_FLAG is set.
18060
18061 2004-01-07 Kenichi Handa <handa@m17n.org>
18062
18063 * charset.c (Fdeclare_equiv_charset): Fix docstring.
18064
18065 * fontset.c (fontset_ref_via_base): Fix previous change.
18066
18067 2004-01-07 Kim F. Storm <storm@cua.dk>
18068
18069 * process.c (read_process_output): Only activate adaptive
18070 buffering if we read less than 256 bytes at a time.
18071
18072 2004-01-06 Kim F. Storm <storm@cua.dk>
18073
18074 * dispnew.c (buffer_posn_from_coords): Return both buffer/string
18075 object and image object. Return glyph width and height.
18076 (mode_line_string, marginal_area_string): Ditto.
18077
18078 * dispextern.h (buffer_posn_from_coords, mode_line_string)
18079 (marginal_area_string): Fix prototypes.
18080
18081 * keyboard.h (POSN_POSN, POSN_SET_POSN): Rename macros from
18082 POSN_BUFFER_POSN and POSN_SET_BUFFER_POSN. All uses changed.
18083 (POSN_INBUFFER_P, POSN_BUFFER_POSN): New macros.
18084
18085 * keyboard.c (make_lispy_position): Use modified mode_line_string,
18086 buffer_posn_from_coords, and marginal_area_string functions to
18087 include both string object and image object in the lispy position.
18088 Also add actual glyph width and height to position.
18089 (read_key_sequence): Use real buffer position from mouse
18090 event to find keymap property even when click is in marginal area.
18091
18092 * xdisp.c (note_mode_line_or_margin_highlight): Use modified
18093 mode_line_string and marginal_area_string functions to handle
18094 both string object and image object properties.
18095
18096 2004-01-06 Andreas Schwab <schwab@suse.de>
18097
18098 * syntax.c (skip_chars): Treat '-' at end of string as ordinary
18099 character.
18100
18101 2004-01-02 Andreas Schwab <schwab@suse.de>
18102
18103 * macterm.c (emacs_options, x_initialized, same_x_server):
18104 Remove unused (and duplicated) definitions.
18105
18106 2004-01-02 Kim F. Storm <storm@cua.dk>
18107
18108 * process.h (struct Lisp_Process): New members for adaptive read
18109 buffering: adaptive_read_buffering, read_output_delay, and
18110 read_output_skip.
18111
18112 * process.c (ADAPTIVE_READ_BUFFERING): New conditional.
18113 (READ_OUTPUT_DELAY_INCREMENT, READ_OUTPUT_DELAY_MAX)
18114 (READ_OUTPUT_DELAY_MAX_MAX): New constants.
18115 (process_output_delay_count, process_output_skip): New vars.
18116 (Vprocess_adaptive_read_buffering): New variable.
18117 (make_process): Initialize adaptive read buffering members.
18118 (Fstart_process): Set adaptive_read_buffering member.
18119 (deactivate_process): Cleanup adaptive read buffering.
18120 (wait_reading_process_input): Temporarily omit delayed
18121 subprocesses from the set of file descriptors to read from;
18122 adjust the select timeout if we skipped any subprocesses.
18123 (read_process_output): Increase adaptive read buffering delay if
18124 we read less than a full buffer; reduce delay when we read a
18125 full buffer.
18126 (send_process): Simplify using local Lisp_Process var.
18127 Reset adaptive read buffering delay after write.
18128 (init_process): Initialize process_output_delay_count and
18129 process_output_skip.
18130 (syms_of_process): DEFVAR_LISP Vprocess_adaptive_read_buffering.
18131
18132 2004-01-01 Jason Rumney <jasonr@gnu.org>
18133
18134 * w32term.c (w32_text_out): Use s->font, for consistency with callers.
18135
18136 2003-12-30 Luc Teirlinck <teirllm@auburn.edu>
18137
18138 * print.c (Ferror_message_string): Add hyperlink in the docstring
18139 to the definition of `signal' in the Elisp manual.
18140 * eval.c (Fsignal): Ditto.
18141
18142 2003-12-29 James Clark <jjc@jclark.com>
18143
18144 * fns.c (internal_equal): Return t for two NaN arguments.
18145
18146 2003-12-29 Richard M. Stallman <rms@gnu.org>
18147
18148 * data.c (store_symval_forwarding): Handle setting
18149 default-fill-column, etc., by changing the value in
18150 buffers that use the default.
18151
18152 * minibuf.c (Fset_minibuffer_window): Doc fix.
18153
18154 * fileio.c (choose_write_coding_system): Ignore auto_saving
18155 if using the visited file for auto saves.
18156 (Fwrite_region): Don't update SAVE_MODIFF
18157 if auto-saving in visited file.
18158
18159 2003-12-29 Kenichi Handa <handa@m17n.org>
18160
18161 * dispextern.h (face_font_available_p): Extern it.
18162
18163 * fontset.c (Voverriding_fontspec_alist): New variable.
18164 (lookup_overriding_fontspec): New function.
18165 (fontset_ref_via_base): Call lookup_overriding_fontspec if necessary.
18166 (fontset_font_pattern): Likewise.
18167 (regulalize_fontname): New function.
18168 (Fset_fontset_font): Call regulalize_fontname.
18169 (Fset_overriding_fontspec_internal): New function.
18170 (syms_of_fontset): Initialize and staticpro Voverriding_fontspec_alist.
18171 Defsubr Sset_overriding_fontspec_internal.
18172
18173 * xfaces.c (face_font_available_p): New function.
18174
18175 2003-12-28 Richard M. Stallman <rms@gnu.org>
18176
18177 * buffer.c (Fother_buffer): Don't crash if BUF is nil
18178 or if its name is nil.
18179
18180 * buffer.c (Fkill_buffer): Don't delete auto-save file
18181 if it's the same as the visited file.
18182
18183 2003-12-28 Luc Teirlinck <teirllm@auburn.edu>
18184
18185 * coding.c (Fcheck_coding_system): Doc fix.
18186
18187 2003-12-28 Kim F. Storm <storm@cua.dk>
18188
18189 * Makefile.in (eval.o): Depend on dispextern.h.
18190
18191 * dispnew.c (buffer_posn_from_coords): Fix calculation of dy for
18192 image glyph using image's ascent.
18193 (mode_line_string): Return image glyph as object clicked on.
18194 Adjust y0 for image glyph using image's ascent.
18195
18196 * dispextern.h (FACE_ID_BITS, MAX_FACE_ID): New defines.
18197 (struct glyph): New members, ascent and descent. Used to save
18198 this glyph's ascent and descent, instead of having.
18199 (struct glyph): Declare member face_id using FACE_ID_BITS.
18200 (find_hot_spot): Add prototype.
18201
18202 * keyboard.c (Qimage): Remove extern (now in lisp.h).
18203 (QCmap): Declare extern.
18204 (make_lispy_position): When position is inside image hot-spot,
18205 use hot-spot element's id as posn element.
18206
18207 * lisp.h (IMAGEP): New macro to test for image object type.
18208 (Qimage): Declare extern.
18209
18210 * macfns.c (Qimage): Remove extern (now in lisp.h).
18211 (valid_image_p, parse_image_spec): Use IMAGEP macro.
18212
18213 * macterm.c (Qface, Qmouse_face): Remove unused externs.
18214
18215 * w32fns.c (Qimage): Remove extern (now in lisp.h).
18216 (valid_image_p, parse_image_spec): Use IMAGEP macro.
18217
18218 * w32menu.c (Qmouse_click, Qevent_kind): Remove unused externs.
18219
18220 * w32term.c (Qface, Qmouse_face): Remove unused externs.
18221
18222 * xdisp.c (Qarrow, Qhand, Qtext, Qpointer): New variables for
18223 pointer types.
18224 (Qrelative_width, Qalign_to): Remove unused variables.
18225 (Vvoid_text_area_pointer): Replace Vshow_text_cursor_in_void.
18226 (QCmap, QCpointer, Qrect, Qcircle, Qpoly): New variables for image
18227 maps.
18228 (x_y_to_hpos_vpos): Return glyph relative coordinates through new
18229 dx and dy args. Remove buffer_only_p arg (always 0). Simplify
18230 code accordingly.
18231 (get_glyph_string_clip_rect): Draw cursor using glyph's rather
18232 than row's ascent and height, to get sensible height on tall rows.
18233 (build_desired_tool_bar_string): Remove Qimage extern.
18234 (get_tool_bar_item): Fix call to x_y_to_hpos_vpos.
18235 (produce_image_glyph): Adjust it.ascent to minimum row ascent if
18236 image glyph is alone on the last line.
18237 (append_glyph, append_composite_glyph, produce_image_glyph)
18238 (append_stretch_glyph): Set glyph's ascent and descent.
18239 (on_hot_spot_p): New function to check if position is inside an
18240 rectangular, circular, or polygon-shaped image hot-spot,
18241 (find_hot_spot): New function to search for image hot-spot.
18242 (Flookup_image_map): New defun to search for image hot-spot.
18243 (define_frame_cursor1): New aux function to determine frame
18244 pointer.
18245 (note_mode_line_or_margin_highlight, note_mouse_highlight): Handle
18246 `pointer' text property and :pointer image property to control
18247 frame pointer shape. Detect image hot-spots for pointer and
18248 help_echo properties. Use define_frame_cursor1.
18249 (note_mouse_highlight): Use Vvoid_text_area_pointer.
18250 (syms_of_xdisp): Defsubr new defun. Intern and staticpro new
18251 variables. DEFVAR_LISP Vvoid_text_area_pointer instead of
18252 Vshow_text_cursor_in_void.
18253
18254 * xfaces.c (cache_face): Abort if c->size exceeds MAX_FACE_ID.
18255
18256 * xfns.c (x_set_mouse_color): Remove bogus x_check_errors call.
18257 (Qimage): Remove extern (now in lisp.h).
18258 (valid_image_p, parse_image_spec): Use IMAGEP macro.
18259
18260 * xmenu.c (show_help_event): Remove unused code.
18261
18262 * xterm.c (Qface, Qmouse_face): Remove unused externs.
18263 (x_draw_hollow_cursor): Draw cursor using glyph's rather than
18264 row's ascent and descent, to get a sensible height on tall rows.
18265
18266 2003-12-25 Luc Teirlinck <teirllm@auburn.edu>
18267
18268 * minibuf.c (Fcompleting_read): Undo previous change.
18269
18270 2003-12-25 Lars Hansen <larsh@math.ku.dk>
18271
18272 * dired.c (Fdirectory_files, Fdirectory_files_and_attributes):
18273 Arguments GCPRO'ed in call to file name handler.
18274
18275 2003-12-25 Thien-Thi Nguyen <ttn@gnu.org>
18276
18277 * termcap.c (tgetst1): Scan for "%pN"; if all
18278 N are continuous in [1,9], remove all "%pN".
18279
18280 2003-12-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18281
18282 * gtkutil.c (xg_frame_set_char_size): Call x_wm_set_size_hint.
18283
18284 * xfaces.c (lface_fully_specified_p): Take into account that
18285 MAC OS always have unspecified stipple.
18286
18287 2003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
18288
18289 * tparam.c (tparam1): Add handling for `%pN', which
18290 means use param N for the next substitution.
18291
18292 2003-12-24 Thien-Thi Nguyen <ttn@gnu.org>
18293
18294 * xfaces.c (Fcolor_gray_p): Fix omission bug:
18295 In case `frame' is nil, consult the selected frame.
18296 (Fcolor_supported_p): Likewise.
18297
18298 2003-12-23 Luc Teirlinck <teirllm@auburn.edu>
18299
18300 * fns.c (Frandom, Fstring_make_multibyte, Fset_char_table_range):
18301 Doc fixes.
18302
18303 * minibuf.c (read_minibuf): Allow INITIAL to be a cons of a string
18304 and an integer. Adapt the introductory comment accordingly.
18305 (Fread_from_minibuffer): Delete code moved into read_minibuf.
18306 Doc fix.
18307 (Fread_minibuffer, Fread_no_blanks_input): Adapt to changes in
18308 read_minibuf.
18309 (Fcompleting_read): Delete code moved into read_minibuf.
18310 (Ftest_completion): Make it handle obarrays and hash tables correctly.
18311
18312 2003-12-03 Kenichi Handa <handa@m17n.org>
18313
18314 * coding.c (decode_coding_iso2022): Fix for preserving UTF-8
18315 encoding sequence.
18316
18317 2003-12-01 Kenichi Handa <handa@m17n.org>
18318
18319 * composite.c (syms_of_composite): Don't make the compostion hash
18320 table week.
18321
18322 2003-11-30 Luc Teirlinck <teirllm@auburn.edu>
18323
18324 * intervals.h: Add EXFUN for Fget_char_property_and_overlay.
18325 * textprop.c (Fget_char_property_and_overlay): New function.
18326 (syms_of_textprop): Defsubr it.
18327
18328 2003-11-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18329
18330 * dispnew.c (buffer_posn_from_coords): Add ifdef HAVE_WINDOW_SYSTEM
18331 to compile on terminal configuration.
18332
18333 * fileio.c (Fread_file_name): Check use_file_dialog also before
18334 calling Fx_file_dialog.
18335
18336 * fns.c (use_file_dialog): New variable.
18337 (syms_of_fns): DEFVAR_BOOL use-file-dialog.
18338
18339 2003-11-29 Kim F. Storm <storm@cua.dk>
18340
18341 * msdos.c (Qcursor_type, Qbar, Qhbar): Declare extern.
18342 (syms_of_msdos): Don't intern and staticpro them.
18343
18344 2003-11-27 Kim F. Storm <storm@cua.dk>
18345
18346 * dispnew.c (buffer_posn_from_coords): Calculate and return pixel
18347 coordinates relative to glyph at posn. If glyph is an image,
18348 return that as object at posn. Callers changed.
18349 (mode_line_string, marginal_area_string): Calculate and return
18350 pixel coordinates relative to glyph. Callers changed.
18351
18352 * dispextern.h (buffer_posn_from_coords, mode_line_string)
18353 (marginal_area_string): Fix prototypes.
18354 (window_box_left_offset, window_box_right_offset): Add prototypes.
18355
18356 * frame.h (get_specified_cursor_type, get_window_cursor_type):
18357 Remove prototypes.
18358
18359 * keyboard.h (EVENT_CLICK_COUNT, POSN_SCROLLBAR_PART): Fix defines.
18360
18361 * keyboard.c (make_lispy_position): Add x and y coordinates
18362 relative to the current glyph as 7th element of position.
18363 If glyph is an image, return it in the object element.
18364 (read_key_sequence): Skip checks for keymap property in cases
18365 where POSN_STRING is not a string (e.g. an image).
18366
18367 * xdisp.c (Vdisplay_pixels_per_inch): New variable.
18368 (Vshow_text_cursor_in_void): New variable.
18369 (glyph_to_pixel_coords): Don't use negative hpos.
18370 (x_y_to_hpos_vpos): Fix for partially visible first glyph.
18371 (append_stretch_glyph): Change ascent arg to be actual value
18372 in pixels rather than ratio to height. Callers changed.
18373 (calc_pixel_width_or_height): New aux function, implementing
18374 pixel based artihmetic for glyph widths and heights.
18375 (produce_stretch_glyph): Use calc_pixel_width_or_height for
18376 :width, :height, :align-to, and :ascent, thus allowing these to
18377 be specified in pixels as well as multiples of characters.
18378 Don't produce stretch glyphs with zero width or height.
18379 (get_specified_cursor_type): Declare static.
18380 (get_window_cursor_type): Declare static. Add glyph arg to be
18381 able to know when cursor is on an image; always substitute
18382 hollow-box cursor for filled-box cursor on images, to avoid
18383 negative images and flicker when blinking the cursor.
18384 (display_and_set_cursor): Pass glyph to get_window_cursor_type.
18385 (note_mode_line_or_margin_highlight): Use non-text cursor rather
18386 than vertical scroll-bar cursor in display margins.
18387 (note_mouse_highlight): Use non-text cursor rather than text
18388 cursor in fringes and over images in the text area.
18389 Use non-text cursor when mouse pointer is outside editable text,
18390 i.e. in the void after end-of-line or end-of-buffer; this was
18391 already done for W32, but is now standard for all systems --
18392 user can toggle show-text-cursor-in-void to get old behaviour.
18393 (syms_of_xdisp): DEFVAR_LISP Vshow_text_cursor_in_void and
18394 Vdisplay_pixels_per_inch.
18395
18396 2003-11-25 Andreas Schwab <schwab@suse.de>
18397
18398 * fns.c (internal_equal) <case Lisp_Vectorlike>: Declare size as
18399 EMACS_INT to not lose bits.
18400 (Ffillarray): Don't set bits beyond the size of a bool vector.
18401
18402 2003-11-25 Kim F. Storm <storm@cua.dk>
18403
18404 * print.c (Fredirect_debugging_output) [!GNU_LINUX]: Do not
18405 define this defun on systems that cannot use stderr as lvalue.
18406
18407 2003-11-24 Gerd Moellmann <gerd@gnu.org>
18408
18409 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS)
18410 [__FreeBSD_version >= 500042]: Define as -znocombreloc because
18411 ld's default is incompatible with unexec.
18412
18413 2003-11-23 Kim F. Storm <storm@cua.dk>
18414
18415 * window.c (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
18416 (window_loop): Handle REDISPLAY_BUFFER_WINDOWS.
18417 (Fforce_window_update): New defun.
18418 (syms_of_window): Defsubr it.
18419 (Fset_window_margins, Fset_window_fringes): Doc fix.
18420
18421 * print.c (Fredirect_debugging_output): New defun.
18422 (syms_of_print): Defsubr it.
18423
18424 2003-11-22 Luc Teirlinck <teirllm@auburn.edu>
18425
18426 * fns.c (Fset_char_table_parent): Doc fix.
18427
18428 2003-11-22 Kim F. Storm <storm@cua.dk>
18429
18430 * dispnew.c (buffer_posn_from_coords): Return actual row/column
18431 for glyph clicked on, rather than (unused) pixel positions.
18432 (mode_line_string, marginal_area_string): Change X and Y args to
18433 pointers for returning actual row/column for glyph clicked on.
18434 Simplify and optimize loops.
18435
18436 * dispextern.h (mode_line_string, marginal_area_string):
18437 Update prototypes.
18438
18439 * keyboard.c (make_lispy_position): New function for generating
18440 mouse click positions from frame and pixel coordinates.
18441 Enhanced to return buffer position and actual row/column for
18442 events outside the text area using updated mode_line_string and
18443 marginal_area_string functions.
18444 Return left-fringe and right-fringe clicks as such, rather than
18445 clicks in text area.
18446 (make_lispy_event) [USE_X_TOOLKIT, USE_GTK]: Don't call
18447 pixel_to_glyph_coords, as we never use the results.
18448 (make_lispy_event): Use make_lispy_position for MOUSE_CLICK_EVENT,
18449 WHEEL_EVENT, and DRAG_N_DROP_EVENT to replace redundant code.
18450 Eliminate unused code in WHEEL_EVENT handling.
18451 (make_lispy_movement): Use make_lispy_position.
18452
18453 * window.c (coordinates_in_window): Remove redundant tests.
18454 Fix returned X pixel value for left-margin.
18455
18456 * xdisp.c (note_mode_line_or_margin_highlight): Adapt to new
18457 mode_line_string and marginal_area_string parameters.
18458
18459 2003-11-22 Lars Hansen <larsh@math.ku.dk>
18460
18461 * w32.c (struct the_group, getgrgid): Add.
18462 * mac.c (struct my_group, getgrgid): Add.
18463
18464 2003-11-21 Luc Teirlinck <teirllm@auburn.edu>
18465
18466 * fns.c (Fassq, Fassoc, Frassq, Frassoc): Doc fixes.
18467
18468 2003-11-21 Lars Hansen <larsh@math.ku.dk>
18469
18470 * dired.c (Ffile_attributes): Add parameter ID-FORMAT and
18471 include in call to file name handler. Optionally translate numeric
18472 UID and GID to strings. Update docstring.
18473 (directory_files_internal): Add parameter ID-FORMAT.
18474 (Fdirectory_files_and_attributes): Add parameter ID-FORMAT and
18475 include in call to file name handler and call to
18476 directory_files_internal. Update Docstring.
18477 (Fdirectory_files): Add dummy parameter in call to
18478 directory_files_internal.
18479 * lisp.h (Qinteger): Add.
18480 (Qinteger_or_floatp, Qinteger_or_float_or_marker_p): Remove.
18481 (Ffile_attributes): Add parameter.
18482 * data.c (Qinteger): Export.
18483
18484 2003-11-21 Luc Teirlinck <teirllm@auburn.edu>
18485
18486 * fns.c (Freverse, Fnreverse): Doc fixes.
18487
18488 2003-11-19 Kim F. Storm <storm@cua.dk>
18489
18490 * xdisp.c (init_iterator): Initialize it->start to position
18491 before reseating (in case start position is invisible).
18492 (init_to_row_start): Set it->start to row-start.
18493 (redisplay_window): Accept optional_new_start if start position
18494 is invisible (in which case IT_CHARPOS overshoots PT).
18495 (display_line): Setup row->start from it->start (rather than
18496 it->current which is wrong if first char on line is invisible).
18497 When done, reseat it->start to it->current (= start of next row).
18498 (expose_area): Fix exposure of text area when first char (e.g. TAB)
18499 is only partially visible.
18500
18501 * dispextern.h (struct it): New member start.
18502
18503 2003-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
18504
18505 * alloc.c (make_float, Fcons): Clear the markbit at init time.
18506 (make_float, Fcons, Fmake_symbol, allocate_misc): Move the increment
18507 of block_index outside of the macro call.
18508 (Fgarbage_collect): Remove null code.
18509
18510 * m/amdx86-64.h: Don't redefine XPNTR.
18511
18512 * keyboard.c (parse_modifiers, apply_modifiers): Use INTMASK instead
18513 of VALMASK.
18514
18515 * fns.c (hashfn_eq, hashfn_eql, hashfn_equal, hash_put)
18516 (sxhash_string, sxhash): Use INTMASK instead of VALMASK.
18517 (maybe_resize_hash_table): Use MOST_POSITIVE_FIXNUM.
18518
18519 * lisp.h (VALMASK): Only define for non-union type.
18520 (MARKBIT): Remove.
18521 (ARRAY_MARK_FLAG): Use previous value of MARKBIT.
18522 (XTYPE): Define unconditionally.
18523 (XSETTYPE): Remove one more remnant.
18524 (EQ): Define differently for the union and non-union cases.
18525 (INTMASK): New bit mask.
18526 (struct Lisp_Marker): Move down to prepare for upcoming patch.
18527 (GC_EQ): Delegate to EQ.
18528
18529 * coding.c (coding_restore_composition): Lisp_Object/int mixup.
18530
18531 2003-11-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18532
18533 * xterm.c (x_window_to_scroll_bar): Move check of display to
18534 where window_id is compared.
18535
18536 2003-11-17 Kim F. Storm <storm@cua.dk>
18537
18538 * dispextern.h (struct it): New member first_vpos.
18539
18540 * xdisp.c (start_display): Set it->first_vpos.
18541 (try_window_id): Use first_vpos to start display in first _text_
18542 line if no reusable lines at start of window with header line.
18543
18544 2003-11-16 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18545
18546 * w32fns.c (XPutPixel):
18547 * w32bdf.c (w32_init_bdf_font):
18548 * sunfns.c (sel_read):
18549 * process.c (Fmake_network_process):
18550 * frame.c (store_frame_param):
18551 * fontset.c (Fset_fontset_font):
18552 * emacs.c (shut_down_emacs):
18553 * ccl.c (ccl_driver): Remove period at end of error message.
18554
18555 * config.in: Regenerate.
18556
18557 * xfns.c (x_window_to_frame, x_any_window_to_frame)
18558 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
18559 (x_top_window_to_frame): Add Display* argument to xg_win_to_widget.
18560 (x_create_bitmap_mask, xg_set_icon, create_frame_xic)
18561 (xic_set_statusarea, x_window, gif_load): Formatting adjustments.
18562
18563 * xterm.h (struct x_display_info): New field xg_cursor for GTK.
18564
18565 * xterm.c: Add Display * to x_window_to_scroll_bar declaration.
18566 (XTmouse_position, handle_one_xevent): Pass Display* to
18567 x_window_to_scroll_bar.
18568 (x_window_to_scroll_bar): Take a Display* argument.
18569 Check that display for frame is equal to Display* argument.
18570 (event_handler_gdk): Remove current_dpyinfo. Get dpyinfo from
18571 x_display_info_for_display instead. Use Display in xev instead
18572 of GDK_DISPLAY.
18573 (x_dispatch_event): Call x_display_info_for_display.
18574 (XTread_socket): Move GTK part out of loop. current_dpyinfo removed.
18575 (x_connection_closed): Call xg_display_close for GTK.
18576 (x_term_init): Call xg_display_open for additional displays.
18577 Initiate dpyinfo->xg_cursor with call to xg_create_default_cursor
18578 for GTK.
18579
18580 * xmenu.c (single_menu_item, mouse_position_for_popup)
18581 (x_activate_menubar): Formatting adjustments.
18582
18583 * xdisp.c (update_tool_bar, redisplay_tool_bar): Formatting
18584 adjustments.
18585
18586 * gtkutil.c (xg_get_gdk_display, xg_set_screen, xg_display_open)
18587 (xg_display_close, xg_create_default_cursor)
18588 (xg_get_gdk_pixmap_and_mask): New functions for multiple display
18589 handling.
18590 (xg_left_ptr_cursor): Remove.
18591 (xg_set_cursor): Change cursor to GdkCursor*. Do not create
18592 cursor here.
18593 (xg_win_to_widget): Take Display* argument, call
18594 gdk_xid_table_lookup_for_display.
18595 (xg_create_frame_widgets, xg_get_file_name, create_menus)
18596 (xg_create_widget, xg_modify_menubar_widgets): Call xg_set_screen.
18597 (xg_create_widget, xg_create_scroll_bar): Use xg_cursor
18598 in FRAME_X_DISPLAY_INFO.
18599 (xg_get_scroll_id_for_window): Take Display* argument.
18600 (update_frame_tool_bar): Call xg_get_gdk_pixmap_and_mask.
18601 (xg_initialize): Remove xg_left_ptr_cursor.
18602
18603 * gtkutil.h (xg_get_scroll_id_for_window, xg_win_to_widget): Add
18604 Display* argument.
18605 (xg_display_open, xg_display_close, xg_create_default_cursor): Declare.
18606
18607 2003-11-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18608
18609 * xterm.c (x_detect_focus_change): Do not change focus frame for
18610 Enter/LeaveNotify if the current focus frame has explicit focus.
18611
18612 2003-11-14 Kim F. Storm <storm@cua.dk>
18613
18614 * dispnew.c (update_text_area): Fix redisplay error when hscroll
18615 is active and first glyph is only partially visible.
18616
18617 2003-11-13 Kenichi Handa <handa@m17n.org>
18618
18619 * xdisp.c (select_frame_for_redisplay): New function.
18620 (redisplay_internal): Record also selected_frame for
18621 unwind_redisplay. Call select_frame_for_redisplay before
18622 redrawing each frame.
18623 (unwind_redisplay): Argument changed to a cons.
18624
18625 2003-11-12 Luc Teirlinck <teirllm@auburn.edu>
18626
18627 * fns.c (Fstring_to_multibyte): Doc fix.
18628
18629 2003-11-11 Kenichi Handa <handa@m17n.org>
18630
18631 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
18632
18633 2003-11-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18634
18635 * xfns.c (x_window): Set XtNx and XtNy in shell widget for
18636 program specified positions.
18637
18638 2003-11-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18639
18640 * xterm.c (XAW_ARROW_SCROLLBARS): Define it for Xaw 1.5E.
18641
18642 2003-11-08 Kenichi Handa <handa@m17n.org>
18643
18644 * Makefile.in (lisp): Add kannada.el.
18645 (shortlisp): Likewise.
18646
18647 2003-11-07 Kenichi Handa <handa@m17n.org>
18648
18649 * coding.c (coding_allocate_composition_data):
18650 Reset coding->composing to COMPOSITION_NO.
18651 (coding_restore_composition): Detect invalid composition data.
18652 Give Fstring and Fvector a Lispy integer, not C int.
18653
18654 2003-11-05 Stefan Monnier <monnier@iro.umontreal.ca>
18655
18656 * floatfns.c (Flogb): Don't use VALMASK.
18657
18658 * m/amdx86-64.h (VALBITS, XINT, XUINT): Remove.
18659 * m/ia64.h (VALBITS, XINT, XUINT): Remove.
18660
18661 * lisp.h (XINT): Move the cast to clarify what is going on.
18662 (GCTYPEMASK, XSETTYPE): Remove.
18663 (XGCTYPE): Make it an alias of XTYPE.
18664
18665 2003-11-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18666
18667 * xterm.c (x_term_init): Fix formatting.
18668
18669 2003-11-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18670
18671 * gtkutil.h (xg_have_tear_offs): Declare.
18672 (xg_keep_popup, xg_did_tearoff): Remove.
18673
18674 * gtkutil.c: Remove variable xg_did_tearoff.
18675 (xg_have_tear_offs): New function.
18676 (tearoff_remove): Just decrease xg_detached_menus.
18677 (tearoff_activate): Increase xg_detached_menus and call
18678 tearoff_remove when tearoff is removed.
18679 (xg_keep_popup): Remove function.
18680 (create_menus): Give add_tearoff_p as argument to recursive
18681 call to create_menus.
18682 (xg_create_widget): Use variables instead of multiple
18683 strcmp. Tell create_menus to create tear off only for
18684 menu bar menus.
18685 (xg_update_menubar): Change title for a detached menu also.
18686 (xg_modify_menubar_widgets): Always call xg_update_menubar, regardless
18687 of deep_p.
18688 (xg_initialize): Initialize xg_detached_menus, remove
18689 initialization of xg_did_tearoff.
18690
18691 * xmenu.c (set_frame_menubar): For GTK, set deep_p if
18692 xg_have_tear_offs returns non-zero.
18693 (create_and_show_popup_menu): Remove setting of xg_did_tearoff and
18694 call to xg_keep_popup.
18695
18696 2003-11-01 Andrew Choi <akochoi@shaw.ca>
18697
18698 * macterm.c (XTread_socket): Handle menubar selection and grow
18699 window only for mouseDown events.
18700
18701 2003-10-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18702
18703 * xterm.c (x_term_init): For GTK part, increase x_initialized
18704 to check for more than one display. Use error instead of return 0.
18705
18706 2003-10-31 Andrew Choi <akochoi@shaw.ca>
18707
18708 * unexmacosx.c (unrelocate): New function (contributed by Nozomu Ando).
18709 (copy_dysymtab): Call it.
18710
18711 2003-10-31 Luc Teirlinck <teirllm@auburn.edu>
18712
18713 * eval.c (Fdefvaralias): Doc fix.
18714
18715 2003-10-26 Luc Teirlinck <teirllm@auburn.edu>
18716
18717 * data.c (Fsetplist): Doc fix.
18718
18719 2003-10-14 Lute Kamstra <lute@gnu.org>
18720
18721 * window.c (Fset_window_fringes): Clarify docstring.
18722
18723 2003-10-14 Kim F. Storm <storm@cua.dk>
18724
18725 * window.c (Fset_window_margins): Simplify arg checking.
18726
18727 2003-10-13 Richard M. Stallman <rms@gnu.org>
18728
18729 * regex.c (MAX_BUF_SIZE): Reduce to 2**15.
18730 (print_partial_compiled_pattern): Replace assert with a printout.
18731 (skip_noops, mutually_exclusive_p): Change args, values to re_char *.
18732
18733 * alloc.c (lisp_align_malloc): If BASE is 0, call memory_full.
18734
18735 * window.c (Fset_window_margins): Allow only integers as args.
18736 (syms_of_window) <special-display-buffer-names,
18737 special-display-regexps>: Doc fixes.
18738
18739 2003-10-13 Lute Kamstra <lute@gnu.org>
18740
18741 * window.c (Fset_window_fringes): Elaborate docstring.
18742
18743 2003-10-12 Andrew Choi <akochoi@shaw.ca>
18744
18745 * macterm.c (XTread_socket): Call DragWindow only for mouseDown events.
18746
18747 * s/darwin.h (GC_MARK_STACK): Define.
18748
18749 2003-10-12 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18750
18751 * window.c (shrink_windows): New function.
18752 (size_window): Call shrink_windows to calculate window sizes when
18753 shrinking frame with more than one window.
18754
18755 2003-10-12 Kim F. Storm <storm@cua.dk>
18756
18757 * xdisp.c (compute_fringe_widths): Doc fix.
18758
18759 2003-10-08 Kenichi Handa <handa@m17n.org>
18760
18761 * coding.c (Fcoding_system_p): Return t for auto-loading coding system.
18762
18763 2003-10-07 Kenichi Handa <handa@m17n.org>
18764
18765 * coding.c (Qcoding_system_define_form): New variable.
18766 (syms_of_coding): Intern and staticpro it.
18767 (Fcheck_coding_system): Try to autoload the definition of
18768 CODING-SYSTEM.
18769
18770 2003-10-05 Luc Teirlinck <teirllm@auburn.edu>
18771
18772 * fns.c (Frequire): Doc fix.
18773
18774 2003-10-05 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18775
18776 * xfns.c (Fx_send_client_event): New function as a base for
18777 manipulating extended window manager hints.
18778 (Fx_send_client_event): Remove unused variable s.
18779
18780 * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,
18781 that function is removed.
18782
18783 * xterm.c (x_set_offset): Use move_offset_left/top instead of
18784 x/y_pixels_outer_diff.
18785 (x_check_expected_move): Calculate move_offset_left/top.
18786
18787 * xterm.h (struct x_output): New members: move_offset_top/left.
18788
18789 * frame.c (x_set_frame_parameters): Remove x_fullscreen_move,
18790 call x_set_offset directly.
18791
18792 * frame.h (enum): FULLSCREEN_MOVE_WAIT removed.
18793
18794 * frame.c (Fdelete_frame): Free decode_mode_spec_buffer.
18795
18796 * xterm.c (x_delete_display): Free font names and font_encoder
18797 in dpyinfo->font_table.
18798
18799 * xfns.c (Fx_close_connection): Only call XFreeFont here.
18800 Move xfree of font names to x_delete_display.
18801
18802 * xterm.h (struct x_display_info): New member, wm_type.
18803 (struct x_output): New members, expected_top/left and
18804 check_expected_move.
18805
18806 * xterm.c (handle_one_xevent): Reset wm_type when ReparentNotify
18807 is received.
18808 (handle_one_xevent): Rename x_check_expected_move from
18809 x_check_fullscreen_move.
18810 (x_set_offset): Only add WM decoration sizes to modified_top/left
18811 for X_WMTYPE_A. Set check_expected_move when WM type is unknown.
18812 (x_check_expected_move): Rename from x_check_fullscreen_move.
18813 Removed fullscreen specific code. Use check_expected_move,
18814 expected_left/top instead. Also, set wm_type.
18815 (x_term_init): Initialize wm_type to unknown.
18816
18817 * frame.c (x_fullscreen_move): Remove addition of WM decoration
18818 sizes to move_x/y.
18819
18820 2003-10-03 Kenichi Handa <handa@m17n.org>
18821
18822 * macterm.c (x_load_font): Clear all members of FONTP before start
18823 filling them.
18824
18825 2003-10-02 Kenichi Handa <handa@m17n.org>
18826
18827 * fontset.c (fs_load_font): Don't set fontp->font_encoder to NULL
18828 before calling find_ccl_program_func. Call find_ccl_program_func
18829 only when fontp->font_encoder is not NULL.
18830
18831 * xterm.c (x_load_font): Clear all members of FONTP before start
18832 filling them.
18833
18834 2003-10-03 John Paul Wallington <jpw@gnu.org>
18835
18836 * keymap.c (map_keymap): Don't abort when binding is a vector.
18837
18838 2003-10-02 Jason Rumney <jasonr@gnu.org>
18839
18840 * makefile.w32-in (emacs.o, coding.o, bytecode.o):
18841 Sync dependencies with Makefile.in.
18842 (alloca.o): Remove.
18843
18844 * w32fns.c (w32_load_system_font): Clear all members of FONTP before
18845 filling them.
18846
18847 * w32bdf.c (w32_load_bdf_font): Likewise.
18848
18849 2003-09-30 Richard M. Stallman <rms@gnu.org>
18850
18851 * term.c (set_tty_color_mode): Calculate current_mode_spec
18852 regardless of value of VAL.
18853
18854 * intervals.c (graft_intervals_into_buffer):
18855 Set BUF_INTERVALS (buffer)->up_obj when appropriate.
18856 Handle over_used when splitting UNDER.
18857
18858 2003-09-30 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18859
18860 * regex.c (regex_compile): Free the stack when returning from function.
18861
18862 2003-09-28 Kenichi Handa <handa@m17n.org>
18863
18864 * fontset.c (Finternal_char_font): Change return value to
18865 cons (FONT-NAME . GLYPH-CODE).
18866
18867 2003-09-28 Eli Zaretskii <eliz@gnu.org>
18868
18869 * term.c (tty_setup_colors): Treat any negative argument as -1.
18870
18871 2003-09-27 Gaute B Strokkenes <biggaute@uwc.net> (tiny change)
18872
18873 * process.c (send_process): Delete unused temp_buf.
18874
18875 2003-09-26 Dave Love <fx@gnu.org>
18876
18877 * xterm.c (x_bitmap_mask): Declare.
18878
18879 2003-09-25 Dave Love <fx@gnu.org>
18880
18881 * Makefile.in (fns.o): Depend on md5.h.
18882
18883 2003-09-25 Kim F. Storm <storm@cua.dk>
18884
18885 * window.c (set_window_buffer): Fix redisplay problems when
18886 switching between buffers with different display margin widths.
18887
18888 2003-09-23 Kim F. Storm <storm@cua.dk>
18889
18890 * process.c (set_socket_option): Fix :bindtodevice option.
18891 (Fset_network_process_option): Update process contact list when
18892 setting option succeeds.
18893 (Fmake_network_process): Doc fix.
18894
18895 2003-09-23 Dave Love <fx@gnu.org>
18896
18897 * process.c (Fnetwork_interface_info): Use HAVE_STRUCT_IFREQ... macros.
18898
18899 2003-09-22 Eli Zaretskii <eliz@gnu.org>
18900
18901 * term.c (set_tty_color_mode): Use INTEGERP to test whether a
18902 color mode is an integer number (it could be -1).
18903
18904 2003-09-22 Richard M. Stallman <rms@gnu.org>
18905
18906 * intervals.c (graft_intervals_into_buffer): Correct the main loop
18907 in the case where OVER is longer than UNDER.
18908
18909 2003-09-22 Masatake YAMATO <jet@gyve.org>
18910
18911 * window.c (Fset_window_scroll_bars): Validate the value of
18912 `vertical_type'.
18913
18914 2003-09-21 Kim F. Storm <storm@cua.dk>
18915
18916 * frame.c (Vdefault_frame_scroll_bars): New variable.
18917 (x_set_vertical_scroll_bars): Use it instead of hardcoded values.
18918 (syms_of_frame): DEFVAR_LISP it, and initialize according to
18919 window-system default scroll bar position.
18920
18921 * window.c (Fwindow_scroll_bars): Doc fix.
18922
18923 2003-09-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
18924
18925 * xterm.c (x_set_offset): Take window manager decorations into account.
18926
18927 2003-09-19 Richard M. Stallman <rms@gnu.org>
18928
18929 * atimer.h: Don't include lisp.h.
18930 (P_): Define it here (as well as elsewhere).
18931
18932 * print.c (Fprin1_to_string): Move the PRINTPREPARE
18933 later, so that PRINTFINISH won't unbind Qinhibit_modification_hooks.
18934
18935 * data.c (Fvariable_binding_locus): New function.
18936 (syms_of_data): defsubr it.
18937 (Flocal_variable_p): Delete duplicate call to indirect_variable.
18938
18939 2003-09-18 Dave Love <fx@gnu.org>
18940
18941 * alloc.c (GC_MALLOC_CHECK): Move conditional undef after lisp.h.
18942
18943 * process.c (Fnetwork_interface_info): Fix type error.
18944 (Fnetwork_interface_list): Doc fix.
18945 (read_process_output, read_process_output): Delete unused var.
18946
18947 2003-09-17 Kim F. Storm <storm@cua.dk>
18948
18949 * process.c (Fnetwork_interface_list, Fnetwork_interface_info):
18950 Require HAVE_NET_IF_H and HAVE_SYS_IOCTL_H to include these fns.
18951 (Fnetwork_interface_info): Check that ifreq struct has required
18952 fields before accessing them; this requires that those fields are
18953 defined as macros, which may be too restrictive on some platforms,
18954 but it is better than failing on other platforms.
18955 (syms_of_process): Only defsubr above fns when included.
18956
18957 2003-09-17 Dave Love <fx@gnu.org>
18958
18959 * unexalpha.c: Don't include varargs.h.
18960
18961 2003-09-17 Kim F. Storm <storm@cua.dk>
18962
18963 * process.c (Fset_process_sentinel): Add sentinel to childp plist
18964 for network process.
18965 (socket_options): Add `:' prefix to option names. Add optbit field.
18966 (set_socket_option): Remove no_error arg and special handling of s < 0.
18967 Return 1<<optbit for known option, 0 for unknown.
18968 Do not interpret 0 as false for boolean option (only nil).
18969 Pass failed option and value to report_file_error.
18970 (Fset_network_process_options): Replace by Fset_network_process_option.
18971 (Fset_network_process_option): New function to set just one option.
18972 (Fmake_network_process): Allow :coding arg to be a cons.
18973 Allow :server arg to be an integer specifying backlog size.
18974 Remove :options arg, and allow options to be specified directly
18975 as :KEY, VALUE pairs. Parse these options before binding socket.
18976 As before, :reuseaddr t is default for a server process, but this
18977 can now be disabled by specifying :reuseaddr nil.
18978 (Fnetwork_interface_info): Rename from Fget_network_interface_info.
18979 (init_process): Availability of network options is now checked with
18980 simpler syntax (featurep 'make-network-process :OPTION); use loop to
18981 setup features.
18982 (syms_of_process): Fix defsubr's for the replaced functions.
18983
18984 2003-09-16 Dave Love <fx@gnu.org>
18985
18986 * Makefile.in: Depend on coding.h.
18987
18988 2003-09-14 Kim F. Storm <storm@cua.dk>
18989
18990 * process.c [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
18991 (Fnetwork_interface_list, Fget_network_interface_info): New defuns.
18992 (syms_of_process): Defsubr them.
18993
18994 * config.in: Regenerate.
18995
18996 2003-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
18997
18998 * m/sr2k.h (XMARKBIT, XUNMARK): Remove.
18999 * m/news-r6.h (XUNMARK): Remove.
19000 * m/mips.h (XUNMARK): Remove.
19001 * m/mips-siemens.h (XUNMARK): Remove.
19002 * m/iris4d.h (XUNMARK): Remove.
19003 * m/hp800.h (XMARKBIT, XUNMARK): Remove.
19004
19005 2003-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
19006
19007 * lisp.h (VALBITS): Don't remove 1 for the markbit.
19008 (union Lisp_Object): Use unsigned int for types. Remove markbit.
19009 (MARKBIT): Remove 1 from VALBITS so we still use same old val.
19010 (XTYPE): Use unsigned right-shift.
19011 (XMARKBIT, XMARK, XUNMARK): Remove.
19012
19013 * alloc.c (init_intervals, init_symbol, init_marker):
19014 Don't preallocate anything.
19015 (Fgarbage_collect, mark_object): Ignore the markbit.
19016
19017 * bytecode.c (mark_byte_stack, unmark_byte_stack): Ignore the markbit.
19018
19019 2003-09-08 Lute Kamstra <lute@gnu.org>
19020
19021 * xdisp.c (pint2hrstr): New function.
19022 (decode_mode_spec): Add `%i' and `%I' specs.
19023 * buffer.c (syms_of_buffer): Document `%i' and `%I' constructs
19024 for `mode-line-format'.
19025
19026 2003-09-07 Andreas Schwab <schwab@suse.de>
19027
19028 * alloc.c: Use long instead of int when casting ABLOCKS_BUSY to
19029 avoid warning.
19030
19031 2003-09-07 Eli Zaretskii <eliz@gnu.org>
19032
19033 * editfns.c (region_limit): Support any non-zero value of BEGINNINGP.
19034
19035 2003-09-03 Kim F. Storm <storm@cua.dk>
19036
19037 * xdisp.c (get_window_cursor_type): Partially undo 2002-03-01
19038 change (superseded by 2002-08-30 change); the default blink-off
19039 cursor is now again "no cursor".
19040
19041 2003-09-01 Jason Rumney <jasonr@gnu.org>
19042
19043 * makefile.w32-in (alloca.o): Remove.
19044 (coding.o): Depend on intervals.h
19045 (emacs.o, bytecode.o): Depend on window.h.
19046
19047 2003-09-01 Dave Love <fx@gnu.org>
19048
19049 * Makefile.in (alloca.o): Remove commands.
19050 (coding.o): Depend on intervals.h composite.h window.h.
19051 (emacs.o): Depend on window.h keyboard.h keymap.h.
19052 (gtkutil.o): Depend on keyboard.h charset.h coding.h.
19053 (bytecode.o): Depend on window.h.
19054
19055 2003-08-31 Jason Rumney <jasonr@gnu.org>
19056
19057 * w32term.c (w32_per_char_metric): Allow cached metrics to be
19058 returned even when font_type is unknown.
19059
19060 * xdisp.c (init_iterator): Remove old WINDOWSNT conditional.
19061
19062 2003-08-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
19063
19064 * xterm.c (x_term_init): Initialize new fields in x_display_info.
19065
19066 * xterm.h (struct x_display_info): Add red/green/blue_bits and
19067 *_offset.
19068
19069 * xfns.c (lookup_rgb_color): Use new fields in x_display_info to
19070 calculate pixel value.
19071
19072 2003-08-29 Gerd Moellmann <gerd.moellmann@t-online.de>
19073
19074 * xdisp.c (redisplay_internal): Fix change of 2003-04-30.
19075 Don't tell redisplay display is accurate when it's actually been
19076 paused for pending input.
19077
19078 2003-08-29 Richard M. Stallman <rms@gnu.org>
19079
19080 * dispnew.c (adjust_glyph_matrix): Call window_box
19081 whenever W is nonzero.
19082
19083 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
19084 (Fkill_local_variable, Fmake_variable_frame_local)
19085 (Flocal_variable_p, Flocal_variable_if_set_p):
19086 Use indirect_variable to trace thru variable aliases.
19087
19088 * config.in: Updated.
19089
19090 * callint.c (Fcall_interactively): Save and restore
19091 Vthis_command, Vthis_original_command, real_this_command,
19092 and current_kboard->Vlast_command.
19093
19094 * abbrev.c (Fexpand_abbrev): Insert before deleting.
19095
19096 2003-08-29 Gerd Moellmann <gerd@gnu.org>
19097
19098 * xfns.c (lookup_rgb_color): Handle TrueColor visuals specially.
19099
19100 2003-08-28 David Abrahams <dave@boost-consulting.com> (tiny change)
19101
19102 * coding.c (decode_coding_iso2022): Initialize local variable c2.
19103 (decode_coding_sjis_big5): Likewise.
19104
19105 2003-08-27 Jason Rumney <jasonr@gnu.org>
19106
19107 * w32.c (sys_pipe): Protect against file descriptor overflow.
19108
19109 * w32fns.c (syms_of_w32fns): Remove non-existent functions.
19110
19111 * w32term.c (w32_read_socket): Fix WM_MOUSEWHEEL assignment.
19112
19113 2003-08-26 Terje Rosten <terjeros@phys.ntnu.no>
19114
19115 * xfns.c (Vgtk_version_string): New variable.
19116 (syms_of_xfns): DEFVAR_LISP it. Provide gtk.
19117
19118 2003-08-24 Eli Zaretskii <eliz@gnu.org>
19119
19120 * term.c (term_init): Remove `const' from buffer_size's declaration.
19121
19122 * Makefile.in (msdos.o): Depend on intervals.h.
19123
19124 * msdos.c: Include intervals.h, since STRING_INTERVALS requires that.
19125
19126 2003-08-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
19127
19128 * xterm.h (struct x_display_info): New fields: client_leader_window
19129 and Xatom_wm_client_leader.
19130
19131 * xterm.c (x_initialize): Move call to x_session_initialize to ...
19132 (x_term_init): ... here. Initialize client_leader fields in dpyinfo.
19133
19134 * xsmfns.c (create_client_leader_window): New function.
19135 (x_session_initialize): Call create_client_leader_window, take
19136 dpyinfo as argument.
19137
19138 * xfns.c (Fx_create_frame): Set property WM_CLIENT_LEADER.
19139
19140 * Makefile.in (xsmfns.o): Add more depenedencies.
19141
19142 2003-08-21 Dave Love <fx@gnu.org>
19143
19144 * m/iris4d.h: Use _MIPS_SZLONG, not _LP64.
19145
19146 2003-08-21 Kenichi Handa <handa@m17n.org>
19147
19148 * term.c (term_init): Fix previous change; don't rely on the
19149 length of `buffer' if TERMINFO is defined.
19150
19151 2003-08-20 Dave Love <fx@gnu.org>
19152
19153 * atimer.h: Include lisp.h.
19154
19155 * lisp.h (EMACS_LISP_H): New.
19156 (popup_activated_flag): Don't declare.
19157
19158 * alloca.c: Some merging with gnulib. Change logic and doc
19159 concerning (x)malloc/(x)free -- no longer Emacs-specific.
19160 [DO_BLOCK_INPUT]: Don't include lisp.h.
19161 (xmalloc, xfree): Declare.
19162 (malloc): Don't declare.
19163
19164 * Makefile.in (LWLIB_OPTIONS): Remove (unused).
19165 (alloca.o): Remove obsolete stuff concerning alloca.s. Depend on
19166 atimer.h, blockinput.h.
19167
19168 * alloc.c (lisp_align_malloc): Change type of `aligned'.
19169
19170 * alloca.s: Remove.
19171
19172 2003-08-19 Gerd Moellmann <gerd@gnu.org>
19173
19174 * s/freebsd.h [__FreeBSD_version >= 400000]: Define TERMINFO,
19175 use -lncurses.
19176
19177 * term.c (term_init): Use a buffer of size 4096 for tgetent since
19178 FreeBSD returns something longer than 2044. Abort if the end of
19179 the buffer is overwritten.
19180
19181 2003-08-19 Miles Bader <miles@gnu.org>
19182
19183 * xterm.c (x_term_init): Correctly use result of Ffile_readable_p.
19184
19185 2003-08-19 Gerd Moellmann <gerd@gnu.org>
19186
19187 * alloc.c (lisp_align_malloc): Check for memory full when
19188 allocating ablocks, which also avoids freeing a pointer into an
19189 ablocks structure.
19190
19191 * puresize.h (BASE_PURESIZE): Increase to 1100000.
19192
19193 * buffer.c (Fmove_overlay): Set overlay's next pointer unconditionally.
19194
19195 2003-08-16 Richard M. Stallman <rms@gnu.org>
19196
19197 * editfns.c (Fencode_time): Doc fix.
19198
19199 2003-08-16 David Ponce <david@dponce.com>
19200
19201 * fileio.c (Fwrite_region): Fix conditional expression to issue
19202 the right message.
19203
19204 2003-08-16 Juri Linkov <juri@jurta.org>
19205
19206 * syntax.c (Fforward_word): Argument changed to optional.
19207 Set default value to 1.
19208
19209 2003-08-15 Kenichi Handa <handa@m17n.org>
19210
19211 * xfaces.c (better_font_p): Prefer a real scalable font; i.e. not
19212 what autoscaled.
19213 (best_matching_font): Once we find a better scalable font, set
19214 non_scalable_has_exact_height_p to 1.
19215 (try_font_list): Call try_alternative_families to try any family
19216 with the given registry.
19217
19218 2003-08-09 Andreas Schwab <schwab@suse.de>
19219
19220 * alloc.c (mark_object): Handle Lisp_Misc_Save_Value.
19221
19222 * print.c (print_string): Fix printing of multibyte string with
19223 nontrivial printcharfun.
19224
19225 2003-07-31 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
19226
19227 * xfns.c (xg_set_icon): Rewrite to compile with GTK 2.0 and 2.2.
19228
19229 * xterm.c (x_bitmap_icon): Return if xg_set_icon succeeds.
19230
19231 2003-07-31 Kenichi Handa <handa@m17n.org>
19232
19233 * process.c (read_process_output): Return the actually read bytes
19234 instead of the result of decoding.
19235
19236 2003-07-31 Kenichi Handa <handa@m17n.org>
19237
19238 * xterm.h (struct x_bitmap_record): New member have_mask.
19239
19240 * xfns.c (x_create_bitmap_from_data): Initialize have_mask member
19241 to 0.
19242 (x_create_bitmap_from_file): Likewise.
19243 (x_destroy_bitmap): Check have_mask member before freeing a mask.
19244 (x_destroy_all_bitmaps): Likewise.
19245 (x_create_bitmap_mask): Set have_mask member to 1.
19246
19247 2003-07-30 Richard M. Stallman <rms@gnu.org>
19248
19249 * Makefile.in (CFLAGS) [!OPTIMIZE]: Undo previous change.
19250
19251 2003-07-29 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
19252
19253 * gtkutil.c (xg_mark_data): Update calls to mark_object.
19254
19255 2003-07-29 Richard M. Stallman <rms@gnu.org>
19256
19257 * xterm.c (xim_open_dpy, xim_initialize, xim_close_dpy):
19258 Conditionalize XIM code on HAVE_XIM.
19259
19260 * fns.c (Fclear_string): New function.
19261 (syms_of_fns): defsubr it.
19262
19263 2003-07-28 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
19264
19265 * xfns.c (xic_set_preeditarea): Add the left fringe width to spot.x.
19266
19267 2003-07-22 Stefan Monnier <monnier@cs.yale.edu>
19268
19269 * xfns.c: Don't check HAVE_PNG_H: autoconf doesn't seem to find it.
19270
19271 * buffer.c (delete_all_overlays): New function.
19272 * buffer.h (delete_all_overlays): Declare.
19273 * coding.c (run_pre_post_conversion_on_str):
19274 * print.c (temp_output_buffer_setup):
19275 * fileio.c (Finsert_file_contents):
19276 * minibuf.c (get_minibuffer): Use it.
19277
19278 2003-07-22 Andrew Choi <akochoi@shaw.ca>
19279
19280 * unexmacosx.c (unexec_regions_sort_compare):
19281 (unexec_regions_merge): New functions. Sort and merge unexec
19282 regions before dumping them.
19283
19284 2003-07-22 Dave Love <fx@gnu.org>
19285
19286 * xfns.c [HAVE_PNG]: Consider both png.h and libpng/png.h.
19287
19288 2003-07-21 Stefan Monnier <monnier@cs.yale.edu>
19289
19290 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P)
19291 (GC_STRING_CHARS, string_bytes): Use ARRAY_MARK_FLAG rather than
19292 MARKBIT as the gcmarkbit for strings.
19293
19294 2003-07-21 Richard M. Stallman <rms@gnu.org>
19295
19296 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Add undef.
19297
19298 * fns.c (Flocale_info): Rename from Flanginfo. Doc fixes.
19299 (syms_of_fns): Corresponding change.
19300
19301 * alloc.c (syms_of_alloc): Doc fixes.
19302
19303 2003-07-20 Han Boetes <han@mijncomputer.nl> (tiny change)
19304
19305 * s/netbsd.h: Use -Wl syntax.
19306
19307 2003-07-17 Richard M. Stallman <rms@gnu.org>
19308
19309 * xterm.c (xim_initialize): Redo 6/24 change.
19310
19311 2003-07-15 Stefan Monnier <monnier@cs.yale.edu>
19312
19313 * buffer.c (copy_overlays): Use EMACS_INT for positions.
19314 (Fswitch_to_buffer): Don't signal an error when switching to the same
19315 buffer in a dedicated window.
19316
19317 * alloc.c: Use bitmaps for cons, as was done for floats.
19318 (init_float, init_cons): Let the normal code allocate the first block.
19319 (CONS_BLOCK_SIZE): Redefine based on BLOCK_BYTES and bitmap size.
19320 (CONS_BLOCK, CONS_INDEX, CONS_MARKED_P, CONS_MARK, CONS_UNMARK):
19321 New macros.
19322 (struct cons_block): Move conses to the beginning. Add gcmarkbits.
19323 (Fcons): Use lisp_align_malloc and CONS_UNMARK.
19324 (live_cons_p): Check the pointer is not past the `conses' array.
19325 (mark_maybe_object, mark_maybe_pointer): Use CONS_MARKED_P.
19326 (mark_object, mark_buffer): Use CONS_MARKED_P and CONS_MARK.
19327 (survives_gc_p): Use CONS_MARKED_P and simplify.
19328 (gc_sweep): Use CONS_MARKED_P, CONS_UNMARK, and lisp_align_free.
19329
19330 2003-07-13 Paul Eggert <eggert@twinsun.com>
19331
19332 GCC 3.3 (sparc) no longer puts "int foo = 0;" into data; it
19333 puts it into BSS instead, at least on Solaris 8 and 9.
19334 This is a valid optimization, and it may occur on other platforms,
19335 so Emacs should not assume that initializing a static variable to
19336 zero puts it into data.
19337 * alloc.c (pure, staticvec):
19338 Initialize these arrays to nonzero, so that they're not
19339 put into BSS by that optimization.
19340
19341 2003-07-13 Stefan Monnier <monnier@cs.yale.edu>
19342
19343 * alloc.c (BLOCK_PADDING): Rename from ABLOCKS_PADDING. Update users.
19344 (lisp_align_malloc): Use posix_memalign is available.
19345 (ABLOCKS_BASE): Use HAVE_POSIX_MEMALIGN as an optimization.
19346 (STRING_BLOCK_SIZE): Rename from STRINGS_IN_STRING_BLOCK
19347 for consistency. Update users.
19348
19349 2003-07-13 Richard M. Stallman <rms@gnu.org>
19350
19351 * s/netbsd.h (START_FILES_1, END_FILES_1): Always define them.
19352
19353 2003-07-13 Terje Rosten <terjeros@phys.ntnu.no>
19354
19355 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap): Modify to add mask,
19356 and use the Gtk+ function gtk_window_icon_from_file if available.
19357
19358 * xfns.c (x_bitmap_mask, x_create_bitmap_mask): New functions to
19359 handle mask of bitmaps.
19360 (x_allocate_bitmap_record, x_destroy_bitmap): Modify to handle the
19361 mask property.
19362 (xg_set_icon): New function, wrapper for gtk_window_icon_from_file.
19363
19364 * xterm.h (xg_set_icon): New function.
19365
19366 2003-07-12 Paul Eggert <eggert@twinsun.com>
19367
19368 * unexelf.c (unexec): Consider a section to precede the .bss
19369 section if its addresses overlap that of .bss.
19370
19371 2003-07-12 Richard M. Stallman <rms@gnu.org>
19372
19373 * Makefile.in (CFLAGS) [!OPTIMIZE]: Set CFLAGS to -g.
19374
19375 * config.in (HAVE_CRTIN): Add #undef.
19376 (INLINE): Really inline only if OPTIMIZE is defined.
19377
19378 * s/netbsd.h (START_FILES, LIB_STANDARD): Use START_FILES_1,
19379 END_FILES_1.
19380 (START_FILES_1, END_FILES_1): New macros (conditional).
19381 (LD_SWITCH_SYSTEM_TEMACS): Define.
19382
19383 * s/openbsd.h: Don't include bsd4-3.h.
19384 (TERMINFO): Define.
19385 (LIBS_TERMCAP): Define.
19386 (LD_SWITCH_SYSTEM): Define (two definitions).
19387
19388 * xfns.c: Include libpng/png.h instead of png.h.
19389
19390 2003-07-11 Andreas Schwab <schwab@suse.de>
19391
19392 * buffer.c (modify_overlay): Update prototype.
19393 * lisp.h (adjust_overlays_for_insert, adjust_overlays_for_delete):
19394 Likewise.
19395
19396 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
19397
19398 * lisp.h (VALBITS): Define in terms of GCTYPEBITS.
19399 (struct interval): Move to intervals.h.
19400 (struct Lisp_Marker): Use EMACS_INT for position info.
19401 (forward_point): Remove prototype of defunct function.
19402 (Qmodification_hooks, Qrear_nonsticky, Fnext_property_change)
19403 (Fget_text_property, Fset_text_properties, Ftext_propertes_not_all)
19404 (syms_of_textprop, set_text_properties): Remove prototypes that are
19405 already in intervals.h.
19406
19407 * intervals.h (struct interval): Move from lisp.h.
19408 Use EMACS_INT for position and size info.
19409
19410 * coding.c: Include intervals.h for Fset_text_properties.
19411
19412 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
19413 position and length information.
19414
19415 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
19416
19417 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
19418 position and length information.
19419
19420 2003-07-09 Stefan Monnier <monnier@cs.yale.edu>
19421
19422 Change overlays_after and overlays_before so the overlays themselves
19423 are linked into lists, rather than using cons cells. After all each
19424 Lisp_Misc already occupies 5 words, so we can add a `next' field to
19425 Lisp_Overlay for free and save up one cons cell per overlay (not
19426 to mention one indirection when traversing the list of overlay).
19427
19428 * lisp.h (struct Lisp_Overlay): New field `next'.
19429
19430 * buffer.h (struct buffer): Change overlays_before and overlays_after
19431 from Lisp lists of overlays to pointers to overlays.
19432
19433 * buffer.c (overlay_strings, recenter_overlay_lists):
19434 Fix typo in eassert in last commit.
19435 (unchain_overlay): New function.
19436 (add_overlay_mod_hooklist): Use AREF.
19437 (copy_overlays, reset_buffer, overlays_at, overlays_in)
19438 (overlay_touches_p, overlay_strings, recenter_overlay_lists)
19439 (fix_overlays_in_range, fix_overlays_before, Fmake_overlay)
19440 (Fmove_overlay, Fdelete_overlay, Foverlay_lists)
19441 (report_overlay_modification, evaporate_overlays, init_buffer_once):
19442 Adjust to new type of overlays_(before|after).
19443
19444 * alloc.c (mark_object): Mark the new `next' field of overlays.
19445 (mark_buffer): Manually mark the overlays_(after|before) fields.
19446
19447 * coding.c (run_pre_post_conversion_on_str):
19448 * editfns.c (overlays_around):
19449 * xdisp.c (load_overlay_strings):
19450 * fileio.c (Finsert_file_contents):
19451 * indent.c (current_column):
19452 * insdel.c (signal_before_change, signal_after_change):
19453 * intervals.c (set_point_both):
19454 * print.c (temp_output_buffer_setup): Use new type for
19455 overlays_(before|after).
19456
19457 2003-07-08 Stefan Monnier <monnier@cs.yale.edu>
19458
19459 * buffer.c (report_overlay_modification): Don't run hooks while
19460 traversing the list of overlays.
19461
19462 * buffer.h (struct buffer): Use an int for overlay_center.
19463 (overlays_at, evaporate_overlays, recenter_overlay_lists)
19464 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
19465
19466 * buffer.c (reset_buffer, recenter_overlay_lists)
19467 (adjust_overlays_for_insert, adjust_overlays_for_delete)
19468 (fix_overlays_in_range, Fmake_overlay, Fmove_overlay)
19469 (evaporate_overlays, init_buffer_once): Update use of overlay_center.
19470 (overlays_at, evaporate_overlays, recenter_overlay_lists)
19471 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
19472
19473 * xdisp.c (fast_find_position): Remove unused var.
19474
19475 * cmds.c (Qexpand_abbrev): New sym.
19476 (syms_of_cmds): Initialize it.
19477 (internal_self_insert): Use it to call expand-abbrev.
19478
19479 2003-07-09 Kim F. Storm <storm@cua.dk>
19480
19481 * xterm.c (use_xim) [!USE_XIM]: Default to disable XIM if Emacs
19482 was configured with --without-xim.
19483 (x_term_init) [!USE_XIM]: Use `useXIM' resource to turn on XIM.
19484
19485 2003-07-07 Richard M. Stallman <rms@gnu.org>
19486
19487 * xdisp.c (reseat_1): Set it->area to TEXT_AREA.
19488
19489 * alloc.c (Fgarbage_collect): Doc fix.
19490
19491 2003-07-07 Nozomu Ando <nand@mac.com>
19492
19493 * buffer.c (Fkill_buffer): Clear charpos cache if necessary.
19494
19495 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
19496
19497 * minibuf.c (read_minibuf): UNGCPRO before returning.
19498 (Ftry_completion, Fall_completions): Doc fix.
19499
19500 * alloc.c (live_float_p): Check that p is not past the `floats' array,
19501 now that `floats' is not the last element of the struct any more.
19502
19503 2003-07-06 Jason Rumney <jasonr@gnu.org>
19504
19505 * w32term.h (ClipboardSequence_Proc): New type.
19506
19507 * w32fns.c (clipboard_sequence_fn): New variable.
19508 (globals_of_w32fns): Initialize it.
19509
19510 * w32select.c (last_clipboard_sequence_number): New variable.
19511 (Fw32_set_clipboard_data, Fw32_get_clipboard_data): Use sequence
19512 number if possible.
19513
19514 2003-07-06 Stefan Monnier <monnier@cs.yale.edu>
19515
19516 * m/amdx86-64.h (MARKBIT):
19517 * m/ia64.h (MARKBIT): Remove definition since lisp.h does not compare
19518 MARKBIT and ARRAY_MARK_FLAG any more.
19519
19520 * m/hp800.h (XSETMARKBIT):
19521 * m/sr2k.h (XSETMARKBIT):
19522 * lisp.h (XSETMARKBIT): Remove unused macro.
19523
19524 * lisp.h (mark_object): Change prototype.
19525
19526 * alloc.c (mark_object): Change arg *Lisp_Object -> Lisp_Object.
19527 (last_marked): Change accordingly.
19528 (mark_interval, mark_maybe_object, mark_maybe_pointer)
19529 (Fgarbage_collect, mark_glyph_matrix, mark_face_cache, mark_image)
19530 (mark_buffer): Update calls to mark_object.
19531
19532 * bytecode.c (mark_byte_stack):
19533 * fns.c (sweep_weak_table):
19534 * keyboard.c (mark_kboards): Update calls to mark_object.
19535
19536 2003-07-06 Jason Rumney <jasonr@gnu.org>
19537
19538 * alloc.c (struct ablock): Only include padding when there is some.
19539
19540 2003-07-04 Stefan Monnier <monnier@cs.yale.edu>
19541
19542 * alloc.c (ALIGN): Add casts to simplify usage.
19543 (BLOCK_ALIGN, BLOCK_BYTES, ABLOCKS_PADDING, ABLOCKS_SIZE)
19544 (ABLOCKS_BYTES, ABLOCK_ABASE, ABLOCKS_BUSY, ABLOCKS_BASE): New macros.
19545 (struct ablock, struct ablocks): New types.
19546 (free_ablock): New global var.
19547 (lisp_align_malloc, lisp_align_free): New functions.
19548 (FLOAT_BLOCK_SIZE): Redefine in terms of BLOCK_BYTES.
19549 (struct float_block): Reorder and add gcmarkbits.
19550 (GETMARKBIT, SETMARKBIT, UNSETMARKBIT, FLOAT_BLOCK, FLOAT_INDEX)
19551 (FLOAT_MARKED_P, FLOAT_MARK, FLOAT_UNMARK): New macros.
19552 (init_float, make_float): Use lisp_align_malloc.
19553 (free_float, live_float_p): Don't use `type' any more.
19554 (make_float): Use FLOAT_UNMARK to access to mark bit.
19555 (mark_maybe_object, mark_maybe_pointer, survives_gc_p):
19556 Use FLOAT_MARKED_P to access the mark bit.
19557 (pure_alloc): Simplify use of ALIGN.
19558 (mark_object): Use FLOAT_MARK to access the mark bit.
19559 (gc_sweep): Use new macros to access the float's mark bit.
19560 (init_alloc_once): Init free_ablock.
19561
19562 * lisp.h (struct Lisp_Float): Remove unused field `type'.
19563
19564 2003-06-27 Stefan Monnier <monnier@cs.yale.edu>
19565
19566 * alloc.c (VECTOR_MARK, VECTOR_UNMARK, VECTOR_MARKED_P): New macros.
19567 (GC_STRING_BYTES): Don't mask markbit (it's only used on `size').
19568 (allocate_buffer): Move.
19569 (string_bytes): Don't mask markbit of `size_byte'.
19570 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
19571 (mark_object, mark_buffer, survives_gc_p, gc_sweep):
19572 Use the `size' field of buffers (rather than the `name' field) for
19573 the mark bit, as is done for all other vectorlike objects.
19574 Use the new macros to access the mark bit of vectorlike objects.
19575
19576 2003-06-26 Richard M. Stallman <rms@gnu.org>
19577
19578 * puresize.h (BASE_PURESIZE): Increment base size.
19579
19580 * xdisp.c (fast_find_position): Enable Gerd's new definition.
19581
19582 * xterm.c (xim_initialize): Undo previous change.
19583
19584 2003-06-26 Stefan Monnier <monnier@cs.yale.edu>
19585
19586 * alloc.c (survives_gc_p): Simplify.
19587
19588 * buffer.c (set_buffer_internal_1): Test CONSP for lists.
19589
19590 * window.c (Fset_window_dedicated_p): Simplify.
19591 (display_buffer_1): Don't raise the win from which minibuf was entered.
19592 (temp_output_buffer_show): Don't assume BEG == 1. Simplify.
19593 (Fminibuffer_selected_window): Simplify.
19594
19595 * buffer.h (struct buffer_text): Lisp_Object `markers' => Lisp_Marker.
19596
19597 * lisp.h (unchain_marker): Lisp_Object arg => Lisp_Marker.
19598 (struct Lisp_Marker): Lisp_Object `chain' => Lisp_Marker `next'.
19599
19600 * insdel.c (check_markers, adjust_markers_for_delete)
19601 (adjust_markers_for_insert, adjust_markers_for_replace)
19602 (prepare_to_modify_buffer, RESTORE_VALUE):
19603 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos)
19604 (Fset_marker, set_marker_restricted, set_marker_both, unchain_marker)
19605 (set_marker_restricted_both, Fbuffer_has_markers_at, count_markers):
19606 * alloc.c (Fmake_marker, free_marker, gc_sweep):
19607 * buffer.c (Fget_buffer_create, Fkill_buffer, Fset_buffer_multibyte):
19608 * editfns.c (save_excursion_restore, transpose_markers):
19609 * window.c (delete_window):
19610 * xdisp.c (message_dolog): Update for new types.
19611
19612 2003-06-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
19613
19614 * xfaces.c (set_font_frame_param): Set default_face_done_p to zero.
19615 (realize_default_face): Use default_face_done_p for the force_p
19616 argument to set_lface_from_font_name. Set default_face_done_p to one.
19617
19618 * frame.c (make_frame): Initialize default_face_done_p.
19619
19620 * frame.h (struct frame): Add default_face_done_p.
19621
19622 * config.in: Add XRegisterIMInstantiateCallback_arg6 so it
19623 will be defined.
19624
19625 2003-06-25 Stefan Monnier <monnier@cs.yale.edu>
19626
19627 * alloc.c (make_interval, Fmake_symbol, allocate_misc):
19628 Initialize the new field `gcmarkbit'.
19629 (mark_interval, MARK_INTERVAL_TREE): Use the new `gcmarkbit' field.
19630 (mark_interval_tree): Don't mark the tree separately from the nodes.
19631 (UNMARK_BALANCE_INTERVALS): Don't unmark the tree.
19632 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
19633 (mark_object, survives_gc_p, gc_sweep): Use new `gcmarkbit' fields.
19634
19635 * lisp.h (struct interval, struct Lisp_Symbol, struct Lisp_Free)
19636 (struct Lisp_Marker, struct Lisp_Intfwd, struct Lisp_Boolfwd)
19637 (struct Lisp_Kboard_Objfwd, struct Lisp_Save_Value)
19638 (struct Lisp_Buffer_Local_Value, struct Lisp_Overlay)
19639 (struct Lisp_Objfwd, struct Lisp_Buffer_Objfwd): Add `gcmarkbit' field.
19640
19641 2003-06-24 Dave Love <fx@gnu.org>
19642
19643 * xterm.c (xim_initialize): Use XRegisterIMInstantiateCallback_arg6.
19644
19645 * strftime.c: Test HAVE_SYS__MBSTATE_H, not __hpux. Merge changes
19646 from gnulib.
19647
19648 2003-06-21 Richard M. Stallman <rms@gnu.org>
19649
19650 * fileio.c (Fwrite_region): Alternate messages
19651 for append and partial write.
19652
19653 * keyboard.c (read_key_sequence): When converting upcase fn key to
19654 downcase, update fkey and keytran so `backspace' gets translated.
19655
19656 * keyboard.c (read_avail_input): Don't signal SIGHUP in batch mode.
19657
19658 * process.c (wait_reading_process_input): Don't signal SIGIO
19659 in batch mode.
19660
19661 2003-06-17 Kenichi Handa <handa@m17n.org>
19662
19663 * Makefile.in (xselect.o): Don't depend on charset.h, coding.h,
19664 composite.h.
19665
19666 * xselect.c: Don't include charset.h, coding.h, composite.h.
19667 (Qforeign_selection): New variable.
19668 (syms_of_xselect): Intern and static it.
19669 (selection_data_to_lisp_data): Return a unibyte string made from
19670 data with `foreign-selection' text property.
19671
19672 2003-06-15 Stefan Monnier <monnier@cs.yale.edu>
19673
19674 * termhooks.h (EVENT_INIT): New macro.
19675
19676 * keyboard.c (mark_kboards): Move from alloc.c. Mark kbd_buffer.
19677
19678 * alloc.c (mark_kboards): Move to keyboard.c.
19679
19680 * keyboard.c (record_asynch_buffer_change, read_avail_input):
19681 * xterm.c (x_dispatch_event):
19682 * xmenu.c (find_and_call_menu_selection):
19683 * xdisp.c (handle_tool_bar_click):
19684 * w32menu.c (menubar_selection_callback):
19685 * sysdep.c (kbd_input_ast, read_input_waiting):
19686 * msdos.c (dos_rawgetc):
19687 * macterm.c (mac_check_for_quit_char):
19688 * macmenu.c (menubar_selection_callback):
19689 * gtkutil.c (xg_tool_bar_callback): Don't pass uninitialized
19690 data to kbd_buffer_store_event.
19691
19692 2003-06-15 Kim F. Storm <storm@cua.dk>
19693
19694 * xdisp.c (x_fix_overlapping_area): Always use area relative X
19695 to fix redisplay problem with tall characters (such as \e,AC\e(B).
19696
19697 2003-06-13 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
19698
19699 * fileio.c (Fcopy_file): Doc fix: copies file modes, too.
19700
19701 2003-06-12 Kenichi Handa <handa@m17n.org>
19702
19703 * fileio.c (Fwrite_region): Save and restore restriction.
19704
19705 2003-06-12 Dave Love <fx@gnu.org>
19706
19707 * alloca.c (alloca): Declare arg as size_t.
19708
19709 * sysdep.c: Remove redundant include of unistd.h, stdlib.h.
19710 Use HAVE_DECL_SYS_SIGLIST, not SYS_SIGLIST_DECLARED.
19711
19712 2003-06-11 Dave Love <fx@gnu.org>
19713
19714 * search.c (shrink_regexp_cache): Use xrealloc.
19715 (syms_of_search): Use xmalloc.
19716
19717 2003-06-10 Kim F. Storm <storm@cua.dk>
19718
19719 * xdisp.c (phys_cursor_in_rect_p): Fix 2003-05-24 change.
19720 Adjust phys_cursor.x to be relative to window box, rather than
19721 text area before checking -- to ensure cursor is redrawn when
19722 exposing window.
19723 Note: This also fixes a similar (older) bug if display margins
19724 are present.
19725
19726 2003-06-06 Kenichi Handa <handa@m17n.org>
19727
19728 * coding.c (encoding_buffer_size): If coding->type is
19729 coding_type_ccl, double magnification on CRLF encoding.
19730
19731 2003-06-06 Jason Rumney <jasonr@gnu.org>
19732
19733 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): New constant.
19734 (w32_get_string_resource): Try SYSTEM_DEFAULT_RESOURCES last.
19735
19736 * xfaces.c (Finternal_face_x_get_resource): Do it on Windows and
19737 Mac too.
19738
19739 2003-06-05 Dave Love <fx@gnu.org>
19740
19741 * strftime.c: Merge changes from gnulib.
19742
19743 * mktime.c (__mktime_internal): Merge changes from gnulib
19744 involving year 69 and dst2.
19745
19746 Changes to merge with gnulib version and be consistent with the
19747 autoconf test:
19748
19749 * getloadavg.c: Set NLIST_STRUCT from HAVE_NLIST_H.
19750 Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not NLIST_NAME_UNION.
19751 [HAVE_LOCALE_H]: Include locale.h.
19752 (getloadavg) [HAVE_SETLOCALE]: Run sscanf in C locale.
19753
19754 2003-06-05 Kim F. Storm <storm@cua.dk>
19755
19756 * window.c (coordinates_in_window): Convert X and Y to window
19757 relative coordinates inside mode-line and header-line parts.
19758 Convert X and Y to margin area relative coordinates inside left
19759 and right display margin parts.
19760
19761 2003-06-05 Jason Rumney <jasonr@gnu.org>
19762
19763 * w32fns.c (add_system_logical_colors_to_map): New function.
19764 (Fx_open_connection): Use it.
19765
19766 2003-06-04 Stefan Monnier <monnier@cs.yale.edu>
19767
19768 * process.c (allocate_pty): Revert part of the previous patch.
19769 (Faccept_process_output): Simplify.
19770
19771 2003-06-04 Jason Rumney <jasonr@gnu.org>
19772
19773 * termhooks.h (enum event_kind): Remove MOUSE_WHEEL_EVENT.
19774
19775 * keyboard.c (Qmouse_wheel, mouse_wheel_syms)
19776 (lispy_mouse_wheel_names): Remove.
19777 (syms_of_keyboard): Remove Qmouse_wheel and mouse_wheel_syms.
19778 Always define drag_and_drop_syms.
19779
19780 * macterm.c (XTread_socket): Map mouse wheel events to Emacs
19781 WHEEL_EVENT events.
19782
19783 2003-06-03 Stefan Monnier <monnier@cs.yale.edu>
19784
19785 * xdisp.c (update_tool_bar): Add missing UNGCPRO.
19786
19787 * buffer.c (init_buffer_once): Make kill-buffer-hook permanent-local.
19788
19789 2003-06-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
19790
19791 * gtkutil.c (make_menu_item): Make sure we don't crash on a NULL
19792 menu item label.
19793
19794 2003-06-03 Richard M. Stallman <rms@gnu.org>
19795
19796 * window.c (Fwindow_edges): Doc fix.
19797 (Fwindow_pixel_edges, Fwindow_inside_edges)
19798 (Fwindow_inside_pixel_edges): New functions.
19799 (syms_of_window): defsubr them.
19800
19801 * window.h (WINDOW_LEFT_FRINGE_COLS, WINDOW_RIGHT_FRINGE_COLS)
19802 (WINDOW_MODE_LINE_LINES, WINDOW_HEADER_LINE_LINES): New macros.
19803
19804 2003-06-02 Stefan Monnier <monnier@cs.yale.edu>
19805
19806 * dispnew.c (Fsit_for): Don't lie about the number of args.
19807
19808 2003-06-02 Dave Love <fx@gnu.org>
19809
19810 * callproc.c: Use HAVE_FCNTL_H, not USG5.
19811 (syms_of_callproc) <process-environment>: Doc fix.
19812
19813 * doc.c: Use HAVE_FCNTL_H, not USG5.
19814
19815 * xfaces.c (font_rescale_ratio): Fix for K&R.
19816
19817 * termcap.c: Use HAVE_FCNTL_H, not _POSIX_VERSION.
19818
19819 * mem-limits.h: Use HAVE_SYS_RESOURCE_H, HAVE_SYS_VLIMIT_H.
19820
19821 * lread.c [HAVE_FCNTL_H]: Include fcntl.h.
19822
19823 * gtkutil.c: Include keyboard.h, charset.h, coding.h.
19824 (xg_create_frame_widgets): Use ENCODE_UTF_8.
19825
19826 * xterm.c (Qutf_8): Move to coding.c.
19827
19828 * xmenu.c (ENCODE_MENU_STRING): New.
19829 (list_of_panes, list_of_items, digest_single_submenu, xmenu_show):
19830 Use it.
19831
19832 * coding.h (ENCODE_UTF_8): New.
19833 (Qutf_8): Declare.
19834
19835 * coding.c (Qutf_8): New.
19836 (syms_of_coding): Intern it.
19837
19838 * fns.c: Doc fixes.
19839
19840 2003-06-02 Kenichi Handa <handa@m17n.org>
19841
19842 * buffer.c (Fset_buffer_multibyte): Fix previous change.
19843
19844 2003-06-01 Stefan Monnier <monnier@cs.yale.edu>
19845
19846 * lread.c (openp): Make sure STR is a string.
19847
19848 2003-06-01 David Ponce <david@dponce.com>
19849
19850 * termhooks.h (enum event_kind): Add new WHEEL_EVENT event.
19851 Declare MOUSE_WHEEL_EVENT only if MAC_OSX defined.
19852
19853 * keyboard.c (Qmouse_wheel): Declare only if MAC_OSX defined.
19854 (mouse_wheel_syms, lispy_mouse_wheel_names): Likewise.
19855 (discard_mouse_events): Discard WHEEL_EVENT events too.
19856 (lispy_wheel_names, wheel_syms): New.
19857 (syms_of_keyboard): Init and staticpro `wheel_syms'. Init and
19858 staticpro `Qmouse_wheel' and `mouse_wheel_syms' only if MAC_OSX defined.
19859 (make_lispy_event): Add WHEEL_EVENT handler.
19860
19861 * w32term.c (construct_mouse_wheel): Construct WHEEL_EVENT.
19862 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
19863 WHEEL_EVENT events.
19864
19865 2003-05-31 John Paul Wallington <jpw@gnu.org>
19866
19867 * Makefile.in (lisp, shortlisp): byte-run, float-sup, map-ynp, and
19868 timer are in lisp/emacs-lisp.
19869
19870 2003-05-31 Kenichi Handa <handa@m17n.org>
19871
19872 * buffer.c (Fset_buffer_multibyte): Correctly recover a narrowed
19873 region when a buffer is changed to unibyte.
19874
19875 * charset.h (VALID_LEADING_CODE_P): New macro.
19876 (UNIBYTE_STR_AS_MULTIBYTE_P): Check more rigidly.
19877
19878 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): If coding->flags
19879 is nonzero, accept multibyte form of eight-bit-control chars.
19880 (decode_composition_emacs_mule): Likewise.
19881 (decode_coding_emacs_mule): Likewise.
19882 (encode_coding_emacs_mule): If coding->flags is nonzero, produce
19883 multibyte form of eight-bit-control chars.
19884
19885 * fileio.c (Qauto_save_coding, auto_save_coding): New variables.
19886 (Finsert_file_contents): If coding-system-for-read is bound to
19887 Qauto_save_coding, use the coding system emacs-mule with special
19888 setting for recovering a file.
19889 (choose_write_coding_system): On auto saving, use the coding
19890 system emacs-mule with special setting for auto saving.
19891 (syms_of_fileio) <Qauto_save_coding>: Intern and staticpro it.
19892
19893 2003-05-30 Kenichi Handa <handa@m17n.org>
19894
19895 * coding.c (ccl_coding_driver): Set ccl->eight_bit_control
19896 properly before calling ccl_driver.
19897
19898 * ccl.h (struct ccl_program) <eight_bit_control>: Comment fixed.
19899
19900 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when it is nonzero.
19901 (ccl_driver): Initialize extra_bytes to ccl->eight_bit_control.
19902 (setup_ccl_program): Initialize ccl->eight_bit_control to zero.
19903
19904 2003-05-29 Glenn Morris <gmorris@ast.cam.ac.uk>
19905
19906 * xfaces.c (realize_default_face): Do not abort if lface is
19907 non-existent - reverts change from 2003-05-19.
19908
19909 2003-05-29 Kenichi Handa <handa@m17n.org>
19910
19911 * coding.c (decode_coding_iso2022): Pay attention to the byte
19912 sequence of CTEXT extended segment, and retain those bytes as is.
19913
19914 2003-05-28 Kenichi Handa <handa@m17n.org>
19915
19916 * coding.c (ENCODE_UNSAFE_CHARACTER): Adjust for the name change
19917 of CODING_REPLACEMENT_CHARACTER.
19918 (decode_coding_iso2022): If CODING_FLAG_ISO_SAFE, set
19919 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in coding->mode, and
19920 check this flag on encoding.
19921 (encode_coding_sjis_big5):
19922 Check CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag of coding->mode.
19923 (Fset_terminal_coding_system_internal):
19924 Set CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in terminal_coding.mode
19925 instead of setting CODING_FLAG_ISO_SAFE flag in terminal_coding.flags.
19926
19927 * coding.h (CODING_REPLACEMENT_CHARACTER): Rename from
19928 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
19929 (CODING_MODE_INHIBIT_UNENCODABLE_CHAR): New macro.
19930
19931 2003-05-28 Richard M. Stallman <rms@gnu.org>
19932
19933 * print.c (syms_of_print) <print-escape-nonascii>: Doc fix.
19934
19935 * eval.c (unbind_to): Move init of this_binding to separate statement.
19936
19937 2003-05-28 Kim F. Storm <storm@cua.dk>
19938
19939 * xdisp.c (expose_window): Fix error in calculation of
19940 window relative coordinates of area to redisplay.
19941
19942 2003-05-27 Jason Rumney <jasonr@gnu.org>
19943
19944 * w32term.c (GET_WHEEL_DELTA_WPARAM): New macro.
19945
19946 2003-05-27 David Ponce <david@dponce.com>
19947
19948 Handle W32 mouse wheel events as mouse click events, like in X.
19949
19950 * keyboard.c (make_lispy_event) [WINDOWSNT]: Don't handle
19951 MOUSE_WHEEL_EVENT anymore.
19952
19953 * w32term.c (construct_mouse_wheel): Result is a MOUSE_CLICK_EVENT.
19954 Scrolling down/up the mouse wheel is respectively mapped to mouse
19955 button 4 and 5.
19956 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
19957 MOUSE_CLICK_EVENT events. Forward w32 MSH_MOUSEWHEEL events as
19958 WM_MOUSEWHEEL events.
19959
19960 2003-05-27 Andreas Schwab <schwab@suse.de>
19961
19962 * buffer.c (syms_of_buffer) <default-direction-reversed>: Doc fix.
19963
19964 * xdisp.c (try_window_id): Avoid aborting if PT is inside a
19965 partially visible line.
19966
19967 * alloc.c (Fgarbage_collect): Fix last change.
19968
19969 2003-05-26 John Paul Wallington <jpw@gnu.org>
19970
19971 * xfns.c (Fx_create_frame): Don't call Qface_set_after_frame_default.
19972
19973 2003-05-25 Stefan Monnier <monnier@cs.yale.edu>
19974
19975 * window.c (Fset_window_buffer): Add type of `keep_margins'.
19976 (Fset_window_fringes, Fset_window_scroll_bars): Declare before use.
19977
19978 * window.h (window_box_text_cols): Declare.
19979
19980 * xdisp.c (window_text_bottom_y, draw_row_fringe_bitmaps)
19981 (x_draw_vertical_border): Remove unused var `f'.
19982
19983 * xfaces.c (build_scalable_font_name): Remove `unused var
19984 pixel_size' warning.
19985
19986 * xfns.c (png_load): Remove `unused vars intent, image_gamma' warning.
19987
19988 * unexelf.c (unexec): Remove `unused var n' warning.
19989
19990 * strftime.c (my_strftime_localtime_r): Remove `defined but
19991 unused' warning.
19992
19993 * process.c (allocate_pty): Remove `unused var stb' and
19994 `cp might be used uninitialized' warnings.
19995
19996 * dispnew.c (mode_line_string): Remove unused var `f'.
19997
19998 * coding.c (find_safe_codings): Remove unused var `i'.
19999
20000 * bytecode.c (Fbyte_code): Remove `unused val' warning.
20001
20002 * buffer.c (Fkill_buffer): Remove unused var `list'.
20003
20004 * alloc.c (Fgarbage_collect): Remove `unused var tail' warning.
20005
20006 2003-05-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
20007
20008 * frame.c (make_frame): Condition want_fullscreen with
20009 HAVE_WINDOW_SYSTEM.
20010
20011 2003-05-25 Juanma Barranquero <lektu@terra.es>
20012
20013 * window.c (Fset_window_scroll_bars): Fix typo in argument name.
20014 (Fwindow_scroll_bars): Fix typo in docstring.
20015
20016 2003-05-24 Kim F. Storm <storm@cua.dk>
20017
20018 The following changes serve several purposes:
20019
20020 1) Swap the position of fringes and display margins in windows, i.e.
20021 the fringes are now displayed between the margins and the text area
20022 (by default).
20023
20024 2) Allow fringe and scroll bar parameters to be set per-buffer and
20025 per-window (like display margins). Such settings are now stored
20026 in window configurations, preserved when frames are resized, and
20027 copied when windows are split vertically or horizontally.
20028 Several bugs related to display margins have been fixed.
20029
20030 3) Consistently use FRAME_FONT and FRAME_FONTSET macros.
20031
20032 4) Use FRAME_COLUMN_WIDTH (f) consistently throughout the code
20033 rather than FRAME_WIDTH (FRAME_FONT (f)).
20034
20035 5) Introduce a consistent naming of variables, members and macros
20036 depending on whether their value is measured in pixels or in
20037 canonical columns/lines. Pixel dimensions are named *_width and
20038 *_height, while canonical columns/lines are named *_cols and
20039 *_lines. Pixel positions are named *_x and *_y, while column/line
20040 positions are named *_col and *_line.
20041
20042 6) Consolidate more of the X, W32, and MAC gui code by moving
20043 common data into struct frame, and generalize it for the non-gui
20044 case by using suitable defaults.
20045
20046 7) Cleanup and consolidate the macros controlling frame and window
20047 layout into frame.h and window.h, and generalize the use of the
20048 various window_box_* functions (enhanced to handle the new fringe
20049 position and the per-window fringe and scroll bar settings).
20050
20051 * frame.h (struct frame): Rename members height to text_lines,
20052 width to text_cols, window_height to total_lines, window_width to
20053 total_cols, new_height to new_text_lines, new_width to
20054 new_text_cols. All uses changed.
20055 (struct frame): New members which consolidate common members of
20056 x_output, w32_output, and mac_output structures: left_pos,
20057 top_pos, pixel_height, pixel_width, x_pixels_diff, y_pixels_diff,
20058 win_gravity, size_hint_flags, border_width, internal_border_width,
20059 line_height, fringe_cols, left_fringe_width, right_fringe_width,
20060 want_fullscreen. All uses changed.
20061 (struct frame): New member column_width contaning the canonical
20062 column width, analogue to line_height. All uses changed.
20063 (struct frame): Rename members scroll_bar_pixel_width to
20064 config_scroll_bar_width, and scroll_bar_cols to
20065 config_scroll_bar_cols. All uses changed.
20066 (struct frame): New member scroll_bar_actual_width which
20067 consolidates and renames the vertical_scroll_bar_extra member of
20068 x_output, w32_output, and mac_output structures. All uses changed.
20069 (FRAME_PIXEL_HEIGHT): Rename from PIXEL_HEIGHT and moved
20070 from x/w32/macterm.h files. All uses changed. Also change code
20071 which referred to f->output_data...->pixel_height.
20072 (FRAME_PIXEL_WIDTH): Rename from PIXEL_WIDTH and moved
20073 from x/w32/macterm.h files. All uses changed. Also change code
20074 which referred to f->output_data...->pixel_width.
20075 (FRAME_LINES): Rename from FRAME_HEIGHT. All uses changed.
20076 Also change code which referred to f->height.
20077 (FRAME_COLS): Rename from FRAME_WIDTH. All uses changed.
20078 Also change code which referred to f->width.
20079 (FRAME_NEW_HEIGHT, FRAME_NEW_WIDTH): Remove macros; change uses
20080 to update new_text_lines and new_text_cols members directly.
20081 (FRAME_CONFIG_SCROLL_BAR_WIDTH): Rename from
20082 FRAME_SCROLL_BAR_PIXEL_WIDTH. All uses changed.
20083 (FRAME_CONFIG_SCROLL_BAR_COLS): Rename from
20084 FRAME_SCROLL_BAR_COLS. All uses changed.
20085 (FRAME_LEFT_SCROLL_BAR_COLS, FRAME_RIGHT_SCROLL_BAR_COLS):
20086 Rename from FRAME_LEFT_SCROLL_BAR_WIDTH and
20087 FRAME_RIGHT_SCROLL_BAR_WIDTH, resp. All uses changed.
20088 (FRAME_SCROLL_BAR_AREA_WIDTH, FRAME_LEFT_SCROLL_BAR_AREA_WIDTH)
20089 (FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH): New macros.
20090 (FRAME_TOTAL_COLS): Rename from FRAME_WINDOW_WIDTH.
20091 (SET_FRAME_COLS): Rename from SET_FRAME_WIDTH.
20092 (FRAME_TOTAL_COLS_ARG): Rename from FRAME_WINDOW_WIDTH_ARG.
20093 (WINDOW_VERTICAL_SCROLL_BAR_COLUMN): Remove unused macro.
20094 (WINDOW_VERTICAL_SCROLL_BAR_HEIGHT): Remove unused macro.
20095 (FRAME_LINE_HEIGHT): Rename from CANON_Y_UNIT.
20096 Unconditionally return line_height member (it now has proper value
20097 also for non-window frames).
20098 (FRAME_COLUMN_WIDTH): Rename from CANON_X_UNIT. Unconditionally
20099 return new column_width member (rather than the default font width).
20100 (FRAME_FRINGE_COLS, FRAME_LEFT_FRINGE_WIDTH)
20101 (FRAME_RIGHT_FRINGE_WIDTH): Rename from FRAME_X_... and moved
20102 from x/w32/macterm.h files. Unconditionally return corresponding
20103 member of frame structure (they now have proper values also for
20104 non-window frames).
20105 (FRAME_TOTAL_FRINGE_WIDTH): Rename from FRAME_FRINGE_WIDTH.
20106 Calculate return value from left and right widths.
20107 (FRAME_INTERNAL_BORDER_WIDTH): Unconditionally return
20108 internal_border_width member (has proper value for non-window frame).
20109 (FRAME_PIXEL_X_FROM_CANON_X): Rename from PIXEL_X_FROM_CANON_X.
20110 (FRAME_PIXEL_Y_FROM_CANON_Y): Rename from PIXEL_Y_FROM_CANON_Y.
20111 (FRAME_CANON_X_FROM_PIXEL_X): Rename from CANON_X_FROM_PIXEL_X.
20112 (FRAME_CANON_Y_FROM_PIXEL_Y): Rename from CANON_Y_FROM_PIXEL_Y.
20113 (FRAME_LINE_TO_PIXEL_Y): Rename from CHAR_TO_PIXEL_ROW,
20114 consolidated from xterm.h, macterm.h, and w32term.h.
20115 (FRAME_COL_TO_PIXEL_X): Rename from CHAR_TO_PIXEL_COL,
20116 consolidated from xterm.h, macterm.h, and w32term.h.
20117 (FRAME_TEXT_COLS_TO_PIXEL_WIDTH): Rename from
20118 CHAR_TO_PIXEL_WIDTH consolidated from x/mac/w32term.h.
20119 (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Rename from
20120 CHAR_TO_PIXEL_HEIGHT consolidated from x/mac/w32term.h.
20121 (FRAME_PIXEL_Y_TO_LINE): Rename from PIXEL_TO_CHAR_ROW
20122 consolidated from x/mac/w32term.h.
20123 (FRAME_PIXEL_X_TO_COL): Rename from PIXEL_TO_CHAR_COL
20124 consolidated from x/mac/w32term.h.
20125 (FRAME_PIXEL_WIDTH_TO_TEXT_COLS): Rename from
20126 PIXEL_TO_CHAR_WIDTH consolidated from x/mac/w32term.h.
20127 (FRAME_PIXEL_HEIGHT_TO_TEXT_LINES): Rename from
20128 PIXEL_TO_CHAR_HEIGHT consolidated from x/mac/w32term.h.
20129
20130 * window.h (struct window): Rename members left to left_col,
20131 top to top_line, height to total_lines, width to total_cols,
20132 left_margin_width to left_margin_cols, right_margin_width to
20133 right_margin_cols, orig_height to orig_total_lines, orig_top to
20134 orig_top_line. All uses changed.
20135 (struct window): New members left_fringe_width, right_fringe_width,
20136 fringes_outside_margins, scroll_bar_width, vertical_scroll_bar_type.
20137 (WINDOW_XFRAME, WINDOW_FRAME_COLUMN_WIDTH, WINDOW_FRAME_LINE_HEIGHT):
20138 New macros primarily used to simplify other macros.
20139 (WINDOW_TOTAL_COLS): New macro. Change relevant code that
20140 referred to XINT (w->width).
20141 (WINDOW_TOTAL_LINES): New macro. Change relevant code that
20142 referred to XINT (w->height).
20143 (WINDOW_TOTAL_WIDTH): New macro. Change relevant code that
20144 referred to XINT (w->width) * canon_x_unit.
20145 (WINDOW_TOTAL_HEIGHT): New macro. Change relevant code that
20146 referred to XINT (w->height) * canon_y_unit.
20147 (WINDOW_LEFT_EDGE_COL): New macro. Change relevant code that
20148 referred to XINT (w->left).
20149 (WINDOW_RIGHT_EDGE_COL): Rename from WINDOW_RIGHT_EDGE. Change
20150 all uses and code that referred to XINT (w->left) + XINT (w->width).
20151 (WINDOW_TOP_EDGE_LINE): New macro. Change relevant code that
20152 referred to XINT (w->top).
20153 (WINDOW_BOTTOM_EDGE_LINE): New macro. Change relevant code that
20154 referred to XINT (w->top) + XINT (w->height).
20155 (WINDOW_LEFT_EDGE_X): New macro. Change relevant code that
20156 referred to XINT (w->left) * canon_x_unit.
20157 (WINDOW_RIGHT_EDGE_X): New macro. Change relevant code that
20158 referred to (XINT (w->left) + XINT (w->width)) * canon_x_unit.
20159 (WINDOW_TOP_EDGE_Y): New macro. Change relevant code that
20160 referred to XINT (w->top) * canon_y_unit.
20161 (WINDOW_BOTTOM_EDGE_Y): New macro. Change relevant code that
20162 referred to (XINT (w->top) + XINT (w->height)) * canon_y_unit.
20163 (WINDOW_LEFTMOST_P): New macro.
20164 (WINDOW_BOX_LEFT_EDGE_COL): Rename from WINDOW_LEFT_MARGIN.
20165 All uses changed.
20166 (WINDOW_BOX_RIGHT_EDGE_COL): Rename from WINDOW_RIGHT_MARGIN.
20167 All uses changed.
20168 (WINDOW_BOX_LEFT_EDGE_X): Rename from
20169 WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, moved from dispextern.h.
20170 Do not exclude left fringe width.
20171 (WINDOW_BOX_RIGHT_EDGE_X): Rename from
20172 WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X, moved from dispextern.h.
20173 Do not exclude fringe widths.
20174 (WINDOW_LEFT_FRINGE_WIDTH, WINDOW_RIGHT_FRINGE_WIDTH)
20175 (WINDOW_FRINGE_COLS, WINDOW_TOTAL_FRINGE_WIDTH): New macros.
20176 Change relevant code that referred to FRAME_LEFT_FRINGE_WIDTH,
20177 FRAME_RIGHT_FRINGE_WIDTH, FRAME_FRINGE_COLS, and
20178 FRAME_TOTAL_FRINGE_WIDTH to allow per-window fringe settings.
20179 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS): New macro.
20180 (WINDOW_VERTICAL_SCROLL_BAR_TYPE, WINDOW_HAS_VERTICAL_SCROLL_BAR)
20181 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT)
20182 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT)
20183 (WINDOW_CONFIG_SCROLL_BAR_WIDTH, WINDOW_CONFIG_SCROLL_BAR_COLS):
20184 New macros. Change code which referenced corresponding
20185 FRAME_VERTICAL_SCROLL_BAR_TYPE, FRAME_HAS_VERTICAL_SCROLL_BARS,
20186 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT,
20187 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT,
20188 FRAME_SCROLL_BAR_PIXEL_WIDTH, and FRAME_SCROLL_BAR_COLS macros to
20189 allow per-window scroll-bar settings.
20190 (WINDOW_LEFT_SCROLL_BAR_COLS, WINDOW_RIGHT_SCROLL_BAR_COLS): New macros.
20191 (WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH): New macro. Change code that
20192 referred to FRAME_LEFT_SCROLL_BAR_WIDTH.
20193 (WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH): New macro. Change code
20194 that referred to FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT and
20195 FRAME_SCROLL_BAR_WIDTH.
20196 (WINDOW_SCROLL_BAR_COLS, WINDOW_SCROLL_BAR_AREA_WIDTH)
20197 (WINDOW_SCROLL_BAR_AREA_X): New macros.
20198 (WINDOW_HEADER_LINE_HEIGHT): Rename from
20199 WINDOW_DISPLAY_HEADER_LINE_HEIGHT, moved from dispextern.h.
20200 (WINDOW_BOX_HEIGHT_NO_MODE_LINE): Rename from
20201 WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, moved from dispextern.h.
20202 (WINDOW_BOX_TEXT_HEIGHT): Rename from
20203 WINDOW_DISPLAY_PIXEL_WIDTH, moved from dispextern.h.
20204 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
20205 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
20206 (WINDOW_TEXT_TO_FRAME_PIXEL_X): Move here from dispextern.h.
20207 (WINDOW_LEFT_MARGIN_WIDTH): Rename from
20208 WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH, moved from dispextern.h.
20209 (WINDOW_RIGHT_MARGIN_WIDTH): Rename from
20210 WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, moved from dispextern.h.
20211 (window_from_coordinates): Update prototype.
20212 (Fset_window_buffer): Update EXFUN.
20213 (set_window_buffer): Update prototype.
20214
20215 * dispextern.h (struct glyph_matrix): Rename members window_left_x
20216 to window_left_col, window_top_y to window_top_line. All uses
20217 changed.
20218 (FRAME_INTERNAL_BORDER_WIDTH_SAFE): Remove macro; can now safely
20219 use FRAME_INTERNAL_BORDER_WIDTH macro instead as
20220 internal_border_width is now set to 0 for non-window frames.
20221 (WINDOW_DISPLAY_PIXEL_WIDTH, WINDOW_DISPLAY_PIXEL_HEIGHT)
20222 (WINDOW_DISPLAY_MODE_LINE_HEIGHT, WINDOW_DISPLAY_HEADER_LINE_HEIGHT)
20223 (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, WINDOW_DISPLAY_TEXT_HEIGHT)
20224 (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X)
20225 (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y, WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y)
20226 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
20227 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
20228 (WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH)
20229 (WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, WINDOW_WANTS_MODELINE_P):
20230 Move to window.h and renamed [see window.h changes].
20231 (WINDOW_AREA_TO_FRAME_PIXEL_X, WINDOW_AREA_PIXEL_WIDTH)
20232 (WINDOW_DISPLAY_TEXT_AREA_PIXEL_WIDTH): Remove macros.
20233 (WINDOW_WANTS_MODELINE_P, WINDOW_WANTS_HEADER_LINE_P):
20234 Use WINDOW_TOTAL_LINES.
20235 (frame_update_line_height): Remove prototype.
20236
20237 * buffer.h (struct buffer): Rename members measured in columns:
20238 left_margin_width to left_margin_cols, right_margin_width to
20239 right_margin_cols. All uses changed.
20240 New members left_fringe_width, right_fringe_width,
20241 fringes_outside_margins for per-buffer fringe settings.
20242 New members scroll_bar_width and vertical_scroll_bar_type for
20243 per-buffer scroll bar settings.
20244
20245 * buffer.c (init_buffer_once): Set buffer_defaults and
20246 buffer_local_flags for new buffer-local variables
20247 left_fringe_width, right_fringe_width, fringes_outside_margins,
20248 scroll_bar_width, and vertical_scroll_bar_type.
20249 (syms_of_buffer): Defvar_per_buffer them, and defvar_lisp_nopro
20250 default-* variables for them.
20251
20252 * dispnew.c: Make (many) trivial substitutions for renamed and
20253 new macros in dispextern.h, frame.h and window.h.
20254 (mode_line_string): No need to adjust width for mode lines, as it
20255 is already adjusted by the caller.
20256 (marginal_area_string): Handle fringes inside/outside margins.
20257
20258 * frame.c: Make (many) trivial substitutions for renamed and
20259 new macros in dispextern.h, frame.h and window.h.
20260 (make_frame): Initialize left_fringe_width, right_fringe_width,
20261 fringe_cols, scroll_bar_actual_width, border_width,
20262 internal_border_width, column_width, line_height, x_pixels_diff,
20263 y_pixels_diff, want_fullscreen, size_hint_flags, and win_gravity
20264 members with values suitable for a non-window frames.
20265
20266 * gtkutil.c: Make (many) trivial substitutions for renamed and
20267 new macros in dispextern.h, frame.h and window.h.
20268
20269 * indent.c: Make (few) trivial substitutions for renamed and
20270 new macros in dispextern.h, frame.h and window.h.
20271
20272 * keyboard.c: Make (many) trivial substitutions for renamed and
20273 new macros in dispextern.h, frame.h and window.h.
20274 (make_lispy_event): Use window positions returned from
20275 window_from_coordinates when constructing the lisp event for
20276 MOUSE_CLICK_EVENT and DRAG_N_DROP_EVENT, rather than calculating
20277 (incorrect) values locally.
20278 (make_lispy_movement): Use window positions returned from
20279 window_from_coordinates when constructing the lisp event, rather
20280 than calculating (incorrect) values locally.
20281
20282 * scroll.c: Make (some) trivial substitutions for renamed and
20283 new macros in dispextern.h, frame.h and window.h.
20284
20285 * sunfns.c (Fsun_menu_internal): Adapt to per-window fringes and
20286 scroll-bars.
20287
20288 * sysdep.c: Make (few) trivial substitutions for renamed and
20289 new macros in dispextern.h, frame.h and window.h.
20290
20291 * term.c: Make (some) trivial substitutions for renamed and
20292 new macros in dispextern.h, frame.h and window.h.
20293
20294 * widget.c: Make (few) trivial substitutions for renamed and
20295 new macros in dispextern.h, frame.h and window.h.
20296
20297 * window.c: Make (many) trivial substitutions for renamed and
20298 new macros in dispextern.h, frame.h and window.h.
20299 (make_window): Initialize new members
20300 left_margin_cols, right_margin_cols, left_fringe_width,
20301 right_fringe_width, fringes_outside_margins, scroll_bar_width,
20302 and vertical_scroll_bar_type.
20303 (coordinates_in_window): Adapt to new fringe/margin positions
20304 and per-window fringes and scroll-bars.
20305 Fix bug related to incorrectly adjusting coordinates by
20306 frame's internal_border_width (the effect normally negible since
20307 the internal_border_width is typically 0 or 1 pixel, but very
20308 noticeable for an internal_border_width of e.g. 25 pixels).
20309 Upon successful return (other than ON_NOTHING), the coordinates
20310 are now always properly converted to window relative for the
20311 given display element.
20312 (window_from_coordinates): Add new parameters wx and wy to
20313 return the window relative x and y position in the returned
20314 window and part. A null arg means, don't return the position.
20315 All callers changed.
20316 (adjust_window_margins): New function which may reduce the width
20317 of the display margins if a window's text area is too small after
20318 resizing or splitting windows.
20319 (size_window): Fix bug that did not account for display margin
20320 widths when checking the minimum width of a window; use
20321 adjust_window_margins.
20322 (set_window_buffer): Call Fset_window_fringes and
20323 Fset_window_scroll_bars to setup per-window elements.
20324 Add new arg KEEP_MARGINS_P. Non-nil means to keep window's
20325 existing display margin, fringe widths, and scroll bar settings
20326 (e.g. after splitting a window or resizing the frame).
20327 All callers changed.
20328 (Fset_window_buffer): New arg KEEP_MARGINS. All callers changed.
20329 (Fsplit_window): Duplicate original window's display margin,
20330 fringe, and scroll-bar settings; then call Fset_window_buffer with
20331 KEEP_MARGINS non-nil. This fixes a bug which caused a split
20332 window to only preserve the display margins in one of the windows.
20333 When splitting horizontally, call adjust_window_margins on both
20334 windows to ensure that the text area of the new windows is non too
20335 narrow. This fixes a bug which could cause Emacs to trap if the
20336 width of the split window was less than the width of the display
20337 margins.
20338 (window_box_text_cols): Rename from window_internal_width.
20339 All uses changed. Adapt to per-window fringes and scroll bars.
20340 Fix bug that caused vertical separator to be subtracted also on
20341 window frames. Fix another bug that did not reduce the returned
20342 value by the columns used for display margins.
20343 (window_scroll_line_based): Fix bug related to scrolling too much
20344 when display margins are present (implicitly fixed by the fix to
20345 window_box_text_cols).
20346 (scroll_left, scroll_right): Fix bug related to scrolling too far
20347 by default when display margins are present (implicitly fixed by
20348 the fix to window_box_text_cols).
20349 (struct saved_window): Rename members left to left_col, top to
20350 top_line, width to total_cols, height to total_lines, orig_top to
20351 orig_top_line, orig_height to orig_total_lines. All uses changed.
20352 New members left_margin_cols, right_margin_cols,
20353 left_fringe_width, right_fringe_width, fringes_outside_margins,
20354 scroll_bar_width, and vertical_scroll_bar_type for saving
20355 per-window display elements.
20356 (Fset_window_configuration): Restore display margins, fringes,
20357 and scroll bar settings. This fixes a bug which caused display
20358 margins to be discarded when saving and restoring a window
20359 configuration.
20360 (save_window_save): Save display margins, fringes, and scroll bar
20361 settings. This fixes a bug which caused display margins to be
20362 discarded when saving and restoring a window configuration.
20363 (Fset_window_margins): Do nothing if display margins are not
20364 really changed. Otherwise, call adjust_window_margins to ensure
20365 the text area doesn't get too narrow. This fixes a bug which
20366 could cause Emacs to trap if setting display margins wider than
20367 the width of the window.
20368 (Fset_window_fringes): New defun to allow user to specifically set
20369 this window's fringe widths and position vs. display margins.
20370 (Fwindow_fringes): New defun to return window's actual fringe settings.
20371 (Fset_window_scroll_bars): New defun to allow user to specifically
20372 set this window's scroll bar width and position.
20373 (Fwindow_scroll_bars): New defun to return window's actual scroll
20374 bar settings.
20375 (compare_window_configurations): Also compare display margins,
20376 fringes, and scroll bar settings.
20377 (syms_of_window): Defsubr new defuns for fringe and scroll bars.
20378
20379 * xdisp.c: Make (many) trivial substitutions for renamed and
20380 new macros in dispextern.h, frame.h and window.h.
20381 (window_box_width): Adapt to per-window fringes and scroll bars,
20382 and new fringe vs. display margin position. Note that returned
20383 value is no longer guaranteed to be a whole multiple of the frame
20384 column width, since per-window fringes may now be any width.
20385 (window_box_left_offset): New function like window_box_left, but
20386 value is relative to left border of window (rather than frame).
20387 (window_box_right_offset): New function like window_box_right,
20388 but value is relative to left border of window.
20389 (window_box_left): Adapt to per-window fringes and scroll bars,
20390 and new fringe vs. display margin position. Simplify by using
20391 WINDOW_LEFT_EDGE_X and window_box_left_offset.
20392 (window_box): Allow null args for unnecessary return values;
20393 change/simplify relevant callers.
20394 (x_y_to_hpos_vpos): Adapt to per-window fringes and scroll bars,
20395 and new fringe vs. display margin position.
20396 Use window_box_left_offset and window_box_right_offset
20397 (get_glyph_string_clip_rect): Adapt to per-window fringes and
20398 scroll bars, and new fringe vs. display margin position.
20399 Use WINDOW_LEFT_EDGE_X and WINDOW_TOTAL_WIDTH.
20400 (draw_fringe_bitmap): Rework to handle per-window fringes and new
20401 fringe vs. display margin position.
20402 (hscroll_window_tree): Use window_box_width instead of window_box.
20403 (redisplay_window): Adapt to per-window scroll bars.
20404 (draw_glyphs): Rework to handle per-window fringes and scroll
20405 bars, and new fringe vs. display margin position.
20406 Use WINDOW_LEFT_EDGE_X, WINDOW_TOTAL_WIDTH, and window_box_left.
20407 (x_clear_end_of_line): Adapt to per-window fringes and scroll
20408 bars, and new fringe vs. display margin position. Fix bug which
20409 increased total width of full_width rows by width of scroll bars
20410 although window's total width already includes that.
20411 (x_fix_overlapping_area): Simplify using window_box_left_offset.
20412 (expose_area): Simplify using window_box_left_offset.
20413 (x_draw_vertical_border): Handle per-window scroll bar settings,
20414 mixing windows with left, right and no scroll bars.
20415
20416 * xfaces.c [WINDOWSNT]: Move redefinition of FONT_WIDTH macro to
20417 where it's used in x_list_fonts (for clarity).
20418 (frame_update_line_height): Remove unused function; functionality
20419 is now done directly when setting the default font in x_set_font.
20420
20421 * xfns.c: Make (many) trivial substitutions for renamed and
20422 new macros in dispextern.h, frame.h and window.h.
20423
20424 * xmenu.c: Make (some) trivial substitutions for renamed and
20425 new macros in dispextern.h, frame.h and window.h.
20426
20427 * xterm.h (struct x_output): Move members left_pos, top_pos,
20428 border_width, pixel_height, pixel_width, line_height,
20429 internal_border_width, vertical_scroll_bar_extra,
20430 left_fringe_width, right_fringe_width, fringe_cols,
20431 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
20432 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
20433 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
20434 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
20435 (PIXEL_WIDTH, PIXEL_HEIGHT)
20436 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
20437 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Move to
20438 frame.h and renamed [see frame.h changes].
20439 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
20440 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
20441 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Move to frame.h
20442 and renamed [see frame.h changes].
20443
20444 * xterm.c: Make (several) trivial substitutions for renamed and
20445 new macros in dispextern.h, frame.h and window.h.
20446 (x_draw_glyph_string_box): Adapt to per-window fringes and scroll-bars.
20447 (scroll_run): Adapt to new fringe position.
20448 (glyph_rect): Use window coordinates returned from
20449 window_from_coordinates rather than frame_to_window_pixel_xy.
20450 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
20451 scroll-bars.
20452 (handle_one_xevent): Simplify a USE_GTK conditional.
20453 (x_clip_to_row): Remove superfluous whole_line_p arg and code
20454 (fringes are now inside margins, i.e. always in the clipping area).
20455 All callers changed.
20456 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
20457 directly, then call compute_fringe_widths. Don't call
20458 frame_update_line_height.
20459
20460 * w32term.h (struct w32_output): Move members left_pos, top_pos,
20461 border_width, pixel_height, pixel_width, line_height,
20462 internal_border_width, vertical_scroll_bar_extra,
20463 left_fringe_width, right_fringe_width, fringe_cols,
20464 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
20465 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
20466 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
20467 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
20468 (PIXEL_WIDTH, PIXEL_HEIGHT)
20469 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
20470 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Move to
20471 frame.h and renamed [see frame.h changes].
20472 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
20473 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
20474 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Move to frame.h
20475 and renamed [see frame.h changes].
20476
20477 * w32term.c: Make (several) trivial substitutions for renamed and
20478 new macros in dispextern.h, frame.h and window.h.
20479 (x_draw_glyph_string_box): Adapt to per-window fringes and scroll-bars.
20480 (glyph_rect): Use window coordinates returned from
20481 window_from_coordinates rather than frame_to_window_pixel_xy.
20482 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
20483 scroll-bars.
20484 (w32_clip_to_row): Remove superfluous whole_line_p arg and code
20485 (fringes are now inside margins, i.e. always in the clipping area).
20486 All callers changed.
20487 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
20488 directly, then call compute_fringe_widths. Don't call
20489 frame_update_line_height.
20490
20491 * w32console.c: Make (few) trivial substitutions for renamed and
20492 new macros in dispextern.h, frame.h and window.h.
20493
20494 * w32fns.c: Make (many) trivial substitutions for renamed and
20495 new macros in dispextern.h, frame.h and window.h.
20496
20497 * w32menu.c: Make (few) trivial substitutions for renamed and
20498 new macros in dispextern.h, frame.h and window.h.
20499
20500 * macterm.h (struct mac_output): Move members left_pos, top_pos,
20501 border_width, pixel_height, pixel_width, line_height,
20502 internal_border_width, vertical_scroll_bar_extra,
20503 left_fringe_width, right_fringe_width, fringe_cols,
20504 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
20505 x_pixels_diff, y_pixels_diff to struct frame (frame.h).
20506 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
20507 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
20508 (PIXEL_WIDTH, PIXEL_HEIGHT)
20509 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
20510 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Move to
20511 frame.h and renamed [see frame.h changes].
20512 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
20513 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
20514 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Move to frame.h
20515 and renamed [see frame.h changes].
20516
20517 * macterm.c: Make (several) trivial substitutions for renamed and
20518 new macros in dispextern.h, frame.h and window.h.
20519 (x_draw_glyph_string_box): Adapt to per-window fringes and scroll-bars.
20520 (glyph_rect): Use window coordinates returned from
20521 window_from_coordinates rather than frame_to_window_pixel_xy.
20522 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
20523 scroll-bars.
20524 (x_clip_to_row): Remove superfluous whole_line_p arg and code
20525 (fringes are now inside margins, i.e. always in the clipping area).
20526 All callers changed.
20527 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
20528 directly, then call compute_fringe_widths. Don't call
20529 frame_update_line_height.
20530
20531 * macfns.c: Make (several) trivial substitutions for renamed and
20532 new macros in dispextern.h, frame.h and window.h.
20533 (x_real_positions): Set f->x_pixels_diff and f->y_pixels_diff to 0.
20534
20535 * macmenu.c: Make (few) trivial substitutions for renamed and
20536 new macros in dispextern.h, frame.h and window.h.
20537
20538 * msdos.h (struct x_output): Remove members left_pos, top_pos,
20539 and line_height, and use corresponding new members in struct
20540 frame. All uses changed.
20541 (FRAME_LINE_HEIGHT, FRAME_INTERNAL_BORDER_WIDTH): Remove macros;
20542 superseeded by corresponding macros in frame.h.
20543
20544 * msdos.c: Make (several) trivial substitutions for renamed and
20545 new macros in dispextern.h, frame.h and window.h.
20546 (IT_note_mouse_highlight): Use updated window coordinates returned
20547 by window_from_coordinates, rather than adjusting them locally.
20548 (internal_terminal_init): No need to initialize line_height here;
20549 it now defaults to 1.
20550
20551 2003-05-24 Stefan Monnier <monnier@cs.yale.edu>
20552
20553 * keyboard.c (read_key_sequence): Adjust fkey and keytran when
20554 dropping `down' events.
20555
20556 2003-05-24 Andreas Schwab <schwab@suse.de>
20557
20558 * coding.c (find_safe_codings): Fix last change.
20559
20560 2003-05-24 Istvan Marko <mi@imarko.dhs.org> (tiny change)
20561
20562 * xfns.c (x_window): Fix typo from 2003-05-21 change.
20563
20564 2003-05-23 Stefan Monnier <monnier@cs.yale.edu>
20565
20566 * xdisp.c (display_mode_element): Increase max depth.
20567 Simplify the error handling code. Use a different error string
20568 for the case where we hit the depth limit.
20569
20570 * lisp.h (Vfundamental_mode_abbrev_table): Don't declare.
20571
20572 * buffer.c (reset_buffer_local_variables): Remove redundant setting.
20573
20574 2003-05-21 Stefan Monnier <monnier@cs.yale.edu>
20575
20576 * intervals.c (get_local_map): Don't get char-property of previous
20577 point any more: get_pos_property already does it and better.
20578
20579 2003-05-21 Dave Love <fx@gnu.org>
20580
20581 [Merged from unicode branch.]
20582
20583 * xfns.c (x_window, x_window): Use use_xim.
20584
20585 * xterm.c (use_xim): Initialize.
20586 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
20587 (x_term_init): Maybe set use_xim.
20588
20589 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
20590
20591 2003-05-21 Jason Rumney <jasonr@gnu.org>
20592
20593 * unexw32.c (_start): Remove _fmode initialization.
20594
20595 * emacs.c (main) [WINDOWSNT]: Move it here.
20596
20597 2003-05-20 Dave Love <fx@gnu.org>
20598
20599 * s/gnu-linux.h (MAIL_USE_FLOCK): Make it conditional.
20600
20601 2003-05-19 Richard M. Stallman <rms@gnu.org>
20602
20603 * xfaces.c (Finternal_set_lisp_face_attribute): Handle Qunspecified
20604 as value for QCfont attribute.
20605 (realize_default_face): lface should already exist; crash if not.
20606 Specify 0 for FORCE_P when calling set_lface_from_font_name.
20607
20608 * frame.c (Fignore_event): Doc fix.
20609
20610 2003-05-19 Kenichi Handa <handa@m17n.org>
20611
20612 * coding.c (decode_coding_string): Handle post-read-conversion
20613 even if the coding doesn't require decoding.
20614
20615 2003-05-18 Richard M. Stallman <rms@gnu.org>
20616
20617 * callproc.c (Fcall_process_region): Doc fix.
20618
20619 2003-05-17 Stefan Monnier <monnier@cs.yale.edu>
20620
20621 * lread.c (Fload): Print a message if package is obsolete.
20622
20623 * window.c (Fselect_window): Add optional `norecord' arg.
20624 (select_window_1): Fold into Fselect_window.
20625 (select_window_norecord): New function.
20626 (temp_output_buffer_show): Use it. Preserve current buffer.
20627
20628 * window.h (Fselect_window): Update declaration.
20629
20630 * window.c (delete_window, Fother_window, Fset_window_configuration):
20631 * minibuf.c (read_minibuf):
20632 * macterm.c (x_new_focus_frame):
20633 * frame.c (do_switch_frame, Fset_frame_selected_window, Fdelete_frame):
20634 * callint.c (Fcall_interactively):
20635 * xterm.c (x_new_focus_frame): Pass nil as new arg to Fselect_window.
20636
20637 * buffer.c (Fpop_to_buffer): Pass norecord to Fselect_window.
20638
20639 2003-05-17 David Kastrup <dak@gnu.org>
20640
20641 * process.c (read_process_output): Back out change from 2003-03-09.
20642
20643 2003-05-17 Stefan Monnier <monnier@cs.yale.edu>
20644
20645 * editfns.c (get_pos_property): Don't assume that `object' = nil.
20646
20647 * textprop.c (text_property_stickiness): New arg `buffer'.
20648
20649 * intervals.h (text_property_stickiness): New arg `buffer'.
20650 (get_pos_property): Declare.
20651
20652 * intervals.c (get_local_map): Use get_pos_property, to obey
20653 stickiness and empty overlays.
20654 (create_root_interval, graft_intervals_into_buffer): Use BEG.
20655 (merge_properties, intervals_equal, merge_properties_sticky):
20656 Use XCAR, XCDR.
20657 (adjust_for_invis_intang): Pass new arg to text_property_stickiness.
20658
20659 2003-05-17 Richard M. Stallman <rms@gnu.org>
20660
20661 * minibuf.c (read_minibuf): If buffer is empty, record the default
20662 in the history.
20663 (Fminibuffer_complete_word): When deleting the overlap, take account
20664 of its real position.
20665
20666 * fns.c (map_char_table): Fix previous change.
20667
20668 * syntax.c (find_defun_start):
20669 When open_paren_in_column_0_is_defun_start,
20670 return beginning of buffer.
20671
20672 * lisp.h (map_char_table): Declare added arg.
20673
20674 * fns.c (map_char_table): New arg TABLE gets the master table.
20675 All calls changed.
20676 Process default and inheritance, resorting to Faref if necessary.
20677
20678 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
20679 (Faccessible_keymaps): Pass new arg to map_char_table.
20680
20681 * fontset.c (Ffontset_info): Pass new arg to map_char_table.
20682
20683 * casetab.c (set_case_table): Pass new arg to map_char_table.
20684
20685 * data.c (let_shadows_buffer_binding_p): Make target of p volatile.
20686
20687 * lisp.h (specbinding_func): New typedef.
20688 (struct specbinding): Use specbinding_func, to put the `volatile'
20689 in the right place.
20690
20691 * alloc.c (Fgarbage_collect): Cast pointers into specpdl
20692 to avoid GCC warning.
20693
20694 2003-05-16 Ralph Schleicher <rs@nunatak.allgaeu.org>
20695
20696 * fileio.c (Fdelete_file): Handle symlinks pointing to directories.
20697
20698 2003-05-15 Stefan Monnier <monnier@cs.yale.edu>
20699
20700 * keyboard.c (apply_modifiers): Don't fill the other cache.
20701
20702 2003-05-14 Stefan Monnier <monnier@cs.yale.edu>
20703
20704 * .gdbinit-union: New file, for USE_LISP_UNION_TYPE users.
20705
20706 * window.h (Qwindowp, Qwindow_live_p, Vwindow_list)
20707 (Fwindow_end, Fselected_window, Fdelete_window, Fwindow_buffer)
20708 (Fget_buffer_window, Fsave_window_excursion, Fsplit_window)
20709 (Fset_window_configuration, Fcurrent_window_configuration)
20710 (compare_window_configurations, Fcoordinates_in_window_p, Fwindow_at)
20711 (Fpos_visible_in_window_p, mark_window_cursors_off)
20712 (window_internal_height, window_internal_width, Frecenter)
20713 (Fscroll_other_window, Fset_window_start, temp_output_buffer_show)
20714 (replace_buffer_in_all_windows, init_window_once, init_window)
20715 (syms_of_window, keys_of_window): Move from lisp.h.
20716 * lisp.h: Move window.c declarations to window.h.
20717
20718 * bytecode.c: Include window.h.
20719 * emacs.c: Include window.h.
20720
20721 * keyboard.c (make_lispy_event): Apply modifiers to multibyte-char key.
20722 (keyremap): Add `parent' field.
20723 (keyremap_step): Use it. Remove `parent' argument.
20724 (read_key_sequence): Setup and use the new `parent' field.
20725
20726 2003-05-11 Stefan Monnier <monnier@cs.yale.edu>
20727
20728 * keyboard.c (adjust_point_for_property): Ensure termination.
20729
20730 2003-05-10 Stefan Monnier <monnier@cs.yale.edu>
20731
20732 * keyboard.c (follow_key): Remove dead variable `did_meta'.
20733 (access_keymap_keyremap, keyremap_step): New funs, extracted from the
20734 duplicated handling of function-key-map and key-translation-map
20735 in read_key_sequence.
20736 (read_key_sequence): Use them.
20737
20738 * keyboard.c (adjust_point_for_property): Try harder to move point
20739 to the non-sticky end of an invisible property.
20740
20741 * xdisp.c (single_display_prop_intangible_p): Make `space' display
20742 property intangible as well.
20743
20744 2003-05-10 Andreas Schwab <schwab@suse.de>
20745
20746 * xmenu.c (single_menu_item): Change last parameter to void* to
20747 avoid warning.
20748
20749 2003-05-09 Richard M. Stallman <rms@gnu.org>
20750
20751 * print.c (Fprin1_to_string): Instead of gcpro, set abort_on_gc.
20752 Bind Qinhibit_modification_hooks to t so there will be no GC.
20753 Rename local `tem' to `save_deactivate_mark'.
20754
20755 * eval.c (specpdl_ptr): Declare volatile.
20756 (unbind_to): Copy the whole binding and decrement specpdl_ptr
20757 before doing the work of unbinding it.
20758
20759 * lisp.h (struct specbinding): Declare elements volatile.
20760 (specpdl_ptr): Declare volatile.
20761
20762 * Makefile.in (alloca.o): Specify -DDO_BLOCK_INPUT in compiling.
20763
20764 * alloca.c: Test DO_BLOCK_INPUT rather than `emacs'
20765 for use of BLOCK_INPUT and inclusion of lisp.h and blockinput.h.
20766
20767 2003-05-08 Dave Love <fx@gnu.org>
20768
20769 * coding.c (Vlast_coding_system_used): Doc fix.
20770
20771 2003-05-07 Jason Rumney <jasonr@gnu.org>
20772
20773 * fileio.c (Ffile_symlink_p): Let handlers handle symlinks even
20774 when system does not support them.
20775
20776 2003-05-05 Stefan Monnier <monnier@cs.yale.edu>
20777
20778 * fileio.c (Qwrite_region_annotate_functions): New var.
20779 (build_annotations): Use it to process the global part of the hook.
20780 (syms_of_fileio): Init and staticpro it.
20781
20782 * keyboard.c (safe_run_hooks_error): Display a message instead of
20783 silently ignoring the error.
20784
20785 2003-05-03 Stefan Monnier <monnier@cs.yale.edu>
20786
20787 * keyboard.c (input_available_signal): Mark static.
20788 (menu_bar_items): Use map_keymap.
20789 (menu_bar_one_keymap): Remove.
20790 (menu_bar_item): Adjust arglist (for use in map_keymap).
20791 Properly hide a second binding when not both are keymaps.
20792
20793 * xmenu.c (struct skp): New struct, to pass args through map_keymap.
20794 (single_keymap_panes): Use it and map_keymap.
20795 (single_menu_item): Use skp as well.
20796
20797 * keymap.h (map_keymap_function_t): New type.
20798 (map_keymap): Declare.
20799
20800 * keymap.c (map_keymap_item, map_keymap_char_table_item, map_keymap)
20801 (map_keymap_call, Fmap_keymap): New functions.
20802 (syms_of_keymap): Defsubr map-keymap.
20803
20804 2003-05-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
20805
20806 * gtkutil.c (create_dialog, make_widget_for_menu_item)
20807 (make_menu_item, create_menus, xg_update_menu_item): Don't call
20808 ..._with_mnemonic functions for menu items.
20809
20810 2003-05-01 Kenichi Handa <handa@m17n.org>
20811
20812 * coding.c (coding_system_accept_latin_extra_p): Delete this
20813 function.
20814 (find_safe_codings): Pay attention to
20815 the property tranlsation-table-for-encode of each codings.
20816 (syms_of_coding): Give Qtranslation_table the extra slot number 2.
20817
20818 2003-05-01 Stefan Monnier <monnier@cs.yale.edu>
20819
20820 * eval.c (Funwind_protect): Use func=Fprogn rather than symbol=Qnil.
20821
20822 2003-04-30 Stefan Monnier <monnier@cs.yale.edu>
20823
20824 * eval.c (unbind_to): Don't handle symbol = Qnil any more.
20825
20826 * lisp.h (CHECK): Wrap args in parenthesis.
20827 (specbind): Fix doc: symbol = Qnil is not supported any more.
20828
20829 * bytecode.c (Fbyte_code) <unwind-protect>:
20830 Use Fprogn rather than 0 and Qnil.
20831
20832 * keyboard.c (parse_modifiers_uncached): Parse `down', `drag',
20833 `double', and `triple' modifiers as well.
20834
20835 2003-04-30 Richard M. Stallman <rms@gnu.org>
20836
20837 * keyboard.c (echo_char): Don't clear out a dash that follows a space.
20838
20839 * alloc.c (abort_on_gc): New variable.
20840 (Fgarbage_collect): Abort if abort_on_gc is set.
20841
20842 * lisp.h (abort_on_gc): Add decl.
20843
20844 * eval.c (Fsignal): Clear abort_on_gc.
20845
20846 * editfns.c (Fformat): Set abort_on_gc during first scan of format.
20847 Reinit FORMAT_START and END before second scan.
20848
20849 * xdisp.c (move_it_vertically_backward): Do the final big else
20850 even if nlines is 0.
20851
20852 * xdisp.c (redisplay_internal): Finish the per-frame loop
20853 even if redisplay is suspended by input.
20854
20855 2003-04-24 Andrew Choi <akochoi@shaw.ca>
20856
20857 * macterm.c (x_list_fonts): Return all fonts that match if
20858 maxnames = -1.
20859
20860 2003-04-25 Kenichi Handa <handa@m17n.org>
20861
20862 * syntax.c (skip_chars): Fix previous change.
20863
20864 2003-04-24 Kenichi Handa <handa@m17n.org>
20865
20866 * syntax.c (skip_chars): Make the code faster by using the common
20867 technique of *p, *stop, and *endp.
20868
20869 2003-04-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
20870
20871 * xdisp.c (update_tool_bar): BLOCK_INPUT before calling
20872 tool_bar_items so GTK tool bar expose callback does not access items
20873 being updated.
20874
20875 2003-04-19 Stefan Monnier <monnier@cs.yale.edu>
20876
20877 * eval.c (Fapply): Undo last change and add a comment about why.
20878
20879 2003-04-18 Miles Bader <miles@gnu.org>
20880
20881 * data.c (Faset): Calculate nbytes earlier, to satisfy the now
20882 pickier PARSE_MULTIBYTE_SEQ.
20883
20884 2003-04-17 Stefan Monnier <monnier@cs.yale.edu>
20885
20886 * eval.c (For, Fand, Fprogn, un_autoload, do_autoload):
20887 Use XCDR, XCAR, CONSP.
20888 (Fdefmacro): Fix docstring. Use XCAR, XCDR.
20889 (Fapply): Remove unnecessary GCPRO.
20890
20891 * doc.c (Fsubstitute_command_keys): Remove spurious casts.
20892
20893 * charset.h (PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
20894
20895 * buffer.h: Don't hardcode BEG==1.
20896
20897 * abbrev.c (Fdefine_abbrev_table): Use XCAR, XCDR.
20898
20899 2003-04-16 Richard M. Stallman <rms@gnu.org>
20900
20901 * xdisp.c (try_window, try_window_reusing_current_matrix):
20902 When at end of window, set window_end_pos to Z-ZV.
20903
20904 * buffer.c (Foverlay_recenter): Doc fix.
20905
20906 2003-04-14 Stefan Monnier <monnier@cs.yale.edu>
20907
20908 * dispnew.c (Fsit_For): Support XEmacs-style arg list.
20909
20910 2003-04-14 Andrew Choi <akochoi@shaw.ca>
20911
20912 * macterm.c (mac_check_for_quit_char): Don't check more often than
20913 once a second.
20914
20915 2003-04-11 Stefan Monnier <monnier@cs.yale.edu>
20916
20917 * keyboard.c (kbd_buffer_get_event): Don't handle SELECT_WINDOW_EVENT
20918 specially, so that they can't hide an implicit switch-frame event.
20919 (make_lispy_event): Handle SELECT_WINDOW_EVENT.
20920 (head_table): Use switch-frame as event_kind for select-window.
20921 (keys_of_keyboard): Don't bind [select-window] in special-event-map.
20922
20923 * editfns.c (Fformat): Lisp_Object/int mixup.
20924 (format2): Remove unused var numargs.
20925
20926 2003-04-11 Kenichi Handa <handa@m17n.org>
20927
20928 * fileio.c (Vafter_insert_file_adjust_coding_function): Delete.
20929 (Qafter_insert_file_set_coding): New variable.
20930 (syms_of_fileio): Initialize and staticpro it. Delete declaration
20931 for after-insert-file-adjust-coding-function.
20932 (Finsert_file_contents): Call Qafter_insert_file_set_coding
20933 instead of Vafter_insert_file_adjust_coding_function.
20934
20935 2003-04-11 Kenichi Handa <handa@m17n.org>
20936
20937 * lisp.h (temp_echo_area_glyphs): Adjust prototype.
20938
20939 * minibuf.c (temp_echo_area_glyphs): Change the arg to Lisp
20940 string. Callers changed.
20941
20942 2003-04-10 Kenichi Handa <handa@m17n.org>
20943
20944 * fileio.c (Vafter_insert_file_adjust_coding_function): New variable.
20945 (syms_of_fileio): Declare it as a lisp variable.
20946 (Finsert_file_contents):
20947 Call Vafter_insert_file_adjust_coding_function before calling
20948 decode-format.
20949
20950 2003-04-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
20951
20952 * xterm.c (xg_scroll_callback): Call gtk_range_get_adjustment to
20953 get GtkAdjustment as widget now is a GtkRange.
20954
20955 * gtkutil.c (xg_create_scroll_bar): Connect to value-changed on
20956 GtkRange to avoid memory leak.
20957
20958 2003-04-09 Kenichi Handa <handa@m17n.org>
20959
20960 * xfaces.c (Vface_font_rescale_alist): New variable.
20961 (struct font_name): New member rescale_ratio.
20962 (font_rescale_ratio): New function.
20963 (split_font_name): If NUMERIC_P is nonzero, set font->rescale_ratio.
20964 (better_font_p): On comparing point sized, pay attention to
20965 recale_ratio member of fonts.
20966 (build_scalable_font_name): Reflect font->rescale_ratio in the
20967 font name.
20968 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
20969
20970 * lread.c (read1): Before calling index, check if the 2nd
20971 arguemnt is in ASCII range.
20972
20973 2003-04-08 Richard M. Stallman <rms@gnu.org>
20974
20975 * fileio.c (Ffile_symlink_p): Doc fix.
20976
20977 * editfns.c (Fformat): Translate positions of text properties
20978 in the format string to apply them to the result.
20979
20980 * fileio.c (Finsert_file_contents): Doc fix.
20981 (syms_of_fileio) <after-insert-file-functions>: Doc fix.
20982
20983 2003-04-08 Ivan Zakharyaschev <imz@altlinux.org> (tiny change)
20984
20985 * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN.
20986
20987 2003-04-08 Steven Tamm <steventamm@mac.com>
20988
20989 * mac.c (init_mac_osx_environment): Switch libexec and bin so
20990 that self-contained application finds libexec files.
20991
20992 2003-04-08 Kenichi Handa <handa@m17n.org>
20993
20994 * coding.c (code_convert_region_unwind):
20995 Set Vlast_coding_system_used to the argument.
20996 (code_convert_region): If post-read-conversion function changed
20997 the value of last-coding-sytem, keep the new value in
20998 coding->symbol so that it won't be overridden.
20999 (run_pre_post_conversion_on_str): Likewise.
21000 (coding_system_accept_latin_extra_p): New function.
21001 (find_safe_codings): Pay attention to characters registered in
21002 latin-extra-code-table.
21003
21004 2003-04-07 Thien-Thi Nguyen <ttn@gnu.org>
21005
21006 * Makefile.in (md5.o): Add missing dependency info.
21007
21008 2003-04-06 Richard M. Stallman <rms@gnu.org>
21009
21010 * xselect.c (x_handle_selection_request): Move UNGCPRO to very end.
21011
21012 * marker.c (verify_bytepos): New function.
21013
21014 * intervals.c (set_intervals_multibyte_1): When becoming
21015 multibyte, adjust right and left child sizes to a whole set of
21016 characters. If an interval gets zero total-length, delete it.
21017 If an interval consists of just its children, delete one of them.
21018
21019 * intervals.h (CHECK_TOTAL_LENGTH): New macro.
21020 * intervals.c: Add many calls to CHECK_TOTAL_LENGTH.
21021
21022 * alloc.c (VALIDATE_LISP_STORAGE): Macro deleted.
21023 All calls deleted.
21024 (lisp_malloc): Do the work here directly.
21025
21026 2003-04-06 Gareth Jones <emacs@referential.org.uk> (tiny change)
21027
21028 * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub
21029 char tables.
21030
21031 2003-04-04 Kenichi Handa <handa@m17n.org>
21032
21033 * editfns.c (Fformat): Use a copy of FORMAT string so that we can
21034 destructively change "%S" to "%s".
21035
21036 2003-04-03 Miles Bader <miles@gnu.org>
21037
21038 * xfaces.c (choose_face_font): Make sure *NEEDS_OVERSTRIKE is
21039 always set.
21040
21041 2003-04-01 Dave Love <fx@gnu.org>
21042
21043 * xfns.c (xpm_lookup_color): Grok "opaque".
21044
21045 2003-03-31 Andrew Choi <akochoi@shaw.ca>
21046
21047 * frame.c (x_report_frame_params) [HAVE_CARBON]: Do not report
21048 parent window ID.
21049
21050 * macfns.c (syms_of_macfns): Remove call to init_x_parm_symbols.
21051
21052 * macterm.h (struct mac_output): Define x_pixels_diff and
21053 y_pixels_diff.
21054
21055 2003-03-31 Juanma Barranquero <lektu@terra.es>
21056
21057 * makefile.w32-in ($(BLD)/frame.$(O)): Add dependency on
21058 blockinput.h and files included from it.
21059
21060 2003-03-31 Kim F. Storm <storm@cua.dk>
21061
21062 The following changes consolidates the common code related to
21063 frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
21064 files into frame.c.
21065
21066 * frame.c: Include blockinput.h.
21067 (Vx_resource_name, Vx_resource_class, Qx_frame_parameter)
21068 (Qx_resource_name, Qface_set_after_frame_default): Define vars here.
21069 (Qauto_raise, Qauto_lower, ...): Define all frame parameter
21070 related vars here.
21071 (struct frame_parm_table, frame_parms): New table for describing
21072 frame parameters and their associated Q-variable.
21073 The order of the parameters corresponds to the sequence of the
21074 frame_parm_handlers table in redisplay_interface.
21075 (x_fullscreen_move, x_set_frame_parameters)
21076 (x_report_frame_params, x_set_fullscreen, x_set_line_spacing)
21077 (x_set_screen_gamma, x_set_font, x_set_fringe_width)
21078 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
21079 (x_set_autoraise, x_set_autolower, x_set_unsplittable)
21080 (x_set_vertical_scroll_bars, x_set_scroll_bar_width, x_icon_type):
21081 Generic functions for processing of frame parameters.
21082 (validate_x_resource_name, xrdb_get_resource, Fx_get_resource)
21083 (display_x_get_resource, x_get_resource_string): Functions for
21084 generic access to X resources.
21085 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
21086 (x_default_parameter, Fx_parse_geometry): Functions for generic
21087 access to frame parameters.
21088 (x_figure_window_size): Generic calculation of frame size.
21089 Fixed to add space needed for tool bar. Also setup size_hint_flags.
21090 (syms_of_frame): Intern and staticpro frame parameter variables.
21091 Defvar_lisp Vx_resource_class and Vx_resource_name here.
21092 Defsubr Sx_get_resource and Sx_parse_geometry.
21093
21094 * frame.h (Qauto_raise, Qauto_lower, ...): Declare extern all frame
21095 parameter related vars defined in frame.c.
21096 (EMACS_CLASS): Define here.
21097 (enum FULLSCREEN_*): Define here.
21098 (x_set_scroll_bar_default_width, x_wm_set_icon_position)
21099 (x_set_offset, x_new_font, x_new_fontset): Add prototypes.
21100 (x_fullscreen_adjust, x_set_frame_parameters, x_report_frame_params)
21101 (x_set_fullscreen, x_set_line_spacing, x_set_screen_gamma, x_set_font)
21102 (x_set_fringe_width, x_set_border_width, x_set_internal_border_width)
21103 (x_set_visibility, x_set_autoraise, x_set_autolower)
21104 (x_set_unsplittable, x_set_vertical_scroll_bars)
21105 (x_set_scroll_bar_width, x_icon_type, validate_x_resource_name)
21106 (x_figure_window_size): Add prototypes.
21107
21108 * dispextern.h (frame_parm_handler): New typedef.
21109 (struct redisplay_interface): New member frame_parm_handlers.
21110 (enum resource_types): Move declaration here.
21111 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
21112 (x_default_parameter): Add prototypes.
21113
21114 * window.c: Remove extern decl for frame parameter vars.
21115 (change_window_heights): New generic function;
21116 replaces x_change_window_heights. All users changed.
21117
21118 * window.h (change_window_heights): Add prototype.
21119
21120 * xfaces.c: Remove extern decl for frame parameter vars.
21121
21122 * xterm.h (EMACS_CLASS): Remove. Use generic define.
21123 (struct w32_display_info): Fix type of xrdb member.
21124 (enum FULLSCREEN_*): Remove.
21125 Remove prototypes for generic functions (in frame.h).
21126
21127 * xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
21128 parameters now defined in frame.h and frame.c.
21129 (Vx_resource_name): Remove. Use generic var.
21130 (enum x_frame_parms): Remove (bogus, unused enum).
21131 (check_x_display_info): Make non-static (for frame.c).
21132 (struct x_frame_parm_table, x_frame_parms): Remove.
21133 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
21134 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
21135 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
21136 (x_change_window_heights, x_set_autoraise, x_set_autolower)
21137 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
21138 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
21139 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
21140 Remove. Use generic functions instead.
21141 (enum resource_types): Remove.
21142 (x_set_scroll_bar_default_width): New global function (for frame.c).
21143 (Fx_create_frame): Depend on x_figure_window_size to add space for
21144 toolbar and setup size_hint_flags.
21145 (x_frame_parm_handlers): New table for redisplay_interface.
21146 (syms_of_xfns): Don't intern/staticpro removed vars.
21147
21148 * xterm.c: Remove unnecessary extern declarations.
21149 (x_fullscreen_adjust): Remove. Use generic instead.
21150 (x_redisplay_interface): Add x_frame_parm_handlers member.
21151
21152 * w32gui.h (XrmDatabase): New (dummy) typedef.
21153
21154 * w32term.h (EMACS_CLASS): Remove. Use generic define.
21155 (struct w32_display_info): Fix type of xrdb member.
21156 (enum FULLSCREEN_*): Remove.
21157 (x_fullscreen_adjust): Remove prototype.
21158
21159 * w32fns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
21160 parameters now defined in frame.h and frame.c.
21161 (Vx_resource_name): Remove. Use generic var.
21162 (enum x_frame_parms): Remove (bogus, unused enum).
21163 (check_x_display_info): Make non-static (for frame.c).
21164 (struct x_frame_parm_table, x_frame_parms): Remove.
21165 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
21166 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
21167 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
21168 (x_change_window_heights, x_set_autoraise, x_set_autolower)
21169 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
21170 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
21171 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
21172 Remove. Use generic functions instead.
21173 (enum resource_types): Remove.
21174 (x_set_scroll_bar_default_width): New global function (for frame.c).
21175 (Fx_create_frame): Depend on x_figure_window_size to add space for
21176 toolbar and setup size_hint_flags.
21177 (w32_frame_parm_handlers): New table for redisplay_interface.
21178 (syms_of_w32fns): Don't intern/staticpro removed vars.
21179
21180 * w32term.c: Remove unnecessary extern declarations.
21181 (x_fullscreen_adjust): Remove. Use generic instead.
21182 (x_redisplay_interface): Add w32_frame_parm_handlers member.
21183
21184 * w32reg.c (x_get_string_resource): Use XrmDatabase.
21185
21186 * macgui.h (XrmDatabase): New (dummy) typedef.
21187
21188 * macterm.h (EMACS_CLASS): Remove.
21189 (struct mac_display_info): Add xrdb member.
21190 (struct mac_output): Add want_fullscreen member.
21191
21192 * macfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
21193 parameters now defined in frame.h and frame.c.
21194 (Vx_resource_name): Remove. Use generic var.
21195 (check_x_display_info): Make non-static (for frame.c).
21196 (struct x_frame_parm_table, x_frame_parms): Remove.
21197 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
21198 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
21199 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
21200 (x_change_window_heights, x_set_autoraise, x_set_autolower)
21201 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
21202 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
21203 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
21204 Remove. Use generic functions instead.
21205 (enum resource_types): Remove.
21206 (x_set_scroll_bar_default_width): New global function (for frame.c).
21207 (mac_frame_parm_handlers): New table for redisplay_interface.
21208 (syms_of_macfns): Don't intern/staticpro removed vars.
21209
21210 * macterm.c: Remove unnecessary extern declarations.
21211 (x_redisplay_interface): Add mac_frame_parm_handlers member.
21212
21213 * Makefile.in (frame.o): Add dependency on blockinput.h and files
21214 included from it (atimer.h and systime.h).
21215
21216 2003-03-30 Andreas Schwab <schwab@suse.de>
21217
21218 * xdisp.c (x_insert_glyphs): Fix swapped width and height
21219 parameters for shift_glyphs_for_insert.
21220
21221 * macterm.c (x_redisplay_interface): Add missing entry for
21222 draw_vertical_window_border.
21223
21224 2003-03-29 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
21225
21226 * fileio.c (Fexpand_file_name): In the no-handler case, after
21227 expanding, look again for a handler and invoke it. This is needed
21228 for filenames like "/foo/../user@host:/bar/../baz" -- the first
21229 expansion produces "/user@host:/bar/../baz" which needs to be
21230 expanded again for the finame result "/user@host:/baz".
21231
21232 2003-03-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21233
21234 * gtkutil.c (xg_tool_bar_item_expose_callback): Reduce size
21235 of area to be redrawn for better performance.
21236
21237 2003-03-28 Stefan Monnier <monnier@cs.yale.edu>
21238
21239 * xterm.c (take_vertical_position_into_account): Remove.
21240 (xt_action_hook): Call set_vertical_scroll_bar if needed.
21241 (XM_SB_MIN, XM_SB_RANGE): Remove (min is now set to 0).
21242 (xm_scroll_callback, x_create_toolkit_scroll_bar)
21243 (x_set_toolkit_scroll_bar_thumb): Simplify.
21244 (x_scroll_bar_expose): Only compile if !USE_TOOLKIT_SCROLL_BARS.
21245 (XTread_socket): Remove unused var.
21246 (x_make_frame_invisible): Replace goto with else.
21247
21248 * xdisp.c (set_vertical_scroll_bar): New fun.
21249 (redisplay_window): Use it.
21250
21251 2003-03-26 Richard M. Stallman <rms@gnu.org>
21252
21253 * xdisp.c (update_tool_bar): Recompute tool bar if
21254 update_mode_lines is set. Set w->update_mode_line
21255 only if the tool bar contents actually change.
21256 (update_menu_bar): Undo previous change.
21257
21258 2003-03-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21259
21260 * gtkutil.c (xg_resize_widgets): Don't call xg_frame_cleared.
21261 (xg_frame_set_char_size): Calculate scroll bar width before frame
21262 width. Call SET_FRAME_GARBAGED and cancel_mouse_face.
21263 (xg_separator_p): Check for all documented separator types.
21264 (xg_update_scrollbar_pos): Variable gheight not needed, use height.
21265 (update_frame_tool_bar): Don't call gdk_window_process_all_updates.
21266
21267 * xdisp.c (update_menu_bar): Set w->update_mode_line to Qt
21268 so tool bar gets updated.
21269
21270 2003-03-26 Stefan Monnier <monnier@cs.yale.edu>
21271
21272 * data.c (store_symval_forwarding): Re-instate part of the code
21273 that was deleted with too much enthusiasm.
21274
21275 2003-03-25 Stefan Monnier <monnier@cs.yale.edu>
21276
21277 * data.c (store_symval_forwarding): Delete special read-only
21278 hack for type == -1, since we now use ->constant instead.
21279 (Fkill_local_variable): Don't use XBUFFER if it can be nil.
21280
21281 * buffer.c (overlays_in): Declare static.
21282 (syms_of_buffer) <enable-multibyte-characters>: Use the symbol's
21283 `constant' field rather than the variable's `type' field.
21284
21285 2003-03-24 Andrew Choi <akochoi@shaw.ca>
21286
21287 * config.in [MAC_OSX]: Do not redefine bcopy, bzero, and bcmp.
21288
21289 * dispextern.h [HAVE_CARBON]: Include Carbon.h.
21290
21291 * fns.c [MAC_OSX]: Do not redefine vector.
21292
21293 * keyboard.c [MAC_OSX]: Handle SIGINT with interrupt_signal.
21294
21295 * macgui.h: Remove definition of No_Cursor.
21296
21297 * macterm.h: Include Carbon.h. Replace (struct Cursor *) by Cursor.
21298
21299 * xdisp.c: Define No_Cursor.
21300 (x_write_glyphs, notice_overwritten_cursor)
21301 (draw_phys_cursor_glyph, note_mode_line_or_margin_highlight)
21302 (note_mouse_highlight): Remove Mac-specific code.
21303 (note_mouse_highlight): Use bcmp instead of == to compare Cursors.
21304
21305 2003-03-24 John Paul Wallington <jpw@gnu.org>
21306
21307 * xdisp.c (redisplay_window): If mini window's buffer is not
21308 empty, then redisplay it like other windows.
21309
21310 2003-03-23 Kim F. Storm <storm@cua.dk>
21311
21312 * w32term.c (w32_draw_window_cursor): Fix last change.
21313
21314 2003-03-23 Kenichi Handa <handa@m17n.org>
21315
21316 * alloc.c (make_string_from_bytes, make_specified_string):
21317 Add `const' for the arg CONTENTS.
21318
21319 * lisp.h (make_string_from_bytes, make_specified_string):
21320 Prototypes adjusted.
21321
21322 2003-03-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21323
21324 * xdisp.c (get_glyph_string_clip_rect): Remove ; at end of #endif.
21325
21326 * gtkutil.h: Take two more arguments to xg_update_scrollbar_pos.
21327 (XG_SB_RANGE): New define.
21328
21329 * gtkutil.c (xg_fixed_handle_expose): New function.
21330 (xg_create_frame_widgets): Call xg_fixed_handle_expose for
21331 expose events.
21332 (xg_update_scrollbar_pos): Take two more arguments, left and width
21333 of scroll bar including borders.
21334 Clear left and right part outside scroll bar separately as some
21335 themes have bars that are not an even number of pixels.
21336 Don't set reallocate_redraws, don't call
21337 gdk_window_process_all_updates.
21338 (xg_set_toolkit_scroll_bar_thumb): Upper value is fixed,
21339 so no need to change it. Calculate size and value with XG_SB_RANGE.
21340
21341 * xterm.c (x_scroll_bar_create, XTset_vertical_scroll_bar):
21342 Pass left and width of scroll bar including borders to
21343 xg_update_scrollbar_pos.
21344
21345 2003-03-22 Thien-Thi Nguyen <ttn@gnu.org>
21346
21347 * Makefile.in: Make sure space precedes end-of-line backslashes.
21348
21349 2003-03-22 Kim F. Storm <storm@cua.dk>
21350
21351 * xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
21352 Add generic versions here. Remove system specific versions
21353 defined elsewhere.
21354
21355 * dispextern.h (pixel_to_glyph_coords, glyph_to_pixel_coords):
21356 Add prototypes.
21357
21358 * xterm.h (STORE_NATIVE_RECT): New macro.
21359
21360 2003-03-21 Kim F. Storm <storm@cua.dk>
21361
21362 * xdisp.c (get_glyph_string_clip_rect):
21363 Use FRAME_INTERNAL_BORDER_WIDTH.
21364
21365 * dispextern.h (struct redisplay_interface): Add active_p
21366 argument to draw_window_cursor member. All uses changed.
21367
21368 2003-03-21 Kim F. Storm <storm@cua.dk>
21369
21370 The following changes consolidate code related to writing and
21371 inserting glyphs, exposing frame, the tool bar, the mouse face,
21372 the output cursor, and help echo from xterm.c, w32term.c and
21373 macterm.c into xdisp.c. It also generalizes the use of the
21374 window_part enum instead of using numeric values throughout.
21375
21376 * xdisp.c: Consolidate gui-independent code here.
21377 Include keymap.h.
21378 (Qhelp_echo): Import.
21379 (mouse_autoselect_window, x_stretch_cursor_p): Declare here.
21380 (help_echo_string, help_echo_window, help_echo_object)
21381 (previous_help_echo_string, help_echo_pos): Declare here.
21382 (output_cursor, last_mouse_frame, last_tool_bar_item): Declare here.
21383 (estimate_mode_line_height): Define here. Handle windowing
21384 systems directly (without using estimate_mode_line_height_hook).
21385 (x_y_to_hpos_vpos, get_tool_bar_item, note_tool_bar_highlight):
21386 (update_window_cursor, update_cursor_in_window_tree)
21387 (fast_find_position, fast_find_string_pos)
21388 (note_mode_line_highlight, note_mode_line_or_margin_highlight)
21389 (expose_area, expose_line, expose_overlaps, expose_window)
21390 (expose_window_tree, phys_cursor_in_rect_p): New generic versions;
21391 declared static as they are only used locally in xdisp.c.
21392 (draw_glyphs): Rename from x_draw_glyphs and make static.
21393 (tool_bar_item_info, notice_overwritten_cursor): Make static.
21394 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
21395 (set_output_cursor, x_cursor_to, handle_tool_bar_click)
21396 (x_write_glyphs, x_insert_glyphs, x_clear_end_of_line):
21397 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
21398 (display_and_set_cursor, x_update_cursor, x_clear_cursor)
21399 (show_mouse_face, clear_mouse_face, cursor_in_mouse_face_p)
21400 (note_mouse_highlight, x_clear_window_mouse_face)
21401 (cancel_mouse_face, x_draw_vertical_border, expose_frame)
21402 (x_intersect_rectangles): New generic functions for use by xdisp.c
21403 and GUI front-ends.
21404 (syms_of_xdisp): Initialize and staticpro help_echo* variables.
21405 Defvar_bool "x-streach-cursor" and "mouse-autoselect-window" here.
21406
21407 * dispextern.h (Display_Info): Generic typedef for *_display_info.
21408 (NativeRectangle): Generic typedef for rectangle type.
21409 (enum window_part): Move here from window.c.
21410 (struct redisplay_interface): New members flush_display_optional,
21411 define_frame_cursor, clear_frame_area, draw_window_cursor,
21412 draw_vertical_window_border, shift_glyphs_for_insert.
21413 Rename member clear_mouse_face to clear_window_mouse_face.
21414 (estimate_mode_line_height_hook): Remove hook.
21415 (auto_raise_tool_bar_buttons_p): Don't declare extern.
21416 (tool_bar_item_info): Remove prototype.
21417 (help_echo_string, help_echo_window, help_echo_object)
21418 (previous_help_echo_string, help_echo_pos)
21419 (last_mouse_frame, last_tool_bar_item, mouse_autoselect_window):
21420 (x_stretch_cursor_p, output_cursor): Declare extern.
21421 (x_draw_glyphs, notice_overwritten_cursor): Remove prototypes.
21422 (x_write_glyphs), x_insert_glyphs, x_clear_end_of_line)
21423 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
21424 (display_and_set_cursor, set_output_cursor, x_cursor_to)
21425 (x_update_cursor, x_clear_cursor, x_draw_vertical_border)
21426 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
21427 (note_mouse_highlight, x_clear_window_mouse_face, cancel_mouse_face)
21428 (handle_tool_bar_click, clear_mouse_face, show_mouse_face)
21429 (cursor_in_mouse_face_p, expose_frame, x_intersect_rectangles):
21430 Add prototypes.
21431 (mode_line_string, marginal_area_string): Fix prototypes.
21432
21433 * window.c (enum window_part): Move to dispextern.h.
21434 (coordinates_in_window): Use enum window_part member names
21435 instead of numbers to describe return value.
21436 (struct check_window_data): Change part member to window_part.
21437 (check_window_containing): Return window_part unaltered.
21438 (window_from_coordinates): Change part arg from int to enum
21439 window_part. Allow part arg to be null. All users changed.
21440
21441 * window.h (window_from_coordinates): Fix prototype.
21442
21443 * term.c (estimate_mode_line_height): Move to xdisp.c.
21444
21445 * keyboard.c (make_lispy_event): Use enum window_part.
21446
21447 * dispnew.c (mode_line_string, marginal_area_string): Use enum
21448 window_part instead of int in arg list. Users changed.
21449
21450 * xterm.h (No_Cursor): Declare as None for X.
21451 (struct mac_output): Replace member cross_cursor by hand_cursor.
21452
21453 * xterm.c: Remove consolidated defines and code.
21454 (BETWEEN): Remove unused macro.
21455 (x_draw_vertical_window_border, x_shift_glyphs_for_insert)
21456 (x_define_frame_cursor, x_clear_frame_area)
21457 (x_draw_window_cursor): New X-specific functions for RIF.
21458 (x_redisplay_interface): Add new members.
21459
21460 * xfns.c: Setup and use hand_cursor instead of cross_cursor.
21461
21462 * w32term.h (struct w32_output): Remove cross_cursor member.
21463
21464 * w32term.c: Remove consolidated defines and code.
21465 (BETWEEN): Remove unused macro.
21466 (w32_draw_vertical_window_border, w32_shift_glyphs_for_insert)
21467 (w32_define_frame_cursor, w32_clear_frame_area)
21468 (w32_draw_window_cursor): New W32-specific functions for RIF.
21469 (w32_redisplay_interface): Add new members.
21470
21471 * w32gui.h (No_Cursor): Define as 0 for W32.
21472 (XRectangle): Add X compatible rectangle type.
21473 (NativeRectangle): Declare as RECT for W32.
21474 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
21475
21476 * w32fns.c: Remove setup of cross_cursor (already has hand_cursor).
21477
21478 * w32console.c: Remove consolidated defines and code.
21479
21480 * msdos.h (Display_Info): Add generic typedef.
21481
21482 * msdos.c: Remove consolidated defines and code.
21483 (IT_note_mouse_highlight, dos_rawgetc): Use enum window_part.
21484
21485 * macterm.h (struct mac_output): Replace member cross_cursor by
21486 hand_cursor.
21487 (activate_scroll_bars, deactivate_scroll_bars): Add prototypes.
21488
21489 * macterm.c: Remove consolidated defines and code.
21490 (BETWEEN): Remove unused macro.
21491 (mac_draw_vertical_window_border, mac_shift_glyphs_for_insert)
21492 (mac_define_frame_cursor, mac_clear_frame_area)
21493 (mac_draw_window_cursor): New Mac-specific functions for RIF.
21494 (x_redisplay_interface): Add new members.
21495
21496 * macgui.h (No_Cursor): Define as 0 for Mac.
21497 (XRectangle): Add X compatible rectangle type.
21498 (NativeRectangle): Declare as Rect for Mac.
21499 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
21500
21501 * macfns.c (x_set_mouse_color): Setup hand_cursor.
21502 (x_set_cursor_color): Use x_display_and_set_cursor.
21503
21504 * Makefile.in (xdisp.o): Add dependency on blockinput.h and files
21505 included from it. Add dependency on keymap.h.
21506
21507 * makefile.w32-in (xdisp.o): Add dependency on keymap.h.
21508
21509 2003-03-21 Kenichi Handa <handa@m17n.org>
21510
21511 * fileio.c (Fexpand_file_name): Fix previous change.
21512
21513 2003-03-19 Kenichi Handa <handa@m17n.org>
21514
21515 * fileio.c (Ffile_name_directory): Reconstruct file name by
21516 make_specified_string.
21517 (Ffile_name_nondirectory, Ffile_name_as_directory)
21518 (Fdirectory_file_name, Fexpand_file_name)
21519 (Fsubstitute_in_file_name): Likewise.
21520 (Fread_file_name): Compare decoded homedir with DIR and
21521 DEFAULT_FILENAME.
21522
21523 * alloc.c (make_specified_string): If NCHARS is negative, count
21524 the number of characters.
21525
21526 2003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21527
21528 * gtkutil.c (xg_frame_cleared): Call gtk_widget_queue_draw for
21529 all widgets.
21530
21531 * gtkutil.h: Removed xg_ignore_next_thumb.
21532
21533 2003-03-18 Kenichi Handa <handa@m17n.org>
21534
21535 * coding.c (Vchar_coding_system_table): Remove this variable.
21536 (Vcoding_system_safe_chars): New variable.
21537 (intersection): Remove this function.
21538 (find_safe_codings): Don't use Vchar_coding_system_table, but try
21539 all codings in SAFE_CODINGS.
21540 (Ffind_coding_systems_region_internal): Adjust for the change of
21541 find_safe_codings. Get generic coding systems from
21542 Vcoding_system_safe_chars.
21543 (Fdefine_coding_system_internal): New function.
21544 (syms_of_coding): Defsubr Sdefine_coding_system_internal.
21545 Initialize and staticpro Vcoding_system_safe_chars.
21546
21547 2003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21548
21549 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb): Check if new values
21550 equal old values before updating.
21551
21552 * xterm.c (xg_scroll_callback): Remove xg_ignore_next_thumb.
21553
21554 * gtkutil.c (xg_initialize): Remove xg_ignore_next_thumb.
21555
21556 2003-03-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21557
21558 * gtkutil.c: Removed handle_fixed_child, struct xg_last_sb_pos.
21559 (xg_resize_widgets): Don't call foreach(handle_fixed_child).
21560 (xg_gtk_scroll_destroy): Remove free of struct xg_last_sb_pos.
21561 (scroll_bar_button_cb): Set bar->dragging to nil on button release.
21562 (xg_create_scroll_bar): Pass bar to button event callback.
21563 (xg_find_top_left_in_fixed): New function.
21564 (xg_update_scrollbar_pos): Don't call gdk_window_clear on
21565 whole scroll bar area. Get old position with
21566 xg_find_top_left_in_fixed, calculate and only clear needed areas.
21567 (xg_set_toolkit_scroll_bar_thumb): Do not adjust scroll bar if
21568 dragging is in progress. Calculate whole as for Motif.
21569 Remove code that saved last values. Call gtk_range functions to
21570 set scroll bar sizes.
21571
21572 * gtkutil.h: Removed xg_ignore_next_thumb.
21573
21574 2003-03-17 Juanma Barranquero <lektu@terra.es>
21575
21576 * makefile.w32-in ($(BLD)/xdisp.$(O)): Add dependency on blockinput.h
21577 and files included from it.
21578
21579 2003-03-18 Stefan Monnier <monnier@cs.yale.edu>
21580
21581 * keymap.c (accessible_keymaps_1): Break cycles but without preventing
21582 multiple occurrences of the same keymap under different prefixes.
21583 (Faccessible_keymaps): Remove code redundant since 1994-08-03T07:39:00Z!rms@gnu.org.
21584
21585 2003-03-16 Jason Rumney <jasonr@gnu.org>
21586
21587 * w32gui.h: Use HDC for Display.
21588
21589 * w32term.c (w32_encode_char): Prevent double-byte chars from
21590 crashing Emacs.
21591
21592 * w32fns.c (jpeg_load, png_load, slurp_file): Read image files
21593 as binary.
21594
21595 2003-03-16 Juanma Barranquero <lektu@terra.es>
21596
21597 * xdisp.c (x_produce_glyphs): Use FRAME_BASELINE_OFFSET.
21598
21599 2003-03-16 Kim F. Storm <storm@cua.dk>
21600
21601 The following changes consolidate some of the gui-independent
21602 parts of the processing and drawing of "glyph strings" from
21603 xterm.c, w32term.c, and macterm.c into xdisp.c.
21604
21605 * dispextern.h (struct glyph): Reduce face_id member from 22 to
21606 21 bits (this reduces number of faces from 4M to 2M).
21607 Replace W32 specific w32_font_type member (2 bits) by generic
21608 font_type member (3 bits) for portability.
21609 (FONT_TYPE_UNKNOWN): New define, default for font_type member.
21610 (enum draw_glyphs_face): Define here.
21611 (struct glyph_string): Define here. Merge W32 and X versions.
21612 (struct redisplay_interface): New members per_char_metric,
21613 encode_char, compute_glyph_string_overhangs, draw_glyph_string.
21614 (VCENTER_BASELINE_OFFSET): Define here.
21615 (dump_glyph_string, x_get_glyph_overhangs, x_produce_glyphs)
21616 (x_draw_glyphs, notice_overwritten_cursor): Declare prototypes here.
21617
21618 * xdisp.c: Consolidate gui-independent "glyph string" code here.
21619 (dump_glyph_string): Moved here.
21620 (init_glyph_string, append_glyph_string_lists, append_glyph_string)
21621 (prepend_glyph_string_lists, get_glyph_face_and_encoding)
21622 (fill_composite_glyph_string, fill_glyph_string)
21623 (fill_image_glyph_string, fill_stretch_glyph_string)
21624 (left_overwritten, left_overwriting, right_overwritten)
21625 (right_overwriting, get_char_face_and_encoding)
21626 (set_glyph_string_background_width, compute_overhangs_and_x)
21627 (append_glyph, append_composite_glyph, produce_image_glyph)
21628 (take_vertical_position_into_account, append_stretch_glyph)
21629 (produce_stretch_glyph): New generic functions (based on X version).
21630 Call platform specific functions through rif.
21631 (INIT_GLYPH_STRING): New macro, hides W32 details.
21632 (BUILD_STRETCH_GLYPH_STRING, BUILD_IMAGE_GLYPH_STRING)
21633 (BUILD_CHAR_GLYPH_STRINGS, BUILD_COMPOSITE_GLYPH_STRING)
21634 (BUILD_GLYPH_STRINGS): Generic macros (based on X version).
21635 (x_draw_glyphs, x_get_glyph_overhangs, x_produce_glyphs)
21636 (notice_overwritten_cursor):
21637 Generic functions exported to platform modules. Users changed.
21638
21639 * xterm.h (FONT_DESCENT, FRAME_X_OUTPUT, FRAME_BASELINE_OFFSET)
21640 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE)
21641 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
21642 New macros for consolidated code.
21643
21644 * xterm.c: Remove consolidated defines and code.
21645 (x_per_char_metric, x_encode_char)
21646 (x_compute_glyph_string_overhangs): Adapt to RIF requirements.
21647 (x_redisplay_interface): Add new members.
21648
21649 * w32gui.h (Display): Add dummy typedef for consolidation.
21650 (XChar2b): Define alias for wchar_t for consolidation.
21651 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
21652
21653 * w32term.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY)
21654 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE):
21655 New macros for consolidation.
21656
21657 * w32term.c: Remove consolidated defines and code.
21658 (BUILD_WCHAR_T, BYTE1, BYTE2): Macros removed; callers changed
21659 to use STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2 instead.
21660 (w32_per_char_metric): Change font_type arg to int for RIF.
21661 (w32_encode_char): Return int according to RIF requirements.
21662 (w32_compute_glyph_string_overhangs): Adapt to RIF.
21663 (w32_get_glyph_overhangs): New function for RIF. Uses generic
21664 x_get_glyph_overhangs.
21665 (w32_redisplay_interface): Add new members.
21666
21667 * macgui.h (XChar2b): Move typedef here for consolidation.
21668 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
21669
21670 * macterm.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY):
21671 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): New macros for
21672 consolidation.
21673
21674 * macterm.c: Remove consolidated defines and code.
21675 (mac_per_char_metric): New function for RIF.
21676 (mac_encode_char): Adapt to new RIF requirements.
21677 (mac_compute_glyph_string_overhangs): Adapt for RIF.
21678 (x_redisplay_interface): Add new members.
21679
21680 2003-03-15 Stefan Monnier <monnier@cs.yale.edu>
21681
21682 * keymap.c (Vmenu_events): New var.
21683 (syms_of_keymap): Initialize it.
21684 (where_is_internal): Check more carefully what is a menu event.
21685
21686 2003-03-14 Richard M. Stallman <rms@gnu.org>
21687
21688 * lread.c (read1): After #!, exit loop on eof.
21689
21690 2003-03-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21691
21692 * gtkutil.h: Add declaration for xg_frame_cleared.
21693
21694 * xterm.c (x_clear_frame): Call xg_frame_cleared for GTK.
21695
21696 * gtkutil.c (struct xg_last_sb_pos): New structure.
21697 (handle_fixed_child): New function.
21698 (xg_resize_widgets): Call handle_fixed_child on all scroll bar widgets
21699 and force a redraw on them.
21700 (xg_gtk_scroll_destroy): Free struct xg_last_sb_pos also.
21701 (xg_create_scroll_bar): Add struct xg_last_sb_pos to scroll bar
21702 so we can avoid unneeded redraws.
21703 (xg_update_scrollbar_pos): Invalidate data in xg_last_sb_pos
21704 and force a redraw on the scroll bar.
21705 (xg_set_toolkit_scroll_bar_thumb): Do not change/redraw scroll bar
21706 if xg_last_sb_pos shows the positions are up to date.
21707 (xg_frame_cleared): New function.
21708
21709 2003-03-13 Kenichi Handa <handa@m17n.org>
21710
21711 * coding.c (Fdetect_coding_region): Fix docstring.
21712 (Fdetect_coding_string): Fix docstring.
21713
21714 2003-03-13 Andreas Schwab <schwab@suse.de>
21715
21716 * gtkutil.c: Add prototype for create_menus.
21717
21718 * data.c (long_to_cons): Fix type of top.
21719
21720 * xselect.c (selection_data_to_lisp_data): Use int instead of
21721 long for an integer of size 4.
21722
21723 * gtkutil.c (xg_update_frame_menubar): Add missing return value.
21724 (xg_tool_bar_help_callback): Likewise.
21725
21726 2003-03-12 Andreas Schwab <schwab@suse.de>
21727
21728 * xterm.c (x_term_init) [USE_GTK]: Fix typo.
21729
21730 2003-03-12 Kim F. Storm <storm@cua.dk>
21731
21732 The following changes consolidate the fringe handling from
21733 xterm.c, w32term.c, and macterm.c into xdisp.c.
21734
21735 * xdisp.c: Consolidate fringe handling code here.
21736 (left_bits, right_bits, continued_bits, continuation_bits)
21737 (ov_bits, zv_bits): Define fringe bitmaps.
21738 (fringe_bitmaps): New array holding fringe bitmaps.
21739 (draw_fringe_bitmap): Draw a specific bitmap; call display
21740 specific drawing routine via rif->draw_fringe_bitmap.
21741 (draw_row_fringe_bitmaps): Generic replacement for
21742 x_draw_row_fringe_bitmaps; all callers changed.
21743 (compute_fringe_widths): Generic replacement for
21744 x_compute_fringe_widths; all callers changed.
21745
21746 * dispextern.h (enum fringe_bitmap_type): Define here.
21747 (struct fringe_bitmap, struct draw_fringe_bitmap_params): New.
21748 (fringe_bitmaps): Declare extern.
21749 (struct redisplay_interface): New member draw_fringe_bitmap.
21750 (draw_row_fringe_bitmaps, compute_fringe_widths): Declare extern.
21751
21752 * xterm.c: Remove generic fringe code.
21753 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
21754 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
21755
21756 * w32term.c: Remove generic fringe code.
21757 (w32_draw_fringe_bitmap): Only perform actual fringe drawing.
21758 (w32_redisplay_interface): Add w32_draw_fringe_bitmap member.
21759
21760 * macterm.c: Remove generic fringe code.
21761 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
21762 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
21763
21764 2003-03-11 Stefan Monnier <monnier@cs.yale.edu>
21765
21766 * print.c (Fprin1_to_string): Return unibyte string if possible.
21767
21768 2003-03-09 David Kastrup <dak@gnu.org>
21769
21770 * process.c (read_process_output): We have allocated enough space
21771 for readmax and carryover, so actually use the alloted space.
21772
21773 2003-03-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21774
21775 * keyboard.c (make_lispy_event): Extend mouse_syms if needed for
21776 toolkit scrollbar click.
21777
21778 * xterm.c (x_window_to_scroll_bar): Call xg_get_scroll_id_for_window
21779 for USE_GTK.
21780 (x_scroll_bar_handle_click): Use this function for toolkit scrollbars
21781 also.
21782 (handle_one_xevent): ButtonPress/Release: If event is for a toolkit
21783 scrollbar and control is pressed, call x_scroll_bar_handle_click.
21784
21785 * gtkutil.h (xg_get_scroll_id_for_window): Declare.
21786
21787 * gtkutil.c (xg_get_scroll_id_for_window): New function.
21788 (xg_tool_bar_item_expose_callback): New function.
21789 (xg_tool_bar_expose_callback): Call update_frame_tool_bar.
21790 (xg_create_tool_bar): Connect xg_tool_bar_expose_callback to expose
21791 on the tool bar widget.
21792 (update_frame_tool_bar): Connect xg_tool_bar_item_expose_callback
21793 to expose on the tool bar item widgets.
21794
21795 2003-03-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21796
21797 * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of
21798 struct image* when deciding to update (struct image* may have been
21799 deleted from the image cache).
21800
21801 * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if
21802 the event isn't for a frame (i.e. for dialogs).
21803
21804 2003-03-07 Kenichi Handa <handa@m17n.org>
21805
21806 * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of
21807 composition components reaches the limit, terminate composing.
21808 (COMPOSITION_OK): New macro.
21809 (detect_coding_iso2022): Use it if an escape sequence for
21810 composition is found.
21811 (coding_restore_composition): Adjust the number of composition
21812 components if it is not sane.
21813
21814 2003-03-06 Juanma Barranquero <lektu@terra.es>
21815
21816 * w32term.h (struct w32_display_info): Add xrdb member to support
21817 passing resources via -xrm on Windows.
21818
21819 * w32term.c (w32_make_rdb): New function.
21820 (w32_term_init): Use it to initialize xrdb member of w32_display_info
21821 struct. Delete leftover code.
21822
21823 * w32fns.c (Fx_get_resource, x_get_resource_string): Pass xrdb to check
21824 for resources passed on the command line.
21825
21826 * w32reg.c (w32_get_rdb_resource): New function.
21827 (x_get_string_resource): Use it, so resources passed with -xrm
21828 supercede the ones in the registry.
21829
21830 2003-03-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21831
21832 * xterm.c (x_detect_focus_change): Call x_any_window_to_frame
21833 instead of x_top_window_to_frame.
21834
21835 2003-03-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21836
21837 * xsmfns.c (smc_save_yourself_CB): Add --no-splash to options
21838 when restarting Emacs.
21839
21840 2003-03-03 Richard M. Stallman <rms@gnu.org>
21841
21842 * buffer.c (Fkill_buffer): Use Frun_hook_with_args_until_failure
21843 to run kill-buffer-query-functions.
21844 (Qkill_buffer_query_functions): New var.
21845 (syms_of_buffer): Init and staticpro it.
21846
21847 2003-03-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21848
21849 * xterm.h (XSync): Define as gdk_window_process_all_updates for GTK.
21850
21851 2003-02-25 Kim F. Storm <storm@cua.dk>
21852
21853 * xdisp.c (redisplay_window): Fix infinite loop in redisplay.
21854 If centering point failed to make whole line visible and vscroll
21855 is non-zero, disable vscroll and try centering point again.
21856
21857 * lread.c (read1): Accept `single space' syntax like (? x).
21858
21859 2003-02-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21860
21861 * keyboard.c (cancel_hourglass_unwind): Surround with
21862 #ifdef HAVE_X_WINDOWS.
21863
21864 2003-02-25 Kenichi Handa <handa@m17n.org>
21865
21866 * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer
21867 process only when "subprocesses" is defined.
21868
21869 2003-02-24 Stefan Monnier <monnier@cs.yale.edu>
21870
21871 * syntax.c (back_comment): Only check nestedness of 2nd char if needed.
21872
21873 2003-02-24 Juanma Barranquero <lektu@terra.es>
21874
21875 * callint.c (fix_command): Declare as static void and move before
21876 Fcall_interactively.
21877
21878 * xdisp.c (Qwhen): Declare external; it's now defined in callint.c.
21879 (syms_of_xdisp): Don't initialize Qwhen.
21880
21881 2003-02-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21882
21883 * keyboard.c (cancel_hourglass_unwind): New function.
21884 (command_loop_1): Cancel hourglass with unwind-protect.
21885
21886 2003-02-23 Richard M. Stallman <rms@gnu.org>
21887
21888 * callint.c (fix_command): New subroutine, from Fcall_interactively.
21889 Detect (when ... (region-beginning)) etc.
21890 (Fcall_interactively): Call fix_command.
21891 (Qif, Qwhen): New variables.
21892 (syms_of_callint): Init and staticpro them.
21893
21894 * regex.c (print_partial_compiled_pattern): Output to stderr.
21895
21896 2003-02-23 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
21897
21898 * dired.c (directory_files_internal): Don't expand directory.
21899 (Fdirectory_files, Fdirectory_files_and_attributes): Do it here
21900 instead. From Lars Hansen <larsh@math.ku.dk>.
21901
21902 2003-02-22 Stefan Monnier <monnier@cs.yale.edu>
21903
21904 * fns.c (string_to_multibyte): Remove unused var i.
21905 (Flanginfo): Fix int/Lisp_Object mixup.
21906 (void_call2): New fun.
21907 (Fmap_char_table): Use it in place of call2.
21908
21909 * xfaces.c (x_face_list_fonts): Fix int/Lisp_Object mixup.
21910
21911 * macros.c (Fstart_kbd_macro): Remove redundant assignment.
21912
21913 * keymap.c (copy_keymap_1): Make it static.
21914
21915 * alloc.c (Fgarbage_collect): Don't use XSETFLOAT.
21916
21917 2003-02-22 David Ponce <david@dponce.com>
21918
21919 * lread.c (Fload): Don't check STRING_MULTIBYTE.
21920
21921 2003-02-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21922
21923 * process.h: Removed subtty field from struct Lisp_Process.
21924
21925 * process.c (create_process): Remove setting of subtty.
21926 (emacs_get_tty_pgrp): New function.
21927 (Fprocess_running_child_p, process_send_signal):
21928 Call emacs_get_tty_pgrp instead of ioctl.
21929 (process_send_signal): Call EMACS_KILLPG if ioctl TIOCSIGSEND fails.
21930
21931 2003-02-21 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
21932
21933 * keymap.c (Fdefine_key): Doc fix.
21934
21935 2003-02-21 Juanma Barranquero <lektu@terra.es>
21936
21937 Port of patch for RC by Klaus Zeitler <kzeitler@lucent.com>.
21938
21939 * s/hpux10.h: Define POLL_INTERRUPTED_SYS_CALL, not
21940 POLLING_PROBLEM_IN_SELECT.
21941
21942 * s/hpux11.h: Include hpux10-20.h instead of hpux10.h.
21943 Delete #undef of POLLING_PROBLEM_IN_SELECT.
21944
21945 * s/hpux10-20.h: New file.
21946
21947 * process.c (wait_reading_process_input):
21948 Use POLL_INTERRUPTED_SYS_CALL, not POLLING_PROBLEM_IN_SELECT.
21949
21950 2003-02-20 Kenichi Handa <handa@m17n.org>
21951
21952 * fontset.c (check_fontset_name): If NAME is nil, return the
21953 default fontset.
21954 (override_font_info): New function.
21955 (Fset_fontset_font): Document that NAME nil means the default fontset.
21956 (Ffontset_info): If FONTSET is not the default fontset, merge
21957 FONTSET onto the copy of the default fontset, and work on that
21958 copy. Document that NAME nil means the default fontset.
21959 (Ffontset_font): Document that NAME nil means the default fontset.
21960
21961 * process.c (setup_process_coding_systems): If the process's
21962 in/out descriptor is -1, do nothing.
21963
21964 2003-02-19 Andreas Schwab <schwab@suse.de>
21965
21966 * lisp.h (Fcancel_kbd_macro_events, Fstring_to_multibyte):
21967 Add prototypes.
21968
21969 2003-02-19 Kenichi Handa <handa@m17n.org>
21970
21971 * xfaces.c (try_alternative_families): Try all scalable fonts if
21972 Vscalable_fonts_allowed is not Qt.
21973
21974 2003-02-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21975
21976 * xfaces.c (x_face_list_fonts): Set *pfonts to 0 if no fonts found.
21977
21978 2003-02-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
21979
21980 * xterm.c (x_list_fonts): If maxnames is less than 0, get all font
21981 names.
21982
21983 * xfaces.c (x_face_list_fonts): Allocate struct font_name here.
21984 (sorted_font_list): Move allocation of struct font_name to
21985 x_face_list_fonts.
21986 (Fx_font_family_list): Set font-list-limit to -1 to get all font names.
21987 (Fx_list_fonts): Set maxnames to -1 to get all font names.
21988
21989 2003-02-18 Kim F. Storm <storm@cua.dk>
21990
21991 * lread.c (read1): Fix last change.
21992 "`" is not always special. Allow "?" after a character constant.
21993
21994 2003-02-18 Andrew Choi <akochoi@shaw.ca>
21995
21996 * unexmacosx.c (copy_data_segment): Also copy __cfstring section.
21997
21998 2003-02-18 Andreas Schwab <schwab@suse.de>
21999
22000 * window.c (window_scroll_pixel_based): Move outside a
22001 multi-glyph character before setting new window start.
22002
22003 * xdisp.c (in_display_vector_p): New function.
22004 * dispextern.h (in_display_vector_p): Declare.
22005
22006 2003-02-18 Kim F. Storm <storm@cua.dk>
22007
22008 * lread.c (read1): Fix and relax read syntax.
22009 Recognize "[", ";", "#", and "?" after a dotted-pair dot.
22010 Only recognize "," after dotted-pair dot if inside backquote.
22011 Never include "`" or "," (inside backquote) in a symbol.
22012 Allow dotted-pair dot after a character constant.
22013 Allow "`" and "," (inside backquote) after a character constant.
22014
22015 2003-02-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22016
22017 * gtkutil.c (xg_tool_bar_expose_callback): New function.
22018 (xg_create_tool_bar): Force style of tool bar to be horizontal with
22019 icons. Set name of tool bar to emacs-toolbar.
22020 (update_frame_tool_bar): Connect expose event to
22021 xg_tool_bar_expose_callback.
22022
22023 2003-02-17 Richard M. Stallman <rms@gnu.org>
22024
22025 * keyboard.c (this_command_key_count_reset): New variable.
22026 Initiatize to 0 where this_command_key_count is set.
22027 (read_char): Save and restore this_command_key_count_reset
22028 around input method code.
22029 (read_char): If this_command_key_count_reset, echo reread commands.
22030 (Freset_this_command_lengths): Set this_command_key_count_reset to 1.
22031
22032 2003-02-17 Kenichi Handa <handa@m17n.org>
22033
22034 * fns.c (string_to_multibyte): Always return a multibyte string.
22035
22036 2003-02-16 Jason Rumney <jasonr@gnu.org>
22037
22038 * w32fns.c (w32_list_bdf_fonts, w32_list_fonts):
22039 Negative max_fonts parameter means list all.
22040
22041 2003-02-14 Dave Love <fx@gnu.org>
22042
22043 * fns.c (Flanginfo): Doc fix.
22044
22045 2003-02-13 Kim F. Storm <storm@cua.dk>
22046
22047 * lread.c (read_escape): Interpret \s as a SPACE character, except
22048 for \s-X in a character constant which still is the super modifier.
22049 (read1): Signal an `invalid read syntax' error if a character
22050 constant is immediately followed by a digit or symbol character.
22051
22052 * search.c (Fmatch_data): Doc fix. Explicitly state that
22053 match-data is undefined if last search failed.
22054
22055 * keymap.c (Fcommand_remapping): Rename from Fremap_command.
22056 All uses changed.
22057
22058 2003-02-12 Juanma Barranquero <lektu@terra.es>
22059
22060 * eval.c (Fdefmacro): Fix typo.
22061
22062 2003-02-12 Kim F. Storm <storm@cua.dk>
22063
22064 * macros.c (Fstart_kbd_macro): If appending, and last keyboard
22065 macro is a string, convert meta modifiers in string when copying
22066 the string into a vector.
22067
22068 2003-02-11 Kim F. Storm <storm@cua.dk>
22069
22070 * keymap.c (Fremap_command): Return nil if arg is not a symbol.
22071
22072 2003-02-11 Kenichi Handa <handa@m17n.org>
22073
22074 * Makefile.in (lisp, shortlisp): Add malayalam.el and tamil.el.
22075
22076 2003-02-10 Kim F. Storm <storm@cua.dk>
22077
22078 * process.c: Doc fixes.
22079 (syms_of_process): Add `:' prefix to QCfilter_multibyte.
22080
22081 2003-02-10 Kenichi Handa <handa@m17n.org>
22082
22083 * fns.c (Fstring_to_multibyte): Fix typo in the docstring.
22084
22085 * process.c (QCfilter_multibyte): New variable.
22086 (setup_process_coding_systems): New function.
22087 (Fset_process_buffer, Fset_process_filter):
22088 Call setup_process_coding_systems.
22089 (Fstart_process): Initialize the member `filter_multibyte' of
22090 struct Lisp_Process.
22091 (create_process): Call setup_process_coding_systems.
22092 (Fmake_network_process): New keyward `:filter-multibyte'.
22093 Initialize the member `filter_multibyte' of struct Lisp_Process.
22094 Call setup_process_coding_systems.
22095 (server_accept_connection): Call setup_process_coding_systems.
22096 (read_process_output): If the process has a filter, decide the
22097 multibyteness of a string to given to the filter by
22098 `filter_multibyte' member of the process. If the process doesn't
22099 have a filter and the result of conversion is unibyte, use
22100 Fstring_to_multibyte (not Fstring_make_multibyte) to get the
22101 multibyte form.
22102 (Fset_process_coding_system): Call setup_process_coding_systems.
22103 (Fset_process_filter_multibyte): New function.
22104 (Fprocess_filter_multibyte_p): New function.
22105 (syms_of_process): Intern and staticpro QCfilter_multibyte.
22106 Defsubr Sset_process_filter_multibyte and
22107 Sprocess_filter_multibyte_p.
22108
22109 * process.h (struct Lisp_Process): New member filter_multibyte.
22110
22111 * lisp.h (setup_process_coding_systems): Add prototype.
22112
22113 * buffer.c (Fset_buffer_multibyte): If the current buffer has a
22114 process, update coding systems for the process.
22115
22116 2003-02-09 Kenichi Handa <handa@m17n.org>
22117
22118 * fns.c (string_to_multibyte): New function.
22119 (Fstring_to_multibyte): New function.
22120 (syms_of_fns): Defsubr it.
22121
22122 2003-02-08 Andreas Schwab <schwab@suse.de>
22123
22124 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
22125 instead of the substitution.
22126
22127 2003-02-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22128
22129 * xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
22130
22131 * xmenu.c (menu_position_func): Adjust menu popup position so that
22132 the menu is fully visible.
22133
22134 2003-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22135
22136 * xterm.c (x_text_icon, x_raise_frame, x_lower_frame)
22137 (x_make_frame_invisible, x_wm_set_icon_position):
22138 Use FRAME_OUTER_WINDOW instead of ifdef X_TOOLKIT/else/endif.
22139
22140 * xfns.c (x_set_name, x_set_title): Ditto.
22141
22142 2003-02-04 Richard M. Stallman <rms@gnu.org>
22143
22144 * keyboard.c (echo_now): Update before_command_echo_length.
22145 (Freset_this_command_lengths): Reset this_command_key_count etc.
22146 immediately rather than arranging to do it later.
22147 (before_command_key_count_1, before_command_echo_length_1)
22148 (before_command_restore_flag): Vars deleted.
22149 (add_command_key): Don't handle before_command_restore_flag.
22150 (read_char, record_menu_key): Don't update before_command_key_count or
22151 before_command_echo_length.
22152 (read_char): Don't handle before_command_restore_flag.
22153
22154 * keyboard.c (command_loop_1): Don't call adjust_point_for_property
22155 in direct-output clauses if it wouldn't be called in the ordinary case.
22156
22157 2003-02-04 Kim F. Storm <storm@cua.dk>
22158
22159 * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix.
22160
22161 2003-02-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22162
22163 * gtkutil.c (remove_from_container): Copying list is not needed.
22164 (xg_update_menubar, xg_update_menu_item, xg_update_submenu)
22165 (xg_modify_menubar_widgets, update_frame_tool_bar): Call g_list_free
22166 on list returned from gtk_container_get_children to avoid memory leak.
22167
22168 2003-02-01 Jason Rumney <jasonr@gnu.org>
22169
22170 * w32fns.c (w32_create_pixmap_from_bitmap_data): Use alloca for
22171 local malloc.
22172 [HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
22173 definitions in xpm.h.
22174 (init_xpm_functions): New function.
22175 (xpm_load): Sync with xfns.c. Adapt for Windows version of libXpm.
22176 (init_external_image_libraries): Try to load libXpm.dll.
22177
22178 * fileio.c (Fcopy_file) [WINDOWSNT]: Reverse logic for setting
22179 timestamp.
22180
22181 2003-01-31 Dave Love <fx@gnu.org>
22182
22183 * syntax.c (Fskip_chars_forward)
22184 (open-paren-in-column-0-is-defun-start): Doc fix.
22185
22186 2003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
22187
22188 * fileio.c: Support // at start of name for Cygwin (just added proper
22189 preprocessor tests).
22190
22191 * keyboard.c: Port to Cygwin (just added proper preprocessor tests).
22192
22193 * Makefile.in: Use @EXEEXT@ for Cygwin.
22194
22195 * mem-limits.h: Added ifdef to define BSD4_2 for Cygwin.
22196
22197 * s/cygwin.h: Added for Cygwin port.
22198
22199 2003-01-31 Juanma Barranquero <lektu@terra.es>
22200
22201 * w32fns.c (DrawText): Kludge to avoid a redefinition on Windows
22202 when including gif_lib.h.
22203 (init_gif_functions, init_tiff_functions): New functions.
22204 (gif_load, tiff_load): Sync with xfns.c version. Adjust colors for
22205 Windows. Disable color table lookups. Call library functions
22206 through pointers determined at runtime.
22207 (init_external_image_libraries): Try to load libungif.dll and
22208 libtiff.dll.
22209
22210 2003-01-31 Kenichi Handa <handa@m17n.org>
22211
22212 * xdisp.c (SKIP_GLYPHS): New macro.
22213 (set_cursor_from_row): Skip all glyphs that comes from overlay string.
22214
22215 2003-01-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22216
22217 * gtkutil.c (free_frame_tool_bar): Remove debug printf.
22218
22219 2003-01-30 Dave Love <fx@gnu.org>
22220
22221 * alloc.c (Vgc_elapsed, gcs_done): New variables.
22222 (Fgarbage_collect): Use them.
22223 (init_alloc, syms_of_alloc): Set them up.
22224
22225 2003-01-30 Juanma Barranquero <lektu@terra.es>
22226
22227 * w32fns.c (init_external_image_libraries): Add missing operator.
22228
22229 2003-01-29 Jason Rumney <jasonr@gnu.org>
22230
22231 * w32fns.c (init_external_image_libraries): Allow jpeg-62.dll as
22232 an alternative name for jpeg.dll.
22233
22234 2003-01-29 Kenichi Handa <handa@m17n.org>
22235
22236 * xdisp.c (set_cursor_from_row): Pay attention to string display
22237 properties.
22238
22239 2003-01-28 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
22240
22241 * macterm.c (keycode_to_xkeysym_table): Add <tab>, <backspace>,
22242 <escape>.
22243 (keycode_to_xkeysym_table): Reformat and add more comments.
22244 (XTread_socket): Drop special case for backspace.
22245
22246 2003-01-28 Andrew Choi <akochoi@shaw.ca>
22247
22248 * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
22249 values in old-style RGB specs.
22250
22251 2003-01-27 Juanma Barranquero <lektu@terra.es>
22252
22253 * w32fns.c (init_external_image_libraries): Try alternate names for the
22254 jpeg dll.
22255
22256 2003-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22257
22258 * gtkutil.c (create_dialog, xg_separator_p)
22259 (xg_item_label_same_p, xg_update_menu_item): Check for NULL string
22260 before calling strcmp or strlen.
22261
22262 2003-01-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22263
22264 * gtkutil.c (update_frame_tool_bar): Call prepare_image_for_display
22265 and handle image load failure.
22266
22267 2003-01-26 Jason Rumney <jasonr@gnu.org>
22268
22269 * w32fns.c (init_jpeg_functions, jpeg_resync_to_restart_wrapper):
22270 New functions.
22271 (jpeg_load): Sync with xfns.c version. Adjust colors for Windows.
22272 Disable color table lookups. Call jpeg library functions
22273 through pointers determined at runtime.
22274 (init_external_image_libraries): Try to load jpeg.dll.
22275
22276 2003-01-25 Richard M. Stallman <rms@gnu.org>
22277
22278 * lisp.h: Declare format2 instead of format1.
22279
22280 * fileio.c (barf_or_query_if_file_exists):
22281 Call format2 instead of format1.
22282
22283 * editfns.c (format2): New function, replaces format1
22284 but takes exactly two Lisp Objects as format args.
22285
22286 * buffer.c (Fkill_buffer): Call format2 instead of format1.
22287
22288 2003-01-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22289
22290 * xterm.h: Change to return value of x_dispatch_event to int.
22291
22292 * xterm.c (x_filter_event): New function.
22293 (event_handler_gdk, XTread_socket): Call x_filter_event.
22294 (x_dispatch_event): Change to return value of finish.
22295 (event_handler_gdk): Use return value from x_dispatch_event.
22296
22297 * xfns.c (x_window): Call create_frame_xic for GTK version to
22298 initialize input methods.
22299
22300 * gtkutil.h: Add (void) prototypes.
22301
22302 * gtkutil.c (create_menus): Remove code that puts the help menu to
22303 the right.
22304
22305 2003-01-25 Jason Rumney <jasonr@gnu.org>
22306
22307 * w32fns.c (XPutPixel): Handle monochrome images; used for masks.
22308 [HAVE_PNG]: Sync with xfns.c version.
22309 (png_load): Adjust colors for Windows. Use Windows
22310 bitmaps. Disable color table lookups.
22311 (DEF_IMGLIB_FN, LOAD_IMGLIB_FN): New macros.
22312 (init_png_functions): New function.
22313 (png_read_from_memory, png_load): Call png library functions
22314 through pointers determined at runtime.
22315 (QCloader, QCbounding_box, QCpt_width, QCpt_height): Declare.
22316 (init_external_image_libraries): New function.
22317 (init_xfns): Call it.
22318
22319 2003-01-24 Andreas Schwab <schwab@suse.de>
22320
22321 * minibuf.c (Fminibuffer_message): Verify type of parameter.
22322
22323 2003-01-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22324
22325 * gtkutil.c (xg_initialize): Initialize id_to_widget here instead
22326 of static initializer.
22327
22328 2003-01-24 Dave Love <fx@gnu.org>
22329
22330 * s/gnu-linux.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define for more
22331 architectures.
22332
22333 * alloc.c (mark_stack) [!GC_LISP_OBJECT_ALIGNMENT && __GNUC__]:
22334 Use __alignof__.
22335
22336 2003-01-24 Kenichi Handa <handa@m17n.org>
22337
22338 * keyboard.c (adjust_point_for_property): New second arg MODIFIED.
22339 It it is nonzero, don't pretend that an invisible area doesn't exist.
22340 (command_loop_1): Call adjust_point_for_property with proper
22341 second arg.
22342
22343 2003-01-22 Jason Rumney <jasonr@gnu.org>
22344
22345 Sync changes with xterm.c and xfns.c.
22346
22347 * w32term.c (x_draw_glyph_string_foreground)
22348 (x_draw_composite_glyph_string_foreground): Implement overstriking.
22349
22350 * w32term.c (x_write_glyphs): Clear phys_cursor_on_p if current
22351 phys_cursor's hpos is overwritten. This is still not completely
22352 correct, as it doesn't really make sense to use hpos at all to
22353 get the cursor glyph (as that is relative to the width of the
22354 characters on the line, which may have changed during the update).
22355
22356 * w32term.c (notice_overwritten_cursor): Handle the special case
22357 of the cursor being in the first blank non-text line at the
22358 end of a window.
22359
22360 * w32term.c (x_draw_hollow_cursor, x_draw_bar_cursor)
22361 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
22362 Compute from the x position returned by x_draw_glyphs.
22363
22364 (x_display_and_set_cursor): Don't set phys_cursor_width here,
22365 except for NO_CURSOR and system caret, to make phys_cursor_width
22366 contain what its name suggests.
22367 (notice_overwritten_cursor): Consider the cursor image erased if
22368 the output area intersects the cursor image in y-direction.
22369
22370 * w32term.c (note_mode_line_or_margin_highlight): Rename from
22371 note_mode_line_highlight and extend.
22372
22373 * w32term.c (last_window): New variable.
22374 (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs.
22375 (note_mouse_movement): Remove reimplemented code in #if 0.
22376
22377 * w32fns.c (x_set_cursor_type): Set cursor_type_changed,
22378 not update_mode_lines, and always set it to 1.
22379
22380 2003-01-21 Jason Rumney <jasonr@gnu.org>
22381
22382 * w32fns.c (IDC_HAND): Define it if system headers don't.
22383
22384 2003-01-21 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
22385
22386 * w32term.h (struct w32_output): New member hand_cursor.
22387 (WM_EMACS_SETCURSOR): New message definition.
22388
22389 * w32term.c (note_mode_line_highlight): Delete #if 0 to enable
22390 function w32_define_cursor.
22391 (note_mouse_highlight): Initialize, setup cursor accoding to mouse
22392 position, change member name output_data.x to output_data.w32 and
22393 add function w32_define_cursor.
22394 (show_mouse_face): Delete #if 0 to enable function w32_define_cursor
22395 and change member name output_data.x to output_data.w32.
22396 (w32_initialize_display_info):
22397 Setup dpyinfo->vertical_scroll_bar_cursor.
22398
22399 * w32fns.c (Vx_hand_shape): New variable.
22400 (w32_wnd_proc): Add message entries for WM_SETCURSOR and
22401 WM_EMACS_SETCURSOR.
22402 (x-create-frame): Setup Cursor types.
22403
22404 2003-01-21 David Ponce <david@dponce.com>
22405
22406 * w32term.c (w32_encode_char): For DIM=1 charset, set
22407 ccl->reg[2] to -1 before calling ccl_driver.
22408 (Sync. with xterm.c x_encode_char change by Kenichi Handa
22409 <handa@m17n.org> on 2002-09-30.)
22410 (w32_draw_relief_rect): Declare all args.
22411 (w32_define_cursor): New.
22412
22413 * w32fns.c (w32_load_cursor): New function.
22414 (w32_init_class): Use it.
22415 (x_put_x_image): Declare all args.
22416
22417 2003-01-21 Richard Dawe <rich@phekda.freeserve.co.uk>
22418
22419 * Makefile.in (ALL_CFLAGS): Include MYCPPFLAGS, not MYCPPFLAG.
22420
22421 2003-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22422
22423 * gtkutil.c: Must include stdio.h before termhooks.h.
22424
22425 2003-01-21 Dave Love <fx@gnu.org>
22426
22427 * alloc.c (Fgc_status): Print zombie list.
22428 (mark_maybe_object) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
22429 Fix assignment of zombies.
22430 (Fgarbage_collect) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
22431 Don't take car of non-cons.
22432
22433 * s/sol2-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
22434
22435 * s/sunos4-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
22436
22437 2003-01-20 David Ponce <david@dponce.com>
22438
22439 * w32menu.c (digest_single_submenu): Declare all args.
22440
22441 Sync with 2002-12-23 Richard M. Stallman <rms@gnu.org>
22442 changes in xmenu.c:
22443
22444 (parse_single_submenu): Use individual keymap's prompt
22445 string as pane name, if there is one.
22446 (set_frame_menubar): Save menu_items_n_panes from each call to
22447 parse_single_submenu and use it when calling digest_single_submenu.
22448
22449 2003-01-20 Steven Tamm <steventamm@mac.com>
22450
22451 * macterm.c (XTread_socket): Check for valid, visible window
22452 before sending a scroll-wheel event.
22453
22454 2003-01-20 Richard M. Stallman <rms@gnu.org>
22455
22456 * xdisp.c (redisplay_window): If mini window's buffer is not
22457 a minibuffer, then redisplay it like other windows.
22458
22459 2003-01-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22460
22461 * gtkutil.c (xg_create_frame_widgets): Check if there is an
22462 external tool bar before setting tool bar height.
22463
22464 2003-01-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22465
22466 * xterm.c (handle_one_xevent): Surround popup_activated
22467 with #ifdef:s for non-toolkit version.
22468
22469 * Makefile.in (XOBJ): Add gtkutil.o if USE_GTK.
22470 (gtkutil.o): New file.
22471 (TOOLKIT_DEFINES): Set to -DUSE_GTK if HAVE_GTK.
22472 (LIBW): Set to @GTK_LIBS@ if USE_GTK.
22473
22474 * gtkutil.c: New file for GTK version.
22475
22476 * gtkutil.h: New file for GTK version.
22477
22478 * xterm.h: Add xt_or_gtk_widget.
22479 Include gtk files for USE_GTK.
22480 (struct x_output): Add toolbar_height.
22481 (struct x_output): Add GTK widgets and Gdk size_hints.
22482 (GTK_WIDGET_TO_X_WIN, FRAME_GTK_OUTER_WIDGET, FRAME_GTK_WIDGET)
22483 (FRAME_OUTER_WINDOW): New macros for USE_GTK.
22484 (FRAME_OUTER_TO_INNER_DIFF_Y): Add FRAME_TOOLBAR_HEIGHT to calculation.
22485
22486 * xterm.c: Include gtkutil.h for USE_GTK.
22487 (free_frame_menubar): Declare extern void for USE_GTK.
22488 (note_mouse_highlight): Check popup_activated for USE_GTK.
22489 (xt_action_hook): Don't compile if USE_GTK.
22490 (x_scroll_bar_to_input_event): Use CurrentTime for USE_GTK.
22491 (xg_scroll_callback): New function.
22492 (x_create_toolkit_scroll_bar): Call xg_create_scroll_bar for USE_GTK.
22493 (x_set_toolkit_scroll_bar_thumb): Call xg_set_toolkit_scroll_bar_thumb
22494 for USE_GTK.
22495 (x_scroll_bar_create): Call xg_update_scrollbar_pos and
22496 xg_show_scroll_bar for USE_GTK.
22497 (x_scroll_bar_remove): Call xg_remove_scroll_bar for USE_GTK.
22498 (XTset_vertical_scroll_bar): Call xg_update_scrollbar_pos for USE_GTK.
22499 (event_handler_gdk): New function for USE_GTK.
22500 (handle_one_xevent): Call xg_resize_widgets for USE_GTK.
22501 (handle_one_xevent): Make sure widget is mapped before
22502 calling x_real_positions for USE_GTK.
22503 (XTread_socket): Add GTK event loop for USE_GTK.
22504 (x_set_window_size): Call xg_frame_set_char_size for USE_GTK.
22505 (x_make_frame_visible): Call gtk_widget_show_all for USE_GTK.
22506 (x_make_frame_invisible): Call gtk_widget_hide for USE_GTK.
22507 (x_iconify_frame): Add code for USE_GTK.
22508 (x_free_frame_resources): Call gtk_widget_destroy for USE_GTK.
22509 (x_wm_set_size_hint): Only compile if not USE_GTK. GTK version
22510 is in gtkutil.c.
22511 (x_term_init): Add initialization for GTK.
22512 (syms_of_xterm): Set Vx_toolkit_scroll_bars for USE_GTK.
22513
22514 * xmenu.c: Include gtkutil.h for USE_GTK.
22515 (Fx_popup_menu): Use current position if x and y are nil.
22516 (single_menu_item, single_menu_item, Fx_popup_dialog):
22517 Check for USE_GTK.
22518 (popup_widget_loop): New function for USE_GTK.
22519 (x_activate_menubar): Add code for USE_GTK.
22520 (popup_activate_callback, popup_deactivate_callback)
22521 (menu_highlight_callback, menubar_selection_callback):
22522 Add USE_GTK versions.
22523 (update_frame_menubar): Call xg_update_frame_menubar for USE_GTK.
22524 (set_frame_menubar): Call xg_modify_menubar_widgets for USE_GTK.
22525 (free_frame_menubar): Only compile if not USE_GTK. GTK version
22526 is in gtkutil.c.
22527 (popup_selection_callback): New version for USE_GTK.
22528 (create_and_show_popup_menu): New fuction, one USE_GTK version and
22529 one USE_X_TOOLKIT version.
22530 (xmenu_show): Call create_and_show_popup_menu.
22531 (dialog_selection_callback): New version for USE_GTK.
22532 (create_and_show_dialog): New fuction, one USE_GTK version and
22533 one USE_X_TOOLKIT version.
22534 (xdialog_show): Call create_and_show_dialog.
22535
22536 * xfns.c: Include gtkutil for USE_GTK.
22537 (x_window_to_frame, x_any_window_to_frame)
22538 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
22539 (x_top_window_to_frame): Add code for USE_GTK.
22540 (x_set_background_color): Call xg_set_background_color for GTK.
22541 (x_set_menu_bar_lines): Check for USE_GTK.
22542 (x_set_tool_bar_lines): Call update_frame_tool_bar for USE_GTK.
22543 (x_set_name, x_set_title): Call gtk_window_set_title for USE_GTK.
22544 (x_window): Call xg_create_frame_widgets for USE_GTK.
22545 (Fx_create_frame): Check for USE_GTK.
22546 (Fx_file_dialog): New implementation for USE_GTK.
22547
22548 * xdisp.c: Add check for USE_GTK for extern void set_frame_menubar.
22549 (update_menu_bar): Add check for USE_GTK.
22550 (update_tool_bar): Add check for USE_GTK and external tool bar.
22551 (redisplay_tool_bar): Add check for USE_GTK and external tool bar.
22552 (redisplay_internal): Add check for USE_GTK and popup_activated.
22553 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_MENU_BAR.
22554 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_TOOL_BAR.
22555 (display_menu_bar): Add check for USE_GTK.
22556
22557 * lisp.h (Vx_resource_name): Declare extern.
22558
22559 * keyboard.c (kbd_buffer_get_event): Check MENU_BAR_ACTIVATE_EVENT
22560 for USE_GTK.
22561 (make_lispy_event): Check MENU_BAR_EVENT for USE_GTK.
22562
22563 * frame.h (struct frame): Add external_tool_bar. Check for USE_GTK.
22564 (FRAME_EXTERNAL_TOOL_BAR): New macro.
22565 (FRAME_EXTERNAL_MENU_BAR): Check for USE_GTK.
22566
22567 * fileio.c (Fread_file_name): Add check for USE_GTK.
22568
22569 * dispnew.c (adjust_frame_glyphs_for_window_redisplay):
22570 Add check for USE_GTK.
22571
22572 * config.in: Added HAVE_GTK.
22573
22574 * alloc.c (Fgarbage_collect): Call xg_mark_data for GTK.
22575
22576 2003-01-18 Stefan Monnier <monnier@cs.yale.edu>
22577
22578 * charset.h (Funibyte_char_to_multibyte): Export.
22579
22580 2003-01-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22581
22582 * xmenu.c (mouse_position_for_popup): New function.
22583 (Fx_popup_menu): Call mouse_position_for_popup for X and
22584 mouse_position_hook for others.
22585
22586 2003-01-17 Kim F. Storm <storm@cua.dk>
22587
22588 * editfns.c (Finsert): Mention `string-make-multibyte' and
22589 `string-as-multibyte' in doc string.
22590
22591 2003-01-17 Kenichi Handa <handa@m17n.org>
22592
22593 * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here.
22594
22595 * editfns.c (Fformat): Convert an unibyte char argument that is
22596 formatted by "%c" to multibyte if the total result must be a
22597 multibyte string.
22598
22599 2003-01-16 Kim F. Storm <storm@cua.dk>
22600
22601 * process.c (set-process-filter): Document unibyte/multibyte-ness
22602 of string argument.
22603
22604 2003-01-16 Kenichi Handa <handa@m17n.org>
22605
22606 * charset.h (NEXT_CHAR_BOUNDARY, PREV_CHAR_BOUNDARY): New macros.
22607
22608 * regex.c (GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
22609 (re_search_2): Likewise.
22610
22611 2003-01-15 Kenichi Handa <handa@m17n.org>
22612
22613 * xdisp.c (message_dolog): Fix bug of the case that *Message*
22614 buffer is unibyte.
22615
22616 2003-01-15 Francesco Potort\e,Al\e(B <pot@gnu.org>
22617
22618 * fns.c (Fsubstring): Clarify doc string.
22619
22620 * textprop.c (Ftext_properties_at, Fnext_char_property_change)
22621 (Fprevious_char_property_change)
22622 (Fnext_single_char_property_change)
22623 (Fprevious_single_char_property_change, Fnext_property_change)
22624 (Fnext_single_property_change, Fprevious_property_change)
22625 (Fprevious_single_property_change, Fadd_text_properties)
22626 (Fput_text_property, Fset_text_properties)
22627 (Fremove_text_properties, Fremove_list_of_text_properties)
22628 (Ftext_property_any, Ftext_property_not_all): Clarify doc strings.
22629
22630 2003-01-14 Kim F. Storm <storm@cua.dk>
22631
22632 * process.h (struct Lisp_Process): New member plist replaces old
22633 member private_vars. All uses changed.
22634
22635 * process.c: Reworked 2003-01-12 change -- call a plist a plist!
22636 (QCplist): Rename from QCvars. Change all uses.
22637 (Fprocess_plist): Replaces Fprocess_variable. Simplified.
22638 (Fset_process_plist): Replaces Fset_process_variable. Simplify.
22639 (syms_of_process): Intern, staticpro, defsubr these.
22640 (Fmake_network_process): Describe :plist arg. Remove :vars arg.
22641
22642 2003-01-14 Francesco Potort\e,Al\e(B <pot@gnu.org>
22643
22644 * m/delta.h: Remove (obsolete).
22645
22646 2003-01-13 Francesco Potort\e,Al\e(B <pot@gnu.org>
22647
22648 * fileio.c (Fdelete_directory, Fdelete_file): Document the
22649 behaviour in front of symlinks.
22650 (Fdelete_file): Raise an error on directories.
22651
22652 2003-01-13 Dave Love <fx@gnu.org>
22653
22654 * fns.c (Freverse): Use QUIT.
22655
22656 2003-01-13 Richard M. Stallman <rms@gnu.org>
22657
22658 * minibuf.c (minibuffer_completion_contents):
22659 Error if point is inside prompt.
22660
22661 * keyboard.c (command_loop_1): Don't redisplay directly
22662 if there's a post-command-hook.
22663
22664 * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix.
22665 (Fdo_auto_save): Add gcpros around Ffile_name_directory.
22666
22667 2003-01-12 Kim F. Storm <storm@cua.dk>
22668
22669 * process.h (struct Lisp_Process): New member private_vars.
22670
22671 * process.c (QCvars): New variable.
22672 (syms_of_process): Intern and staticpro it.
22673 (Fset_process_contact): Removed function.
22674 (Fprocess_variable, Fset_process_variable): New functions.
22675 (syms_of_process): Defsubr them.
22676 (Fstart_process): Initialize private_vars plist to nil.
22677 (Fmake_network_process): New arg :vars to setup the private
22678 variables for new network process.
22679 (server_accept_connection): Copy server's private variables to
22680 client process.
22681
22682 * alloc.c (pure_alloc): Fixed 2003-01-10 changed (caused spurious
22683 crashes). Code rewritten and simplified. Now directly aligns the
22684 pointer and recalculates pure_bytes_used, rather than aligning the
22685 size and adjusting the pointer.
22686
22687 2003-01-11 Kim F. Storm <storm@cua.dk>
22688
22689 * process.c (Fset_process_contact): New function.
22690 (syms_of_process): defsubr it.
22691 (make-network-process): Update doc.
22692
22693 2003-01-10 Andreas Schwab <schwab@suse.de>
22694
22695 * alloc.c (pure_alloc): Correct alignment for Lisp_Floats.
22696 Reported by Berthold Gunreben <b.gunreben@web.de>.
22697
22698 2003-01-10 Dave Love <fx@gnu.org>
22699
22700 * composite.c (syms_of_composite): Make composition_hash_table weak.
22701
22702 2003-01-09 Kim F. Storm <storm@cua.dk>
22703
22704 * process.c (Fmake_network_process): Convert new port number
22705 to host byte order for `:service t' case. From Mario Lang.
22706
22707 2003-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22708
22709 * xfns.c (Fx_file_dialog): Call XtAppNextEvent and x_dispatch_event
22710 instead of XtAppProcessEvent.
22711
22712 * xterm.c (handle_one_xevent): New function.
22713 (x_dispatch_event): New function.
22714 (XTread_socket): Call handle_one_xevent.
22715
22716 * xterm.h (FRAME_OUTER_TO_INNER_DIFF_X/Y): New.
22717
22718 * xmenu.c (Fx_popup_menu): If popping up at mouse position,
22719 call XQueryPointer to get coordinates.
22720 (popup_get_selection): Do not set popup_activated_flag to zero,
22721 let popup_deactivate_callback do that. Needed for Motif.
22722 Call x_dispatch_event instead of XtDispatchEvent.
22723 (xmenu_show): Calculate root coordinate from frame top/left position.
22724
22725 2003-01-08 Kim F. Storm <storm@cua.dk>
22726
22727 * process.c (server_accept_connection): Fix recording of new
22728 connection's local address in :local property of contact info.
22729 (Fmake_network_process): Record local network address for new
22730 client processes in :local property of contact info.
22731 (format-network-address): Add arg OMIT-PORT. Change callers.
22732
22733 2003-01-07 Dave Love <fx@gnu.org>
22734
22735 * Makefile.in (fns.o): Depend on coding.h.
22736
22737 2003-01-06 Dave Love <fx@gnu.org>
22738
22739 * fns.c: Include coding.h. Use POINTER_TYPE*, not void*.
22740 (Vlocale_coding_system): Declare.
22741 (Qcodeset, Qdays, Qmonths, Qpaper): New.
22742 (Flanginfo): New.
22743 (syms_of_fns): Initialize new stuff.
22744
22745 2003-01-07 Markus Rost <rost@math.ohio-state.edu>
22746
22747 * minibuf.c (Fread_variable): Doc fix.
22748
22749 * eval.c (Fuser_variable_p): Doc change. For custom variables,
22750 use the same test as for custom-variable-p.
22751
22752 2003-01-05 Richard M. Stallman <rms@gnu.org>
22753
22754 * xdisp.c (try_scrolling): New arg LAST_LINE_MISFIT.
22755 Count LAST_LINE_MISFIT in scroll margin for end of window.
22756 Move label too_near_end before setting SCROLL_MARGIN_POS.
22757 Set LAST_LINE_MISFIT before jumping there.
22758
22759 * xdisp.c (try_scrolling): Calculate amount_to_scroll better in
22760 scroll_conservatively case. If scrolling that much doesn't change
22761 STARTP, move it down one line.
22762
22763 * xdisp.c (redisplay_window): Pass last_line_misfit arg to
22764 try_scrolling. Make it 1 after make_cursor_line_fully_visible fails.
22765
22766 * xdisp.c (setup_echo_area_for_printing): Kill Emacs if no
22767 selected frame.
22768
22769 * keymap.c (apropos_predicate, apropos_accumulate): Make them static.
22770 (syms_of_keymap): Staticpro them.
22771 (Fapropos_internal): Initialize them and clear them out.
22772 Don't GCPRO them.
22773
22774 * buffer.c (syms_of_buffer) <scroll-up|down-aggressively>: Doc fixes.
22775
22776 * lisp.h: New misc type Lisp_Save_Value.
22777 (enum Lisp_Misc_Type): Add Lisp_Misc_Save_Value.
22778 (XSAVE_VALUE): New macro.
22779 (struct Lisp_Save_Value): New data type.
22780 (union Lisp_Misc): Add u_save_value alternative.
22781 (make_save_value): Declare.
22782
22783 * alloc.c (make_save_value): New function.
22784
22785 * xterm.c (x_catch_errors): Save dpy using make_save_value.
22786 (x_catch_errors_unwind): Call XSync.
22787
22788 2003-01-01 Richard M. Stallman <rms@gnu.org>
22789
22790 * window.c (window_scroll_pixel_based): Partially undo last change.
22791
22792 * keyboard.c (command_loop_1): Call adjust_point_for_property
22793 in direct action cases for Qforward_char and Qbackward_char.
22794 Set already_adjusted so it won't be done twice.
22795
22796 2002-12-30 Richard Dawe <rich@phekda.freeserve.co.uk>
22797
22798 * src/config.in (!HAVE_SIZE_T): Fix order of arguments in
22799 type definition of size_t.
22800
22801 2003-01-02 Steven Tamm <steventamm@mac.com>
22802
22803 * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to
22804 distinguish Carbon GUI builds from X11 builds on darwin.
22805
22806 2002-12-30 Steven Tamm <steventamm@mac.com>
22807
22808 * macterm.c (syms_of_macterm): Set mac-wheel-button-is-mouse-2
22809 to default to t.
22810
22811 2002-12-29 Francesco Potort\e,Al\e(B <pot@gnu.org>
22812
22813 * data.c (Fstring_to_number, Fminus): Better English in doc strings.
22814
22815 2002-12-28 Steven Tamm <steventamm@mac.com>
22816
22817 * Makefile.in (macosx-bundle): Fix Mac OS X/Carbon port to
22818 allow building in a different directory than source. Uses some
22819 GNU Make extensions, but there is no other make on Mac OS X.
22820
22821 2002-12-26 Francesco Potort\e,Al\e(B <pot@gnu.org>
22822
22823 * data.c (Fmakunbound, Ffmakunbound, Fmake_variable_buffer_local)
22824 (Fsetq_default, Fmake_local_variable, Fkill_local_variable)
22825 (Fmake_variable_frame_local, Faset, Fnumber_to_string, Fminus)
22826 (Fstring_to_number): Mention the returned value in the doc strings.
22827
22828 2002-12-23 Richard M. Stallman <rms@gnu.org>
22829
22830 * buffer.c (syms_of_buffer) <scroll-up-aggressively>
22831 <scroll-down-aggressively>: Doc fix.
22832
22833 * xmenu.c (parse_single_submenu): Use individual keymap's prompt
22834 string as pane name, if there is one.
22835 (set_frame_menubar): Save menu_items_n_panes from each call to
22836 parse_single_submenu and use it when calling digest_single_submenu.
22837
22838 * window.c (window_scroll_pixel_based): Fix check for reaching BEGV.
22839 Don't try to make last line fully visible if it is past end of window.
22840
22841 2002-12-22 Steven Tamm <steventamm@mac.com>
22842
22843 * macmenu.c (MIN_POPUP_SUBMENU_ID): Add.
22844 (mac_menu_show): Add support for hierarchical popup menus.
22845 (add_menu_item): Remove indentation support.
22846 (fill_submenu, fill_menu): Create hierarchical menus
22847 instead of using indentation.
22848
22849 2002-12-22 Richard M. Stallman <rms@gnu.org>
22850
22851 * xdisp.c (try_cursor_movement): Don't call try_window here.
22852 (redisplay_window): Never redisplay minibuffer when inactive.
22853
22854 * window.c (select_window_1): Undo 9/21 change.
22855
22856 2002-12-22 Steven Tamm <steventamm@mac.com>
22857
22858 * macterm.c (XTread_socket): Call KeyTranslate for control and
22859 meta to deal correctly shifted non-alpha characters, like C-S-5
22860 being treated like C-%. Do not look for shift key to deal
22861 with masking off control-key with mac-reverse-ctrl-meta.
22862
22863 2002-12-21 Richard M. Stallman <rms@gnu.org>
22864
22865 * xmenu.c (popup_get_selection): Now static. New arg DO_TIMERS.
22866 If it is non-nil, run timers. Use an unwind-protect to requeue
22867 the events that were read ahead.
22868 (popup_get_selection_unwind): New subroutine.
22869 (popup_get_selection_queue): File-scope variable now holds that queue.
22870 (xmenu_show): Pass 0 for DO_TIMERS to popup_get_selection.
22871 (xdialog_show): Pass 1 for DO_TIMERS to popup_get_selection.
22872 Use an unwind-protect to pop down the dialog box.
22873 (xdialog_show_unwind): New subroutine implements that.
22874
22875 * xdisp.c (row_containing_pos): Change exit test using last_y.
22876 (try_window_id): Abort if row_containing_pos returns null.
22877
22878 * lread.c (load_error_handler): New function.
22879 (Fload): Handle errors in Fsubstitute_in_file_name.
22880 Don't expect Fsignal to return.
22881
22882 * eval.c: Errors and throws work right with interrupt blocking.
22883 (struct catchtag): New elt interrupt_input_blocked.
22884 (unwind_to_catch): Restore interrupt_input_blocked from saved value.
22885 (internal_catch, Fcondition_case, internal_condition_case)
22886 (internal_condition_case_1, internal_condition_case_2): Save it.
22887 (Fsignal): Don't do TOTALLY_UNBLOCK_INPUT.
22888
22889 * editfns.c (Fformat): Add parens.
22890
22891 * dired.c (file_name_completion): Fix that change.
22892 Delete special quit-handling code; just use QUIT.
22893
22894 2002-12-21 Tak Ota <Takaaki.Ota@am.sony.com>
22895
22896 * dired.c (file_name_completion): Close directory on error
22897 just as in directory_files_internal.
22898
22899 2002-12-19 David Kastrup <David.Kastrup@t-online.de>
22900
22901 * window.c (Fset_window_configuration): Set old_point to correct
22902 value when new_current_buffer == current_buffer.
22903
22904 2002-12-17 Ben Key <bkey1@tampabay.rr.com>
22905
22906 Revisited my earlier fix for the following entry in etc/PROBLEMS:
22907 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
22908 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
22909
22910 These changes were in part based upon suggestions made by Peter
22911 'Luna' Runestig [peter@runestig.com].
22912
22913 * w32.c (g_b_init_is_windows_9x, g_b_init_open_process_token)
22914 (g_b_init_get_token_information, g_b_init_lookup_account_sid)
22915 (g_b_init_get_sid_identifier_authority ): Add several static
22916 global variables.
22917
22918 * w32.c (globals_of_w32): New function. Used to initialize those
22919 global variables that must always be initialized on startup even
22920 when the global variable initialized is non zero. Its primary
22921 purpose at this time is to set the global variables
22922 g_b_init_is_windows_9x, g_b_init_open_process_token,
22923 g_b_init_get_token_information, g_b_init_lookup_account_sid, and
22924 g_b_init_get_sid_identifier_authority to 0 on startup.
22925 Called from main.
22926
22927 * w32.c (is_windows_9x): Perform initialization only if
22928 g_b_init_is_windows_9x is equal to 0. On initialization set
22929 g_b_init_is_windows_9x equal to 1.
22930
22931 * w32.c (open_process_token): Perform initialization only if
22932 g_b_init_open_process_token is equal to 0. On initialization set
22933 g_b_init_open_process_token equal to 1.
22934
22935 * w32.c (get_token_information): Perform initialization only if
22936 g_b_init_get_token_information is equal to 0. On initialization
22937 set g_b_init_get_token_information equal to 1.
22938
22939 * w32.c (lookup_account_sid): Perform initialization only if
22940 g_b_init_lookup_account_sid is equal to 0. On initialization
22941 set g_b_init_lookup_account_sid equal to 1.
22942
22943 * w32.c (get_sid_identifier_authority): Perform initialization
22944 only if g_b_init_get_sid_identifier_authority is equal to 0.
22945 On initialization set g_b_init_get_sid_identifier_authority equal to 1.
22946
22947 * w32fns.c (globals_of_w32fns): New function. Used to initialize
22948 those global variables that must always be initialized on startup
22949 even when the global variable initialized is non zero.
22950 Its primary purpose at this time is to initialize the global variable
22951 track_mouse_event_fn.
22952
22953 * w32fns.c (w32_wnd_proc): Remove initialization of
22954 track_mouse_event_fn from the handler for the WM_SETFOCUS message.
22955
22956 * w32fns.c (syms_of_w32fns): Call globals_of_w32fns.
22957
22958 * w32menu.c (globals_of_w32menu): New function. Used to
22959 initialize those global variables that must always be initialized
22960 on startup even when the global variable initialized is non zero.
22961 Its primary purpose at this time is to initialize the global
22962 variables get_menu_item_info and set_menu_item_info.
22963
22964 * w32menu.c (initialize_frame_menubar): Remove initialization of
22965 get_menu_item_info and set_menu_item_info.
22966
22967 * w32menu.c (syms_of_w32menu): Call globals_of_w32menu.
22968
22969 * w32.h (globals_of_w32, globals_of_w32fns, globals_of_w32menu):
22970 Declare them.
22971
22972 * emacs.c (main): Call globals_of_w32 prior to calling
22973 init_environment if WINDOWSNT is defined. Call globals_of_w32fns
22974 and globals_of_w32menu if initialized is non zero and HAVE_NTGUI
22975 is defined.
22976
22977 * w32term.c (x_update_window_begin): Fix Windows API error
22978 detected by BoundsChecker. Test to determine if
22979 w32_system_caret_hwnd is NULL prior to attempting to use
22980 SendMessage to send the WM_EMACS_HIDE_CARET message to it.
22981
22982 * w32term.c (x_update_window_end): Fix Windows API error
22983 detected by BoundsChecker. Test to determine if
22984 w32_system_caret_hwnd is NULL prior to attempting to use
22985 SendMessage to send the WM_EMACS_SHOW_CARET message to it.
22986
22987 2002-12-17 Kenichi Handa <handa@m17n.org>
22988
22989 * coding.c (coding_system_require_warning): New variable.
22990 (syms_of_coding): DEFVAR it.
22991
22992 * coding.h (coding_system_require_warning): Extern it.
22993
22994 * fileio.c (choose_write_coding_system): Even if
22995 Vcoding_system_for_write is non-nil, if
22996 coding_system_require_warning is nonzero, call
22997 Vselect_safe_coding_system_function.
22998
22999 2002-12-17 Markus Rost <rost@math.ohio-state.edu>
23000
23001 * Makefile.in (lisp, shortlisp): Add cus-face and timer.
23002 (lisp): Add font-core.
23003
23004 2002-12-13 Stefan Monnier <monnier@cs.yale.edu>
23005
23006 * textprop.c (text_read_only): New arg `propval'.
23007 (get_char_property_and_overlay): Remove unused var `next_overlay'.
23008 (verify_interval_modification): Use text_read_only's new arg.
23009
23010 2002-12-13 Kenichi Handa <handa@m17n.org>
23011
23012 * coding.c (Funencodable_char_position): Set pend correctly.
23013
23014 2002-12-12 Jason Rumney <jasonr@gnu.org>
23015
23016 * w32term.c (last_mousemove_x, last_mousemove_y): New variables.
23017 (w32_read_socket) <WM_MOUSEMOVE>: Use them to detect non-movement.
23018 Be more careful about when help_events are generated.
23019
23020 2002-12-12 Steven Tamm <steventamm@mac.com>
23021
23022 * macterm.c (mac_check_for_quit_char): Correctly set the
23023 modifiers of the event to 0.
23024 * mac.c (sys_select): Duplicate rfds before calling select to
23025 ensure that rfds survive the while loop.
23026
23027 2002-12-11 Kim F. Storm <storm@cua.dk>
23028
23029 * xdisp.c (try_window_id): Don't call set_cursor_from_row if
23030 row_containing_pos returned NULL.
23031
23032 2002-12-10 Steven Tamm <steventamm@mac.com>
23033
23034 * mac.c (sys_read): Fix sys_read to not call select if IO is
23035 non-blocking.
23036 (sys_select): Fix sys_select to not use a timeout larger than
23037 the one given.
23038
23039 2002-12-10 Juanma Barranquero <lektu@terra.es>
23040
23041 * editfns.c (Fformat): Use alloca, not _alloca.
23042
23043 2002-12-09 Richard M. Stallman <rms@gnu.org>
23044
23045 * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input
23046 as the last thing.
23047
23048 2002-12-09 Dave Love <fx@gnu.org>
23049
23050 * s/sol2-8.h: Removed. (Not necessary.)
23051
23052 2002-12-09 Matthew Swift <swift@alum.mit.edu>
23053
23054 * editfns.c (Fformat): Handle precision in string conversion
23055 specifiers like libc functions do (ie, print at most that many
23056 characters).
23057
23058 2002-12-08 Richard M. Stallman <rms@gnu.org>
23059
23060 * xdisp.c (row_containing_pos): Check more carefully
23061 whether charpos is really in the row before returning it.
23062
23063 2002-12-07 Steven Tamm <steventamm@mac.com>
23064
23065 * sysdep.c (emacs_read) [HAVE_CARBON]: Have emacs_read use sys_read.
23066
23067 * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at
23068 each stack frame. This may change as it could be time consuming.
23069
23070 * macterm.c (mac_check_for_quit_char, quit_char_comp)
23071 (init_quit_char_handler, mac_determine_quit_char_modifiers)
23072 (mac_initialize): Add code to check for pressing of quit_char
23073 in the OS event queue.
23074
23075 * mac.c (sys_select): Call mac_check_for_quit_char every second
23076 while blocking on select.
23077
23078 * mac.c (sys_read): Use sys_select to test for input first
23079 before calling read, to allow C-g to break.
23080
23081 2002-12-07 Richard M. Stallman <rms@gnu.org>
23082
23083 * minibuf.c (Fcompleting_read): Doc fix.
23084
23085 * lread.c (syms_of_lread) <load-history>: Doc fix.
23086
23087 * fileio.c (Fcopy_file): Set immediate_quit around emacs_open call.
23088
23089 * eval.c (Fdefun, Fdefmacro): Record in load-history redefining an
23090 autoload.
23091
23092 * data.c (Fdefalias): Record in load-history redefining an autoload.
23093
23094 * alloca.c: Undo ifdef change accidentally made on 12-04.
23095
23096 2002-12-06 Francesco Potort\e,Al\e(B <pot@gnu.org>
23097
23098 * xfns.c (png_load): Avoid double gamma correction for PNG images.
23099
23100 2002-12-04 Richard M. Stallman <rms@gnu.org>
23101
23102 * sysdep.c (fcntl.h): Test only HAVE_FCNTL_H.
23103
23104 * fileio.c (fcntl.h): Test only HAVE_FCNTL_H.
23105
23106 * alloca.c: Don't use #error.
23107
23108 2002-12-03 Dave Love <fx@gnu.org>
23109
23110 * buffer.c (Qucs_set_table_for_input): New.
23111 (Fget_buffer_create): Use it.
23112 (Qset_buffer_major_mode_hook): Deleted.
23113 (Fset_buffer_major_mode): Revert previous change.
23114 (init_buffer_once): Intern ucs-set-table-for-input.
23115 (syms_of_buffer): Delete Qset_buffer_major_mode_hook.
23116 Add &Qucs_set_table_for_input.
23117
23118 2002-12-03 Andreas Schwab <schwab@suse.de>
23119
23120 * callint.c (Fcall_interactively): Use next_event only if less
23121 than key_count.
23122
23123 2002-12-02 Andrew Choi <akochoi@shaw.ca>
23124
23125 * macmenu.c (add_menu_item, fill_menubar): Truncate menu item
23126 names to 255 characters.
23127
23128 * macterm.c (XTread_socket): If all frames have been collapsed,
23129 expand the first one before handling drag-and-drop events.
23130
23131 * s/darwin.h (GETPGRP_NO_ARG): Delete. Replaced by GETPGRP_VOID,
23132 which is detected by autoconf.
23133
23134 2002-12-01 Steven Tamm <steventamm@mac.com>
23135
23136 * unexmacosx.c (copy_twolevelhints, dump_it): Now corrects the
23137 offset in two hints table to allow prebinding to be redone and
23138 allow the executable to be stripped.
23139
23140 2002-11-29 Dave Love <fx@gnu.org>
23141
23142 * fns.c (Frequire): Don't call LOADHIST_ATTACH if feature was
23143 already provided.
23144
23145 2002-11-29 Richard M. Stallman <rms@gnu.org>
23146
23147 * xdisp.c (start_display): Check more intelligently for
23148 whether the line is continued.
23149 (move_it_vertically_backward): Clear it->continuation_lines_width.
23150
23151 2002-11-28 Dave Love <fx@gnu.org>
23152
23153 * s/amdahl.h, s/unipl5-0.h, m/sgi3000.h, s/3700.h, s/alliant-2800.h:
23154 * s/alliant.h, s/altos.h: Deleted. (Unused/empty.)
23155
23156 2002-11-27 Steven Tamm <steventamm@mac.com>
23157
23158 * fns.c (Frequire): Change nesting allowance from 2 to 3 to cause
23159 more descriptive error output from lread.c:Fload upon most require
23160 cycles during boostrapping.
23161
23162 2002-11-27 Jason Rumney <jasonr@gnu.org>
23163
23164 * fileio.c (Finsert_file_contents): Give a more appropriate error
23165 for files bigger than 2Gb when off_t is 32 bit.
23166
23167 * dired.c (Ffile_attributes): Don't return negative file sizes for
23168 files bigger than 2Gb when off_t is 32 bit.
23169
23170 2002-11-27 Dave Love <fx@gnu.org>
23171
23172 * s/irix6-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
23173
23174 * systty.h: Don't conditionally define GETPGRP_NO_ARG.
23175 Test GETPGRP_VOID instead.
23176 [BSD_TERMIOS]: Remove definitions (never used).
23177
23178 * s/osf5-0.h (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist):
23179 Don't define.
23180 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
23181
23182 * m/mips.h (WORDS_BIG_ENDIAN): Define conditionally.
23183
23184 2002-11-25 Jason Rumney <jasonr@gnu.org>
23185
23186 * w32.c (sys_write): Avoid non-blocking mode, which is not fully
23187 supported.
23188
23189 2002-11-25 Dave Love <fx@gnu.org>
23190
23191 * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec.
23192
23193 * Makefile.in (TEMACS_LDFLAGS): Update last change.
23194
23195 2002-11-25 Andreas Schwab <schwab@suse.de>
23196
23197 * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change.
23198
23199 2002-11-24 Steven Tamm <steventamm@mac.com>
23200
23201 * unexmacosx.c (unexec_realloc): Use malloc_default_zone to
23202 determine the size of pointers alloced in unexed space instead
23203 of using possibly invalid emacs_zone pointers. This fixes the
23204 binary incompatibility problems caused by updates to libSystem.B.
23205
23206 2002-11-24 Richard M. Stallman <rms@gnu.org>
23207
23208 * search.c (Fstring_match): Doc fix.
23209
23210 * callint.c (Fcall_interactively): If a command fails because
23211 `*' detects a read-only buffer, but RECORD_FLAG is set,
23212 record it anyway if the args don't actually do tty input.
23213
23214 2002-11-22 Dave Love <fx@gnu.org>
23215
23216 * sysdep.c (stuff_char) [PROTOTYPES]: Provide ISO C arglist.
23217
23218 * keyboard.c (interrupt_signal): Provide forward declaration.
23219 (kbd_buffer_store_event): Don't declare interrupt_signal.
23220
23221 * xdisp.c (store_frame_title_char) [PROTOTYPES]: Provide ISO C arglist.
23222
23223 2002-11-21 Richard M. Stallman <rms@gnu.org>
23224
23225 * eval.c (interactive_p): Skip any number of bytecode
23226 and special form frames, in any order.
23227
23228 2002-11-20 Jason Rumney <jasonr@gnu.org>
23229
23230 * w32fns.c (convert_mono_to_color_image): New function.
23231 (xbm_load, xbm_load_image): Use it when foreground or background
23232 is explicitly set.
23233
23234 2002-11-19 Dave Love <fx@gnu.org>
23235
23236 * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
23237
23238 2002-11-18 Jason Rumney <jasonr@gnu.org>
23239
23240 * w32fns.c (x_build_heuristic_mask): Filter palette info from color.
23241 (XPutPixel): Swap blue and red.
23242 (xpm_format, pbm_format, png_format, jpeg_format, tiff_format)
23243 (gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
23244 (xpm_image_p, pbm_image_p, png_image_p, jpeg_image_p)
23245 (tiff_image_p, gif_image_p, gs_image_p): Don't check ascent.
23246
23247 2002-11-18 Dave Love <fx@gnu.org>
23248
23249 * m/orion105.h (HAVE_ALLOCA): Don't define.
23250
23251 * m/m68k.h, m/arm.h, mtekxd88.h, m/tower32v3.h: Don't define alloca.
23252
23253 * m/intel386.h: Don't include alloca.h or define alloca.
23254
23255 * m/ia64.h: Don't include alloca.h, stdlib.h. Don't declare
23256 malloc, realloc, calloc.
23257
23258 * m/hp800.h, m/sr2k.h, m/ns16000.h, m/wicat.h (bcopy, bzero)
23259 (bcmp): Don't define.
23260
23261 * m/delta.h (bcopy, bzero, bcmp, alloca): Don't define.
23262
23263 * m/amdahl.h: Don't define LIB_STANDARD.
23264
23265 * m/alpha.h: Move OSF1 stuff from here to s/osf1.h.
23266
23267 * s/osf1.h: Move OSF1 stuff from m/alpha.h to here.
23268
23269 * s/irix4-0.h, s/irix5-0.h, m/powerpcle.h, m/sparc.h:
23270 Don't include alloca.h.
23271
23272 * s/aix3-2.h (HAVE_FSYNC): Don't define.
23273
23274 * regex.c (_GNU_SOURCE): Don't define.
23275
23276 * process.c (_GNU_SOURCE): Don't define.
23277
23278 * fileio.c (_GNU_SOURCE, HAVE_FSYNC): Don't define.
23279
23280 2002-11-18 Markus Rost <rost@math.ohio-state.edu>
23281
23282 * s/sol2-8.h: Include sol2-6.h.
23283
23284 2002-11-18 Miles Bader <miles@gnu.org>
23285
23286 * dispextern.h (struct face): Add `overstrike' field.
23287 * xterm.c (x_draw_glyph_string_foreground)
23288 (x_draw_composite_glyph_string_foreground): Implement overstriking.
23289 * xfaces.c (load_face_font): Set `face->overstrike' based on
23290 result from choose_face_font.
23291 (best_matching_font, choose_face_font): Add `needs_overstrike'
23292 argument, and use it to return whether overstriking is desirable
23293 for this face/font combo.
23294 (set_font_frame_param): Pass new argument to choose_face_font.
23295
23296 2002-11-17 Ben Key <BKey1@tampabay.rr.com>
23297
23298 This change is my fix for the following entry in etc/PROBLEMS:
23299 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
23300 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
23301
23302 * w32.c: Added wrapper functions around the win32 API functions
23303 OpenProcessToken, GetTokenInformation, LookupAccountSid, and
23304 GetSidIdentifierAuthority. These wrapper functions serve two
23305 purposes:
23306 1. They ensure that the wrapped function can never be called
23307 when Emacs is running on an operating system on which they are
23308 not supported (Microsoft Windows 95 / 98 / ME).
23309 2. They call the wrapped functions via function pointers rather
23310 than calling them directly. This avoids taking advantage of the
23311 undocumented fact that although these functions are not supported
23312 in the 9x branch of Microsoft Windows, the functions do exist in
23313 the version of advapi32.dll that is found in the 9x branch of
23314 Microsoft Windows.
23315
23316 * w32.c (init_user_info): Replace the calls to the win32 API
23317 functions OpenProcessToken, GetTokenInformation, LookupAccountSid,
23318 and GetSidIdentifierAuthority with calls to the newly added
23319 wrapper functions.
23320
23321 * w32.h: Added extern declarations for the following functions:
23322 syms_of_w32term, syms_of_w32fns, syms_of_w32select,
23323 syms_of_w32menu, and void syms_of_fontset.
23324
23325 * w32fns.c (w32_wnd_proc): Add code to reinitialize the
23326 function pointer track_mouse_event_fn in the handler for the
23327 WM_SETFOCUS message.
23328
23329 * w32menu.c (initialize_frame_menubar): Add code to
23330 reinitialize the function pointers set_menu_item_info and
23331 get_menu_item_info.
23332
23333 2002-11-17 Ben Key <BKey1@tampabay.rr.com>
23334
23335 * sound.c: Added a partial implementation of play-sound-internal
23336 for Microsoft Windows. Added various #ifdef / #else / #endif
23337 code blocks to separate the code that will compile under
23338 Microsoft Windows from the code that is specific to GNU/Linux.
23339 Moved several blocks of code around to make this separation of code
23340 into Windows compatible and GNU/Linux compatible code blocks easier.
23341
23342 * makefile.w32-in: Include sound.c and link with WinMM.lib.
23343
23344 * s/ms-w32.h: Defined the symbol HAVE_SOUND so that the newly
23345 added support for play-sound-internal under Windows would be
23346 included in the build of Emacs.
23347
23348 2002-11-16 Jason Rumney <jasonr@gnu.org>
23349
23350 * w32fns.c (w32_load_system_font): Don't disable Cleartype.
23351
23352 * w32term.c (w32_get_glyph_string_clip_rect): Clip cursor tightly.
23353
23354 2002-11-15 Stefan Monnier <monnier@cs.yale.edu>
23355
23356 * keyboard.c (command_loop_1): Fix int/Lisp_Object mixup.
23357 (adjust_point_for_property): Move out of display and invisible even if
23358 we were already inside before (in case a property was added while
23359 we weren't looking). Be more careful when handling invisible props.
23360 Skip invisible text as if it really wasn't there at all.
23361
23362 2002-11-15 Jason Rumney <jasonr@gnu.org>
23363
23364 * w32term.c (x_draw_image_foreground)
23365 (w32_draw_image_foreground_1): Use standard copy and invert
23366 operations to draw images.
23367
23368 * w32fns.c (x_create_x_image_and_pixmap): Fill in palette for
23369 depth of 1.
23370 (xbm_read_bitmap_data): Invert bits as xbm is read in.
23371 (XPutPixel): Don't invert bits here.
23372
23373 2002-11-15 Jason Rumney <jasonr@gnu.org>
23374
23375 * w32term.c (x_draw_image_foreground, x_draw_image_glyph_string)
23376 (w32_draw_image_foreground_1): Handle image masks.
23377 (x_draw_image_glyph_string): Don't BitBlt transparently.
23378
23379 * w32fns.c (w32_defined_color): Adjust RGB values for Emacs.
23380 (x_from_xcolors): Adjust RGB values for W32.
23381 (image_background, image_background_transparent)
23382 (postprocess_image, x_to_xcolors, x_disable_image)
23383 (x_build_heuristic_mask): Adapt for W32 and enable.
23384 (x_create_x_image_and_pixmap): Mark images with palettes as such.
23385 (xbm_load): Remove unused variable.
23386
23387 2002-11-14 Richard M. Stallman <rms@gnu.org>
23388
23389 * buffer.c (syms_of_buffer): Doc fix.
23390
23391 2002-11-14 Dave Love <fx@gnu.org>
23392
23393 * alloc.c (SETJMP_WILL_NOT_WORK): Add note.
23394
23395 * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
23396 * xmenu.c (unuse_menu_items, digest_single_submenu):
23397 * xfns.c (x_put_x_image):
23398 * xdisp.c (message2_nolog, set_message):
23399 * undo.c (record_point):
23400 * terminfo.c (tparam):
23401 * syntax.c (scan_sexps_forward):
23402 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
23403 * composite.c (update_compositions):
23404 * cm.c (calccost, cmgoto):
23405 * charset.c (c_string_width): Declare all args (per C99).
23406
23407 * frame.h (get_specified_cursor_type, get_window_cursor_type): Declare.
23408
23409 * lisp.h (get_specified_cursor_type, get_window_cursor_type):
23410 Don't declare.
23411
23412 * emacs.c (main) [!VMS]: Avoid third arg.
23413
23414 * fns.c (Fcopy_sequence): Doc fix.
23415 (Fmap_char_table): Cast `call2'.
23416
23417 2002-11-14 Francesco Potort\e,Al\e(B <pot@gnu.org>
23418
23419 * s/sol2-8.h: New file.
23420
23421 2002-11-14 Kim F. Storm <storm@cua.dk>
23422
23423 * buffer.c (syms_of_buffer) <mode-line-format>: Document symbol
23424 dependency on `risky-local-variable' and the :propertize form.
23425
23426 2002-11-12 Stefan Monnier <monnier@cs.yale.edu>
23427
23428 * fns.c (Fmap_char_table): Don't use map_char_table's function arg.
23429
23430 * syntax.c (scan_sexps_forward): Undo last patch.
23431 Use a more obvious fix: check eob before updating the syntax table.
23432
23433 2002-11-09 Stefan Monnier <monnier@cs.yale.edu>
23434
23435 * syntax.c (scan_sexps_forward): Update syntax table before reading
23436 a char rather than after so we don't update the table past eob.
23437
23438 2002-11-09 Dave Love <fx@gnu.org>
23439
23440 * buffer.c (Fset_buffer_major_mode): Fix last change.
23441
23442 * regex.c (regexec): Fix pmatch declaration.
23443
23444 * cmds.c (Fself_insert_command): Apply Vtranslation_table_for_input.
23445
23446 * keyboard.c (command_loop_1): Apply Vtranslation_table_for_input
23447 to self-inserting characters.
23448 (syms_of_keyboard) <keyboard-translate-table>: Doc fix.
23449
23450 * coding.c (Vtranslation_table_for_input): New.
23451 (syms_of_coding): DEFVAR it.
23452
23453 2002-11-08 Juanma Barranquero <lektu@terra.es>
23454
23455 * w32term.c (w32_draw_fringe_bitmap): Remove unused local variable
23456 window.
23457
23458 2002-11-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
23459
23460 * process.c (Fformat_network_address): Remove unused locals p,
23461 cp, and i.
23462
23463 2002-11-06 Dave Love <fx@gnu.org>
23464
23465 * buffer.c (Qset_buffer_major_mode_hook): New.
23466 (Fset_buffer_major_mode): Use it.
23467
23468 2002-11-06 Richard M. Stallman <rms@gnu.org>
23469
23470 * xterm.c (x_term_init): Use turn_on_atimers, not start_polling
23471 and stop_polling.
23472
23473 * process.c (wait_reading_process_input):
23474 Test POLLING_PROBLEM_IN_SELECT, not hpux.
23475 Avoid initialization for auto Lisp_Object var.
23476
23477 * s/hpux11.h (POLLING_PROBLEM_IN_SELECT): Add #undef.
23478
23479 * s/hpux10.h (POLLING_PROBLEM_IN_SELECT): Defined.
23480
23481 2002-11-05 Richard M. Stallman <rms@gnu.org>
23482
23483 * s/sol2-5.h (BROKEN_SIGIO): Turn off the #undef.
23484
23485 * callint.c (Fcall_interactively): New local filter_specs.
23486 (Fcall_interactively): Check for progn as well as let.
23487 Add a gcpro.
23488 (Qprogn): New variable.
23489 (syms_of_callint): Staticpro and init Qprogn.
23490
23491 2002-11-04 John Paul Wallington <jpw@shootybangbang.com>
23492
23493 * lread.c (Feval_buffer): Doc fix.
23494
23495 2002-11-04 Dave Love <fx@gnu.org>
23496
23497 * keyboard.c (read_char): Always translate iff
23498 Vkeyboard_translate_table is a char table and c is valid.
23499
23500 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
23501 and fix C types.
23502
23503 2002-11-03 Stefan Monnier <monnier@cs.yale.edu>
23504
23505 * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
23506
23507 * editfns.c (get_pos_property): Don't hardcode Qfield.
23508
23509 * keyboard.c (adjust_point_for_property): Handle `display' prop on
23510 overlays. Also handle `invisible' prop.
23511
23512 2002-11-02 Stefan Monnier <monnier@cs.yale.edu>
23513
23514 * coding.c (decode_coding_emacs_mule, decode_coding_iso2022)
23515 (decode_coding_sjis_big5, decode_eol): Allow lone \r in DOS EOL.
23516
23517 2002-11-01 Andreas Schwab <schwab@suse.de>
23518
23519 * editfns.c (Fmessage): Revert last change to properly handle %%.
23520
23521 2002-11-01 Stefan Monnier <monnier@cs.yale.edu>
23522
23523 * xmenu.c (unuse_menu_items): New fun.
23524 (menu_items_inuse): New var.
23525 (syms_of_xmenu): Initialize it.
23526 (init_menu_items): Use it to detect re-entrance.
23527 (Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset when done.
23528 (Fx_popup_menu): Remove spurious XSETFRAME.
23529
23530 * editfns.c (find_field): Make an exception for nil fields.
23531
23532 2002-11-01 Dave Love <fx@gnu.org>
23533
23534 * m/gec63.h: Deleted.
23535
23536 2002-10-31 Dave Love <fx@gnu.org>
23537
23538 * xterm.c (XTread_socket): Fix last change.
23539 (xaw_scroll_callback): Cast call_data to long to avoid warning.
23540
23541 2002-10-31 Stefan Monnier <monnier@cs.yale.edu>
23542
23543 * process.c (Fformat_network_address): Fix int/Lisp_Object mixup.
23544
23545 2002-10-30 Stefan Monnier <monnier@cs.yale.edu>
23546
23547 * editfns.c (overlays_around, get_pos_property): New funs.
23548 (find_field): Use them.
23549 Also be careful not to modify POS before its last use.
23550 (Fmessage): Don't Fformat if there's nothing to format.
23551
23552 2002-10-30 Dave Love <fx@gnu.org>
23553
23554 * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
23555 [HAVE_PTY_H]; Include pty.h.
23556
23557 * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
23558
23559 * xterm.c (Qeql): Declare.
23560 (Vx_keysym_table): New.
23561 (syms_of_xterm): Initialize it.
23562 (XTread_socket): Use it. Deal with ASCII keysyms.
23563 (XSetIMValues) [HAVE_X11R6]: Prototype.
23564
23565 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
23566 (lispy_kana_keys): Comment out.
23567 (make_lispy_event) [XK_kana_A]: Comment out.
23568 (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>:
23569 Fix sprintf call.
23570
23571 * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
23572 regexp.h change).
23573 (TERMINFO, LIBS_TERMCAP): Define.
23574
23575 * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
23576 (bcmp): Define conditional on HAVE_BCMP.
23577 (NO_SIOCTL_H): Don't define.
23578 (TIOCSIGSEND): Don't make conditional on IRIX6.
23579
23580 * s/sol2-5.h: Don't include strings.h.
23581 (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
23582
23583 * s/irix6-0.h (IRIX6): Don't define.
23584 (bcopy, bcmp, bzero): Don't undef.
23585
23586 * s/irix6-5.h: Don't include strings.h.
23587 (IRIX6): Don't define.
23588 (bcopy, bcmp, bzero): Don't undef.
23589
23590 * syntax.c (Fforward_comment): Doc fix.
23591
23592 2002-10-29 Kim F. Storm <storm@cua.dk>
23593
23594 * process.c (Fsignal_process): Allow PROCESS to be specified by
23595 name in addition to pid (as integer or string).
23596
23597 2002-10-28 Harald Maier <Harald.Maier.BW@t-online.de> (tiny change)
23598
23599 * w32heap.c: Don't redefine _heap_init and _heap_term on MSVC 7 build
23600 environments.
23601
23602 2002-10-27 Kim F. Storm <storm@cua.dk>
23603
23604 * xterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
23605
23606 * w32term.c (note_mouse_highlight): Don't use mouse-face if hidden.
23607
23608 * msdos.c (IT_note_mouse_highlight): Don't use mouse-face if hidden.
23609
23610 * macterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
23611
23612 2002-10-26 Richard M. Stallman <rms@gnu.org>
23613
23614 * editfns.c (Fformat): Detect invalid format letters for floats.
23615
23616 2002-10-25 Kenichi Handa <handa@m17n.org>
23617
23618 * xfns.c (x_set_name): Encode by Qcompound_text unconditionally.
23619 (x_set_title): Likewise.
23620
23621 2002-10-25 Juanma Barranquero <lektu@terra.es>
23622
23623 * macgui.h:
23624 * w32gui.h: Remove definition of XColor.
23625
23626 * dispextern.h [!HAVE_X_WINDOWS]: Define XColor.
23627
23628 2002-10-24 Kim F. Storm <storm@cua.dk>
23629
23630 * xdisp.c (get_window_cursor_type): New arg ACTIVE_CURSOR.
23631 Callers changed (supply dummy arg).
23632
23633 * lisp.h (get_window_cursor_type): Update prototype.
23634
23635 * w32term.c (x_display_and_set_cursor): Get active_cursor from
23636 get_window_cursor_type to track system caret.
23637
23638 2002-10-24 Kim F. Storm <storm@cua.dk>
23639
23640 * process.c (Fformat_network_address): New function.
23641 (syms_of_process): Defsubr it.
23642 (list_processes_1): Use it to format :local/:remote address if
23643 service/host is not set; before Emacs would crash in that case.
23644 (Fmake_network_process): Don't use Ffind_operation_coding_system
23645 to setup coding system if host or service is not set.
23646
23647 2002-10-23 Juanma Barranquero <lektu@terra.es>
23648
23649 Patch suggested by Jay Finger <jay_finger@hotmail.com>.
23650
23651 * w32term.c (w32_term_init): Pass XColor to w32_define_color, not
23652 COLORREF.
23653
23654 * macgui.h:
23655 * w32gui.h: Add definition of XColor.
23656
23657 * macfns.c:
23658 * w32fns.c:
23659 * xfaces.c: Remove definition of XColor.
23660
23661 2002-10-22 Stefan Monnier <monnier@cs.yale.edu>
23662
23663 * xfns.c (x_set_name, x_set_title): `icon.value' has unsigned char.
23664
23665 * window.c (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
23666 Only ignore truly dedicated windows. For UNSHOW_BUFFER, delete the
23667 window if it is dedicated.
23668 (Fshrink_window): Add preserve_before as was done for enlarge_window.
23669 (Vspecial_display_function): Update docstring.
23670
23671 * buffer.c (assoc_ignore_text_properties, Fother_buffer, Fkill_buffer)
23672 (call_overlay_mod_hooks): Use CONSP and XCAR/XCDR.
23673 (Fget_buffer_create, advance_to_char_boundary): Use BEG and BEG_BYTE.
23674
23675 2002-10-21 Stefan Monnier <monnier@cs.yale.edu>
23676
23677 * casefiddle.c (casify_region): Don't treat a prefix char as part
23678 of a word when at the beginning.
23679
23680 2002-10-17 Juanma Barranquero <lektu@terra.es>
23681
23682 * lread.c (syms_of_lread): Fix typos.
23683
23684 2002-10-17 Dave Love <fx@gnu.org>
23685
23686 * Makefile.in (TEMACS_LDFLAGS): Add trailing comment.
23687
23688 2002-10-16 Richard M. Stallman <rms@gnu.org>
23689
23690 * fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
23691
23692 2002-10-14 Juanma Barranquero <lektu@terra.es>
23693
23694 * w16select.c (syms_of_win16select): Fix docstring for
23695 `selection-coding-system'.
23696
23697 * w32select.c (syms_of_w32select): Likewise.
23698
23699 2002-10-14 Stefan Monnier <monnier@cs.yale.edu>
23700
23701 * syntax.c (scan_lists): Don't get fooled by a symbol ending with
23702 a backslash-quoted char.
23703 (scan_lists, scan_sexps_forward): Pacify the compiler.
23704
23705 2002-10-13 Richard M. Stallman <rms@gnu.org>
23706
23707 * window.c (window_scroll): Set immediate_quit.
23708
23709 * print.c (print): When backquote form is the car of a list,
23710 output in old style. Use old_backquote_output to output all
23711 comma forms inside it in old style too.
23712
23713 * buffer.h (struct buffer): Move `undo_list' down below `name'.
23714
23715 2002-10-11 Markus Rost <rost@math.ohio-state.edu>
23716
23717 * emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in
23718 batch mode).
23719
23720 * lread.c (Fload): Doc fix (load-suffixes).
23721
23722 2002-10-10 Steven Tamm <steventamm@mac.com>
23723
23724 * macterm.c (syms_of_macterm, mac_get_mouse_btn):
23725 Reverse functionality of mac-wheel-button-is-mouse-2 to be correct.
23726 Also switch the default to Qnil from Qt.
23727
23728 2002-10-08 Kenichi Handa <handa@m17n.org>
23729
23730 * coding.c (code_convert_region): When we need more GAP for
23731 conversion, pay attention to the case that coding->produced is not
23732 greater than coding->consumed.
23733
23734 2002-10-07 Richard M. Stallman <rms@gnu.org>
23735
23736 * unexelf.c (unexec): Redo 9/16 change, but only if IRIX6_5.
23737
23738 2002-10-06 Andrew Choi <akochoi@shaw.ca>
23739
23740 * macmenu.c (mac_menu_show): Add j to count menu items; match
23741 menu_item_selection to it to find selected item.
23742
23743 2002-10-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23744
23745 * xterm.c (XTread_socket): Fix from 2002-10-03 didn't cover all
23746 cases. The correct fix is to pass ReparentNotify to Xt.
23747 The shell widget interprets ConfigureNotify differently depending
23748 on if it has been reparented or not.
23749
23750 2002-10-05 Markus Rost <rost@math.ohio-state.edu>
23751
23752 * editfns.c (Fformat_time_string): Doc fix.
23753
23754 2002-10-05 John Paul Wallington <jpw@shootybangbang.com>
23755
23756 * fns.c (Flength): Doc fix.
23757
23758 2002-10-04 Stefan Monnier <monnier@cs.yale.edu>
23759
23760 * keyboard.c (keyremap): New struct.
23761 (read_key_sequence): Use it: globally replace keytran_foo with
23762 keytran.foo and fkey_foo with fkey.foo. Rename temp vars
23763 keytran_next and fkey_next to just `next'.
23764
23765 2002-10-04 Steven Tamm <steventamm@mac.com>
23766
23767 * macterm.c (keycode_to_xkeysym_table): Change return to be
23768 treated like an X keysym.
23769
23770 2002-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
23771
23772 * xterm.c (XTread_socket): For ConfigureNotify, with x and y == 0,
23773 and USE_MOTIF, call XTranslateCoordinates to get the real x and y.
23774 This is to also handle x/y changes that occur because of a resize.
23775
23776 2002-10-02 John Paul Wallington <jpw@shootybangbang.com>
23777
23778 * frame.c (Vdelete_frame_functions): New variable.
23779 (syms_of_frame): Initialize and defvar it.
23780 (Fdelete_frame): Use it instead of delete-frame-hook. Don't run
23781 it when frame's `tooltip' parameter is non-nil.
23782
23783 * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t.
23784
23785 * w32fns.c (x_create_tip_frame): Likewise.
23786
23787 * macfns.c (x_create_tip_frame): Likewise.
23788
23789 2002-09-30 Kenichi Handa <handa@m17n.org>
23790
23791 * xterm.c (x_encode_char): For DIM=1 charset, set ccl->reg[2] to
23792 -1 before calling ccl_driver.
23793
23794 * coding.c (decode_coding_emacs_mule): Check coding->cmp_data.
23795 Only when it is non-nil, handle composition sequence.
23796 (setup_coding_system) <0>: Don't force composition handling.
23797
23798 * Makefile.in (lisp, shortlisp): Add utf-16.elc.
23799
23800 2002-09-29 Richard M. Stallman <rms@gnu.org>
23801
23802 * search.c (Freplace_match): Adjust match data for the substitution
23803 just made in the buffer.
23804
23805 * xdisp.c (STOP_POLLING, RESUME_POLLING): New macros.
23806 (redisplay_internal): Use them. Do RESUME_POLLING at end of function.
23807
23808 2002-09-27 Richard M. Stallman <rms@gnu.org>
23809
23810 * keyboard.c (STOP_POLLING, RESUME_POLLING): New macros.
23811 (read_char): Use them. Do all exits thru the end of the function.
23812
23813 2002-09-27 Kenichi Handa <handa@etl.go.jp>
23814
23815 * xfaces.c (try_font_list): Pay attention to the case that FAMILY
23816 is nil.
23817
23818 2002-09-26 Richard M. Stallman <rms@gnu.org>
23819
23820 * regex.h (__restrict_arr): Don't define if already defined.
23821
23822 * coding.c (run_pre_post_conversion_on_str):
23823 Save and restore Vdeactivate_mark.
23824
23825 2002-09-26 John Paul Wallington <jpw@shootybangbang.com>
23826
23827 * minibuf.c (Fminibufferp): Add an optional `buffer' argument.
23828
23829 2002-09-26 Kenichi Handa <handa@etl.go.jp>
23830
23831 * xfaces.c (try_font_list): New arg PREFER_FACE_FAMILY. If it is
23832 nonzero, try face's family at first. Otherwise try FAMILY at first.
23833 (choose_face_font): If C is a single byte char or latin-1, call
23834 try_font_list with PREFER_FACE_FAMILY 1.
23835
23836 2002-09-21 Richard M. Stallman <rms@gnu.org>
23837
23838 * window.c (select_window_1): Don't select frame.
23839 Set frame's selected window only when frame itself is selected.
23840 (Fselect_window): Doc fix.
23841
23842 2002-09-18 Kim F. Storm <storm@cua.dk>
23843
23844 * process.c (make-network-process): Doc fix (there is no
23845 network-server-log-function hook).
23846
23847 2002-09-18 Richard M. Stallman <rms@gnu.org>
23848
23849 * print.c (print): Clear out the unused parts of Vprint_number_table.
23850 (syms_of_print): Doc fix for `print-number-table'.
23851
23852 * unexelf.c (unexec): Undo previous change.
23853
23854 2002-09-17 Andreas Schwab <schwab@suse.de>
23855
23856 * m/alpha.h [LINUX]: Don't define DATA_START.
23857
23858 2002-09-16 Dave Love <fx@gnu.org>
23859
23860 * unexelf.c (unexec): Deal with .got, reinstating change from
23861 25-08-1999.
23862
23863 2002-09-13 Richard M. Stallman <rms@gnu.org>
23864
23865 * s/sol2-6.h (UNEXEC): Comment out definition.
23866
23867 * unexsol.c (unexec): Don't downcase first letter of error msg.
23868
23869 * xfaces.c (Fcolor_supported_p): Just one arg is required.
23870
23871 2002-09-12 Markus Rost <rost@math.ohio-state.edu>
23872
23873 * unexsol.c: Include buffer.h, charset.h, coding.h.
23874
23875 2002-09-11 Richard M. Stallman <rms@gnu.org>
23876
23877 * unexsol.c: Don't use report_file_error; do it by hand
23878 using dlerror.
23879
23880 * process.c (wait_reading_process_input, both versions):
23881 Before calling turn_on_atimers, call stop_polling.
23882
23883 * emacs.c (syms_of_emacs) <command-line-args>: Doc fix.
23884
23885 * xdisp.c (try_scrolling): If after make_cursor_line_fully_visible
23886 we go to too_near_end, call clear_glyph_matrix.
23887 (redisplay_window): After make_cursor_line_fully_visible,
23888 call clear_glyph_matrix and bypass `goto done'.
23889
23890 * xfns.c (x_report_frame_params): If FRAME_SCROLL_BAR_PIXEL_WIDTH is 0
23891 and we have non-toolkit scroll bars, return nil for scroll-bar-width.
23892
23893 2002-09-10 Richard M. Stallman <rms@gnu.org>
23894
23895 * fileio.c (Fdo_auto_save): Catch error making directory.
23896 Only call push_message if we need to.
23897 At the same time, make an unwind-protect to pop it.
23898 Rename local message_p to old_message_p.
23899 (do_auto_save_make_dir, do_auto_save_eh): New functions.
23900 (do_auto_save_unwind): Don't call pop_message.
23901
23902 * lisp.h (pop_message_unwind): Renamed from push_message_unwind.
23903
23904 * keyboard.c (Fexecute_extended_command): Use pop_message_unwind.
23905
23906 * alloc.c (Fgarbage_collect): Use pop_message_unwind.
23907
23908 * xdisp.c (pop_message_unwind): Renamed from push_message_unwind.
23909
23910 2002-09-10 Stefan Monnier <monnier@cs.yale.edu>
23911
23912 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete.
23913 (CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1.
23914 (re_match_2_internal): Be more careful with infinite loops.
23915
23916 2002-09-10 Kim F. Storm <storm@cua.dk>
23917
23918 * macros.c (end_kbd_macro): New function.
23919 (Fend_kbd_macro): Use it.
23920
23921 * macros.h (end_kbd_macro): Declare extern.
23922
23923 * keyboard.c (Fdiscard_input): If defining keyboard macro,
23924 end and save it instead of discarding it.
23925
23926 2002-09-09 Markus Rost <rost@math.ohio-state.edu>
23927
23928 * s/sol2-6.h: Fix typo. Add comment.
23929
23930 2002-09-09 Richard M. Stallman <rms@gnu.org>
23931
23932 * regex.c (regnum_t): Use signed int, not unsigned int.
23933
23934 * s/sol2-6.h: New file.
23935
23936 * s/sol2-5.h (UNEXEC): Definition deleted.
23937
23938 2002-09-08 Kim F. Storm <storm@cua.dk>
23939
23940 * macros.c (executing_macro_index): Change type to EMACS_INT.
23941 (syms_of_macros): DEFVAR_INT it (needed by kmacro).
23942
23943 * macros.h (executing_macro_index): Change type to EMACS_INT.
23944
23945 2002-09-06 Richard M. Stallman <rms@gnu.org>
23946
23947 * casetab.c (set_case_table): Make canon table point to eqv table.
23948
23949 2002-09-06 Juanma Barranquero <lektu@terra.es>
23950
23951 * coding.c (syms_of_coding): Fix spacing.
23952
23953 * composite.c (Fcompose_region_internal)
23954 (Fcompose_string_internal): Likewise.
23955
23956 * data.c (Flsh): Likewise.
23957
23958 * fontset.c (Fset_fontset_font): Likewise.
23959
23960 * macfns.c (Fx_server_max_request_size): Likewise.
23961
23962 * w16select.c (syms_of_win16select): Likewise.
23963
23964 * w32select.c (syms_of_w32select): Likewise.
23965
23966 * xselect.c (syms_of_xselect): Likewise.
23967
23968 2002-09-05 Richard M. Stallman <rms@gnu.org>
23969
23970 * regex.c (set_image_of_range_1): In no-TRANSLATE case,
23971 call EXTEND_RANGE_TABLE and return a proper value.
23972 (set_image_of_range): Don't call set_image_of_range_1
23973 if no TRANSLATE or if range includes all of Latin-1.
23974 Only call it for the Latin-1 part of the range.
23975 For other cases, make two separate ranges,
23976 one for the original specified characters and one for
23977 their case-conversions.
23978
23979 2002-09-04 Richard M. Stallman <rms@gnu.org>
23980
23981 * s/sol2-5.h (UNEXEC): Use unexsol.o.
23982
23983 * window.c (displayed_window_lines): Correct for one-off bug
23984 in HEIGHT on non-window displays.
23985
23986 * regex.c (set_image_of_range_1): New function.
23987 (set_image_of_range): Use set_image_of_range_1 for Latin-1.
23988 Return a value to indicate running out of memory.
23989 (SET_RANGE_TABLE_WORK_AREA): Check value from set_image_of_range.
23990 (extend_range_table_work_area): New subroutine.
23991 (EXTEND_RANGE_TABLE): Replaces EXTEND_RANGE_TABLE_WORK_AREA.
23992 Different calling conventions, and used from set_image_of_range{,_1}.
23993 (IMMEDIATE_QUIT_CHECK): Definitions moved.
23994
23995 2002-09-04 Juanma Barranquero <lektu@terra.es>
23996
23997 * makefile.w32-in: All dependencies updated.
23998
23999 2002-09-01 Richard M. Stallman <rms@gnu.org>
24000
24001 * unexsol.c: New file.
24002
24003 * xfns.c (Qbox): Declare external, don't define.
24004
24005 * xdisp.c (redisplay_window) <force-start case>:
24006 If point is on semi-visible last line, reposition
24007 it at previous line.
24008
24009 * alloc.c (display_malloc_warning): Use display-warning.
24010 (malloc_warning_1): Function deleted.
24011
24012 * alloc.c [ALLOC_DEBUG]: #undef INLINE.
24013
24014 * lread.c (read1): Handle #! by skipping the line.
24015
24016 2002-08-31 Richard M. Stallman <rms@gnu.org>
24017
24018 * Makefile.in (TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS.
24019 Don't include LDFLAGS.
24020 (temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
24021
24022 2002-08-31 Eli Zaretskii <eliz@is.elta.co.il>
24023
24024 * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame
24025 member of x_display_info unless we compile for some window system.
24026
24027 2002-08-31 Kim F. Storm <storm@cua.dk>
24028
24029 * xdisp.c (Valternate_cursor_type, Qalternate_cursor_type): Removed.
24030 (get_window_cursor_type): Don't use them.
24031 (syms_of_xdisp): Remove intern, staticpro, and defvar for them.
24032
24033 2002-08-30 Kenichi Handa <handa@etl.go.jp>
24034
24035 * xdisp.c (get_next_display_element): Fix previous change.
24036
24037 2002-08-30 Andrew Choi <akochoi@shaw.ca>
24038
24039 * macterm.c (expose_overlaps): New function (merge code from xterm.c).
24040 (expose_window): Use it to fix the display of overlapping
24041 rows (merge code from xterm.c).
24042
24043 * macfns.c (Qbox): Add extern declaration.
24044
24045 2002-08-30 Juanma Barranquero <lektu@terra.es>
24046
24047 * w32fns.c (Qbox): Make extern.
24048 (syms_of_w32fns): Remove initialization of Qbox.
24049
24050 2002-08-30 Rune Kleveland <runekl@viewpoint.no> (tiny change)
24051
24052 * xfns.c (Fx_open_connection): Fix error message.
24053
24054 2002-08-30 Kim F. Storm <storm@cua.dk>
24055
24056 The following changes consolidates the handling of the cursor
24057 type in xdisp.c, moving duplicate code and functionality from
24058 xfns.c, xterm.c, w32fns.c, w32term.c, macfns.c, and macterm.c.
24059
24060 * frame.h (enum text_cursor_kinds): Consolidated here.
24061 Added DEFAULT_CURSOR value.
24062 (struct frame) <desired_cursor, cursor_width>
24063 <blink_off_cursor, blink_off_cursor_width>: New fields.
24064 Consolidated from output_x, output_w32 and output_mac structs.
24065 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
24066 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros consolidated here.
24067
24068 * xdisp.c (Qbar, Qhbar, Qbox, Qhollow, Vblink_cursor_alist):
24069 Variables consolidated here.
24070 (Valternate_cursor_type, Qalternate_cursor_type): New variables.
24071 (Vcursor_in_non_selected_windows): Renamed from
24072 cursor_in_non_selected_windows and changed to Lisp_Object.
24073 (syms_of_xdisp): Define and staticpro new and moved variables.
24074 (get_specified_cursor_type): Renamed from x_specified_cursor_type;
24075 consolidated here. Recognize Qhollow setting.
24076 (set_frame_cursor_types): New function to set frame cursor types
24077 based on the frame parameters.
24078 (get_window_cursor_type): New function to calculate new cursor
24079 type and width for the specified window. Based on duplicated
24080 code consolidated here.
24081 Enhancements: cursor-in-non-selected-windows may be a cursor type,
24082 check buffer-local alternate-cursor-type and blink-cursor-alist
24083 before using built-in blink off methods.
24084
24085 * dispextern.h (cursor_in_non_selected_windows): Extern removed.
24086
24087 * lisp.h (Qcursor_in_non_selected_windows): Extern removed.
24088 (get_specified_cursor_type, get_window_cursor_type)
24089 (set_frame_cursor_types): Added prototypes.
24090
24091 * macfns.c (x_specified_cursor_type): Removed.
24092 (x_set_cursor_type): Use set_frame_cursor_types.
24093 (Qbar, Qbox): Removed.
24094 (syms_of_macfns): Don't intern or staticpro them.
24095
24096 * macterm.c (x_specified_cursor_type): Remove prototype.
24097 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
24098 (x_display_and_set_cursor): Use get_window_cursor_type.
24099 Remove unused local variables cursor_non_selected, active_cursor.
24100 Redraw cursor if hbar cursor width changes.
24101 (make_mac_frame): Set FRAME_DESIRED_CURSOR.
24102
24103 * macterm.h (enum text_cursor_kinds): Removed.
24104 (struct output_mac) <current_cursor, desired_cursor, cursor_width>
24105 <blink_off_cursor, blink_off_cursor_width>: Members removed.
24106 (FRAME_DESIRED_CURSOR): Macro removed.
24107
24108 * w32fns.c (Vblink_cursor_alist): Removed.
24109 (Qbar, Qhbar, Qbox, Qhollow): Removed.
24110 (syms_of_w32fns): Don't intern, staticpro, or define them.
24111 (x_specified_cursor_type): Removed.
24112 (x_set_cursor_type): Use set_frame_cursor_types.
24113
24114 * w32term.c (x_specified_cursor_type): Remove prototype.
24115 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
24116 (x_display_and_set_cursor): Use get_window_cursor_type.
24117 Remove unused local variables cursor_off_state.
24118 Redraw cursor if hbar cursor width changes.
24119 Changed all occurrences of w32_highlight_frame to x_highlight_frame.
24120
24121 * w32term.h (enum text_cursor_kinds): Removed.
24122 (struct output_w32) <current_cursor, desired_cursor, cursor_width>
24123 <blink_off_cursor, blink_off_cursor_width>: Members removed.
24124 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
24125 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
24126 (struct w32_display_info) <x_highlight_frame>: Renamed member from
24127 w32_highlight_frame.
24128
24129 * xfns.c (Vblink_cursor_alist): Removed.
24130 (Qbar, Qhbar, Qbox, Qhollow): Removed.
24131 (syms_of_xfns): Don't intern, staticpro, or define them.
24132 (x_specified_cursor_type): Removed.
24133 (x_set_cursor_type): Use set_frame_cursor_types.
24134
24135 * xterm.c (x_specified_cursor_type): Remove prototype.
24136 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
24137 (x_display_and_set_cursor): Use get_window_cursor_type.
24138 Remove unused local variables cursor_off_state.
24139 Redraw cursor if hbar cursor width changes.
24140
24141 * xterm.h (enum text_cursor_kinds): Removed.
24142 (struct output_x) <current_cursor, desired_cursor, cursor_width>
24143 <blink_off_cursor, blink_off_cursor_width>: Members removed.
24144 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
24145 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
24146 (x_specified_cursor_type): Remove prototype.
24147
24148 2002-08-28 Richard M. Stallman <rms@gnu.org>
24149
24150 * w32fns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
24151 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
24152 (Vblink_cursor_alist): New variable.
24153 (syms_of_w32fns): Initialize and defvar it.
24154 (x_specified_cursor_type): Recognize Qbox for filled box.
24155 Exceptions are hollow boxes.
24156 (Qbox, Qhollow): New variables.
24157 (syms_of_w32fns): Initialize and staticpro them.
24158
24159 * w32term.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
24160 New macros.
24161 (struct w32_output): New fields blink_off_cursor,
24162 blink_off_cursor_width.
24163 (FRAME_CURSOR_WIDTH): New macro.
24164
24165 * w32term.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
24166 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
24167
24168 * w32term.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
24169 for bar cursor.
24170
24171 * w32term.c (expose_overlaps): New function.
24172 (expose_window): Use it to fix the display of overlapping rows.
24173
24174 2002-08-28 Simon Josefsson <jas@extundo.com>
24175
24176 * xfns.c (Fx_open_connection): Improve help when X connection
24177 fails, xhost is insecure and xauth is better.
24178
24179 2002-08-28 Juanma Barranquero <lektu@terra.es>
24180
24181 * makefile.w32-in: Add missing dependencies on w32term.h and
24182 composite.h.
24183
24184 * emacs.c (USAGE1): Add missing newline.
24185
24186 2002-08-27 Andrew Choi <akochoi@shaw.ca>
24187
24188 * s/darwin.h [HAVE_LIBNCURSES]: Define HAVE_TERMINFO.
24189
24190 2002-08-27 Richard M. Stallman <rms@gnu.org>
24191
24192 * xfns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
24193 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
24194 (Vblink_cursor_alist): New variable.
24195 (syms_of_xfns): Initialize and defvar it.
24196 (x_specified_cursor_type): Recognize Qbox for filled box.
24197 Exceptions are hollow boxes.
24198 (Qbox, Qhollow): New variables.
24199 (syms_of_xfns): Initialize and staticpro them.
24200
24201 * xterm.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
24202 New macros.
24203 (struct x_output): New fields blink_off_cursor, blink_off_cursor_width.
24204
24205 * xterm.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
24206 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
24207
24208 * emacs.c (main): Handle --script.
24209 (USAGE1): Mention --script.
24210 (standard_args): Define sort order for --script.
24211
24212 2002-08-27 Gerd Moellmann <gerd.moellmann@t-online.de>
24213
24214 * xdisp.c (redisplay_updating_p): Variable removed.
24215 (inhibit_free_realized_faces, Qinhibit_free_realized_faces):
24216 New variables.
24217 (init_iterator): Don't free realized faces if
24218 inhibit_free_realized_faces is set.
24219 (redisplay_internal): Bind Qinhibit_free_realized_faces to nil.
24220 (syms_of_xdisp): DEFVAR_BOOL inhibit-free-realized-faces,
24221 initialize Qinhibit_free_realized_faces.
24222
24223 * dispextern.h (PRODUCE_GLYPHS): Set inhibit_free_realized_faces
24224 when iterator is adding glyphs to a glyph matrix.
24225
24226 2002-08-27 Kenichi Handa <handa@etl.go.jp>
24227
24228 * xdisp.c (get_next_display_element): In unibyte case, don't use
24229 octal form for such eight-bit characters that can be converted to
24230 multibyte char.
24231
24232 2002-08-26 Kim F. Storm <storm@cua.dk>
24233
24234 * frame.c (make_terminal_frame) [CANNOT_DUMP]: Initialize
24235 foreground and background colors. From Joe Buehler.
24236
24237 2002-08-26 Miles Bader <miles@gnu.org>
24238
24239 * bytecode.c (Fbyte_code): Fsub1 can GC, so protect it.
24240
24241 2002-08-25 Andrew Choi <akochoi@shaw.ca>
24242
24243 * emacs.c (main): Call init_mac_osx_environment if HAVE_CARBON is
24244 defined instead of MAC_OSX.
24245
24246 * s/darwin.h (select): Define select to sys_select only if
24247 HAVE_CARBON is defined.
24248 (HAVE_WORKING_VFORK): #undef it. Define vfork to fork.
24249 (DONT_REOPEN_PTY): #def it.
24250
24251 * macterm.c (XTread_socket): Remove code to call
24252 SendEventToEventTarget for keys with command modifiers when
24253 mac_command_key_is_meta is nil.
24254
24255 2002-08-24 Andreas Schwab <schwab@suse.de>
24256
24257 * eval.c (Fdefvar): Fix last change.
24258
24259 2002-08-23 Richard M. Stallman <rms@gnu.org>
24260
24261 * eval.c (Fdefvar, Fdefconst, Fdefvaralias):
24262 Record variables in load history as (defvar . VAR).
24263 (Fdefvar): Don't record in load history if no initial value.
24264 (Qdefvar): New variable.
24265 (syms_of_eval): Init and staticpro it.
24266
24267 * lread.c (syms_of_lread): Doc fix.
24268 (build_load_history): Use Fmember to see if a definition
24269 is already in the Vload_history element.
24270
24271 * process.c (Fstart_process): Remove /: from program name.
24272
24273 * emacs.c (decode_env_path): Don't add /: if file name handler
24274 has a `safe-magic' property.
24275
24276 * callproc.c (Fcall_process): Remove /: from program name.
24277
24278 2002-08-23 Stefan Monnier <monnier@cs.yale.edu>
24279
24280 * regex.c (PATFETCH): Remove the translating fetch.
24281 (PATFETCH_RAW): Rename to PATFETCH.
24282 (set_image_of_range): New fun.
24283 (SET_RANGE_TABLE_WORK_AREA): Use it.
24284 (regex_compile): Don't translate the pattern chars so eagerly.
24285 Only do it when inserting an `exactn' bytecode or when handling
24286 a char-range.
24287 (mutually_exclusive_p): Avoid empty statement.
24288
24289 2002-08-22 Kim F. Storm <storm@cua.dk>
24290
24291 * xdisp.c (redisplay_window): Do not `goto try_to_scroll' when we
24292 end up on a partially visible line; this reverts a specific part
24293 of the 2002-07-07 change by Richard M. Stallman to "fix" a nasty
24294 display error which has been reported several times now.
24295 However it introduces the problem that changes was supposed to fix.
24296 See my comments in the source if you want to debug this further.
24297
24298 2002-08-20 Kenichi Handa <handa@etl.go.jp>
24299
24300 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
24301
24302 2002-08-19 Eli Zaretskii <eliz@is.elta.co.il>
24303
24304 * msdos.c (croak): Add `void' to definition.
24305
24306 * sysdep.c (request_sigio, unrequest_sigio) [MSDOS]:
24307 Don't define them, they are defined in msdos.c.
24308
24309 * mem-limits.h [MSDOS]: Declare etext.
24310
24311 * fileio.c (Ffile_name_directory) [DOS_NT]: Don't declare `beg'
24312 `const' since CORRECT_DIR_SEPS modifies its target.
24313
24314 2002-08-19 Kim F. Storm <storm@cua.dk>
24315
24316 * keyboard.c (Fclear_this_command_keys): Add optional arg
24317 KEEP-RECORD to avoid clearing lossage when we just want to clear
24318 the current key sequence (kmacro needs this).
24319
24320 2002-08-19 Kenichi Handa <handa@localhost>
24321
24322 * composite.c (run_composition_function): Call FUNC if it is fboundp.
24323
24324 * composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
24325 cons, return Qnil.
24326
24327 2002-08-17 Richard M. Stallman <rms@gnu.org>
24328
24329 * s/sol2-5.h (BROKEN_SIGIO): Add #undef.
24330
24331 * sysdep.c [!VMS]: Include sys/files.h.
24332
24333 * editfns.c (save_restriction_restore): Defend from unchained marker.
24334
24335 * buffer.c (overlays_at): Handle extending vec uniformly.
24336 (overlays_in): Handle extending vec from length 0 as in overlays_at.
24337
24338 2002-08-15 Andrew Choi <akochoi@shaw.ca>
24339
24340 * mac.c (init_mac_osx_environment): New function.
24341
24342 * emacs.c (main) [MAC_OSX]: Call init_mac_osx_environment.
24343
24344 2002-08-14 Kim F. Storm <storm@cua.dk>
24345
24346 * macros.c (Fstart_kbd_macro): Added NO-EXEC argument to inhibit
24347 executing macro before appending to it (when used from Lisp).
24348 (Fexecute_kbd_macro): Added LOOPFUNC argument to supply function
24349 which is called prior to each iteration of macro (for kmacro.el).
24350 (Fend_kbd_macro, Fcall_last_kbd_macro): Likewise.
24351
24352 * lisp.h (Fexecute_kbd_macro): Update prototype.
24353
24354 * keyboard.c (Fcommand_execute): Update call to Fexecute_kbd_macro.
24355
24356 2002-08-14 Kenichi Handa <handa@etl.go.jp>
24357
24358 * xselect.c (QUTF8_STRING): New variable.
24359 (symbol_to_x_atom): Pay attention to QUTF8_STRING.
24360 (x_atom_to_symbol): Likewise.
24361 (x_get_local_selection): New argument local_request. If it is
24362 nonzero, call handler_fn with the second arg nil.
24363 (x_handle_selection_request): Call x_get_local_selection with
24364 local_request 0.
24365 (lisp_data_to_selection_data): Don't encode the string here.
24366 (Fx_get_selection_internal): Call x_get_local_selection with
24367 local_request 1.
24368 (syms_of_xselect): Intern and staticpro QUTF8_STRING.
24369
24370 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
24371
24372 * xterm.h (struct x_display_info): New member Xatom_UTF8_STRING.
24373
24374 2002-08-13 Richard M. Stallman <rms@gnu.org>
24375
24376 * minibuf.c (Fminibufferp): New function.
24377 (syms_of_minibuf): Defsubr it.
24378 (Fminibuffer_prompt_end): Handle non-minibuffers specially.
24379
24380 2002-08-13 Gerd Moellmann <gerd.moellmann@t-online.de>
24381
24382 * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
24383
24384 2002-08-12 Richard M. Stallman <rms@gnu.org>
24385
24386 * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
24387 [!VMS] (WCOREDUMP, WEXITSTATUS, WIFEXITED, WIFSTOPPED, WIFSIGNALED)
24388 (WSTOPSIG, WTERMSIG): Define each one independently if not defined
24389 already.
24390
24391 * buffer.c (syms_of_buffer) <fill-column>: Doc fix.
24392
24393 2002-08-11 Andrew Choi <akochoi@shaw.ca>
24394
24395 * macterm.c (XTmouse_position): Check wp with is_emacs_window.
24396 (Vmac_pass_command_to_system): New variable.
24397 (Vmac_pass_control_to_system): New variable.
24398 (do_mouse_moved): Check wp with is_emacs_window.
24399 (XTread_socket): Check window_ptr with is_emacs_window.
24400 Call FrontNonFloatingWindow instead of FrontWindow. Send keydown
24401 events back to Mac Toolbox for processing, depending on values of
24402 Vmac_pass_command_to_system and Vmac_pass_control_to_system.
24403 (syms_of_macterm): DEFVAR_LISP Vmac_pass_command_to_system and
24404 Vmac_pass_control_to_system.
24405
24406 2002-08-10 Kenichi Handa <handa@etl.go.jp>
24407
24408 * coding.c (unencodable_char_position): New function.
24409 (Funencodable_char_position): New function.
24410 (syms_of_coding): Defsubr Funencodable_char_position.
24411
24412 2002-08-10 Andrew Choi <akochoi@shaw.ca>
24413
24414 * mac.c (sys_select) [MAC_OSX]: New function.
24415
24416 * macterm.c (MakeMeTheFrontProcess): New function.
24417 (mac_initialize): Call MakeMeTheFrontProcess.
24418
24419 * s/darwin.h: Define select to sys_select.
24420
24421 2002-08-09 Richard M. Stallman <rms@gnu.org>
24422
24423 * keyboard.c (make_lispy_event): Test WINDOWSNT, not WINDOWS_NT.
24424
24425 2002-08-09 Gerd Moellmann <gerd.moellmann@t-online.de>
24426
24427 * xdisp.c (forward_to_next_line_start): Return 0 when reaching the
24428 end of the buffer.
24429
24430 2002-08-08 Ken Raeburn <raeburn@gnu.org>
24431
24432 * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
24433
24434 * puresize.h (BASE_PURESIZE): Increase to 910000.
24435
24436 2002-08-08 Kenichi Handa <handa@etl.go.jp>
24437
24438 * coding.c (Ffind_operation_coding_system): For write-region, if
24439 VISIT is a filename, make it the target.
24440
24441 2002-08-07 Richard M. Stallman <rms@gnu.org>
24442
24443 * alloc.c (mark_object): Detect long lists for debugging.
24444 (mark_object_loop_halt): New variable.
24445
24446 * s/hpux10.h (C_SWITCH_SYSTEM): #undef it.
24447
24448 * data.c (Fmake_variable_frame_local): Doc fix.
24449
24450 2002-08-01 David Ponce <david@dponce.com>
24451
24452 * w32menu.c (local_heap, local_alloc, local_free): New macros.
24453 (malloc_widget_value, free_widget_value)
24454 (w32_free_submenu_strings): Use them.
24455
24456 (push_submenu_start, push_submenu_end, push_left_right_boundary)
24457 (push_menu_pane, push_menu_item, single_keymap_panes)
24458 (single_menu_item, Fx_popup_menu, menubar_selection_callback)
24459 (single_submenu, set_frame_menubar)
24460 (w32_menu_show, w32_dialog_show): Use AREF, ASET, ASIZE.
24461
24462 (Fx_popup_menu): Don't show pop up menu until preceding one is
24463 actually cleaned up. Moved UNGCPRO outside #ifdef HAVE_MENUS block.
24464
24465 * w32menu.c: Changes adapted from xmenu.c
24466 (set_frame_menubar): First parse all submenus,
24467 then make widget_value trees from them.
24468 Don't allocate any widget_value objects
24469 until we are done with the parsing.
24470 (parse_single_submenu): New function.
24471 (digest_single_submenu): New function.
24472 (single_submenu): Function deleted, replaced by those two.
24473
24474 2002-08-04 Andrew Choi <akochoi@shaw.ca>
24475
24476 * macterm.c (XTread_socket): Check that FrontNonFloatingWindow
24477 returns a valid window pointer before proceeding for keyDown and
24478 autoKey events.
24479
24480 2002-08-03 Andrew Choi <akochoi@shaw.ca>
24481
24482 * macterm.c (USE_CARBON_EVENTS): New macro.
24483 (macCtrlKey, macShiftKey, macMetaKey, macAltKey): New macros.
24484 (x_iconify_frame): Call CollapseWindow.
24485 (Vmac_reverse_ctrl_meta): New variable.
24486 (Vmac_wheel_button_is_mouse_2): New variable.
24487 (init_mac_drag_n_drop): New function.
24488 (mac_do_receive_drag): New function.
24489 (mac_handle_service_event): New function.
24490 (init_service_handler): New function.
24491 (mac_to_emacs_modifiers): New function.
24492 (mac_event_to_emacs_modifiers): New function.
24493 (mac_get_mouse_btn): New function.
24494 (mac_convert_event_ref): New function.
24495 (XTread_socket) [USE_CARBON_EVENTS]: Call ReceiveNextEvent,
24496 SendEventToEventTarget, mac_event_to_emacs_modifiers, and
24497 mac_get_mouse_btn.
24498 (mac_initialize): Call init_mac_drag_n_drop and init_service_handler.
24499
24500 * keyboard.c: Define Qmouse_wheel, mouse_wheel_syms, and
24501 lispy_mouse_wheel_names for MAC_OSX as well as for WINDOWS_NT.
24502 (kbd_buffer_get_event): Set used_mouse_menu for MENU_BAR_EVENT and
24503 TOOL_BAR_EVENT for MAC_OS as well.
24504 (make_lispy_event): Handle MOUSE_WHEEL_EVENT for MAC_OSX as well
24505 as for WINDOWS_NT.
24506 (syms_of_keyboard): Initialize Qmouse_wheel for MAC_OSX.
24507
24508 * termhooks.h (event_kind): Define MOUSE_WHEEL_EVENT also for MAC_OSX.
24509
24510 2002-08-03 Gerd Moellmann <gerd.moellmann@t-online.de>
24511
24512 * xdisp.c (forward_to_next_line_start): Fix a condition that
24513 lead to a newline being skipped.
24514
24515 2002-08-02 Andrew Choi <akochoi@shaw.ca>
24516
24517 * mac.c (syms_of_mac): Defsubr Sx_selection_exists_p.
24518
24519 2002-08-01 Richard M. Stallman <rms@gnu.org>
24520
24521 * Makefile.in (SOME_MACHINE_OBJECTS): Add fontset.o.
24522
24523 2002-07-31 Andrew Choi <akochoi@shaw.ca>
24524
24525 * macfns.c: #undef init_process before #define-ing it.
24526
24527 * s/darwin.h: Define MAC_OS, SYMS_SYSTEM, and OTHER_FILES only if
24528 HAVE_CARBON is defined.
24529
24530 2002-07-31 Richard M. Stallman <rms@gnu.org>
24531
24532 * xmenu.c (set_frame_menubar): First parse all submenus,
24533 then make widget_value trees from them.
24534 Don't allocate any widget_value objects
24535 until we are done with the parsing.
24536 (parse_single_submenu): New function.
24537 (digest_single_submenu): New function.
24538 (single_submenu): Function deleted, replaced by those two.
24539
24540 2002-07-30 Juanma Barranquero <lektu@terra.es>
24541
24542 * w32proc.c (syms_of_ntproc): Fix docstring of
24543 `w32-get-true-file-attributes'.
24544
24545 2002-07-28 Richard M. Stallman <rms@gnu.org>
24546
24547 * s/hpux8.h (HPUX8): Define this before including hpux.h.
24548 (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide.
24549
24550 * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8.
24551
24552 * keyboard.c (make_lispy_event):
24553 Use #ifdef to test USE_TOOLKIT_SCROLL_BARS.
24554 Explicitly clear up_modifier in event->modifiers.
24555
24556 2002-07-27 Richard M. Stallman <rms@gnu.org>
24557
24558 * xterm.h (FRAME_CURSOR_WIDTH): New macro.
24559
24560 * xterm.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
24561 for bar cursor.
24562
24563 2002-07-26 Kenichi Handa <handa@etl.go.jp>
24564
24565 * coding.c (detect_coding_iso2022): While checking a byte sequence
24566 for CODING_CATEGORY_MASK_ISO_8_2, if we read one extra byte, check
24567 it in the normal loop.
24568
24569 2002-07-24 Gerd Moellmann <gerd.moellmann@t-online.de>
24570
24571 * xterm.c (expose_overlaps): New function.
24572 (expose_window): Use it to fix the display of overlapping rows.
24573
24574 * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
24575
24576 2002-07-23 Ken Raeburn <raeburn@gnu.org>
24577
24578 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
24579 since it only depends on XUINT.
24580
24581 * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
24582 EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
24583 PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
24584 Macros deleted.
24585
24586 * mem-limits.h (start_of_data): If DATA_START is defined, prefer
24587 its value over other approaches.
24588 * sysdep.c (start_of_data): Don't define the function if a macro
24589 form has been defined.
24590
24591 2002-07-23 Gerd Moellmann <gerd.moellmann@t-online.de>
24592
24593 * xdisp.c (redisplay_updating_p): New variable.
24594 (init_iterator): Don't free realized faces when
24595 redisplay_updating_p is set.
24596 (redisplay_internal): Set redisplay_updating_p while updating
24597 the display.
24598
24599 2002-07-23 Richard M. Stallman <rms@gnu.org>
24600
24601 * editfns.c (Fmessage): Treat "" like nil.
24602
24603 2002-07-23 Kenichi Handa <handa@etl.go.jp>
24604
24605 * xdisp.c (face_before_or_after_it_pos):
24606 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
24607
24608 2002-07-22 Juanma Barranquero <lektu@terra.es>
24609
24610 * callproc.c (init_callproc) [DOS_NT]:
24611 Initialize Vshared_game_score_directory to nil.
24612 (syms_of_callproc) [DOS_NT]: Likewise.
24613
24614 2002-07-22 Gerd Moellmann <gerd.moellmann@t-online.de>
24615
24616 * xdisp.c (display_line): Replace an abort with xassert.
24617
24618 2002-07-21 Richard M. Stallman <rms@gnu.org>
24619
24620 * xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
24621 and END_UNCHANGED when setting buffer_unchanged_p.
24622 Use current_matrix_up_to_date_p to decide whether to use
24623 try_cursor_movement.
24624
24625 * config.in (HAVE_SHARED_GAME_DIR): Undef deleted.
24626
24627 * epaths.in (PATH_GAME): New macro, edited by ../Makefile.in.
24628
24629 * callproc.c (init_callproc): Set up Vshared_game_score_directory.
24630 Set to nil if dir does not exist.
24631 (syms_of_callproc): Init unconditionally and simply.
24632
24633 * buffer.c (Fbuffer_list): Doc fix.
24634
24635 2002-07-21 Ken Raeburn <raeburn@gnu.org>
24636
24637 * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
24638
24639 * buffer.c (mmap_realloc): When shrinking, make sure number of
24640 pages to unmap is rounded towards zero.
24641
24642 * m/mips-siemens.h (XSETUINT, XSETPNTR): Unused macros deleted.
24643 (XSETINT): Deleted.
24644
24645 * m/att3b.h (XINT): Don't define.
24646 (VALBITS, VALMASK, XTYPE): Deleted.
24647 (DATA_SEG_BITS): Define.
24648 * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET,
24649 ARRAY_MARK_FLAG): Deleted.
24650 (DATA_SEG_BITS): Define.
24651 * m/pfa50.h (VALBITS, VALMASK, XTYPE): Deleted.
24652 (DATA_SEG_BITS): Define.
24653
24654 2002-07-20 Richard M. Stallman <rms@gnu.org>
24655
24656 * print.c (print_error_message): New args CONTEXT and CALLER.
24657 Calls changed.
24658
24659 * lisp.h (print_error_message): Declare new args.
24660
24661 * keyboard.c (cmd_error_internal): Pass Vsignaling_function
24662 and CONTEXT to print_error_message, don't print them here.
24663 For a Quit, don't use Vsignaling_function.
24664 Call message_log_maybe_newline.
24665
24666 * Makefile.in (xsmfns.o): Don't depend on lisp.h.
24667
24668 2002-07-20 Kim F. Storm <storm@cua.dk>
24669
24670 * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p.
24671
24672 2002-07-19 Ken Raeburn <raeburn@gnu.org>
24673
24674 * bytecode.c (struct byte_stack): Pointers into byte string now
24675 point to const.
24676 * callproc.c (Fcall_process): Make NEW_ARGV array hold pointer to
24677 const.
24678 * charset.h (BCOPY_SHORT): Source pointer now points to const.
24679 * coding.c (encode_eol, detect_coding, detect_eol):
24680 (decode_coding, encode_coding, detect_coding_system):
24681 Source strings now treated as const.
24682 (decode_coding_string, encode_coding_string): Use STRING_COPYIN to
24683 modify Lisp string contents.
24684 * coding.h (decode_coding, encode_coding, detect_coding,
24685 detect_eol): Declarations updated.
24686 * composite.c (compose_chars_in_text): Treat Lisp string contents
24687 as const.
24688 * dispnew.c (safe_bcopy): Source pointer now points to const.
24689 * lisp.h (STRING_COPYIN): New macro.
24690 (detect_coding_system, safe_bcopy, temp_output_buffer_setup):
24691 (internal_with_output_to_temp_buffer): Declarations updated.
24692 * print.c (temp_output_buffer_setup):
24693 (internal_with_output_to_temp_buffer): Buffer name argument is now
24694 pointer to const.
24695 * sound.c (struct sound_device): Function pointer field "write"
24696 buffer argument now points to const.
24697 (vox_write): Buffer argument points to const.
24698 * syntax.c (Fstring_to_syntax, skip_chars): Treat Lisp string
24699 contents as const.
24700 * sysdep.c (emacs_write): Buffer pointer now const.
24701 * term.c (encode_terminal_code): Buffer pointer now const.
24702 * xfaces.c (may_use_scalable_font_p): Argument now points to const.
24703 (x_face_list_fonts, x_update_menu_appearance):
24704 (hash_string_case_insensitive): Treat Lisp string contents as const.
24705
24706 2002-07-19 Juanma Barranquero <lektu@terra.es>
24707
24708 * xdisp.c (syms_of_xdisp): Remove redundant deprecation info.
24709
24710 * fileio.c (syms_of_fileio): Likewise.
24711 (Ffile_name_as_directory): Fix argument name in docstring.
24712 (file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
24713
24714 2002-07-18 Richard M. Stallman <rms@gnu.org>
24715
24716 * data.c (Fdefalias): Doc fix.
24717
24718 2002-07-17 Dave Love <fx@gnu.org>
24719
24720 * intervals.h (text_property_stickiness): Use P_.
24721
24722 * ccl.c: Remove `emacs' conditionals.
24723 (ccl_backtrace_table): Fix size spec.
24724 (ccl_driver): Fix type errors.
24725
24726 2002-07-16 Ken Raeburn <raeburn@gnu.org>
24727
24728 * alloc.c (xstrdup, make_string, make_unibyte_string)
24729 (make_multibyte_string, build_string): String pointer args now
24730 point to const.
24731 * charset.c (find_charset_in_text, c_string_width):
24732 (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
24733 * fileio.c (report_file_error):
24734 * insdel.c (copy_text, count_size_as_multibyte, insert_1):
24735 (count_combining_before, count_combining_after, insert_1_both):
24736 (insert, insert_and_inherit, insert_string):
24737 (insert_before_markers, insert_before_markers_and_inherit):
24738 * lread.c (intern, oblookup, hash_string):
24739 * minibuf.c (temp_echo_area_glyphs):
24740 * search.c (fast_c_string_match_ignore_case):
24741 * sysdep.c (emacs_open, set_file_times):
24742 * xfaces.c (xstricmp):
24743 * xdisp.c (store_frame_title, string_char_and_length):
24744 (message_dolog, message2, message2_nolog, set_message): Likewise.
24745 (set_message_1): Cast message string argument to const pointer.
24746 * editfns.c (general_insert_function): Insertion function now
24747 takes pointer to const for input data.
24748 * charset.h (find_charset_in_text, c_string_width):
24749 (parse_str_as_multibyte): Declarations updated.
24750 * dispextern.h (xstricmp): Declaration updated.
24751 * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text):
24752 (count_size_as_multibyte, count_combining_before):
24753 (count_combining_after, insert_1, insert_1_both, message_dolog):
24754 (insert, insert_and_inherit, insert_before_markers)
24755 (insert_before_markers_and_inherit, set_message, message2):
24756 (message2_dolog, build_string, make_string, make_unibyte_string):
24757 (make_multibyte_string, intern, oblookup, report_file_error):
24758 (fast_c_string_match_ignore_case, temp_echo_area_glyphs):
24759 (emacs_open, xstrdup): Declarations updated.
24760 * systime.h (set_file_times): Declaration updated.
24761
24762 * charset.c (find_charset_in_text, lisp_string_width): Use const
24763 for pointer to lisp string data.
24764 * charset.h (FETCH_STRING_CHAR_ADVANCE):
24765 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK):
24766 * coding.c (Ffind_coding_systems_region_interval):
24767 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory):
24768 (Fmake_directory_internal, Fdelete_directory):
24769 (Ffile_name_absolute_p, Fwrite_region, double_dollars):
24770 * fontset.c (font_family_registry, fs_query_fontset):
24771 (list_fontsets):
24772 * frame.c (Fframe_parameter):
24773 * keyboard.c (cmd_error_internal):
24774 * keymap.c (Fdescribe_buffer_bindings):
24775 * lread.c (complete_filename_p, openp):
24776 * minibuf.c (Fminibuffer_complete_word):
24777 * xdisp.c (string_pos_nchars_ahead, init_from_display_pos):
24778 (face_before_or_after_it_pos, next_element_from_string):
24779 (get_overlay_arrow_glyph_row, display_mode_element):
24780 (decode_mode_spec_coding):
24781 * xterm.c (same_x_server): Likewise.
24782
24783 * buffer.c (reset_buffer_local_variables): Delete "#if 0"
24784 settings of non-existent fields.
24785
24786 * editfns.c (Fstring_to_char): Don't use XSTRING/XSETSTRING to
24787 copy a lisp value.
24788
24789 * lread.c (Fintern_soft): Use string macros instead of
24790 Lisp_String fields.
24791 * keyboard.c (echo_char, parse_modifiers_uncached):
24792 (parse_solitary_modifier, Fexecute_extended_command): Likewise.
24793 * textprop.c (validate_interval_range, interval_of): Likewise.
24794
24795 * fontset.c (Fset_fontset_font): Use SDATA instead of XSTRING()->data.
24796
24797 * charset.h (FETCH_STRING_CHAR_ADVANCE)
24798 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SBYTES instead of
24799 XSTRING()->size_byte.
24800
24801 * lisp.h (SDATA, SREF): Produce rvalue.
24802 (SSET): New macro.
24803 * alloc.c (make_event_array): Use SSET for storing into a string.
24804 * buffer.c (Fother_buffer): Use SREF when retrieving a byte from
24805 a string.
24806 * casefiddle.c (casify_object): Use SSET.
24807 * charset.h (FETCH_STRING_CHAR_ADVANCE)
24808 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA when getting
24809 address of string contents.
24810 * data.c (Faref): Use SDATA.
24811 (Faset): Use SDATA, SSET.
24812 * dired.c (directory_files_internal): Use SSET.
24813 * fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
24814 (Fread_file_name): Use SREF, SSET.
24815 * fns.c (concat): Use SSET.
24816 (concat, Fdelete): Use SDATA.
24817 * insdel.c (insert_from_string_1): Use SDATA.
24818 * keyboard.c (Fevent_convert_list): Use SREF.
24819 * lread.c (Fload): Use SDATA, SSET.
24820 * macfns.c (validate_x_resource_name): Use SSET.
24821 * process.c (status_message): Use SSET.
24822 * search.c (wordify): Use SDATA.
24823 (Freplace_match): Use SREF.
24824 * w32fns.c (validate_x_resource_name): Use SSET.
24825 * xfns.c (validate_x_resource_name): Use SSET.
24826 * xterm.c (x_catch_errors, x_clear_errors): Use SSET.
24827
24828 2002-07-16 Richard M. Stallman <rms@gnu.org>
24829
24830 * s/hpux11.h (USG_SUBTTY_WORKS): Defined.
24831
24832 * xdisp.c (reconsider_clip_changes):
24833 Don't test prevent_redisplay_optimizations_p.
24834 (redisplay_internal): Test prevent_redisplay_optimizations_p
24835 along with clip_changed in some cases.
24836 (try_window_id): Likewise.
24837 (redisplay_window): New local var buffer_unchanged_p.
24838
24839 * keyboard.c (cmd_error) [HAVE_X_WINDOWS]: Maybe call cancel_houglass.
24840
24841 * process.c (create_process): Test USG_SUBTTY_WORKS.
24842 (process_send_signal): Clean up handling of GID.
24843 Detect errors in ioctls meant to set GID.
24844
24845 * window.c (temp_output_buffer_show):
24846 Don't set prevent_redisplay_optimizations_p.
24847
24848 2002-07-15 Juanma Barranquero <lektu@terra.es>
24849
24850 * eval.c (Fdefvaralias): Add docstring argument.
24851
24852 2002-07-15 Ken Raeburn <raeburn@gnu.org>
24853
24854 * lisp.h (STRING_INTERVALS): Produce rvalue.
24855 (STRING_SET_INTERVALS): New macro.
24856 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.
24857 * fns.c (Fstring_as_multibyte): Likewise.
24858 * intervals.c (balance_possible_root_interval, delete_interval)
24859 (create_root_interval, copy_intervals_to_string): Likewise.
24860 * textprop.c (set_text_properties): Likewise. Use NULL_INTERVAL
24861 instead of 0.
24862
24863 2002-07-14 Ken Raeburn <raeburn@gnu.org>
24864
24865 * lisp.h (STRING_SET_CHARS): New macro.
24866 (SCHARS, SBYTES): Produce rvalues.
24867 * dired.c (directory_files_internal): Use STRING_SET_CHARS.
24868 * fns.c (concat): Likewise.
24869 * lread.c (read_vector): Likewise.
24870
24871 * lisp.h (SMBP): Delete. All uses changed to STRING_MULTIBYTE.
24872 (STRING_SET_UNIBYTE): New macro.
24873 (SET_STRING_BYTES): Delete. Callers (all of which supplied a
24874 length of -1) changed to use STRING_SET_UNIBYTE.
24875 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
24876 casefiddle.c, category.c, ccl.c, charset.c, charset.h, coding.c,
24877 composite.c, data.c, dired.c, dispnew.c, disptab.h, doc.c,
24878 dosfns.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fn.c,
24879 fontset.c, frame.c, indent.c, insdel.c, intervals.c, keyboard.c,
24880 keymap.c, lread.c, mac.c, macfns.c, macmenu.c, macterm.c,
24881 minibuf.c, msdos.c, print.c, process.c, search.c, sound.c,
24882 sunfns.c, syntax.c, syntax.h, sysdep.c, textprop.c, undo.c,
24883 w16select.c, w32.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
24884 w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c,
24885 xselect.c, xsmfns.c, xterm.c: Most uses of XSTRING combined with
24886 STRING_BYTES or indirection changed to SCHARS, SBYTES,
24887 STRING_INTERVALS, SREF, SDATA; explicit size_byte references left
24888 unchanged for now.
24889
24890 2002-07-13 Kim F. Storm <storm@cua.dk>
24891
24892 * keyboard.c (command_loop_1): Invert check on Vmemory_full.
24893
24894 2002-07-12 Richard M. Stallman <rms@gnu.org>
24895
24896 * fileio.c (Fwrite_region): Doc fix.
24897
24898 * print.c (print_error_message): Don't handle Vsignaling_function here.
24899
24900 * keyboard.c (cmd_error_internal): Handle Vsignaling_function here.
24901 (command_loop_1): Avoid certain actions after memory-full error.
24902
24903 * eval.c (Fsignal): Don't call cancel_hourglass.
24904 For a memory-full error, don't call Vsignal_hook_function
24905 and don't set Vsignaling_function.
24906
24907 * process.c (process_send_signal): Add abort call.
24908
24909 2002-07-11 Markus Rost <rost@math.ohio-state.edu>
24910
24911 * keymap.c (Fkey_binding): Fix typo.
24912
24913 2002-07-11 Richard M. Stallman <rms@gnu.org>
24914
24915 * alloc.c (Vmemory_full): New variable.
24916 (Vmemory_signal_data): Rename from memory_signal_data.
24917 Uses changed.
24918 (syms_of_alloc): Defvar them.
24919 (memory_full, buffer_memory_full): Set Vmemory_full.
24920
24921 * lisp.h (Vmemory_full): Add declaration.
24922 (current_column, indented_beyond_p): Change declaration.
24923
24924 * indent.c (last_known_column): Declare as double, not float.
24925 (current_column, current_column_1, string_display_width)
24926 (position_indentation): Return `double'.
24927 (indented_beyond_p): Arg `column' is `double'. Callers changed.
24928
24929 * xdisp.c (message_dolog): Do nothing if Vmemory_full is non-nil.
24930 (back_to_previous_visible_line_start)
24931 (reseat_at_next_visible_line_start, next_element_from_buffer):
24932 Use `double', not `float', when calling indented_beyond_p.
24933
24934 * s/hpux11.h (BROKEN_SA_RESTART): Define.
24935
24936 * sysdep.c (sys_signal): Test BROKEN_SA_RESTART.
24937
24938 2002-07-11 Juanma Barranquero <lektu@terra.es>
24939
24940 * alloc.c, buffer.c, bytecode.c, callint.c, callproc.c, coding.c,
24941 * composite.c, dired.c, dispnew.c, editfns.c, emacs.c, eval.c,
24942 * fileio.c, fns.c, insdel.c, keyboard.c, keymap.c, lread.c, macfns.c,
24943 * macmenu.c, macros.c, minibuf.c, print.c, process.c, sound.c,
24944 * textprop.c, w32fns.c, w32menu.c, window.c, xfaces.c, xfns.c,
24945 * xmenu.c, xselect.c, xterm.c: Use SPECPDL_INDEX wherever makes sense.
24946
24947 2002-07-10 Juanma Barranquero <lektu@terra.es>
24948
24949 * lisp.h (SPECPDL_INDEX): Rename from BINDING_STACK_SIZE.
24950 All callers changed.
24951
24952 2002-07-09 Stefan Monnier <monnier@cs.yale.edu>
24953
24954 * data.c (Fdefalias): Add an optional `docstring' argument.
24955 (set_internal, Fsetq_default): Use XCAR/XCDR.
24956
24957 * composite.c (HASH_VALUE, HASH_KEY):
24958 * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
24959
24960 2002-07-09 Kenichi Handa <handa@etl.go.jp>
24961
24962 * callproc.c (Fcall_process): Fix previous change.
24963
24964 2002-07-07 Stefan Monnier <monnier@cs.yale.edu>
24965
24966 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
24967 Add support for hash-tables.
24968 (Ftry_completion): Return t even if the string appears multiple times.
24969
24970 * fns.c (Fnconc): Use XCDR.
24971 (Fprovide): Use CONSP and XCDR.
24972 (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
24973 (HASH_TABLE_SIZE): Delete: moved to lisp.h.
24974 (Fmake_hash_table): Accept `:size nil'.
24975 (Fmakehash): Delete: moved to subr.el.
24976 (syms_of_fns): Don't defsubr makehash.
24977
24978 * lisp.h (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
24979 (HASH_TABLE_SIZE): Move from fns.c.
24980
24981 2002-07-07 Richard M. Stallman <rms@gnu.org>
24982
24983 * xdisp.c (make_cursor_line_fully_visible): Don't try short scrolls.
24984 Instead just return 0 when there is something to be done.
24985 (try_scrolling): If make_cursor_line_fully_visible returns 0,
24986 retry scrolling as if cursor were off the bottom.
24987 (try_cursor_movement): If make_cursor_line_fully_visible returns 0,
24988 return CURSOR_MOVEMENT_MUST_SCROLL.
24989 (redisplay_window): If make_cursor_line_fully_visible returns 0,
24990 go to try_to_scroll.
24991
24992 * buffer.c (Fbuffer_local_value): Store current value into its binding
24993 so we get the up-to-date value for the binding that is loaded.
24994
24995 * eval.c (Fdefmacro): Doc fix.
24996
24997 2002-07-05 Dave Love <fx@gnu.org>
24998
24999 * keyboard.c (read_key_sequence): Set initial_idleness_start_time
25000 correctly.
25001
25002 * ccl.c (Vtranslation_hash_table_vector, GET_HASH_TABLE)
25003 (HASH_VALUE, CCL_LookupIntConstTbl, CCL_LookupCharConstTbl): New.
25004 (ccl_driver): Add cases for CCL_LookupIntConstTbl,
25005 CCL_LookupCharConstTbl.
25006 (syms_of_ccl): Defvar translation-hash-table-vector.
25007
25008 2002-07-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25009
25010 * xdisp.c: Remove unused variable `face'.
25011
25012 2002-07-04 Juanma Barranquero <lektu@terra.es>
25013
25014 * keyboard.c (post_command_idle_hook): Remove redundant (and inexact)
25015 obsolescence information.
25016
25017 2002-07-03 Andrew Choi <akochoi@shaw.ca>
25018
25019 * macterm.c (x_list_fonts): Fix comment. Cache fonts matching
25020 pattern. Search cache first.
25021 (init_font_name_table): Also add entry for jisx0201.1976-0 coding
25022 for Japanese font.
25023 (XLoadQueryFont): Use it.
25024
25025 2002-07-02 Richard M. Stallman <rms@gnu.org>
25026
25027 * keymap.c (Fdefine_key): Doc fix.
25028
25029 * xterm.c (x_term_init): Turn off polling around XtOpenDisplay.
25030
25031 2002-07-02 Juanma Barranquero <lektu@terra.es>
25032
25033 * keymap.c (syms_of_keymap): Fix typo.
25034
25035 2002-07-01 Andrew Choi <akochoi@shaw.ca>
25036
25037 * s/darwin.h: Define POSIX_SIGNALS.
25038
25039 * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef
25040 and FSRefMakePath to convert FSSpec returned with Apple Event to
25041 Posix pathname.
25042 (mac_initialize) [TARGET_API_MAC_CARBON]:
25043 Call init_required_apple_events and disable the `Quit' menu item
25044 provided automatically by the Carbon Toolbox.
25045
25046 2002-07-01 Dave Love <fx@gnu.org>
25047
25048 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
25049 for K&R.
25050
25051 * xterm.c: Fix prototype for K&R.
25052
25053 * term.c (costs_set): Declare static, non-initialized for pcc.
25054
25055 2002-07-01 Richard M. Stallman <rms@gnu.org>
25056
25057 * keyboard.c (timer_last_idleness_start_time): New variable.
25058 (timer_start_idle): Set that.
25059 (read_key_sequence): Use that to reset timer_idleness_start_time
25060 to previous value.
25061
25062 * window.c (Frecenter): With arg, set optional_new_start.
25063
25064 * xdisp.c (redisplay_internal): Make optional_new_start really work.
25065
25066 * minibuf.c (Fminibuffer_complete_and_exit): Move to end of
25067 buffer for completion.
25068
25069 2002-06-29 Ken Raeburn <raeburn@gnu.org>
25070
25071 * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
25072
25073 2002-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
25074
25075 * keyboard.c (readable_filtered_events): New function that filters
25076 FOCUS_IN_EVENT depending on parameter.
25077 (readable_events): Calls readable_filtered_events, not filtering
25078 FOCUS_IN_EVENT.
25079 (get_filtered_input_pending): New function, filtering parameter passed
25080 to readable_filtered_events.
25081 (get_input_pending): Calls get_filtered_input_pending, not filtering
25082 FOCUS_IN_EVENT.
25083 (Finput_pending_p): Calls get_filtered_input_pending, DO filter
25084 FOCUS_IN_EVENT.
25085
25086 * xterm.h (struct x_output): Add focus_state.
25087
25088 * xterm.c (x_focus_changed): New function.
25089 (x_detect_focus_change): New function.
25090 (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
25091 EnterNotify and LeaveNotify to track X focus changes.
25092
25093 2002-06-28 Andreas Schwab <schwab@suse.de>
25094
25095 * lisp.h: Remove duplicate declaration of code_convert_string_norecord.
25096
25097 2002-06-27 Kim F. Storm <storm@cua.dk>
25098
25099 * xdisp.c (mode_line_string_list, mode_line_string_face)
25100 (mode_line_string_face_prop): New variables.
25101 (store_mode_line_string): New function.
25102 (display_mode_element): Use store_mode_line_string to
25103 add mode-line string elements to mode_line_string_list
25104 when mode_line_string_list is non-nil.
25105 (Fformat_mode_line): Now returns propertized string by
25106 default. New arg NO-PROPS to ignore properties.
25107 (decode_mode_spec): Only add two dashes for %- in propertized
25108 mode-line string.
25109 (syms_of_xdisp): Init and staticpro mode_line_string_list.
25110
25111 2002-06-27 Stefan Monnier <monnier@cs.yale.edu>
25112
25113 * minibuf.c (minibuffer_completion_contents): Add return type.
25114
25115 2002-06-27 Juanma Barranquero <lektu@terra.es>
25116
25117 * charset.c (Fchar_bytes): Remove obsolescence info from docstring.
25118
25119 2002-06-26 Juanma Barranquero <lektu@terra.es>
25120
25121 * fileio.c (read_file_name_cleanup): Add missing return.
25122
25123 2002-06-26 Richard M. Stallman <rms@gnu.org>
25124
25125 * window.c (Frecenter): Don't set force_start flag.
25126
25127 * minibuf.c (do_completion, Fminibuffer_complete_word)
25128 (Fminibuffer_completion_help): Complete just the text before point.
25129 (minibuffer_completion_contents): New function.
25130
25131 * buffer.c (Fbury_buffer): Use frames_discard_buffer.
25132
25133 * frame.c (frames_bury_buffer): Function deleted.
25134
25135 2002-06-25 Miles Bader <miles@gnu.org>
25136
25137 * callint.c (Fcall_interactively): When checking to see if doprnt hit
25138 the end of callint_message, allow for a terminating '\0'.
25139
25140 2002-06-24 Juanma Barranquero <lektu@terra.es>
25141
25142 * w32select.c: Include composite.h.
25143
25144 * w16select.c: Likewise.
25145
25146 2002-06-24 Kenichi Handa <handa@etl.go.jp>
25147
25148 * callproc.c (Fcall_process): If code detection is necessary,
25149 call detect_coding directly here.
25150
25151 * coding.c (detect_eol): Preserve coding->cmp_data.
25152
25153 * w16select.c (Fw16_get_clipboard_data):
25154 * w32fns.c (w32_to_x_font):
25155 * w32select.c (Fw32_get_clipboard_data):
25156 * xselect.c (selection_data_to_lisp_data):
25157 * xterm.c (XTread_socket): Disable composition handling.
25158
25159 2002-06-24 Stefan Monnier <monnier@cs.yale.edu>
25160
25161 * print.c (temp_output_buffer_setup): Kill all local variables.
25162
25163 2002-06-22 Stefan Monnier <monnier@cs.yale.edu>
25164
25165 * lread.c (Fread): Remove redundant and imprecise declaration.
25166
25167 * xfns.c (check_x_display_info): Use check_x_frame.
25168
25169 * .gdbinit (xprintsym): Use the new `xname' field.
25170 (xsymbol): Use it.
25171
25172 2002-06-22 Jason Rumney <jasonr@gnu.org>
25173
25174 * w32fns.c (file_dialog_callback): New function.
25175 (Fx_file_dialog): Allow selecting directories as well as files.
25176
25177 2002-06-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25178
25179 * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
25180 OpenBSD. Add support for mipseb-*-netbsd* machines.
25181
25182 2002-06-17 Andrew Choi <akochoi@shaw.ca>
25183
25184 * macterm.c (mac_scroll_area): Set foreground and backcolor to
25185 black and white before scrolling. Restore frame background and
25186 foreground color after scrolling.
25187 (do_window_update): Call XClearWindow before calling expose_frame.
25188 (make_mac_frame): Don't set FRAME_BACKGROUND_PIXEL and
25189 FRAME_FOREGROUND_PIXEL of frame.
25190
25191 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
25192 test Mac command key as <ALT> key.
25193
25194 2002-06-17 Stefan Monnier <monnier@cs.yale.edu>
25195
25196 * window.c (Fset_window_configuration): Lisp_Object/int mixup.
25197
25198 * keyboard.c (read_key_sequence): Be more careful with first_unbound.
25199 Lookup keys in function-key-map immediately so that key-translation-map
25200 can be applied earlier.
25201 Remove function_key_possible and key_translation_possible, replaced
25202 by checking `keytran_start < t'.
25203
25204 * .gdbinit (xsymbol): Use the new `xname' field.
25205
25206 2002-06-17 Andrew Choi <akochoi@shaw.ca>
25207
25208 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
25209 test Mac command key as <ALT> key.
25210
25211 * mac.c (do_applescript): Call initialize_applescript if necessary
25212 when first called. Dispose of result_desc only when there is no error.
25213 (Fdo_applescript): Use %d format specifier instead of %ld.
25214
25215 2002-06-16 Andrew Choi <akochoi@shaw.ca>
25216
25217 * macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
25218 of FrontWindow for cases keyDown and autoKey.
25219
25220 * fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
25221 Vdefault_fontset to Monaco with mac-roman coding.
25222
25223 * mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
25224 init_process before and after inclusion of Carbon/Carbon.h, resp.
25225
25226 * macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
25227 cursor_gc.
25228 (add_font_name_table_entry): New function.
25229 (init_font_name_table): Use add_font_name_table_entry; add italic,
25230 bold, and bold-italic entries for truetype fonts.
25231
25232 * xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
25233 for Mac too.
25234 (try_font_list) [MAC_OS]: If no font matches given registry, try
25235 fonts with any registry matching face_family.
25236 (realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font here.
25237
25238 * s/darwin.h: If autoconf detects the Ncurses library, define
25239 LIBS_TERMCAP to -lncurses to use it.
25240
25241 2002-06-16 Eli Zaretskii <eliz@is.elta.co.il>
25242
25243 * strftime.c [__hpux]: Include sys/_mbstate_t.h.
25244
25245 2002-06-15 Richard M. Stallman <rms@gnu.org>
25246
25247 * window.c (Fset_window_configuration): Explicitly preserve
25248 the point value that new_current_buffer had at the start.
25249
25250 2002-06-14 Juanma Barranquero <lektu@terra.es>
25251
25252 * composite.c (Fcompose_region_internal, Fcompose_string_internal):
25253 Fix typos.
25254
25255 2002-06-14 Kim F. Storm <storm@cua.dk>
25256
25257 * insdel.c (insert_1_both, insert_from_string_1)
25258 (insert_from_buffer_1): Recalculate END_UNCHANGED in case the
25259 insert happened in the end_unchanged region. Otherwise, the
25260 redisplay may be confused and duplicate the last line in the
25261 buffer [seen after save-buffer when require-final-newline==t].
25262
25263 2002-06-13 Jason Rumney <jasonr@gnu.org>
25264
25265 * w32.c (init_environment): Remove EMACSLOCKDIR.
25266 (stat): Swap _S_IFDIR and _S_IFREG.
25267
25268 2002-06-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25269
25270 * keyboard.c, macterm.c, macmenu.c, msdos.c, sysdep.c
25271 * termhooks.h, xmenu.c, xsmfns.c, xterm.h, xterm.c, w32term.c,
25272 * w32menu.c, w32inevt.c: Rename enum event_kind as follows:
25273 ascii_keystroke to ASCII_KEYSTROKE_EVENT, multibyte_char_keystroke
25274 to MULTIBYTE_CHAR_KEYSTROKE_EVENT, non_ascii_keystroke to
25275 NON_ASCII_KEYSTROKE_EVENT, timer_event to TIMER_EVENT, mouse_click
25276 to MOUSE_CLICK_EVENT, mouse_wheel to MOUSE_WHEEL_EVENT,
25277 language_change_event to LANGUAGE_CHANGE_EVENT, scroll_bar_click
25278 to SCROLL_BAR_CLICK_EVENT, w32_scroll_bar_click to
25279 W32_SCROLL_BAR_CLICK_EVENT, selection_request_event to
25280 SELECTION_REQUEST_EVENT, selection_clear_event to
25281 SELECTION_CLEAR_EVENT, buffer_switch_event to BUFFER_SWITCH_EVENT,
25282 delete_window_event to DELETE_WINDOW_EVENT, iconify_event to
25283 ICONIFY_EVENT, deiconify_event to DEICONIFY_EVENT,
25284 menu_bar_activate_event to MENU_BAR_ACTIVATE_EVENT, drag_n_drop to
25285 DRAG_N_DROP_EVENT, save_session_event to SAVE_SESSION_EVENT and
25286 no_event to NO_EVENT.
25287
25288 2002-06-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25289
25290 * macmenu.c: Remove declaration of Qmouse_click and Qevent_kind.
25291
25292 2002-06-12 Stefan Monnier <monnier@cs.yale.edu>
25293
25294 * intervals.c (textget): Don't forget to `return'.
25295 (lookup_char_property): Use XCAR/XCDR.
25296
25297 2002-06-12 Juanma Barranquero <lektu@terra.es>
25298
25299 * xdisp.c (Fformat_mode_line): Fix typo.
25300
25301 2002-06-12 Kim F. Storm <storm@cua.dk>
25302
25303 * xdisp.c (Fformat_mode_line): New function.
25304 (frame_title_buf, frame_title_buf_end, frame_title_ptr)
25305 (store_frame_title_char, store_frame_title): Use unconditionally.
25306 (init_xdisp): Defsubr Fformat_mode_line.
25307 Initialize frame_title_buf etc. unconditionally.
25308
25309 2002-06-11 Stefan Monnier <monnier@cs.yale.edu>
25310
25311 * keyboard.c (read_key_sequence):
25312 Remove prev_(fkey|keytran}_(map|start|end) since we don't want to pass
25313 things through those maps after downcasing events.
25314 Enforce that keytran_end <= fkey_start, i.e. that key-translation-map
25315 applies after function-key-map.
25316 Make sure that keytran can be done in the middle in the sequence.
25317 Be careful not to throw away events past the one we downcase.
25318
25319 * lread.c (read_integer): Remove unused var `tem'.
25320 (read1): Fix int/Lisp_Object mixup.
25321
25322 * xfaces.c (tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
25323
25324 2002-06-11 Richard M. Stallman <rms@gnu.org>
25325
25326 * keyboard.c (readable_events): Ignore any number of
25327 FOCUS_IN_EVENT events and return 0 if nothing else in buffer.
25328
25329 2002-06-09 Miles Bader <miles@gnu.org>
25330
25331 * xfaces.c (Ftty_supports_face_attributes_p): New function.
25332 (parse_rgb_list, tty_lookup_color): New functions.
25333 (tty_defined_color): Use `tty_lookup_color' to do all the work.
25334 (color_distance, Fcolor_distance): New functions.
25335 (TTY_SAME_COLOR_THRESHOLD): New macro.
25336 (Qtty_color_standard_values): New variable.
25337 (syms_of_xfaces): Initialize new vars & functions.
25338
25339 2002-06-08 Colin Walters <walters@verbum.org>
25340
25341 * textprop.c (Vchar_property_alias_alist): New variable.
25342 (syms_of_textprop) <Vchar_property_alias_alist>: DEFVAR_LISP.
25343
25344 * intervals.c (lookup_char_property): New function for looking up
25345 overlay and text properties, created from textget.
25346 (textget): Use it.
25347
25348 * intervals.h (lookup_char_property): Declare.
25349 (Vchar_property_alias_alist): Declare.
25350
25351 * buffer.c (Foverlay_get): Use lookup_char_property.
25352
25353 2002-06-07 Sam Steingold <sds@gnu.org>
25354
25355 * xselect.c (lisp_data_to_selection_data): Fix last change:
25356 *data_ret is not a Lisp string, while unibyte_string is.
25357
25358 2002-06-07 Eli Zaretskii <eliz@is.elta.co.il>
25359
25360 * xselect.c (lisp_data_to_selection_data): Fix last change:
25361 set size_ret.
25362
25363 2002-06-07 Andreas Schwab <schwab@suse.de>
25364
25365 * m/amdx86-64.h: New file.
25366
25367 2002-06-05 Eli Zaretskii <eliz@is.elta.co.il>
25368
25369 * fns.c (Fstring_make_unibyte): Doc fix.
25370
25371 * xselect.c (lisp_data_to_selection_data): If the requested type
25372 is STRING, call string_make_unibyte to encode the selected text
25373 as a string.
25374
25375 * window.c (Fset_window_hscroll): Doc fix.
25376
25377 2002-06-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25378
25379 * fileio.c (choose_write_coding_system):
25380 Call select-safe-coding-system properly.
25381
25382 2002-06-03 Richard M. Stallman <rms@gnu.org>
25383
25384 * xdisp.c (message_with_string): Error if STRING is not a string.
25385
25386 * fns.c (md5): Pass FILE arg to Vselect_safe_coding_system_function.
25387
25388 * fileio.c (choose_write_coding_system): Pass FILE arg to
25389 Vselect_safe_coding_system_function.
25390
25391 2002-06-03 Ken Raeburn <raeburn@gnu.org>
25392
25393 * buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
25394
25395 2002-06-02 Thien-Thi Nguyen <ttn@gnu.org>
25396
25397 * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
25398 * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
25399 * keymap.c (describe_command): Likewise.
25400 * minibuf.c (read_minibuf): Likewise.
25401
25402 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
25403 Cast `current_column' return value to int.
25404 (back_to_previous_visible_line_start)
25405 (reseat_at_next_visible_line_start, next_element_from_buffer):
25406 Cast `indented_beyond_p' 3rd arg to float.
25407
25408 * indent.c (last_known_column): Now a float.
25409 (current_column_1, position_indentation, current_column)
25410 (string_display_width): Return float.
25411 (Fcurrent_column): Cast `current_column' return value to int.
25412 (Fcurrent_indentation): Cast `position_indentation' retval to int.
25413 (indented_beyond_p): Third arg now a float.
25414 (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
25415
25416 * lisp.h (current_column): Now returns float.
25417 (indented_beyond_p): 3rd arg now a float.
25418
25419 2002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
25420
25421 * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
25422 is Qcompound_text_with_extensions.
25423
25424 * xselect.c (lisp_data_to_selection_data): Always set selection
25425 type as string if x_encode_text returns streingp non-NULL.
25426
25427 * s/netbsd.h: Include /usr/pkg in the run time shared library path.
25428
25429 2002-05-30 Richard M. Stallman <rms@gnu.org>
25430
25431 * window.c (Fset_window_configuration): Correct the handling
25432 of point in current buffer, to work with multiple windows.
25433
25434 2002-05-29 Colin Walters <walters@verbum.org>
25435
25436 * lread.c (Fread_from_string): Don't depend on order of evaluation
25437 for C function parameters.
25438
25439 2002-05-28 Richard M. Stallman <rms@gnu.org>
25440
25441 * xterm.c (x_display_and_set_cursor): Change the cursor in the same
25442 way for blinked-off state and for a nonselected window.
25443
25444 * window.c (window_scroll_pixel_based): Don't call Fbolp;
25445 instead, see if the new start pos is at beginning of line.
25446
25447 * fileio.c (Fwrite_region): If START is a string, don't
25448 make any annotations.
25449
25450 * eval.c (syms_of_eval): Doc fix.
25451
25452 2002-05-28 Colin Walters <walters@debian.org>
25453
25454 * emacs.c (USAGE1): Add --no-splash.
25455 (standard_args): Ditto.
25456
25457 2002-05-28 Colin Walters <walters@gnu.org>
25458
25459 * lread.c (readchar_count): New variable.
25460 (readchar): Increment it.
25461 (unreadchar): Decrement it.
25462 (read_multibyte): Decrement it.
25463 (Vread_with_symbol_positions): New variable.
25464 (Vread_symbol_positions_list): New variable.
25465 (read_internal_start): New function, created from Fread and
25466 Fread_from_string. Handle Vread_symbol_positions_list and
25467 Vread_with_symbol_positions.
25468 (readevalloop, Fread, Fread_from_string): Use it.
25469 (read1): Use readchar_count to add symbol positions to
25470 Vread_symbol_positions_list if Vread_with_symbol_positions is non-nil.
25471 (syms_of_lread): DEFVAR_LISP and initialize them.
25472
25473 * lread.c (read0, read1, read_list, read_vector, read_multibyte)
25474 (substitute_object_recurse, substitute_object_in_subtree)
25475 (substitute_in_interval): Prototype.
25476 (read_multibyte): Return c if it's less than zero.
25477
25478 2002-05-28 Kim F. Storm <storm@cua.dk>
25479
25480 * fileio.c (Fread_file_name_internal): Added brute-force
25481 speed up for using predicate file-directory-p.
25482
25483 2002-05-28 Kim F. Storm <storm@cua.dk>
25484
25485 * fileio.c (Vread_file_name_function, Vread_file_name_predicate):
25486 New variables.
25487 (syms_of_fileio): DEFVAR_LISP them.
25488 (read_file_name_cleanup): New unwind function.
25489 (Fread_file_name_internal): Only return completions satifying
25490 Vread_file_name_predicate. Temporarily unwind protect and rebind
25491 default-directory while checking completions against the predicate.
25492 (Fread_file_name): Added PREDICATE argument. Specbind it to
25493 Vread_file_name_predicate during completion.
25494 Call Vread_file_name_function to read the file name if non-nil.
25495
25496 * lisp.h (Fread_file_name): Now has 6 args.
25497
25498 * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
25499 predicate for Fread_file_name when reading directory name.
25500 Supply Qnil for predicate in other calls to Fread_file_name.
25501
25502 2002-05-26 Miles Bader <miles@gnu.org>
25503
25504 * term.c (tty_capable_p): New function.
25505 * dispextern.h (tty_capable_p): New function declaration.
25506 (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM)
25507 (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros.
25508
25509 2002-05-23 Stefan Monnier <monnier@cs.yale.edu>
25510
25511 * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
25512 (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
25513 (Vwrite_region_annotate_functions): Docstring fix.
25514
25515 2002-05-23 Kim F. Storm <storm@cua.dk>
25516
25517 * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
25518 phys_cursor's hpos is overwritten. This is still not completely
25519 correct, as it doesn't really make sense to use hpos at all to
25520 get the cursor glyph (as that is relative to the width of the
25521 characters on the line, which may have changed during the update).
25522
25523 2002-05-22 Jason Rumney <jasonr@gnu.org>
25524
25525 * w32fns.c (enumfont_t): Remove tail, make pattern a normal
25526 Lisp_Object.
25527 (enum_font_cb2, enum_font_maybe_add_to_list, w32_list_fonts):
25528 Use modified enumfont_t struct.
25529
25530 * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
25531
25532 * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
25533 Handle the `hbar' cursor type.
25534 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
25535
25536 * w32fns.c (Qhbar): New variable.
25537 (x_specified_cursor_type): Use it.
25538
25539 2002-05-21 Ken Raeburn <raeburn@gnu.org>
25540
25541 * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
25542 now, when the address is needed.
25543
25544 2002-05-21 Colin Walters <walters@gnu.org>
25545
25546 * Makefile.in (shortlisp): Add font-core.el.
25547
25548 2002-05-20 Richard M. Stallman <rms@gnu.org>
25549
25550 * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
25551
25552 * keyboard.c (read_char_minibuf_menu_prompt): Don't list
25553 equivalent key bindings here.
25554
25555 2002-05-20 Ken Raeburn <raeburn@gnu.org>
25556
25557 Change symbol structure to contain a lisp object for the symbol
25558 name:
25559 * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
25560 object field named "xname".
25561 (SYMBOL_NAME): New macro.
25562 * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
25563 name field.
25564 * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
25565 (mark_object, gc_sweep): Use symbol xname field and XSTRING
25566 instead of name field.
25567 * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
25568 SYMBOL_NAME instead of XSYMBOL and name field.
25569 * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
25570 instead of XSYMBOL and name field.
25571 * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
25572 and SYMBOL_NAME instead of XSYMBOL and name field.
25573 * coding.c (Fread_coding_system, code_convert_region1)
25574 (code_convert_string1, code_convert_string_norecord)
25575 (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
25576 XSYMBOL and name field.
25577 * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
25578 (Fmake_variable_buffer_local, Fmake_local_variable)
25579 (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
25580 of XSYMBOL and name field.
25581 * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
25582 XSYMBOL and name field.
25583 * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
25584 instead of XSYMBOL and name field.
25585 * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
25586 XSYMBOL and name field.
25587 * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
25588 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
25589 * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
25590 instead of XSYMBOL and name field.
25591 * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
25592 (parse_modifiers, apply_modifiers, Fevent_convert_list)
25593 (parse_solitary_modifier, Fexecute_extended_command):
25594 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
25595 * keymap.c (silly_event_symbol_error, Fsingle_key_description)
25596 (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
25597 of XSYMBOL and name field.
25598 (describe_command, describe_translation): Use SYMBOL_NAME and
25599 assignment instead of XSYMBOL and name field and XSETSTRING.
25600 * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
25601 instead of XSYMBOL and name field.
25602 (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
25603 name field and XSETSTRING.
25604 * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
25605 of XSYMBOL and name field.
25606 * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
25607 assignment instead of XSYMBOL and name field and XSETSTRING.
25608 * print.c (print_error_message, print_object): Use SYMBOL_NAME and
25609 XSTRING instead of XSYMBOL and name field.
25610 * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
25611 and XSTRING instead of XSYMBOL and name field.
25612 * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
25613 and XSTRING instead of XSYMBOL and name field.
25614 * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
25615 XSTRING instead of XSYMBOL and name field.
25616 * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
25617 of XSYMBOL and name field.
25618 * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
25619 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
25620
25621 2002-05-19 Ken Raeburn <raeburn@gnu.org>
25622
25623 * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
25624 and XCDR real rvalues in most configurations.
25625
25626 * buffer.c (fix_overlays_in_range, fix_overlays_before):
25627 Don't take the address of the cdr part of a cons cell; instead, track
25628 the parent cell and call XSETCDR, or set the variable for the head
25629 of the list if we haven't started down the list yet.
25630
25631 2002-05-19 Richard M. Stallman <rms@gnu.org>
25632
25633 * doc.c (reread_doc_file): Don't ask for confirmation.
25634
25635 2002-05-18 Jason Rumney <jasonr@gnu.org>
25636
25637 * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
25638 (xbm_load_image): Use it.
25639 (xbm_load): Ditto.
25640 (xbm_read_bitmap_data): Reverted to xfns.c version.
25641 From David Ponce <david@dponce.com>.
25642
25643 2002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
25644
25645 * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
25646 2.02 and later.
25647
25648 2002-05-16 Juanma Barranquero <lektu@terra.es>
25649
25650 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
25651
25652 2002-05-15 Stefan Monnier <monnier@cs.yale.edu>
25653
25654 * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
25655 meaningful test.
25656 (read_char_minibuf_menu_prompt): Fix typo.
25657
25658 2002-05-15 Eli Zaretskii <eliz@is.elta.co.il>
25659
25660 * eval.c (Fcommandp): Doc fix.
25661
25662 2002-05-13 Stefan Monnier <monnier@cs.yale.edu>
25663
25664 * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
25665 (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
25666 (Fset_keymap_parent): Gcpro a bit more.
25667 (access_keymap): Gcpro around meta_map call and around the main loop.
25668 (get_keyelt): Gcpro when following indirect references.
25669 (copy_keymap_item): New fun, extracted from Fcopy_keymap.
25670 (copy_keymap_1, Fcopy_keymap): Use it. Don't copy the parent map.
25671 (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
25672 Remove useless ad-hoc remap code.
25673
25674 2002-05-13 Richard M. Stallman <rms@gnu.org>
25675
25676 * search.c (search_buffer): Give up boyer moore search if inverse
25677 translation change charset_base.
25678
25679 2002-05-12 Eli Zaretskii <eliz@is.elta.co.il>
25680
25681 * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
25682 characters is carried over from the previous block of text, adjust
25683 coding->produced to account for the extra character.
25684
25685 2002-05-11 Andreas Schwab <schwab@suse.de>
25686
25687 * coding.c (intersection): Keep the elements of the returned list
25688 in the same order as in the first list.
25689
25690 2002-05-11 Kim F. Storm <storm@cua.dk>
25691
25692 * keymap.c (current_minor_maps): Fix resizing of cmm_maps;
25693 only update cmm_size if realloc actually succeeds.
25694 Testing with initial size of 2 elements revealed that using
25695 realloc on GNU/Linux would cause a random trap in xmalloc
25696 later on, so I rewrote the code to use malloc/bcopy/free instead
25697 of realloc.
25698
25699 2002-05-10 Jason Rumney <jasonr@gnu.org>
25700
25701 * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
25702
25703 2002-05-10 Eli Zaretskii <eliz@is.elta.co.il>
25704
25705 * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
25706 parens, to ensure correct evaluation order.
25707
25708 2002-05-10 Kim F. Storm <storm@cua.dk>
25709
25710 * keymap.c (Vemulation_mode_map_alists): New variable.
25711 (syms_of_keymap): DEFVAR_LISP it.
25712 (current_minor_maps): Process keymap alists in that list before
25713 minor-mode-overriding-map-alist and minor-mode-map-alist.
25714
25715 2002-05-09 Richard M. Stallman <rms@gnu.org>
25716
25717 * search.c (Freplace_match): Doc fix.
25718
25719 2002-05-09 Kim F. Storm <storm@cua.dk>
25720
25721 * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
25722 Enlarge cursor rectangle drawn around image with non-zero relief.
25723
25724 * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
25725 Enlarge cursor rectangle drawn around image with non-zero relief.
25726
25727 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
25728 Enlarge cursor rectangle drawn around image with non-zero relief.
25729
25730 2002-05-07 Eli Zaretskii <eliz@is.elta.co.il>
25731
25732 * xselect.c (lisp_data_to_selection_data): Don't set selection
25733 type if comes from the Lisp object's car. If the selection
25734 contains a pure ASCII text, always return QSTRING as its type.
25735
25736 2002-05-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25737
25738 * mac.c (mac-cut-function): Doc fix.
25739
25740 2002-05-05 Richard M. Stallman <rms@gnu.org>
25741
25742 * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
25743
25744 2002-05-04 Jason Rumney <jasonr@gnu.org>
25745
25746 * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
25747 for event-click-count.
25748
25749 * process.c (init_process): Only add server subfeature if we can
25750 use non-blocking I/O.
25751
25752 2002-05-04 Andrew Choi <akochoi@shaw.ca>
25753
25754 * macterm.c (XTread_socket): Call WaitNextEvent once instead of
25755 repeatedly.
25756
25757 2002-05-03 Jason Rumney <jasonr@gnu.org>
25758
25759 * process.c (Fmake_network_process): Only support server sockets
25760 when we can make them non-blocking.
25761
25762 * s/ms-w32.h (HAVE_SELECT): Define.
25763
25764 * w32.h (FILE_NDELAY): New flag.
25765
25766 * w32.c (sys_getpeername, fcntl): New functions.
25767 (_sys_read_ahead): Temporarily block on non-blocking sockets.
25768
25769 * w32proc.c: Include sys/file.h.
25770
25771 2002-05-03 Colin Walters <walters@verbum.org>
25772
25773 * callproc.c (Vgame_score_directory): Renamed to
25774 Vshared_game_score_directory.
25775
25776 2002-04-30 Richard M. Stallman <rms@gnu.org>
25777
25778 * s/gnu.h [emacs]: Include stdio.h.
25779 (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
25780
25781 * eval.c (do_autoload): Error if called while preparing to dump.
25782
25783 * fns.c (Frequire): Error if need to load while preparing to dump.
25784
25785 2002-04-28 Colin Walters <walters@verbum.org>
25786
25787 * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
25788 Default to "~/.emacs.d/games".
25789
25790 2002-04-29 Stefan Monnier <monnier@cs.yale.edu>
25791
25792 * lread.c (openp): Change arg exec_only to predicate.
25793 (build_load_history): Use XCAR/XCDR.
25794 (Flocate_file_internal): New fun.
25795 (syms_of_lread): Defsubr it.
25796 (Fload): Update call to openp.
25797
25798 * lisp.h (openp): Update prototype.
25799
25800 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
25801 * w32proc.c (sys_spawnve):
25802 * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
25803 * w32.c (check_windows_init_file):
25804 * sound.c (Fplay_sound_internal):
25805 * process.c (Fstart_process):
25806 * macfns.c (x_create_bitmap_from_file, x_find_image_file):
25807 * mac.c (run_mac_command):
25808 * emacs.c (init_cmdargs):
25809 * callproc.c (Fcall_process): Update call to openp.
25810
25811 * textprop.c (remove_properties): Don't use XCAR without CONSP.
25812
25813 * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
25814
25815 2002-04-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25816
25817 * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
25818 (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
25819
25820 2002-04-28 Richard M. Stallman <rms@gnu.org>
25821
25822 * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
25823
25824 * eval.c (Fcommandp): New arg for_call_interactively.
25825 * lisp.h (Fcommandp): Declare new arg.
25826
25827 2002-04-28 Jason Rumney <jasonr@gnu.org>
25828
25829 * w32proc.c (syms_of_w32proc): Get true file attributes by default.
25830
25831 * w32.c (stat, fstat): Use file index information to generate
25832 inodes for directories where available.
25833
25834 2002-04-26 Andrew Choi <akochoi@shaw.ca>
25835
25836 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
25837 [HAVE_CARBON]: Include Mac object files.
25838
25839 * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
25840 fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
25841 termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
25842 MAC_OSX, and MAC_OS instead of macintosh.
25843
25844 * editfns.c [MAC_OS8]: Include stdio.h.
25845
25846 * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
25847
25848 * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
25849 Apple Monaco.
25850
25851 * process.c (QCfamily, QCfilte): Declare extern.
25852 (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
25853 calling select.
25854
25855 * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
25856
25857 * tparam.c [MAC_OSX]: Don't define BC and UP.
25858
25859 * config.in [HAVE_CARBON]: Add.
25860
25861 * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
25862 Move here from mac/src and mac/inc.
25863
25864 * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
25865
25866 2002-04-26 Gerd Moellmann <gerd@gnu.org>
25867
25868 * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
25869 Compute phys_cursor_width from the x position returned
25870 by x_draw_glyhs, which is cheaper.
25871 (x_display_and_set_cursor): Compute the buffer-local value
25872 of `cursor-in-non-selected-windows' only when needed.
25873
25874 2002-04-25 Gerd Moellmann <gerd@gnu.org>
25875
25876 * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
25877 cursor on a stretch glyph has a width that depends on
25878 x_stretch_cursor_p.
25879
25880 2002-04-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25881
25882 * abbrev.c (abbrev-start-location): Doc fix.
25883
25884 * indent.c (Fvertical_motion): Fix last change.
25885
25886 2002-04-25 Gerd Moellmann <gerd@gnu.org>
25887
25888 * indent.c (Fvertical_motion): Move to the start of the line
25889 containing PT before moving up or down.
25890
25891 2002-04-24 Gerd Moellmann <gerd@gnu.org>
25892
25893 * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
25894 case of writing a whole row, more or less analogous to the case of
25895 writing only parts of a row.
25896
25897 * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
25898 0 for NO_CURSOR.
25899
25900 * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
25901
25902 2002-04-23 Colin Walters <walters@verbum.org>
25903
25904 * buffer.c (syms_of_buffer): Doc fix.
25905
25906 2002-04-23 Gerd Moellmann <gerd@gnu.org>
25907
25908 * xterm.c (notice_overwritten_cursor): Handle the special case
25909 of the cursor being in the first blank non-text line at the
25910 end of a window.
25911
25912 * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
25913 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
25914 (x_display_and_set_cursor): Don't set phys_cursor_width here, for
25915 bar cursors only, to make phys_cursor_width contain what its name
25916 suggests.
25917 (notice_overwritten_cursor): Consider the cursor image erased if
25918 the output area intersects the cursor image in y-direction.
25919
25920 2002-04-23 Simon Marshall <simon@gnu.org>
25921
25922 * xfns.c (x_set_mouse_color): Change default for cross_cursor
25923 to XC_hand2.
25924
25925 2002-04-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25926
25927 * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
25928
25929 2002-04-22 Kim F. Storm <storm@cua.dk>
25930
25931 * textprop.c (remove_properties): Fixed trap for malformed plist.
25932
25933 2002-04-22 Richard M. Stallman <rms@gnu.org>
25934
25935 * cmds.c (Fend_of_line): Handle intangible text in mid line.
25936
25937 * window.c (make_window): Initialize height_fixed_p,
25938 last_cursor_off_p, and p->cursor_off_p slots.
25939
25940 2002-04-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25941
25942 * fns.c (use-dialog-box): Doc fix.
25943
25944 2002-04-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
25945
25946 * xterm.c (note_mode_line_or_margin_highlight): Remove unused
25947 variables `row', `i' and `area'.
25948 (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
25949 toolkit library.
25950
25951 2002-04-19 Stefan Monnier <monnier@cs.yale.edu>
25952
25953 * xfaces.c (clear_font_table): Don't free the default font of
25954 a frame even if it's on another display.
25955 (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
25956 that could be Qt.
25957
25958 2002-04-19 Juanma Barranquero <lektu@terra.es>
25959
25960 * indent.c (Fmove_to_column): Remove unused local variable
25961 `next_boundary_byte'.
25962 (current_column_1): Likewise.
25963
25964 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
25965
25966 * msdos.c (Qhbar): New variable.
25967 (syms_of_msdos): Intern and staticpro it.
25968 (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
25969 cursor type.
25970
25971 2002-04-19 Dave Lambert <dlambert@acm.org>
25972
25973 Theses change implement an underscore-like (`hbar') cursor.
25974
25975 * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
25976
25977 * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
25978 Handle the `hbar' cursor type.
25979 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
25980
25981 * xfns.c (Qhbar): New variable.
25982 (syms_of_xfns): Intern and staticpro it.
25983 (x_specified_cursor_type): Handle `hbar' cursor.
25984
25985 * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
25986 not defined.
25987
25988 2002-04-18 Richard M. Stallman <rms@gnu.org>
25989
25990 * textprop.c (remove_properties): New arg LIST allows scanning
25991 either a list or a plist.
25992 (interval_has_some_properties_list): New function, like
25993 interval_has_some_properties using list instead of plist.
25994 All callers changed.
25995 (Fremove_list_of_text_properties): New function.
25996 (syms_of_textprop): Defsubr it.
25997
25998 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
25999
26000 * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
26001
26002 2002-04-17 Juanma Barranquero <lektu@terra.es>
26003
26004 * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
26005
26006 2002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
26007
26008 * window.c (coordinates_in_window): Don't report on margin area
26009 if its width is zero.
26010
26011 2002-04-16 Jason Rumney <jasonr@gnu.org>
26012
26013 * w32fns.c (Fx_file_dialog): Decode file name before using.
26014
26015 * w32term.c (construct_drag_n_drop): Likewise.
26016
26017 2002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
26018
26019 * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
26020 store load-history in pure space.
26021
26022 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
26023
26024 2002-04-16 Stefan Monnier <monnier@cs.yale.edu>
26025
26026 * xterm.c (Qlatin_1, Qutf_8): New vars.
26027 (syms_of_xterm): Initialize them.
26028 (XTread_socket): Eliminate incorrect optimization that tried to avoid
26029 decoding the output of X*LookupString.
26030 Always use latin-1 to decode the output of XLookupString.
26031 Try Xutf8LookupString if XmbLookupString failed.
26032
26033 * region-cache.c (new_region_cache): Use BEG.
26034
26035 2002-04-16 Gerd Moellmann <gerd@gnu.org>
26036
26037 * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
26038 configuration files.
26039 (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
26040 returns 0.
26041
26042 2002-04-15 Andreas Schwab <schwab@suse.de>
26043
26044 * config.in: Regenerated using autoheader.
26045
26046 * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
26047 m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
26048 m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
26049 m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
26050 m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
26051 m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
26052 m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
26053 m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
26054 m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
26055 m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
26056 m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
26057 m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
26058 m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
26059 m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
26060 m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
26061 s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
26062 STACK_DIRECTION, now set by autoconf.
26063
26064 2002-04-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26065
26066 * dispnew.c (marginal_area_string): Sort arguments.
26067
26068 * dispextern.h (marginal_area_string): Add prototype.
26069
26070 2002-04-13 Richard M. Stallman <rms@gnu.org>
26071
26072 * fileio.c (Finsert_file_contents):
26073 Don't call temp_output_buffer_setup--do just part, by hand.
26074
26075 * coding.c (run_pre_post_conversion_on_str):
26076 Don't call temp_output_buffer_setup--do just part, by hand.
26077
26078 * keyboard.c (command_loop_1): Don't call start_hourglass
26079 or cancel_hourglass when executing a macro.
26080
26081 * marker.c (count_markers): New function.
26082
26083 * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
26084 grow without limit. Move recently used elements to the front.
26085
26086 2002-04-13 Eli Zaretskii <eliz@is.elta.co.il>
26087
26088 * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
26089
26090 2002-04-12 Gerd Moellmann <gerd@gnu.org>
26091
26092 * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
26093 rows marginal areas.
26094 (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
26095 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
26096
26097 * dispnew.c (marginal_area_string): Check that glyph row is enabled.
26098
26099 2002-04-12 Dave Love <fx@gnu.org>
26100
26101 * dispnew.c (marginal_area_string): New.
26102
26103 * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
26104 (Qleft_margin, Qright_margin): Declare.
26105 (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
26106
26107 * xterm.c (note_mode_line_or_margin_highlight): Renamed from
26108 note_mode_line_highlight and extended.
26109
26110 * keyboard.c (Qleft_margin, Qright_margin): Declare.
26111 (make_lispy_event): Deal with mouse events in margins.
26112
26113 2002-04-12 Stefan Monnier <monnier@cs.yale.edu>
26114
26115 * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
26116
26117 * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
26118 than deactivating the mark if tmm is set to `lambda'.
26119 (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
26120 Use a single event for HELP_EVENT.
26121 (Fexecute_extended_command): Save last_point_position.
26122
26123 2002-04-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26124
26125 * lisp.h (Fpropertize): Add prototype.
26126
26127 * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
26128
26129 2002-04-10 Colin Walters <walters@verbum.org>
26130
26131 * config.in: Add HAVE_SHARED_GAME_DIR.
26132
26133 * callproc.c (Vgame_score_directory): New variable.
26134 (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
26135
26136 2002-04-10 Richard M. Stallman <rms@gnu.org>
26137
26138 * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
26139
26140 2002-04-09 Stefan Monnier <monnier@cs.yale.edu>
26141
26142 * minibuf.c (read_minibuf): Use empty_string.
26143 (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
26144 Short-circuit the search as soon as it "failed".
26145 (Fall_completions): Allow lambda forms and lists of strings for alist.
26146 (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
26147 when require_match is nil.
26148 (Ftest_completion): Rename from `test_completion' and export to elisp.
26149 Call the predicate also when alist is a list.
26150 Obey Vcompletion_regexp_list.
26151 (do_completion, Fminibuffer_complete_and_exit): Use it.
26152 (Fassoc_string): Rename from `assoc_for_completion'.
26153 Allow list of strings as well and export to elisp.
26154
26155 2002-04-08 Stefan Monnier <monnier@cs.yale.edu>
26156
26157 * puresize.h (BASE_PURESIZE): Increase to 900KB.
26158
26159 2002-04-08 Juanma Barranquero <lektu@terra.es>
26160
26161 * w32.c (sys_accept): Don't hide variable `s'.
26162
26163 2002-04-05 Gerd Moellmann <gerd@gnu.org>
26164
26165 * callint.c (Fcall_interactively): Use INTEGERP instead of
26166 NUMBERP for checking Vhistory_length.
26167
26168 2002-04-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26169
26170 * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
26171 Doc fix to reflect it.
26172
26173 2002-04-04 Richard M. Stallman <rms@gnu.org>
26174
26175 * xdisp.c (display_mode_element): New arg RISKY.
26176 Disregard text props found or specified within a variable
26177 that isn't marked risky-local-variable.
26178 (Qrisky_local_variable): New variable.
26179 (syms_of_xdisp): Init and staticpro it.
26180
26181 2002-04-04 Stefan Monnier <monnier@cs.yale.edu>
26182
26183 * undo.c (record_point): New fun.
26184 (record_delete, record_insert): Use it.
26185
26186 2002-04-03 Juanma Barranquero <lektu@terra.es>
26187
26188 * doc.c (Fdocumentation): Add missing parentheses.
26189 (Fdocumentation_property): Likewise.
26190
26191 2002-04-03 Stefan Monnier <monnier@cs.yale.edu>
26192
26193 * doc.c (Fdocumentation, Fdocumentation_property): When the doc
26194 data is 0, just return nil.
26195
26196 2002-04-03 Eli Zaretskii <eliz@is.elta.co.il>
26197
26198 * msdos.c (syms_of_msdos): Fix last change with
26199 mouse_autoselect_window.
26200
26201 2002-04-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26202
26203 * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
26204 mouse_autoselect_window.
26205
26206 2002-04-02 Stefan Monnier <monnier@cs.yale.edu>
26207
26208 * keyboard.c (make_lispy_event): Handle unknown keysyms together
26209 with system-specific keysyms. Use it also for unknown function keys.
26210
26211 * doc.c (reread_doc_file): Return whether reload was attempted.
26212 (Fdocumentation, Fdocumentation_property): Don't try to reload
26213 if the doc is 0 and only ask once.
26214
26215 * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
26216
26217 2002-04-02 Eli Zaretskii <eliz@is.elta.co.il>
26218
26219 * keyboard.c (read_char): If the event was Qselect_window,
26220 restore timer_idleness_start_time to its previous value.
26221
26222 * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
26223
26224 2002-04-01 Stefan Monnier <monnier@cs.yale.edu>
26225
26226 * region-cache.c (new_region_cache): Use BEG.
26227
26228 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
26229 Use BEG and BEG_BYTE.
26230
26231 * doc.c (get_doc_string): Return nil if the location is wrong.
26232 (reread_doc_file): New fun.
26233 (Fdocumentation, Fdocumentation_property):
26234 Call it if get_doc_string fails.
26235 (Fsnarf_documentation): Make it work for a dumped Emacs.
26236
26237 * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
26238 Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
26239
26240 * charset.c (Fstring): Allow 0 arguments.
26241
26242 * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
26243
26244 * process.c (DATAGRAM_CONN_P, list_processes_1)
26245 (Fprocess_datagram_address, Fset_process_datagram_address)
26246 (Fset_network_process_options, server_accept_connection):
26247 Fix some int/Lisp_Object confusions (thank you union types).
26248
26249 2002-04-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26250
26251 * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
26252
26253 * w32term.c: Likewise.
26254 (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
26255
26256 * keyboard.c (Qselect_window): New symbol.
26257 (head_table): Use it.
26258 (keys_of_keyboard): Bound select-window event to handle-select-window.
26259 (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
26260
26261 * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
26262 (last_window): New variable.
26263 (XTread_socket): Generate SELECT_WINDOW_EVENTs.
26264 (note_mouse_movement): Remove reimplemented code in #if 0.
26265 (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
26266 Emacs windows.
26267
26268 * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
26269
26270 2002-03-31 Gerd Moellmann <gerd@gnu.org>
26271
26272 * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
26273 Callers changed.
26274
26275 2002-03-30 Richard M. Stallman <rms@gnu.org>
26276
26277 * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
26278 loop whenever it stops making progress.
26279
26280 * widget.c (set_frame_size): Don't call change_frame_size.
26281
26282 2002-03-30 Gerd Moellmann <gerd@gnu.org>
26283
26284 * dispnew.c (direct_output_for_insert):
26285 Call mark_window_display_accurate.
26286
26287 2002-03-29 Jason Rumney <jasonr@gnu.org>
26288
26289 * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
26290
26291 2002-03-29 Eli Zaretskii <eliz@is.elta.co.il>
26292
26293 * Makefile.in (lread.o): Depend on coding.h.
26294
26295 * lread.c (openp, Fload): Encode the file name before passing it
26296 to `stat', `access', and `emacs_open'.
26297 (openp): GCPRO the encoded file name. Don't recompute Lisp
26298 strings unnecessarily.
26299
26300 2002-03-29 Kim F. Storm <storm@cua.dk>
26301
26302 * fns.c (Flax_plist_put): Doc fix.
26303
26304 2002-03-28 Miles Bader <miles@gnu.org>
26305
26306 * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
26307
26308 2002-03-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26309
26310 * process.c (set-network-process-options): Add usage.
26311 (make-network-process): Doc fix.
26312
26313 2002-03-26 Eli Zaretskii <eliz@is.elta.co.il>
26314
26315 * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
26316
26317 2002-03-26 Richard M. Stallman <rms@gnu.org>
26318
26319 * fns.c (Fsubstring_no_properties): New function.
26320 (Flax_plist_get, Flax_plist_put): New functions.
26321 (syms_of_fns): defsubr them.
26322
26323 * xdisp.c (update_menu_bar): Test only update_mode_lines;
26324 don't test or alter w->update_mode_line.
26325
26326 * window.c (Fdisplay_buffer): Doc fix.
26327
26328 2002-03-24 Richard M. Stallman <rms@gnu.org>
26329
26330 * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
26331
26332 2002-03-24 Gerd Moellmann <gerd@gnu.org>
26333
26334 * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
26335 (Fdefmacro): Handle `(declare ...)'.
26336 (syms_of_eval) <Qdeclare>: Initialize and staticpro.
26337 (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
26338
26339 2002-03-24 Jason Rumney <jasonr@gnu.org>
26340
26341 * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
26342 (xbm_file_p): Add prototypes.
26343 (xbm_format, xbm_image_p): Sync with xfns.c.
26344 (reflect_byte): New function.
26345 (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
26346 (xbm_load_image): Create bitmaps with a depth of 1.
26347 (init_xfns): Enable XBM images.
26348
26349 2002-03-23 Jason Rumney <jasonr@gnu.org>
26350
26351 * w32term.c (w32_handle_tool_bar_click): Detect up and down events
26352 correctly. Do not pass up_modifier to keyboard buffer.
26353
26354 * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
26355
26356 2002-03-22 Stefan Monnier <monnier@cs.yale.edu>
26357
26358 * Makefile.in (bootstrapclean): New target.
26359 (bootstrap-temacs, bootstrap-doc): Remove.
26360 (bootstrap-emacs): Use a bog-standard `temacs'.
26361 Don't bother to build a DOC file.
26362
26363 * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
26364
26365 * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
26366 in temacs even if !CANNOT_DUMP.
26367 (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
26368
26369 * alloc.c (check_pure_size): Only output a warning.
26370
26371 2002-03-22 Jason Rumney <jasonr@gnu.org>
26372
26373 * w32fns.c (Fx_create_frame): Enable tool-bar when images are
26374 supported.
26375
26376 * w32term.c (zv_bits): Declare as short, for word alignment.
26377 (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
26378 (syms_of_w32term): Define x-use-underline-position-properties.
26379
26380 * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
26381 (clear_image_cache): Block input, fix logic, clear matrices in
26382 all frames that share this cache.
26383
26384 2002-03-22 Eli Zaretskii <eliz@is.elta.co.il>
26385
26386 * emacs.c (main): Update the Copyright year in the blurb printed
26387 by "emacs --version".
26388
26389 * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
26390
26391 * xterm.c (XTread_socket): If XK_ISO_Lock and
26392 XK_ISO_Last_Group_Lock are defined, handle keysyms between
26393 XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
26394
26395 2002-03-21 Kim F. Storm <storm@cua.dk>
26396
26397 * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
26398 menu-bar bindings in keymap and local-map properties _are_ used.
26399 But try keymap property first in accordance with 2002-01-03 patch.
26400 Added comment describing why this is not always reliable.
26401 (tool_bar_items): Ditto for tool-bar.
26402
26403 2002-03-21 Jason Rumney <jasonr@gnu.org>
26404
26405 * w32fns.c (x_clear_image_1): Disable color table code.
26406
26407 2002-03-21 Kim F. Storm <storm@cua.dk>
26408
26409 * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
26410 removed the wrong version of the DEFUN macro; fixed it.
26411
26412 * fns.c (Ffeaturep): Allow subfeature to be a list (test using
26413 Fmember rather than Fmemq).
26414 (Fprovide): Check that subfeatures is a list.
26415
26416 * process.c (QCfeature, QCdatagram): Removed variables.
26417 (QCtype, Qdatagram): New variables.
26418 (network_process_featurep): Removed function.
26419 (Fmake_network_process): Removed :feature check.
26420 Use :type 'datagram instead of :datagram t to create a datagram
26421 socket. This allows us to add other connection types (e.g. raw
26422 sockets) later in a consistent manner.
26423 (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
26424 supported subfeatures for feature make-network-process.
26425 (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
26426 Intern and staticpro QCtype and Qdatagram.
26427 (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
26428
26429 * xfns.c (QCtype): Remove duplicate declaration and
26430 initialization (is now declared in process.c).
26431
26432 * w32fns.c (QCtype): Remove duplicate declaration and
26433 initialization (is now declared in process.c).
26434
26435 2002-03-21 Richard M. Stallman <rms@gnu.org>
26436
26437 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
26438 (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
26439 when jumping to `fail' to avoid undoing reg changes in the
26440 last iteration of the loop.
26441 (GET_UNSIGNED_NUMBER): Skip spaces around the number.
26442
26443 * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
26444 Depend on process.h.
26445
26446 2002-03-20 Jason Rumney <jasonr@gnu.org>
26447
26448 Most of the following changes are still conditional on HAVE_IMAGES
26449 which is not set by default on Windows.
26450
26451 * emacs.c (main) [WINDOWSNT]: Call init_xfns.
26452
26453 * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
26454 (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
26455 (four_corners_best, x_clear_image_1, x_clear_image)
26456 (x_alloc_image_color, postprocess_image)
26457 (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
26458 (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
26459 (init_xfns, syms_of_w32fns): Initialize image functions and constants.
26460
26461 * w32gui.h (struct XImage): Define.
26462
26463 * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
26464 extract mouse co-ordinates.
26465
26466 2002-03-20 Jason Rumney <jasonr@gnu.org>
26467
26468 * w32.c (init_winsock): Dynamically load new server and UDP
26469 socket functions.
26470 (socket_to_fd): New function.
26471 (sys_socket): Use it.
26472 (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
26473 (sys_recvfrom, sys_sendto): New wrapper functions.
26474
26475 * process.c (QCfamily, QCfilter): Remove duplicate declaration
26476 and initialization.
26477
26478 * makefile.w32-in (LIBS): Remove $(WSOCK32).
26479
26480 2002-03-20 Eli Zaretskii <eliz@is.elta.co.il>
26481
26482 * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr):
26483 Don't use "sun" as a variable, it's a predefined constant on Sun
26484 machines.
26485
26486 2002-03-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26487
26488 * bytecode.c (Fbyte_code): Revert last change.
26489
26490 2002-03-19 Kim F. Storm <storm@cua.dk>
26491
26492 * makefile.w32-in (LIBS): Add $(WSOCK32).
26493 From David Ponce <dponce@voila.fr>.
26494
26495 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26496
26497 * process.c (wait_reading_process_input): Move variables `pname'
26498 and `pnamelen' down where they are used.
26499
26500 * bytecode.c (Fbyte_code): Discard unused computed value to
26501 prevent gcc warning.
26502
26503 * lisp.h (Fplist_member): Add prototype.
26504
26505 2002-03-18 Kim F. Storm <storm@cua.dk>
26506
26507 * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
26508 HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and HAVE_SYS_UN_H.
26509
26510 * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
26511 Remove explicit GNU_LINUX settings for datagram support.
26512
26513 2002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26514
26515 * process.c (Fmake_network_process): Remove unused variable `sa'.
26516 Doc fix. Add usage:.
26517 (set_socket_options): Remove unused variables `optnum' and `opttype'.
26518
26519 2002-03-17 Richard M. Stallman <rms@gnu.org>
26520
26521 * xdisp.c (cursor_type_changed): New variable.
26522 (redisplay_internal): Redisplay all windows if cursor_type_changed.
26523 Clear it when clearing windows_or_buffers_changed.
26524 (try_cursor_movement, redisplay_window, try_window_id)
26525 (try_window_reusing_current_matrix): Test cursor_type_changed
26526 along with windows_or_buffers_changed.
26527
26528 * window.h (cursor_type_changed): New variable.
26529
26530 * xfns.c (x_set_cursor_type): Set cursor_type_changed,
26531 not update_mode_lines, and always set it to 1.
26532
26533 * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
26534 if no frames needed redrawing.
26535
26536 2002-03-17 Kim F. Storm <storm@cua.dk>
26537
26538 The following changes add support for network server processes,
26539 datagram connections, and local (unix) sockets.
26540
26541 * process.h (struct Lisp_Process): New member log.
26542 Doc fix: Member command used to indicate stopped network process.
26543 Doc fix: Member childp contains plist for network process.
26544 Doc fix: Member kill_without_query is inverse of query-on-exit flag.
26545
26546 * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
26547 (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery, QCstop)
26548 (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature): New
26549 variables.
26550 (NETCONN1_P): New macro.
26551 (DATAGRAM_SOCKETS): New conditional symbol.
26552 (datagram_address): New array.
26553 (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
26554 (status_message): Use concat3.
26555 (Fprocess_status): Add `listen' status to doc string. Return
26556 `stop' for a stopped network process.
26557 (Fset_process_buffer): Update contact plist for network process.
26558 (Fset_process_filter): Ditto. Don't enable input for stopped
26559 network processes. Server must listen, even if filter is t.
26560 (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
26561 New functions.
26562 (Fprocess_kill_without_query): Removed. Now defined in simple.el.
26563 (Fprocess_contact): Added KEY argument. Handle datagrams.
26564 (list_processes_1): Optionally show only processes with the query
26565 on exit flag set. Dynamically adjust column widths. Omit tty
26566 column if not needed. Report stopped network processes. Identify
26567 server and datagram network processes.
26568 (Flist_processes): New optional arg `query-only'.
26569 (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
26570 (conv_lisp_to_sockaddr, set_socket_options)
26571 (network_process_featurep, unwind_request_sigio): New helper
26572 functions.
26573 (Fprocess_datagram_address, Fset_process_datagram_address):
26574 (Fset_network_process_options): New lisp functions.
26575 (Fopen_network_stream): Removed. Now defined in simple.el.
26576 (Fmake_network_process): New lisp function. Code is based on
26577 previous Fopen_network_stream, but heavily reworked with new
26578 property list based argument list, support for datagrams, server
26579 processes, and local sockets in addition to old client-only
26580 functionality.
26581 (server_accept_connection): New function.
26582 (wait_reading_process_input): Use it to handle incoming connects.
26583 Do not enable input on a new connection if process is stopped.
26584 (read_process_output): Handle datagram sockets. Use 2k buffer for
26585 them.
26586 (send_process): Handle datagram sockets.
26587 (Fstop_process, Fcontinue_process): Apply to network processes. A
26588 stopped network process is indicated by setting command field to t.
26589 (Fprocess_send_eof): No-op if datagram connection.
26590 (Fstatus_notify): Don't read input for a stream server socket or a
26591 stopped network process.
26592 (init_process): Initialize datagram_address array.
26593 (syms_of_process): Intern and staticpro new variables, defsubr new
26594 functions.
26595
26596 2002-03-16 Jason Rumney <jasonr@gnu.org>
26597
26598 * w32fns.c (w32_to_all_x_charsets): Return correct type in
26599 startup case.
26600
26601 2002-03-16 Richard M. Stallman <rms@gnu.org>
26602
26603 * xdisp.c (redisplay_internal, redisplay_windows):
26604 Use list_of_error to call internal_condition_case_1.
26605 (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
26606 so as to catch all errors with no possibility of debugger redisplay.
26607 (list_of_error): New variable.
26608 (syms_of_xdisp): Init and staticpro it.
26609
26610 * print.c (print_object): Delete `\ ' from printed rep of frame.
26611
26612 2002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
26613
26614 * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
26615 until its implementation is fixed.
26616
26617 2002-03-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26618
26619 * xfns.c (png_load): Remove unused variable `gamma_str'.
26620
26621 2002-03-14 Richard M. Stallman <rms@gnu.org>
26622
26623 * xfns.c (x_real_positions): Handle failure in XQueryTree.
26624
26625 2002-03-14 Miles Bader <miles@gnu.org>
26626
26627 * intervals.c (adjust_for_invis_intang): New function.
26628 (set_point_both): Use `adjust_for_invis_intang' to do most of the
26629 work for dealing with invisible+intangible regions. Do so before
26630 and after both forward and backward movements, to handle both
26631 front-sticky and rear-sticky cases.
26632 * textprop.c (text_property_stickiness): Function moved here from
26633 `editfns.c'.
26634 * intervals.h (text_property_stickiness): New declaration.
26635 * editfns.c (char_property_eq): Function removed.
26636 (text_property_stickiness): Function moved to `textprop.c'.
26637
26638 2002-03-13 Jason Rumney <jasonr@gnu.org>
26639
26640 * config.in: Add STRFTIME_NO_POSIX2.
26641
26642 * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
26643 and %OX when underlying strftime does not.
26644
26645 2002-03-13 Stefan Monnier <monnier@cs.yale.edu>
26646
26647 * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
26648 Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
26649 line) to avoid annoying flicker.
26650 (xm_scroll_callback): Get rid of the now unnecessary kludge.
26651 (XTread_socket): Mark it static.
26652
26653 * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
26654
26655 2002-03-13 Kim F. Storm <storm@cua.dk>
26656
26657 * puresize.h (BASE_PURESIZE): Increase to 775000.
26658
26659 2002-03-12 Juanma Barranquero <lektu@terra.es>
26660
26661 * editfns.c (syms_of_editfns): Fix typo.
26662
26663 2002-03-12 Gerd Moellmann <gerd@gnu.org>
26664
26665 * xsmfns.c: Include stdio.h because termhooks.h needs it.
26666 Include termopt.h for interrupt_input.
26667
26668 2002-03-11 Andreas Schwab <schwab@suse.de>
26669
26670 * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
26671
26672 2002-03-11 Gerd Moellmann <gerd@gnu.org>
26673
26674 * xterm.c (note_mouse_movement): Put code for
26675 x_autoselect_window_p in #if 0.
26676
26677 * lread.c (Fload): Don't assume that message_with_string uses the
26678 string it is given like a C string.
26679
26680 2002-03-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
26681
26682 * xterm.h (x_session_check_input, x_session_initialize): Declare.
26683
26684 * xterm.c (XTread_socket): Add call to x_session_check_input and
26685 x_session_have_connection.
26686 (x_initialize): Add call to x_session_initialize.
26687
26688 * termhooks.h (enum event_kind): Add save_session_event.
26689
26690 * keyboard.c: Add Emacs event save_session_event.
26691
26692 * emacs.c (main): Add call to syms_of_xsmfns.
26693
26694 * lisp.h (syms_of_xsmfns): Declare extern.
26695
26696 * config.in: Add HAVE_X_SM.
26697
26698 * Makefile.in (LIBXT): Add -lSM -lICE
26699 if HAVE_X_SM and not USE_X_TOOLKIT.
26700 (XOBJ): New file xsmfns.c added.
26701
26702 * xsmfns.c: New file for X session management.
26703
26704 2002-03-09 Jason Rumney <jasonr@gnu.org>
26705
26706 * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
26707 read-only when setting modified time.
26708
26709 2002-03-08 Gerd Moellmann <gerd@gnu.org>
26710
26711 * xdisp.c (move_it_vertically_backward): At the end of the function,
26712 when moving forward by lines, treat terminal frames specially.
26713
26714 * keyboard.c (echo_char): Make sure to add a separator between
26715 keys even if echo_dash hasn't been called.
26716
26717 * xdisp.c: Use new string macros.
26718 (update_echo_area): Pass number of bytes to message3 instead of
26719 number of chars.
26720 (set_message_1): Don't access a string's size_byte directly.
26721 (decode_mode_spec_coding): Use number of bytes of eoltype string
26722 instead number of chars.
26723
26724 * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
26725
26726 2002-03-08 Juanma Barranquero <lektu@terra.es>
26727
26728 * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
26729 24-bit.
26730
26731 2002-03-06 Jason Rumney <jasonr@gnu.org>
26732
26733 * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
26734
26735 2002-03-06 Gerd Moellmann <gerd@gnu.org>
26736
26737 * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
26738 (cancel_echoing, echo_length, echo_truncate): Changed to
26739 work with new kboard definition.
26740 (echo_now): Use message3_nolog instead of message2_nolog.
26741
26742 * alloc.c (mark_kboards): Mark echo_string.
26743
26744 * keyboard.h (ECHOBUFSIZE): Removed.
26745 (struct kboard): Member echoptr removed, member echobuf renamed
26746 to echo_string.
26747
26748 * xdisp.c (message_with_string): Use Fformat instead of doprnt and
26749 message3 instead of message2 to display the message using STRING's
26750 text properties.
26751
26752 2002-03-05 Andreas Schwab <schwab@suse.de>
26753
26754 * xdisp.c (hscroll_margin): Change to EMACS_INT.
26755
26756 2002-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
26757
26758 * frame.c (default-frame-alist): Explain that setting it doesn't
26759 affect existing frames.
26760
26761 2002-03-05 Stefan Monnier <monnier@cs.yale.edu>
26762
26763 * indent.c (skip_invisible): Fix my brain fart.
26764
26765 * dispnew.c (sit_for): Don't wait if executing a kbd macro.
26766
26767 2002-03-04 Stefan Monnier <monnier@cs.yale.edu>
26768
26769 * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
26770 * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
26771 * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
26772 * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
26773 and variables to use EMACS_INT instead of just int.
26774
26775 * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
26776
26777 2002-03-04 Eli Zaretskii <eliz@is.elta.co.il>
26778
26779 * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
26780 environment, pass it down with corrected value.
26781
26782 2002-03-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26783
26784 * lread.c (read_filtered_event): Do not call start_hourglass
26785 before returning.
26786
26787 2002-03-04 Juanma Barranquero <lektu@terra.es>
26788
26789 * w32term.c (x_display_and_set_cursor): Fix typo.
26790
26791 2002-03-03 Richard M. Stallman <rms@gnu.org>
26792
26793 * fileio.c (Fmake_temp_name): Doc fix.
26794
26795 2002-03-03 Gary Wong <gtw@gnu.org>
26796
26797 * termcap.c [!emacs]: Replace ospeed for building standalone
26798 libtermcap, for binary compatibility.
26799
26800 * tparam.c [!emacs]: Move #define of bcopy to after string.h.
26801
26802 2002-03-03 Richard M. Stallman <rms@gnu.org>
26803
26804 * xrdb.c (file_p): Rename arg `path' to `filename'.
26805
26806 * abbrev.c (Fexpand_abbrev): Increment plist as use count
26807 only if it is an integer.
26808
26809 * xfns.c (png_load): Set screen_gamma based on f->gamma.
26810 If png_get_sRGB gives an answer, call png_set_gamma
26811 using the default image gamma value.
26812
26813 * lread.c (read1): When reading from a file, default string to
26814 multibyte only if it has some multibyte characters.
26815
26816 * print.c (print_object): Output multibyte chars 128...255
26817 using \x even if ! print_escape_multibyte.
26818
26819 * xdisp.c (display_mode_element): Move the places where
26820 bytepos, charpos, this, and lisp_string are set.
26821 Use lisp_string to set bytepos.
26822
26823 * xdisp.c (redisplay_internal):
26824 Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
26825
26826 * xdisp.c (display_mode_element): Merge properties specified with
26827 :propertize onto those that come with the string.
26828
26829 2002-03-03 Eli Zaretskii <eliz@is.elta.co.il>
26830
26831 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
26832 automatic-hscrolling. Users changed.
26833 <hscroll-margin>: Renamed from automatic-hscroll-margin.
26834 Users changed.
26835 <hscroll-step>: Renamed from automatic-hscroll-step. Users changed.
26836
26837 2002-03-02 Eli Zaretskii <eliz@is.elta.co.il>
26838
26839 * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
26840
26841 2002-03-02 Kim F. Storm <storm@cua.dk>
26842
26843 * window.c (Fminibuffer_selected_window): New function.
26844 (syms_of_window): Defsubr it.
26845
26846 2002-03-01 Kim F. Storm <storm@cua.dk>
26847
26848 * window.h (struct window): New member phys_cursor_width.
26849
26850 * window.c (make_window, replace_window): Init phys_cursor_width.
26851
26852 * xterm.c (x_display_and_set_cursor): Blink box cursor using
26853 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
26854
26855 * w32term.c (x_display_and_set_cursor): Blink box cursor using
26856 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
26857
26858 * lisp.h (GCPRO6): New macro.
26859
26860 * process.c (Fopen_network_stream): Use GCPRO6.
26861
26862 2002-03-01 Kim F. Storm <storm@cua.dk>
26863
26864 * process.c (Qconnect, Qfailed): New variables.
26865 (syms_of_process): Intern and staticpro them.
26866 (Fprocess_status): Document connect and failed return values.
26867 [NON_BLOCKING_CONNECT]: New conditional.
26868 (connect_wait_mask, num_pending_connects): New variables.
26869 (status_message): Convert Qfailed status.
26870 (Fopen_network_stream): Added support for non-blocking connect.
26871 New optional args: filter, sentinel, non_blocking. Doc updated.
26872 [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]: Merged common code.
26873 (deactivate_process): Handle pending non-blocking connect.
26874 (wait_reading_process_input): Poll for status of non-blocking
26875 connects. Exec sentinel directly when connect succeeds.
26876 (status_notify): Don't read process output if not yet connected.
26877
26878 2002-02-28 Kim F. Storm <storm@cua.dk>
26879
26880 * window.c (minibuf_selected_window): Renamed from
26881 Vminibuf_selected_window. Users changed.
26882 (syms_of_window): Staticpro it.
26883
26884 2002-02-26 Kim F. Storm <storm@cua.dk>
26885
26886 The following changes add a new Vminibuf_selected_window variable
26887 which is similar to Vminibuf_scroll_window, but which is only set
26888 on entry to the minibuffer (from a non-minibuffer window):
26889
26890 * window.c (Vminibuf_selected_window): New variable.
26891 (struct save_window_data): New member minibuf_selected_window.
26892 (Fset_window_configuration): Restore Vminibuf_selected_window.
26893 (Fcurrent_window_configuration): Save Vminibuf_selected_window.
26894 Set minibuf_scroll_window member to nil if minibuf_level is 0.
26895 (compare_window_configurations): Compare minibuf_selected_window.
26896
26897 * window.h (Vminibuf_selected_window): Declare extern.
26898
26899 * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
26900 entry to minibuffer or on entry from a non-minibuffer window.
26901
26902 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
26903 Vminibuf_selected_window instead of Vminibuf_scroll_window.
26904
26905 * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
26906 instead of Vminibuf_scroll_window when deciding in which window
26907 the region should be highlighted. Consequently, the region remains
26908 highlighteded even when a completion buffer is also displayed.
26909
26910 2002-02-26 Eli Zaretskii <eliz@is.elta.co.il>
26911
26912 * fileio.c (Fsubstitute_in_file_name): Fix the change from 2002-02-08.
26913
26914 * xselect.c (Qcompound_text_with_extensions): Renamed from
26915 Qcompound_text_no_extensions.
26916 (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
26917
26918 2002-02-26 Juanma Barranquero <lektu@terra.es>
26919
26920 * w32proc.c (syms_of_ntproc): Doc fix.
26921
26922 2002-02-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26923
26924 * intervals.h: Include "dispextern.h" unconditionally.
26925
26926 2002-02-24 Jason Rumney <jasonr@gnu.org>
26927
26928 * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
26929 and disp-table.elc.
26930 (lisp): Add emacs-lisp/backquote.elc.
26931
26932 2002-02-24 Kim F. Storm <storm@cua.dk>
26933
26934 * keymap.c (Flookup_key): Fix problem in 2001-12-28 patch:
26935 The validation of the event type was too strict as it didn't
26936 allow string events; buffer names are used in bindings for
26937 menu-bar-select-buffer (see `menu-bar-update-buffers').
26938
26939 2002-02-23 Kim F. Storm <storm@cua.dk>
26940
26941 The following changes rework my patch of 2002-02-06 which
26942 added command remapping by entering the commands directly into
26943 the keymaps. Now, command remapping uses an explicit `remap'
26944 prefix in the keymaps, i.e. [remap COMMAND].
26945
26946 * keymap.c (Qremap, remap_command_vector): New variables.
26947 (is_command_symbol): Remove function.
26948 (Fdefine_key): No longer accept a symbol for KEY.
26949 Added validation of [remap COMMAND] argument for KEY.
26950 The DEF is no longer required to be a symbol when remapping a command.
26951 (Fremap_command): New function to remap command through keymaps.
26952 (Flookup_key): Perform command remapping initiated by
26953 Fremap_command directly for speed.
26954 (Fkey_binding): Use Fremap_command for command remapping.
26955 (where_is_internal): Handle new command remapping representation.
26956 (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
26957 staticpro them. Defsubr Fremap_command.
26958
26959 * keymap.h (Fremap_command): Declare extern.
26960 (is_command_symbol): Remove extern.
26961
26962 * keyboard.c (command_loop_1): Use Fremap_command for command
26963 remapping; now try command remapping for all symbols.
26964
26965 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
26966
26967 * coding.h (run_pre_post_conversion_on_str): Add prototype.
26968
26969 2002-02-23 Jason Rumney <jasonr@gnu.org>
26970
26971 * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
26972 on the string before encoding it.
26973 (Fw32_get_clipboard_data): Run post-read-conversion on the string
26974 after decoding it.
26975
26976 * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
26977
26978 2002-02-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
26979
26980 * w32term.c (enter_timestamp): Remove unused static variable to
26981 prevent warning.
26982
26983 * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
26984
26985 2002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
26986
26987 * w16select.c (Fw16_get_clipboard_data): Fix last change.
26988
26989 * xselect.c (selection_data_to_lisp_data): Fix last change.
26990
26991 2002-02-22 Jason Rumney <jasonr@gnu.org>
26992
26993 * w32term.h (struct w32_output): New member menu_command_in_progress.
26994
26995 * w32menu.c (menubar_selection_callback): Free the menu and
26996 clear the menu_command_in_progress flag.
26997
26998 * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
26999 (menu_free_timer): New variable.
27000 (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
27001 (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
27002 <WM_EXITMENULOOP>: Delay before freeing menu. Do nothing if a
27003 menu command is in progress.
27004 <WM_COMMAND>: Set the menu_command_in_progress flag.
27005 Kill any menu_free_timer that is running.
27006
27007 * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
27008 Call ExtTextOutA rather than ExtTextOut.
27009
27010 2002-02-22 Eli Zaretskii <eliz@gnu.org>
27011
27012 * puresize.h (BASE_PURESIZE): Increase to 755000.
27013
27014 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
27015
27016 * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
27017 on the string before encoding it.
27018 (Fw16_get_clipboard_data): Run post-read-conversion on the string
27019 after decoding it.
27020
27021 2002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
27022
27023 Support for ICCCM Extended Segments in X selections:
27024
27025 * xselect.c <Qcompound_text_no_extensions>: New variable.
27026 (syms_of_xselect): Intern and staticpro it.
27027 (selection_data_to_lisp_data): Run post-read-conversion on decoded
27028 selection text.
27029 (lisp_data_to_selection_data): If next-selection-coding-system is
27030 compound-text-no-extensions, set the type of selection to be
27031 compound-text.
27032
27033 * xterm.h (x_encode_text): Update prototype.
27034
27035 * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
27036 callers changed. If SELECTIONP is non-zero, run the
27037 pre-write-conversion function before encoding the selection text.
27038
27039 2002-02-21 Kim F. Storm <storm@cua.dk>
27040
27041 * frame.c (syms_of_frame): Change mouse-highlight default to t.
27042
27043 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
27044 Correct composing of language-change event.
27045
27046 2002-02-20 Kim F. Storm <storm@cua.dk>
27047
27048 * keyboard.c (menu_bar_items): Don't include keymap or local-map
27049 bindings at PT when building menu (the menu is not updated often
27050 enough for this to work reliable).
27051 (tool_bar_items): Likewise.
27052 (current_active_maps): Removed unused (and buggy) function.
27053
27054 2002-02-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27055
27056 * xfns.c (gif_load): Use correct width and height for GIF images.
27057
27058 2002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
27059
27060 * floatfns.c (Fatan): Accept an optional second arg and call
27061 atan2 if passed 2 args.
27062
27063 2002-02-18 Jason Rumney <jasonr@gnu.org>
27064
27065 * w32term.c (glyph_rect): Determine the row and glyph more precisely.
27066
27067 2002-02-17 Jason Rumney <jasonr@gnu.org>
27068
27069 * w32term.c (x_autoselect_window_p): New variable.
27070 (syms_of_w32term): DEFVAR_BOOL and initialize it.
27071 (note_mouse_movement): Use it.
27072
27073 * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
27074
27075 * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
27076
27077 * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
27078 New variables.
27079 (syms_of_w32fns): Intern and staticpro them.
27080 (x_frame_parms) <"fullscreen">: New parameter.
27081 (x_fullscreen_move, x_set_fullscreen): New functions.
27082 (x_set_frame_parameters): Support Qfullscreen.
27083 (x_real_positions): Save x/y_pixels_diff frame params.
27084 (x_figure_window_size): Support full-screen frames.
27085 (Fx_create_frame): Default the fullscreen parameter.
27086
27087 * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
27088 (x_fullscreen_adjust): New functions.
27089 (w32_read_socket) <WM_WINDOWPOSCHANGED>: Don't resize to
27090 fullscreen. Call x_check_fullscreen_move, and set the
27091 want_fullscreen member of output_data.w32
27092 <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
27093
27094 * w32term.h: New enum for FULLSCREEN_* constants.
27095 (struct w32_output): New members want_fullscreen, x_pixels_diff,
27096 y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
27097 (x-fullscreen-adjust): New prototype.
27098
27099 2002-02-17 Kim F. Storm <storm@cua.dk>
27100
27101 * frame.c (Vmouse_highlight): New variable.
27102 (syms_of_frame): DEFVAR_LISP it.
27103
27104 * frame.h (Vmouse_highlight): Declare extern.
27105
27106 * xterm.h (struct x_display_info): Add mouse_face_hidden.
27107
27108 * xterm.c (disable_mouse_highlight): Removed variable.
27109 (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
27110 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
27111 (XTread_socket): Turn mouse_face_hidden off after mouse movement,
27112 and on after keyboard input.
27113 (x_term_init): Initialize mouse_face_hidden.
27114
27115 * msdos.h (struct display_info): Add mouse_face_hidden.
27116
27117 * msdos.c (disable_mouse_highlight): Removed variable.
27118 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
27119 (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
27120 (internal_terminal_init): Initialize mouse_face_hidden.
27121 (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
27122 and on after keyboard input.
27123
27124 * w32term.h (struct w32_display_info): Add mouse_face_hidden.
27125
27126 * w32term.c (disable_mouse_highlight): Removed variable.
27127 (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
27128 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
27129 (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
27130 and on after keyboard input.
27131 (w32_initialize_display_info): Initialize mouse_face_hidden.
27132
27133 2002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
27134
27135 * msdos.c (last_mouse_window): New variable.
27136 (dos_rawgetc): Fix last change--if the mouse is in the same window
27137 as recorded in last_mouse_window, don't select this window.
27138
27139 * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
27140
27141 * msdos.c (x_autoselect_window_p): New variable.
27142 (syms_of_msdos): Defvar it.
27143 (dos_rawgetc): If x_autoselect_window_p is set, select the window in
27144 which the last mouse movement occured, unless it is already selected.
27145
27146 * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
27147 New variables.
27148 (syms_of_xdisp): DEVFAR them.
27149 (hscroll_window_tree): Use automatic_hscroll_margin and
27150 Vautomatic_hscroll_step to compute the amount of window scrolling.
27151
27152 2002-02-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27153
27154 * xterm.c (x-autoselect-window): New variable.
27155 (note_mouse_movement): Use it.
27156
27157 * keyboard.c: Do not include "systime.h" twice.
27158
27159 2002-02-15 Andreas Schwab <schwab@suse.de>
27160
27161 * puresize.h (PURESIZE_RATIO): Increase to 9/5.
27162
27163 * alloc.c (NSTATICS): Increase to 1280.
27164
27165 2002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
27166
27167 * alloc.c (NSTATICS): Bump to 1026.
27168
27169 * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
27170 (Vx_super_keysym): New variables.
27171 (syms_of_xterm): DEFVAR_LISP them.
27172 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
27173 variables to determine which keys to use for the various modifiers.
27174
27175 2002-02-13 Kim F. Storm <storm@cua.dk>
27176
27177 * window.c (Vmode_line_in_non_selected_windows): Removed.
27178 (mode_line_in_non_selected_windows): New variable.
27179 (syms_of_window): DEFVAR_BOOL it.
27180
27181 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
27182 Use mode_line_in_non_selected_windows.
27183 (mode_line_in_non_selected_windows): Declare extern.
27184 (Vmode_line_in_non_selected_windows): Removed extern.
27185
27186 2002-02-13 Richard M. Stallman <rms@gnu.org>
27187
27188 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
27189 (Fthis_single_command_keys, Fthis_single_command_raw_keys)
27190 (Fclear_this_command_keys): Doc fixes.
27191
27192 * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
27193 (update_face_from_frame_parameter): Increment face_change_count
27194 and windows_or_buffers_changed to force redisplay using changed faces.
27195
27196 * xdisp.c (QCpropertize): New variable.
27197 (mode_line_proptrans_alist): New variable.
27198 (display_mode_element): New arg PROPS; all calls changed.
27199 Implement this, for strings.
27200 Handle literal output of strings by sharing the
27201 main-line code for strings, using local var `literal'.
27202 Handle :propertize feature.
27203 (syms_of_xdisp): Initialze and staticpro QCpropertize and
27204 mode_line_proptrans_alist.
27205
27206 2002-02-11 Kim F. Storm <storm@cua.dk>
27207
27208 * window.c (Vmode_line_in_non_selected_windows): New variable.
27209 (syms_of_window): DEFVAR_LISP it.
27210
27211 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
27212 (CURRENT_MODE_LINE_FACE_ID): Use it.
27213 (Vmode_line_in_non_selected_windows): Declare extern.
27214
27215 * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
27216 to get mode line face.
27217
27218 2002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
27219
27220 * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
27221 variables; cus-start.el doesn't need them anymore.
27222
27223 2002-02-09 Kim F. Storm <storm@cua.dk>
27224
27225 * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
27226 reduction. This fixes a display problem where stray newlines were
27227 inserted in the window (corrected by C-l). Clarified code (IMHO).
27228
27229 2002-02-09 Eli Zaretskii <eliz@is.elta.co.il>
27230
27231 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
27232
27233 * xdisp.c (display_mode_lines): Fix last change.
27234
27235 2002-02-09 Jason Rumney <jasonr@gnu.org>
27236
27237 * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
27238 match each other.
27239 (w32_load_system_font): Prevent Cleartype fonts from loading.
27240 (Fx_show_tip): Ensure tip frames are above other topmost windows.
27241
27242 2002-02-09 Kim F. Storm <storm@cua.dk>
27243
27244 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
27245 (CURRENT_MODE_LINE_HEIGHT): Use it.
27246 (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
27247
27248 * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
27249 (pos_visible_p, handle_face_prop): Likewise.
27250 (display_mode_lines): Likewise, but for the real selected window.
27251 (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
27252
27253 * xfaces.c (Qmode_line_inactive): New face variable for mode-line
27254 in non-selected windows.
27255 (realize_basic_faces): Realize it.
27256 (syms_of_term): Intern and staticpro it.
27257
27258 2002-02-08 Kim F. Storm <storm@cua.dk>
27259
27260 * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
27261 Changed mail addresses to emacs-devel@gnu.org.
27262
27263 2002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
27264
27265 * fileio.c (Fsubstitute_in_file_name): If the file name includes
27266 ~user, and there's no such user, don't discard everything before ~user.
27267
27268 * floatfns.c (Fround): Doc fix.
27269
27270 2002-02-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27271
27272 * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
27273
27274 2002-02-07 Stefan Monnier <monnier@cs.yale.edu>
27275
27276 * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
27277
27278 2002-02-07 Kim F. Storm <storm@cua.dk>
27279
27280 * keymap.c (where_is_internal): Only check whether definition is
27281 remapped if it fulfills is_command_symbol.
27282
27283 2002-02-07 Andreas Schwab <schwab@suse.de>
27284
27285 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
27286
27287 * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
27288
27289 2002-02-06 Kim F. Storm <storm@cua.dk>
27290
27291 * keymap.c (Fdefine_key): Allow symbol as KEY argument for
27292 defining command remapping. Doc updated.
27293 (Flookup_key): Remap command through keymap if KEY is a symbol.
27294 (is_command_symbol): New function.
27295 (Fkey_binding): Use it. New optional argument NO-REMAP.
27296 Doc updated. Callers changed. Perform command remapping via
27297 recursive call unless that arg is non-nil.
27298 (where_is_internal): New argument no_remap. Callers changed.
27299 Call recursively to find original key bindings for a remapped
27300 comand unless that arg is non-nil.
27301 (Fwhere_is_internal): New optional argument NO-REMAP.
27302 Doc updated. Callers changed. Pass arg to where_is_internal.
27303
27304 * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
27305 (is_command_symbol): Add prototype.
27306
27307 * keyboard.c (Vthis_original_command): New variable.
27308 (syms_of_keyboard): DEFVAR_LISP it.
27309 (command_loop_1): Set it, and perform command remapping.
27310
27311 2002-02-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27312
27313 * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
27314
27315 2002-02-06 Jason Rumney <jasonr@gnu.org>
27316
27317 * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
27318
27319 2002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
27320
27321 * charset.c (get_charset_id): Use if-else instead of ?:.
27322
27323 2002-02-06 Richard M. Stallman <rms@gnu.org>
27324
27325 * filelock.c (S_ISLNK): Define if not defined.
27326
27327 2002-02-03 Richard M. Stallman <rms@gnu.org>
27328
27329 * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
27330
27331 * lread.c (read1): Redesign strategy for force_multibyte and
27332 force_singlebyte. Now is_multibyte records whether read_buffer
27333 is multibyte. Encountering any multibyte character makes it so.
27334
27335 2002-02-02 Stefan Monnier <monnier@cs.yale.edu>
27336
27337 * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
27338 with the same sequence, map that sequence to f10 rather than f0.
27339
27340 2002-02-03 Andreas Schwab <schwab@suse.de>
27341
27342 * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
27343 latter never being defined on GNU/Linux.
27344
27345 2002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
27346
27347 * xfaces.c (realize_default_face): Don't set the weight and slant of
27348 the default face to Qnormal, unless these attributes are unspecified.
27349
27350 2002-02-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27351
27352 * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
27353 Call cancel_hourglass unconditionally.
27354
27355 * eval.c (Fsignal): Remove duplicated declaration of
27356 the variable `display_hourglass_p'.
27357
27358 2002-01-31 Richard M. Stallman <rms@gnu.org>
27359
27360 * editfns.c (region_limit): Nicer error message.
27361
27362 * coding.c (decode_composition_emacs_mule):
27363 Give up if NCOMPONENT gets too large to index `component'.
27364
27365 * callint.c (check_mark): New arg to specify clearer error message.
27366 Callers changed.
27367
27368 2002-01-27 Richard M. Stallman <rms@gnu.org>
27369
27370 * minibuf.c (Fcompleting_read): Doc fix.
27371
27372 2002-01-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27373
27374 * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
27375 (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
27376 Fix doc-strings.
27377
27378 2002-01-26 Richard M. Stallman <rms@gnu.org>
27379
27380 * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
27381
27382 * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
27383 and scroll_up_aggressively.
27384
27385 2002-01-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27386
27387 * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
27388
27389 2002-01-25 Stefan Monnier <monnier@cs.yale.edu>
27390
27391 * textprop.c (Fnext_property_change, Fnext_single_property_change)
27392 (Fprevious_property_change, Fprevious_single_property_change):
27393 Stay within the narrowed-buffer boundaries.
27394
27395 2002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
27396
27397 * term.c (Ftty_display_color_cells): New function.
27398 (syms_of_term): Defsubr it.
27399 (Ftty_display_color_cells, Ftty_display_color_p): Change the
27400 argument name to DISPLAY. Doc fix.
27401
27402 * dispextern.h: Add prototype for set_tty_color_mode and
27403 tty_setup_colors.
27404
27405 2002-01-24 Jason Rumney <jasonr@gnu.org>
27406
27407 * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
27408 If region left to draw is not what was expected, mark the frame as
27409 garbaged.
27410
27411 * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
27412 Combine the regions returned by BeginPaint and GetUpdateRect.
27413
27414 2002-01-23 Jason Rumney <jasonr@gnu.org>
27415
27416 * w32term.c (x_update_window_begin): Only hide caret if
27417 w32_use_visible_system_caret is set.
27418 (x_update_window_end): Only show caret if
27419 w32_use_visible_system_caret is set.
27420 (syms_of_w32term): Handle SystemParametersInfo call failing.
27421
27422 * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
27423
27424 2002-01-22 Richard M. Stallman <rms@gnu.org>
27425
27426 * unexelf.c (unexec): Define n so as to cause compilation error
27427 for the code where people have often written n instead of nn.
27428
27429 * .gdbinit (hookpost-run): Defined.
27430
27431 2002-01-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
27432
27433 * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
27434
27435 2002-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
27436
27437 * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
27438 if fullscreen is being set.
27439
27440 2002-01-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27441
27442 * minibuf.c (Fminibuffer_contents)
27443 (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
27444 (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
27445
27446 2002-01-21 Richard M. Stallman <rms@gnu.org>
27447
27448 * window.c (check_frame_size): Fix minimum height calculation.
27449
27450 2002-01-20 Ken Raeburn <raeburn@gnu.org>
27451
27452 * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
27453 height before comparison.
27454 (WINDOW_WANTS_HEADER_LINE_P): Likewise.
27455
27456 2002-01-20 Jason Rumney <jasonr@gnu.org>
27457
27458 * w32term.c (w32_system_caret_width): Remove.
27459 (w32_use_visible_system_caret): New user flag.
27460 (syms_of_w32term): DEFVAR_BOOL it. Initialize based on whether
27461 Windows reports a screen reader running.
27462 (x_update_window_begin): Hide the system caret.
27463 (x_update_window_end): Show the system caret.
27464 (x_display_and_set_cursor): Don't draw a cursor when
27465 w32_use_visible_system_caret is set. Do not adjust width.
27466
27467 * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
27468 (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
27469 <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
27470 the user requests it. Use system default width when creating.
27471 <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
27472
27473 * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
27474 New window messages.
27475
27476 2002-01-20 Richard M. Stallman <rms@gnu.org>
27477
27478 * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
27479
27480 2002-01-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27481
27482 * doprnt.c (doprnt1): Fix typos in error call.
27483
27484 2002-01-20 Eli Zaretskii <eliz@is.elta.co.il>
27485
27486 * unexelf.c (unexec) [__sgi]: Support the .got sections.
27487
27488 2002-01-20 Jason Rumney <jasonr@gnu.org>
27489
27490 * w32term.c (w32_native_per_char_metric): Don't trust the metrics
27491 that Windows returns. If a double check fails, try to guess how
27492 ExtTextOut is going to act.
27493
27494 * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
27495 in place of stricmp.
27496 (w32_list_synthesized_fonts): Removed.
27497 (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
27498 (struct enumfont_t): New element; list.
27499 (enum_font_cb2): List all style and charset variations of a font.
27500 (Fw32_select_font): New optional argument; include_proportional.
27501 Exclude vertical fonts. Exclude proportional fonts unless
27502 include_proportional is non-nil.
27503 (w32_enable_synthesized_fonts): Change to a boolean.
27504 (Fw32_send_sys_command): Doc fix.
27505
27506 2002-01-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27507
27508 * dispnew.c (update_frame): Move the variable `tem' to the block
27509 where it is used.
27510
27511 2002-01-19 Jason Rumney <jasonr@gnu.org>
27512
27513 * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
27514 call to face-set-after-frame-default.
27515
27516 2002-01-18 Richard M. Stallman <rms@gnu.org>
27517
27518 * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
27519 (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
27520
27521 2002-01-17 Richard M. Stallman <rms@gnu.org>
27522
27523 * window.c (enlarge_window): When exceeding size of parent,
27524 directly delete all the siblings instead of trying to resize it.
27525
27526 2002-01-17 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27527
27528 * term.c (set_tty_color_mode): Remove unused variable `tem'.
27529
27530 2002-01-16 Henrik Enberg <henrik@enberg.org>
27531
27532 * lread.c (init_lread): Move the installed-lisp dirs later in the path.
27533
27534 2002-01-16 Kim F. Storm <storm@cua.dk>
27535
27536 * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
27537 is invisible. This can happen if cursor is on top line of a
27538 window, and we switch to a buffer with a header line.
27539
27540 * w32term.c (x_erase_phys_cursor): Ditto.
27541
27542 2002-01-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27543
27544 * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
27545 `dont_resize' only when used.
27546
27547 * xdisp.c: Remove forgotten extern declaration of `Qimage'.
27548
27549 2002-01-15 Eli Zaretskii <eliz@is.elta.co.il>
27550
27551 * xdisp.c (display_mode_element): When computing charpos, depend
27552 on multibyteness of elt, not the text in field.
27553
27554 2002-01-15 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27555
27556 * buffer.c (Fkill_all_local_variables):
27557 Increment `update_mode_lines' only once.
27558
27559 2002-01-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27560
27561 * lisp.h (adjust_after_replace_noundo)
27562 (Fupdate_coding_systems_internal): Add prototypes.
27563
27564 * sound.c (Fplay_sound): Initialize header_size also for :data case.
27565
27566 2002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
27567
27568 Support for the --color command-line argument and tty-color-mode
27569 frame parameter:
27570
27571 * term.c (tty_default_color_capabilities, tty_setup_colors)
27572 (set_tty_color_mode): New functions.
27573 (term_init): Call tty_default_color_capabilities.
27574 (Qtty_color_mode_alist): New variable.
27575 (syms_of_term): Intern and staticpro it.
27576
27577 * frame.c (store_frame_param): Call set_tty_color_mode for termcap
27578 frames.
27579 (do_switch_frame): For termcap frames, switch the tty
27580 color mode as specified by the frame's parameters.
27581 (Qtty_color_mode): New variable.
27582 (syms_of_frame): Intern and staticpro it.
27583
27584 * emacs.c (USAGE2): Add the --color option.
27585 (standard_args): Ditto.
27586
27587 2002-01-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
27588
27589 * xterm.h (struct x_output): New members want_fullscreen,
27590 x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
27591 y_pixels_outer_diff.
27592 New enum for FULLSCREEN_* constants.
27593 (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
27594 is NULL.
27595 (x_fullscreen_adjust): Add prototype.
27596
27597 * emacs.c (USAGE2): Add the new full-screen arguments.
27598 (standard_args): Ditto.
27599
27600 * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
27601 New variables.
27602 (syms_of_xfns): Intern and staticpro them.
27603 (x_frame_parms) <"fullscreen">: New parameter.
27604 (x_fullscreen_move, x_set_fullscreen): New functions.
27605 (x_set_frame_parameters): Support for Qfullscreen.
27606 (x_real_positions): More accurate computation of the frame position.
27607 (x_figure_window_size): Support full-screen frames.
27608 (Fx_create_frame): Default the fullscreen parameter.
27609
27610 * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
27611 (XTread_socket) <Expose>: Call x_check_fullscreen.
27612 <ConfigureNotify>: Don't resize to fullscreen.
27613 Call x_check_fullscreen_move, and set the want_fullscreen member of
27614 output_data.x.
27615
27616 2002-01-13 Jason Rumney <jasonr@gnu.org>
27617
27618 * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
27619 for mice with more than 3 buttons.
27620
27621 * w32term.c (parse_button): New parameter xbutton. Callers changed.
27622 (w32_read_socket): Handle new "XBUTTON" messages.
27623
27624 * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
27625 (syms_of_w32fns): DEFVAR_BOOL it.
27626 (w32_wnd_proc): Handle new "XBUTTON" messages.
27627
27628 2002-01-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27629
27630 * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
27631
27632 2002-01-13 Andreas Schwab <schwab@suse.de>
27633
27634 * xterm.c (x_load_font): Never set fonts_changed_p to zero.
27635
27636 2002-01-12 Andreas Schwab <schwab@suse.de>
27637
27638 * .gdbinit (xbuffer): Remove address operator since data is now a
27639 pointer.
27640
27641 2002-01-11 Richard M. Stallman <rms@gnu.org>
27642
27643 * insdel.c (adjust_after_replace_noundo): New function.
27644
27645 * coding.c (code_convert_region): Don't copy old text if undo disabled.
27646
27647 2002-01-09 Jason Rumney <jasonr@gnu.org>
27648
27649 * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
27650 when checking for multiple frames.
27651
27652 2002-01-08 Richard M. Stallman <rms@gnu.org>
27653
27654 * window.c (delete_window): Rewrite the code for changing the
27655 selected window to handle the case where WINDOW is not a leaf.
27656
27657 2002-01-07 Eli Zaretskii <eliz@is.elta.co.il>
27658
27659 * process.c (send_process): Set src_multibyte to 1 after the call
27660 top setup_coding_system, not before the call.
27661
27662 2002-01-07 Jason Rumney <jasonr@gnu.org>
27663
27664 * xmenu.c (set_frame_menubar, xmenu_show):
27665 (xdialog_show): Initialize wv->help to Qnil.
27666
27667 * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
27668 (w32_dialog_show): Initialize wv->help to Qnil.
27669
27670 2002-01-06 Jason Rumney <jasonr@gnu.org>
27671
27672 * xmenu.c (single_submenu): Initialize wv->help to Qnil.
27673
27674 * w32menu.c (w32_menu_display_help): Revert last change.
27675
27676 * xmenu.c (menu_highlight_callback): Revert last change.
27677
27678 2002-01-06 Andreas Schwab <schwab@suse.de>
27679
27680 * insdel.c (make_gap_larger): Make sure buffer size does not
27681 overflow range of int.
27682
27683 2002-01-05 Jason Rumney <jasonr@gnu.org>
27684
27685 * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
27686 OVERLAPS_P.
27687
27688 * w32menu.c (w32_menu_display_help): Hide any tooltip window.
27689
27690 * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
27691 to the left or to the right of the pointer, put it against
27692 the left screen edge.
27693 (x_frame_parms): Add missing braces around initializer.
27694
27695 * w32term.c (x_setup_relief_colors): Don't compute an image's
27696 background color if it doesn't have a Pixmap.
27697 (notice_overwritten_cursor): Don't depend on
27698 output_cursor and updated_area. Compare pixel coordinates with
27699 window's cursor pixel coordinates.
27700 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
27701 Call notice_overwritten_cursor with new arg list.
27702 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
27703 unconditionally.
27704 (x_draw_image_relief): Use predefined macro instead of
27705 constant when the value of `tool_bar_button_relief' is negative.
27706
27707 * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
27708
27709 2002-01-04 Richard M. Stallman <rms@gnu.org>
27710
27711 * xmenu.c (menu_highlight_callback): Hide any tooltip window.
27712
27713 2002-01-03 Richard M. Stallman <rms@gnu.org>
27714
27715 * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
27716 (Fkey_binding): Try the `keymap' property map first.
27717 (Fdescribe_buffer_bindings): Show `keymap' property bindings before
27718 minor mode bindings.
27719
27720 2002-01-03 Kim F. Storm <storm@cua.dk>
27721
27722 * keyboard.c (read_key_sequence): Fix cast of submaps arg to bcopy.
27723
27724 2002-01-02 Richard M. Stallman <rms@gnu.org>
27725
27726 * keyboard.c (read_key_sequence): Handle the keymap property
27727 before minor mode maps.
27728
27729 * editfns.c (Fformat): Update thissize from field_width
27730 based on the actual width, in the string case.
27731
27732 2002-01-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27733
27734 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
27735 when used as truth value to prevent gcc warnings.
27736
27737 * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
27738 * w32proc.c: Include <config.h>.
27739
27740 2002-01-01 Andreas Schwab <schwab@suse.de>
27741
27742 * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
27743 not EMACS_INT, to make them compatible with DEFVAR_INT.
27744 * lisp.h (max_specpdl_size): Adjust declaration.
27745
27746 2002-01-01 Richard M. Stallman <rms@gnu.org>
27747
27748 * print.c (print_object): Test print_escape_nonascii only for
27749 unibyte strings.
27750 (PRINTPREPARE): Once again bind Qprint_escape_nonascii
27751 when outputting to a multibyte buffer.
27752
27753 2001-12-29 Richard M. Stallman <rms@gnu.org>
27754
27755 * print.c (print_object): In multibyte string, use hex escapes.
27756 Use octal only for unibyte strings.
27757 (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
27758
27759 * lread.c (read_escape): New arg BYTEREP for reporting whether
27760 escape forces unibyte or multibyte.
27761 (read1): When reading a string, take note of that info.
27762
27763 2001-12-29 Ken Raeburn <raeburn@gnu.org>
27764
27765 * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
27766 comparison to test lisp value returned by Fget.
27767
27768 2001-12-29 Richard M. Stallman <rms@gnu.org>
27769
27770 * lisp.h (max_specpdl_size): Add declaration.
27771
27772 * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
27773
27774 * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
27775 Handle modifier bits. Correct typo in error message.
27776
27777 2001-12-28 Richard M. Stallman <rms@gnu.org>
27778
27779 * abbrev.c: Use the plist of an abbrev for multiple params if nec.
27780 (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
27781 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
27782 Update calls to Fdefine_abbrev.
27783 (write_abbrev): Update for changed data format.
27784 Don't list "system" abbrevs.
27785 (Fexpand_abbrev): Update use count with new data format.
27786 (describe_abbrev): Update for changed data format.
27787 (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
27788
27789 * config.in (HAVE_MBSINIT): Add #undef.
27790
27791 * strftime.c (mbsinit): Define as no-op if not available.
27792
27793 * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
27794 (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
27795
27796 * keymap.c (Flookup_key): Error message if key has wrong data type.
27797 (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
27798 (exclude_key): New variable.
27799
27800 2001-12-28 Gerd Moellmann <gerd@gnu.org>
27801
27802 * xterm.c (x_setup_relief_colors): Don't compute an image's
27803 background color if it doesn't have a Pixmap.
27804
27805 * xterm.c (notice_overwritten_cursor): Don't depend on
27806 output_cursor and updated_area. Compare pixel coordinates with
27807 window's cursor pixel coordinates.
27808 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
27809 Call notice_overwritten_cursor with new arg list.
27810 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
27811 unconditionally.
27812
27813 * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
27814 height of the cursor line to the amount to scroll.
27815
27816 2001-12-27 Richard M. Stallman <rms@gnu.org>
27817
27818 * intervals.c (set_point_both): The position after an invisible,
27819 intangible character is not an acceptable stopping point.
27820
27821 2001-12-27 Ken Raeburn <raeburn@gnu.org>
27822
27823 * window.c (enlarge_window): In new preserve_before code, convert
27824 CURBEG from lisp object to integer before doing arithmetic.
27825
27826 2001-12-27 Richard M. Stallman <rms@gnu.org>
27827
27828 * bytecode.c (Fbyte_code): Undo previous change.
27829
27830 2001-12-26 Kim F. Storm <storm@cua.dk>
27831
27832 * keyboard.c (record_char): Ignore duplicate help-echo events only
27833 separated by mouse-movement. When tracking mouse, only record
27834 first and last mouse-movement event in same window.
27835 Don't record mouse-movement events in keyboard macros.
27836
27837 2001-12-25 Richard M. Stallman <rms@gnu.org>
27838
27839 * window.c (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
27840 (Fenlarge_window): New arg PRESERVE_BEFORE.
27841
27842 * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
27843 instead of Fstring_as_unibyte.
27844
27845 2001-12-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27846
27847 The following changes remove mocklisp support:
27848
27849 * mocklisp.h, mocklisp.c: Files removed.
27850
27851 * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
27852 `Qmocklisp' and `Qmocklisp_arguments'.
27853 Remove prototype of syms_of_mocklisp.
27854
27855 * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
27856
27857 * callint.c: Do not include mocklisp.h.
27858 (Fcall_interactively): Do not test for mocklisp case.
27859
27860 * eval.c: Remove variables `Qmocklisp_arguments',
27861 `Vmocklisp_arguments' and `Qmocklisp'. Remove prototype of ml_apply.
27862 (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
27863 Do not test for mocklisp case.
27864 (Fwhile): Remove unused variable `tem'.
27865 (syms_of_eval): Remove variable `moclisp-arguments'.
27866
27867 * data.c (wrong_type_argument): Remove mocklisp case.
27868
27869 * doc.c (Fdocumentation): Remove mocklisp case.
27870
27871 * emacs.c (main): Do not call syms_of_mocklisp.
27872
27873 2001-12-21 Richard M. Stallman <rms@gnu.org>
27874
27875 * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
27876 to the left or to the right of the pointer, put it against
27877 the left screen edge.
27878
27879 2001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
27880
27881 * Makefile.in (distclean): Remove .gdbinit if we are building
27882 outside the source tree.
27883
27884 2001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
27885
27886 * w32.c (emacs_root_dir): New function.
27887
27888 * msdos.c (emacs_root_dir): New function.
27889
27890 * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
27891 of the current drive as the fallback for default_directory.
27892
27893 * dired.c (file_name_completion): Run the elements of
27894 completion-ignored-extensions through ENCODE_FILE.
27895
27896 * lisp.h (scmp): Remove prototype, since it's now a static
27897 function private to dired.c.
27898
27899 2001-12-18 Richard M. Stallman <rms@gnu.org>
27900
27901 * dired.c (scmp): Function moved from minibuf.c.
27902 Delete multibyte handling--used only on encoded strings.
27903
27904 * minibuf.c (scmp): Function moved to dired.c.
27905
27906 * fns.c (merge): Add QUIT call.
27907
27908 2001-12-18 Dave Love <fx@gnu.org>
27909
27910 * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
27911 language/georgian.el.
27912
27913 2001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
27914
27915 * Makefile.in (lisp, shortlisp): Synchronize with changes to
27916 lisp/Makefile.in:DONTCOMPILE.
27917
27918 2001-12-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
27919
27920 * xdisp.c (window_box_height): Do not return negative values.
27921 From Gerd Moellmann <gerd@gnu.org>.
27922
27923 * keyboard.c (head_table): Add missing braces around initializer.
27924
27925 * term.c (keys): Likewise.
27926
27927 * xfns.c (x_frame_parms, visual_classes): Likewise.
27928
27929 2001-12-17 Sam Steingold <sds@gnu.org>
27930
27931 * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
27932 patch (COMPOSING_P, not COMPOSING).
27933
27934 2001-12-17 Richard M. Stallman <rms@gnu.org>
27935
27936 * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
27937
27938 * coding.c (code_convert_region): Update coding->cmp_data->char_offset
27939 before calling decode_coding.
27940
27941 * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
27942
27943 * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
27944 instead of only for COMPOSITION_DISABLED.
27945
27946 2001-12-16 Richard M. Stallman <rms@gnu.org>
27947
27948 * alloc.c (pure_alloc): After overflow, allocate just a small block.
27949
27950 * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
27951
27952 * buffer.h (struct buffer): New field `display_error_modiff'.
27953 * buffer.c (reset_buffer): Initialize `display_error_modiff'.
27954
27955 * window.c (Frecenter): Clear display_error_modiff field.
27956
27957 * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
27958 Call redisplay_window, but not if display_error_modiff field says no.
27959 (redisplay_window_error): New function.
27960 (displayed_buffer): New variable.
27961 (redisplay_internal, redisplay_windows): Call the new functions
27962 instead of redisplay_window directly.
27963
27964 2001-12-15 Richard M. Stallman <rms@gnu.org>
27965
27966 * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
27967
27968 2001-12-14 Andrew Innes <andrewi@gnu.org>
27969
27970 * makefile.w32-in (EMACSLOADPATH): Define.
27971 ($(EMACS)): Run `list-load-path-shadows' after dumping Emacs.
27972 (bootstrap-temacs): Remove dependency on bootstrap-clean.
27973
27974 2001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
27975
27976 * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
27977 parameter have a numeric value all the time.
27978
27979 * w32fns.c (x_report_frame_params): Likewise.
27980
27981 2001-12-12 Richard M. Stallman <rms@gnu.org>
27982
27983 * fileio.c (Fwrite_region): Doc fix.
27984
27985 * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
27986 (redisplay_internal): Call clear_image_cache only for window terminals.
27987
27988 2001-12-12 Gerd Moellmann <gerd@gnu.org>
27989
27990 * xdisp.c (move_it_vertically_backward): Change heuristic
27991 for the case that we didn't move far enough initially.
27992
27993 * window.c (Frecenter): Simplify computation in the case of window
27994 system frames and ARG < 0; use window_box_height.
27995
27996 2001-12-11 Richard M. Stallman <rms@gnu.org>
27997
27998 * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
27999 * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
28000
28001 2001-12-11 Andrew Innes <andrewi@gnu.org>
28002
28003 * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
28004 arg is negative.
28005
28006 2001-12-11 Richard M. Stallman <rms@gnu.org>
28007
28008 * m/hp800.h: Split the __hpux conditional into the parts
28009 that are right for GNU/Linux too and the parts that are not.
28010 Use the former if GNU_LINUX.
28011 (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
28012
28013 * s/gnu-linux.h (GNU_LINUX): Defined.
28014
28015 2001-12-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28016
28017 * macros.c, msdos.c, w16select.c: Change doc-string comments to
28018 `new style' [w/`doc:' keyword].
28019
28020 2001-12-10 Jason Rumney <jasonr@gnu.org>
28021
28022 * w32menu.c (w32_free_submenu_strings): Clear menu item struct
28023 before using.
28024
28025 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28026
28027 * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
28028 keyword].
28029
28030 2001-12-09 Eli Zaretskii <eliz@is.elta.co.il>
28031
28032 * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
28033
28034 * s/hpux10.h (srand48): Don't undefine.
28035
28036 2001-12-09 Jason Rumney <jasonr@gnu.org>
28037
28038 * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
28039 Add comment to explain where the struct came from.
28040 (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
28041 (add_menu_item): Process pop-up menus first to avoid memory leak.
28042 (add_menu_item, w32_menu_display_help): Use `help' field as
28043 Lisp_Object.
28044 (w32_free_submenu_strings): Only free owner-drawn strings.
28045
28046 2001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28047
28048 * COPYING: Moved back.
28049
28050 * charset.c (char_to_string_1, translate_char, Fdefine_charset):
28051 Add parentheses around && within ||.
28052
28053 * indent.c (compute_motion): Likewise.
28054
28055 * intervals.c (merge_properties_sticky): Likewise.
28056
28057 * coding.c (setup_coding_system, shrink_encoding_region)
28058 (Fdecode_sjis_char): Likewise.
28059
28060 2001-12-07 Andreas Schwab <schwab@suse.de>
28061
28062 * xdisp.c (display_mode_element): Don't read past end of string if
28063 it ends with '%'.
28064
28065 * alloc.c (inhibit_garbage_collection): Don't exceed value an int
28066 can hold.
28067
28068 * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum):
28069 Rename from most_positive_fixnum and most_negative_fixnum, resp., and
28070 type changed to Lisp_Object.
28071 (syms_of_data): DEFVAR_LISP them.
28072
28073 2001-12-07 Richard M. Stallman <rms@gnu.org>
28074
28075 * callproc.c (init_callproc): Set Vdata_directory based on the source
28076 location whenever Emacs was run uninstalled.
28077
28078 2001-12-06 Paul Eggert <eggert@twinsun.com>
28079
28080 * config.in (HAVE_WORKING_VFORK): New #undefs.
28081 * process.c (create_process):
28082 Use HAVE_WORKING_VFORK, not HAVE_VFORK.
28083 * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
28084 * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
28085 * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
28086 * m/intel386.h (HAVE_VFORK): Likewise.
28087 * m/mips-siemens.h (HAVE_VFORK): Likewise.
28088 * m/mips.h (HAVE_VFORK): Likewise.
28089 * s/freebsd.h (vfork): Remove #define.
28090 * s/lynxos.h (HAVE_VFORK): Remove #undef.
28091 * s/usg5-4-2.h: Fix comment about vfork.
28092
28093 2001-12-06 Richard M. Stallman <rms@gnu.org>
28094
28095 * s/hpux10.h (random): Add undef.
28096 (HAVE_RANDOM): Define it just once.
28097
28098 2001-12-06 Stefan Monnier <monnier@cs.yale.edu>
28099
28100 * eval.c: Undo last change: the standard syntax is not wanted.
28101
28102 2001-12-06 Eli Zaretskii <eliz@is.elta.co.il>
28103
28104 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
28105 scroll bars of the frame before deleting the frame itself. If the
28106 frame has a widget, delete the frame with XtDestroyWidget, and do
28107 not call XDestroyWindow before that.
28108
28109 2001-12-06 Kim F. Storm <storm@cua.dk>
28110
28111 * xfns.c (x_report_frame_params): Return actual fringe widths.
28112
28113 * w32fns.c (x_report_frame_params): Return actual fringe widths.
28114
28115 2001-12-05 Andrew Innes <andrewi@gnu.org>
28116
28117 * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
28118 excessively large.
28119
28120 * insdel.c (make_gap_larger): New function.
28121 (make_gap_smaller): New function.
28122 (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]:
28123 Call make_gap_smaller if arg is negative.
28124
28125 2001-12-04 Stefan Monnier <monnier@cs.yale.edu>
28126
28127 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
28128 Pass a dummy argument when calling interrupt_signal.
28129 (parse_menu_item): Mark disabled items before checking for empty def.
28130 (read_char_minibuf_menu_prompt): Make safety more visible.
28131 (read_key_sequence): Add a `first_unbound' variable.
28132 Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
28133 unbound prefix as soon as we can detect it.
28134
28135 * doc.c (Fsnarf_documentation): Add prototype.
28136 (get_doc_string): Handle negative arguments.
28137 (Fdocumentation): Use AREF and ASIZE.
28138 Move the calls to get_doc_string to a single place.
28139 Don't confuse an interactive-spec for a docstring reference.
28140 (Fdocumentation_property): Take advantage of the fact that
28141 get_doc_string now ignores the sign of the docstring position.
28142
28143 * eval.c: Use standard syntax for usage in docstrings.
28144
28145 2001-12-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28146
28147 * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief' an option.
28148
28149 2001-12-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28150
28151 * xterm.c (x_draw_image_relief): Use predefined macro instead of
28152 constant when the value of `tool_bar_button_relief' is negative.
28153
28154 2001-12-02 Richard M. Stallman <rms@gnu.org>
28155
28156 * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
28157 (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
28158
28159 * fileio.c (read_non_regular): Delete Fsignal call.
28160
28161 2001-12-01 Stefan Monnier <monnier@cs.yale.edu>
28162
28163 * lisp.h (run_hook_list_with_args): Undo last change.
28164
28165 2001-12-01 Gerd Moellmann <gerd@gnu.org>
28166
28167 * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
28168
28169 2001-12-01 Jason Rumney <jasonr@gnu.org>
28170
28171 * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
28172
28173 * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
28174 [!WM_MOUSELEAVE]: Define.
28175
28176 * w32menu.c (current_popup_menu, get_menu_item_info):
28177 (set_menu_item_info): New vars.
28178 (set_frame_menubar): Doc fix clarifying GC interaction with menus.
28179 (w32_menu_show): Set current_popup_menu.
28180 (add_menu_item): Allocate new strings for owner-drawn menu items
28181 and help strings.
28182 Use owner-draw for disabled menu items again.
28183 (w32_menu_display_help): Ignore owner-drawn items and popup menus.
28184 (w32_free_submenu_strings, w32_free_menu_strings): New functions.
28185
28186 * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
28187 (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
28188 <WM_EXITMENULOOP>: Free menu strings.
28189 <WM_MOUSELEAVE>: Stop tracking mouse.
28190 (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
28191
28192 * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
28193 and mouse face.
28194
28195 2001-12-01 Kim F. Storm <storm@cua.dk>
28196
28197 The following changes add left-fringe and right-fringe
28198 frame parameters to adjust fringe widths, or remove one or
28199 both fringes.
28200
28201 * frame.h (struct frame): Remove trunc_area_pixel_width and
28202 trunc_area_cols fields.
28203 (Qleft_fringe, Qright_fringe): Declare.
28204 (FRAME_RIGHT_FRINGE_WIDTH): New macro.
28205
28206 * frame.c (Qleft_fringe, Qright_fringe): New vars.
28207 (syms_of_frame): Initialize them.
28208
28209 * window.c (coordinates_in_window): Handle separate left and right
28210 fringe widths.
28211
28212 * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
28213 and fringe_cols fields.
28214 (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
28215 (FRAME_X_FRINGE_COLS): Use fringe_cols field.
28216 (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
28217 (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
28218 (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
28219 (x_compute_fringe_widths): Add prototype.
28220
28221 * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
28222 fill fringe evenly with small dashes.
28223 (x_draw_fringe_bitmap): Clear background if necessary. Align and
28224 clip the new ZV bitmap to avoid jitter between rows.
28225 (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
28226 background. Don't draw fringe bitmaps if fringe width is zero.
28227 (x_compute_fringe_widths): New function.
28228 (x_new_font, x_set_window_size_1): Use it.
28229
28230 * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
28231 (x_set_frame_parameters): Process `font' parameter before other
28232 parameters as fringe widths depend on it.
28233 (x_set_fringe_width): New function.
28234 (x_figure_window_size): Use x_compute_fringe_widths.
28235 (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
28236 parameters.
28237
28238 * widget.c (set_frame_size): Use x_compute_fringe_widths.
28239 (EmacsFrameSetCharSize): Ditto.
28240
28241 * w32term.h: Merged changes from xterm.h.
28242 * w32term.c: Merged changes from xterm.c.
28243 * w32fns.c: Merged changes from xfns.c.
28244
28245 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28246
28247 * COPYING: Removed.
28248
28249 2001-11-29 Dave Love <fx@gnu.org>
28250
28251 * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
28252 extra extra slot.
28253 (detect_coding_mask): Fix call of detect_coding_iso2022.
28254
28255 2001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28256
28257 * fileio.c (file-name-coding-system)
28258 (default-file-name-coding-system): Doc fix (links to referenced
28259 variables added).
28260
28261 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
28262
28263 * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
28264 Add dummy uses of gcproN variables.
28265
28266 * category.c (describe_category, describe_category_1)
28267 (Fdescribe_categories): Remove. (Moved to lisp/help-fns.el.)
28268 (syms_of_category): Don't defsubr Sdescribe_categories.
28269
28270 2001-11-28 Richard M. Stallman <rms@gnu.org>
28271
28272 * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
28273
28274 * Makefile.in (lispdir): New variable, referring to build dir.
28275 (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
28276
28277 2001-11-28 Andrew Innes <andrewi@gnu.org>
28278
28279 * w32menu.c (w32_menu_display_help): Actually add the new argument
28280 OWNER.
28281
28282 2001-11-28 Jason Rumney <jasonr@gnu.org>
28283
28284 * w32menu.c (add_menu_item): Do not use owner-draw for disabled
28285 menu items. From David Ponce <dponce@wanadoo.fr>.
28286 (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
28287 conditionally.
28288 (w32_menu_display_help): New argument OWNER. Rewritten to store a
28289 help event in the owner frame's keyboard buffer.
28290
28291 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
28292 (Fx_show_tip): Don't subtract last width from row width.
28293
28294 * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
28295 (w32_read_socket): Use EQ to compare frames.
28296
28297 2001-11-28 Gerd Moellmann <gerd@gnu.org>
28298
28299 * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
28300 OVERLAPS_P.
28301
28302 2001-11-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28303
28304 * xdisp.c (message_dolog): Remove unused variables `gcpro2',
28305 `gcpro3' and `gcpro4'.
28306
28307 * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
28308
28309 2001-11-28 Stefan Monnier <monnier@cs.yale.edu>
28310
28311 * ccl.c: Use AREF and ASIZE.
28312
28313 2001-11-27 Stefan Monnier <monnier@cs.yale.edu>
28314
28315 * lisp.h (run_hook_list_with_args): Remove.
28316 (LIST_END_P): Fix call to wrong_type_argument.
28317 (make_fixnum_or_float): Use EMACS_INT rather than int.
28318
28319 2001-11-26 Stefan Monnier <monnier@cs.yale.edu>
28320
28321 * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
28322 (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
28323
28324 * eval.c: Use AREF and ASIZE.
28325 (Ffetch_bytecode): Add the file name to the error message.
28326
28327 * fileio.c (Ffind_file_name_handler): Give precedence to handlers
28328 which match the end of the file-name.
28329 (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
28330 is not a valid env var, but leave it as is instead.
28331
28332 * keymap.c (access_keymap): Handle t bindings like nil bindings.
28333 Make nil bindings in char-tables transparent.
28334 (store_in_keymap): Turn a nil binding into a t binding for char-tables.
28335
28336 2001-11-26 Richard M. Stallman <rms@gnu.org>
28337
28338 * textprop.c (set_text_properties_1): Allow START, END in either order.
28339 Do nothing if range is empty.
28340
28341 * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
28342
28343 * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
28344 (clean): Not here.
28345
28346 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
28347
28348 * textprop.c (set_text_properties_1): Clearly mark that the
28349 interval should not be empty.
28350
28351 * intervals.c (graft_intervals_into_buffer):
28352 Don't call set_text_properties_1 on an empty interval.
28353
28354 2001-11-25 Richard M. Stallman <rms@gnu.org>
28355
28356 * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
28357
28358 * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
28359 don't lose the data in it.
28360
28361 2001-11-25 Juanma Barranquero <lektu@terra.es>
28362
28363 * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
28364
28365 * buffer.c (Fkill_buffer): Likewise.
28366
28367 * print.c (temp_output_buffer_setup): Likewise.
28368
28369 2001-11-25 Stefan Monnier <monnier@cs.yale.edu>
28370
28371 * xfaces.c (merge_face_heights): Coerce back to int explicitly.
28372
28373 2001-11-25 Eli Zaretskii <eliz@is.elta.co.il>
28374
28375 * window.c (Fset_window_vscroll): Doc fix. From Kalle Olavi
28376 Niemitalo <kon@iki.fi>.
28377
28378 2001-11-25 Jason Rumney <jasonr@gnu.org>
28379
28380 * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
28381
28382 * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
28383 (Fx_show_tip): Block input during frame creation.
28384 (Fx_show_tip, Fx_hide_tip): Enable.
28385
28386 2001-11-24 Richard M. Stallman <rms@gnu.org>
28387
28388 * lread.c (Fload): Detect recursive load error for more than 3
28389 nestings of the same file.
28390 (Vrecursive_load_depth_limit): Variable deleted.
28391 (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
28392
28393 2001-11-24 Jason Rumney <jasonr@gnu.org>
28394
28395 * xfns.c (compute_tip_xy): Initialize root_x and root_y from
28396 mouse position if either left or top is not specified.
28397
28398 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
28399 <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
28400 (my_create_tip_window, Fx_show_tip): Adjust size for external border.
28401 (my_create_tip_window): Assign tip_window.
28402 (x_create_tip_frame): Use same defaults as X.
28403 (compute_tip_xy): Remove unused variable. Use full screen width.
28404 (Fx_show_tip): Do not double height. Call ShowWindow directly.
28405
28406 * w32term.c (x_after_update_window_line): Doc fix.
28407 (w32_read_socket): Doc fix. Avoid SET_FRAME_GARBAGED for tip
28408 frames.
28409 <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
28410
28411 * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
28412 for all Windowed systems.
28413
28414 2001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
28415
28416 * msdos.c (IT_clear_screen): If the frame's faces are not yet
28417 realized, use the initial screen colors to clear the screen.
28418
28419 2001-11-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28420
28421 * textprop.c (Fset_text_properties): Remove unused variables
28422 `unchanged', `prev_changed', `s' and `len'.
28423
28424 * search.c (Freplace_match): Remove unused variable `inslen'.
28425
28426 * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
28427
28428 2001-11-22 Jason Rumney <jasonr@gnu.org>
28429
28430 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
28431 (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
28432 (my_create_tip_window): New function.
28433 (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
28434 (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
28435
28436 2001-11-20 Jason Rumney <jasonr@gnu.org>
28437
28438 * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
28439 (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
28440
28441 * w32fns.c (Vw32_system_coding_system): Remove.
28442 (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
28443
28444 2001-11-19 Stefan Monnier <monnier@cs.yale.edu>
28445
28446 * fileio.c (Fwrite_region): Move choose_write_coding_system to
28447 after build_annotations.
28448
28449 * syntax.c (describe_syntax): Add dummy arg.
28450 (describe_syntax_1): Update call to describe_vector.
28451
28452 * category.c (describe_category): Add dummy arg.
28453 (describe_category_1): Update call to describe_vector.
28454
28455 * keymap.c (Fdescribe_vector): Add `describer' parameter.
28456 (describe_command, describe_translation): Add dummy second param.
28457 (describe_map): Call elt_describer with two arguments.
28458 (describe_vector_princ): Add `fun' parameter.
28459 Call it instead of the hardcoded `princ'.
28460 (describe_vector): Add arg `args'.
28461 Pass it as a new second argument to elt_describer.
28462
28463 * keymap.h (describe_vector): Update prototype.
28464
28465 * frame.c: Don't include keymap.h any more.
28466 (keys_of_frame): Remove.
28467
28468 * lisp.h (keys_of_frame): Remove declaration.
28469
28470 * emacs.c (main): Don't call `keys_of_frame' any more.
28471
28472 2001-11-14 Andreas Schwab <schwab@suse.de>
28473
28474 * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
28475 if defined, 0 otherwise.
28476 (MAP_FAILED): Define if not defined and use it to test mmap failure.
28477 (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
28478
28479 2001-11-19 Richard M. Stallman <rms@gnu.org>
28480
28481 * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
28482
28483 2001-11-18 Jason Rumney <jasonr@gnu.org>
28484
28485 * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
28486 (x_draw_bar_cursor): If the background color of the glyph under
28487 the cursor equals the frame's cursor color, use the glyph's
28488 foreground color for drawing the bar cursor.
28489 (x_after_update_window_line): Clear internal border in different
28490 circumstances.
28491 (w32_set_vertical_scroll_bar): Check for width and height > 0.
28492 (w32_draw_relief_rect): Correct relief by 1 pixel.
28493 (x_set_glyph_string_background_width):
28494 Set extends_to_end_of_line_p if the row's fill_line_p is set and
28495 drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
28496 (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
28497 if cursor_in_non_selected_windows is false.
28498 (show_mouse_face): Clean up. Recognize overwritten cursor differently.
28499 (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
28500 Notice if cursor gets overwritten.
28501 (notice_overwritten_cursor): Renamed from
28502 note_overwritten_text_cursor. Rewritten to take glyph widths
28503 into account, and to take X positions as parameters.
28504 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
28505 around call to x_draw_glyphs.
28506 (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
28507 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
28508 color to use for image glyph reliefs.
28509 (x_draw_image_relief): Accept zero tool_bar_button_relief.
28510 (glyph_rect): Remove unused variable `area'.
28511
28512 * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
28513 some items.
28514 (x_set_internal_border_width): Set frame garbaged when window
28515 doesn't exist yet.
28516 (Fx_create_frame): Accept zero tool_bar_button_relief.
28517 (x_clear_image_1, four_corners_best, image_background)
28518 (image_background_transparent): New functions.
28519 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
28520 (gs_format): Add `:background' entry.
28521 (lookup_image): Set IMG's background color if specified.
28522 (pbm_load, xbm_load_image, png_load): Set IMG's background field
28523 when appropriate.
28524 (x_clear_image_1): Reset `background_valid' and
28525 `background_transparent_valid' fields.
28526 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
28527 calculating it here. Set IMG's background_transparent field.
28528 (enum xpm_keyword_index): Add XPM_BACKGROUND.
28529 (enum png_keyword_index): Add PNG_BACKGROUND.
28530 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
28531 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
28532 (enum gif_keyword_index): Add GIF_BACKGROUND.
28533 (enum gs_keyword_index): Add GS_BACKGROUND.
28534 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
28535 Pre-calculate image background color where necessary.
28536 (x_create_x_image_and_pixmap, xbm_load, gs_load):
28537 Use display info's n_cbits entry for screen depth.
28538 (Fx_show_tip): Remove unused variables `buffer', `top',
28539 `left', `max_width' and `max_height'.
28540
28541 * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
28542
28543 2001-11-18 Gerd Moellmann <gerd@gnu.org>
28544
28545 * puresize.h (BASE_PURESIZE): Increase to 750000.
28546
28547 2001-11-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28548
28549 * frame.c (Fframe_live_p): Doc fix.
28550
28551 2001-11-18 Richard M. Stallman <rms@gnu.org>
28552
28553 * xdisp.c (message_dolog_marker1, message_dolog_marker2)
28554 (message_dolog_marker3): New static variables hold three markers.
28555 (syms_of_xdisp): Initialize and staticpro them.
28556 (message_dolog): Use message_dolog_marker1..3 instead of
28557 allocating markers each time. Unchain them when done.
28558
28559 2001-11-17 Richard M. Stallman <rms@gnu.org>
28560
28561 * doc.c (Fsnarf_documentation): Doc fix.
28562
28563 2001-11-17 Andreas Schwab <schwab@suse.de>
28564
28565 * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
28566
28567 2001-11-17 Richard M. Stallman <rms@gnu.org>
28568
28569 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
28570
28571 2001-11-17 Jason Rumney <jasonr@gnu.org>
28572
28573 * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
28574
28575 2001-11-17 Gerd Moellmann <gerd@gnu.org>
28576
28577 * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
28578 with invalid position.
28579
28580 2001-11-16 Richard M. Stallman <rms@gnu.org>
28581
28582 * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
28583
28584 * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
28585 * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
28586 * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
28587
28588 * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
28589
28590 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
28591
28592 * fileio.c (build_annotations): Split off the tail.
28593 (build_annotations_2): New fun. Extracted from build_annotations.
28594 (Fwrite_region): Split the call to build_annotations into two
28595 calls to build_annotations and build_annotations_2.
28596
28597 2001-11-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28598
28599 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
28600 clear_waiting_for_input with argument.
28601
28602 * xterm.h (x_update_cursor): Remove duplicated prototype.
28603
28604 * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
28605
28606 * xterm.c (waiting_for_input): Remove unnecessary declaration.
28607
28608 * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
28609
28610 2001-11-16 Stefan Monnier <monnier@cs.yale.edu>
28611
28612 * fileio.c (choose_write_coding_system): New fun, extracted
28613 from Fwrite_region.
28614 (Fwrite_region): Use it.
28615
28616 * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
28617 (funcall_lambda, run_hook_with_args): Make static and add prototype.
28618 (ml_apply, find_handler_clause): Add prototype.
28619
28620 2001-11-16 Eli Zaretskii <eliz@gnu.org>
28621
28622 * config.in: Add #undef HAVE_COFF_H.
28623
28624 * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
28625 Required for ISC 4.1.
28626
28627 2001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
28628
28629 * syswait.h (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
28630 Andrew Wiseman <a.wiseman@btclick.com>.
28631
28632 2001-11-16 Kim F. Storm <storm@cua.dk>
28633
28634 The following changes are made to clean up the various internal
28635 references to the fringes to actually use the term `fringe' for
28636 them. Previously, they were called `flags areas', `bitmap areas',
28637 `left/right side of windows', or implicitly as `flags' or
28638 `bitmaps':
28639
28640 * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
28641 Comments fixed. Use renamed symbols.
28642
28643 * dispnew.c: Comment fix. Use renamed symbols.
28644
28645 * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
28646 (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
28647 (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
28648
28649 * msdos.c: Comment fix.
28650
28651 * w32fns.c: Use renamed symbols.
28652
28653 * w32term.c: Comment fixes. Use renamed symbols.
28654 (fringe_bitmap_type): Renamed from bitmap_type.
28655 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
28656 (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
28657 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
28658
28659 * w32term.h: Comment fixes. Use renamed symbols.
28660 (fringes_extra): Renamed from flags_areas_extra.
28661 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
28662 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
28663 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
28664 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
28665 (FRAME_X_LEFT_FRINGE_WIDTH):
28666 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
28667 (FRAME_X_RIGHT_FRINGE_WIDTH):
28668 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
28669
28670 * widget.c: Use renamed symbols.
28671
28672 * window.c: Comment fixes. Use renamed symbols.
28673 (coordinates-in-window-p): Doc fix.
28674
28675 * xdisp.c: Comment fixes. Use renamed symbols.
28676
28677 * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
28678
28679 * xfns.c: Use renamed symbols.
28680
28681 * xterm.c: Comment fixes. Use renamed symbols.
28682 (fringe_bitmap_type): Renamed from bitmap_type.
28683 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
28684 (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
28685 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
28686
28687 * xterm.h: Comment fixes. Use renamed symbols.
28688 (fringes_extra): Renamed from flags_areas_extra.
28689 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
28690 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
28691 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
28692 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
28693 (FRAME_X_LEFT_FRINGE_WIDTH):
28694 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
28695 (FRAME_X_RIGHT_FRINGE_WIDTH):
28696 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
28697
28698 2001-11-15 Jason Rumney <jasonr@gnu.org>
28699
28700 * w32menu.c (add-menu-item): Make help_echo and radio buttons
28701 work for most menu items. From David Ponce
28702 <david.ponce@wanadoo.fr>.
28703
28704 2001-11-15 Gerd Moellmann <gerd@gnu.org>
28705
28706 * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
28707 Some x_set_* function expect to be called even if old and new
28708 value are equal.
28709
28710 * xdisp.c (build_desired_tool_bar_string): Accept zero
28711 tool_bar_button_relief.
28712
28713 * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
28714
28715 * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
28716
28717 * xterm.c (x_draw_bar_cursor): If the background color of the
28718 glyph under the cursor equals the frame's cursor color, use
28719 the glyph's foreground color for drawing the bar cursor.
28720
28721 * dispnew.c (direct_output_forward_char): Fix character/byte
28722 position comparison.
28723
28724 2001-11-15 Miles Bader <miles@gnu.org>
28725
28726 * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
28727 (Fdelete_field, Ffield_string, Ffield_string_no_properties):
28728 Update arguments to find_field.
28729 (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
28730 (Fconstrain_to_field): Use LIMIT arg to shorten search time.
28731 * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
28732 * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
28733
28734 2001-11-14 Richard M. Stallman <rms@gnu.org>
28735
28736 * editfns.c (Fpropertize): Allow call with 1 arg.
28737
28738 * dispextern.h (image_background, image_background_transparent):
28739 Conditionalize on HAVE_X_WINDOWS.
28740
28741 2001-11-13 Richard M. Stallman <rms@gnu.org>
28742
28743 * print.c (Fprin1_to_string): Doc fix.
28744
28745 * sunfns.c (Fsun_change_cursor_icon): Doc fix.
28746
28747 * floatfns.c (Fceiling, Ffloor): Doc fixes.
28748
28749 * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
28750
28751 * fileio.c (Ffile_accessible_directory_p): Doc fix.
28752
28753 * eval.c (syms_of_eval): Doc fix.
28754
28755 * coding.c (syms_of_coding): Doc fix.
28756
28757 * doc.c (Fsnarf_documentation): Doc fix.
28758
28759 * dispnew.c (syms_of_display): Doc fix.
28760
28761 * category.c (Fget_unused_category): Doc fix.
28762
28763 * buffer.c (syms_of_buffer): Doc fixes.
28764
28765 2001-11-14 Eli Zaretskii <eliz@is.elta.co.il>
28766
28767 * print.c (prin1, print): Doc fix.
28768
28769 2001-11-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28770
28771 * fontset.h: Remove declarations of variables
28772 `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
28773
28774 * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
28775 `Vclip_large_size_font'.
28776
28777 2001-11-13 Jason Rumney <jasonr@gnu.org>
28778
28779 * w32fns.c: Doc fix.
28780
28781 2001-11-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28782
28783 * xfaces.c (Fface_attributes_as_vector): Doc fix.
28784
28785 * fns.c: Doc fix.
28786
28787 * emacs.c: Doc fix.
28788
28789 * coding.c: Doc fix.
28790
28791 * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
28792 * fontset.c, insdel.c, keymap.c: Change doc-string comments to
28793 `new style' [w/`doc:' keyword].
28794
28795 2001-11-12 Richard M. Stallman <rms@gnu.org>
28796
28797 * xterm.c (XTread_socket): Don't update focus for EnterNotify or
28798 LeaveNotify events. Only FocusIn and FocusOut do that now.
28799 (x_display_and_set_cursor): Do display hollow cursors in active
28800 minibuffer windows when they are not selected.
28801
28802 2001-11-12 Jason Rumney <jasonr@gnu.org>
28803
28804 * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
28805 * w32term.c: Change doc-string comments to `new style'
28806 [w/`doc:' keyword]. Doc fixes.
28807
28808 * w32fns.c: Don't define max.
28809 (Fx_open_connection): Only execute once.
28810
28811 2001-11-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28812
28813 * ccl.c: Change macros to use do-while block instead of if-else.
28814 Use braces to follow GNU Coding Standards.
28815
28816 2001-11-11 Richard M. Stallman <rms@gnu.org>
28817
28818 * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
28819
28820 * lread.c (read_escape): Use end_of_file_error for reporting eof.
28821
28822 * insdel.c (replace_range): Use adjust_markers_for_replace
28823 instead of adjust_markers_for_delete and adjust_markers_for_insert.
28824
28825 * intervals.h (set_text_properties, set_text_properties_1): Declare.
28826
28827 * textprop.c (set_text_properties_1): New subroutine
28828 broken out of set_text_properties.
28829 (set_text_properties): Use set_text_properties_1.
28830
28831 * intervals.c (graft_intervals_into_buffer):
28832 Use set_text_properties_1 to clear out properties.
28833
28834 * search.c (Freplace_match): Use replace_range to insert
28835 and delete. Don't request property inheritance from
28836 surrounding text.
28837
28838 2001-11-10 Jason Rumney <jasonr@gnu.org>
28839
28840 * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
28841 vertical fonts. Allow them if face name is explicitly specified.
28842 Do not give up if we find a font that cannot be converted to an xlfd.
28843
28844 2001-11-10 Gerd Moellmann <gerd@gnu.org>
28845
28846 * unexelf.c (unexec): Use mmap/munmap to allocate buffers
28847 instead of malloc/free.
28848
28849 2001-11-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28850
28851 * xfaces.c (merge_face_vectors): Use braces to follow GNU
28852 Coding Standards.
28853 (Finternal_set_lisp_face_attribute): Likewise.
28854
28855 * buffer.c (Fbury_buffer): Likewise.
28856
28857 * indent.c (current_column_1): Remove unused variable `prev_col'.
28858
28859 * coding.c (encode_coding): Use precomputed value of `src'.
28860 (encode_coding): Remove unused variable `src_end'.
28861 (code_convert_region): Remove unused variables `count'.
28862
28863 2001-11-07 Jason Rumney <jasonr@gnu.org>
28864
28865 * w32term.c (x_display_and_set_cursor): Do not move system caret
28866 if cursor_glyph is NULL.
28867
28868 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28869
28870 * keymap.c (access_keymap): Fix compilation error.
28871
28872 2001-11-07 Miles Bader <miles@gnu.org>
28873
28874 * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
28875
28876 2001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28877
28878 * intervals.c (graft_intervals_into_buffer):
28879 Remove #ifdef'd-out code.
28880 (graft_intervals_into_buffer): Remove unused variable `middle'.
28881
28882 * lread.c (Feval_region): Remove obsolete #ifdef'd-out
28883 code (eval-current-buffer).
28884 Change doc-string comments to `new style' [w/`doc:' keyword].
28885
28886 2001-11-06 Richard M. Stallman <rms@gnu.org>
28887
28888 * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
28889
28890 2001-11-06 Stefan Monnier <monnier@cs.yale.edu>
28891
28892 * lread.c (read1): Fix behavior with nested backquoting.
28893
28894 * keyboard.c (make_lispy_event): Check integerness and fix
28895 Lisp_Object/int mixup.
28896
28897 2001-11-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28898
28899 * fns.c (copy_hash_table): Remove unused variable `v'.
28900
28901 * fontset.c (fontset_font_pattern): Remove unused variable
28902 `family_registry'.
28903
28904 * indent.c (current_column_1): Remove unused variable `prev_col'.
28905
28906 2001-11-05 Richard M. Stallman <rms@gnu.org>
28907
28908 * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
28909
28910 * buffer.c (Fkill_buffer): Don't delete auto save file
28911 if buffer is modified.
28912
28913 2001-11-05 Andrew Innes <andrewi@gnu.org>
28914
28915 * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
28916 CHECK_NUMBER_CDR.
28917
28918 2001-11-05 Richard M. Stallman <rms@gnu.org>
28919
28920 * unexelf.c (unexec): Minor changes; clean up comments.
28921
28922 2001-11-05 Sam Steingold <sds@gnu.org>
28923
28924 * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
28925
28926 2001-11-05 Andreas Schwab <schwab@suse.de>
28927
28928 * sound.c (sound_perror): Save errno from being clobbered.
28929
28930 2001-11-05 Dale Hagglund <rdh@yottayotta.com>
28931
28932 * unexelf.c (unexec): Don't use `mmap'. Instead, read and write
28933 the program image directly.
28934
28935 2001-11-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28936
28937 * buffer.h (Fbuffer_local_value): Add prototype.
28938
28939 2001-11-04 Richard M. Stallman <rms@gnu.org>
28940
28941 * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
28942 and CHECK_BUFFER.
28943
28944 * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
28945 (record_char): Likewise.
28946
28947 * keyboard.c (make_lispy_event): Don't insist a drag event must
28948 move to a different buffer position. Instead, check for moving at
28949 least double_click_fuzz.
28950
28951 * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
28952
28953 * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
28954
28955 * indent.c (current_column_1, Fmove_to_column): Separate the code
28956 for display-table glyphs from the code for buffer text, to fix
28957 bugs in the former.
28958
28959 2001-11-04 Michael Welsh Duggan <md5i@cs.cmu.edu>
28960
28961 * buffer.c (Fbuffer_local_value): New function.
28962 (syms_of_buffer): Defsubr it.
28963
28964 * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
28965 value of `cursor-in-non-selected-windows'.
28966
28967 * lisp.h (Qcursor_in_non_selected_windows): New declaration.
28968 * xdisp.c (Qcursor_in_non_selected_windows): New variable.
28969 (syms_of_xdisp): Initialize it.
28970
28971 2001-11-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
28972
28973 * xfns.c (Fx_create_frame): Doc fix.
28974
28975 * coding.c: Change doc-string comments to `new style' [w/`doc:'
28976 keyword].
28977
28978 * eval.c (top_level_value, top_level_set): Remove commented and
28979 #ifdef'd-out code.
28980 (Fdefvar): Fix usage in doc-string.
28981
28982 2001-11-03 Richard M. Stallman <rms@gnu.org>
28983
28984 * xfns.c: Include unistd.h, if it exists.
28985
28986 * editfns.c: Move the include of ctype.h after unistd.h.
28987
28988 * gmalloc.c: Test BROKEN_PROTOTYPES.
28989
28990 2001-11-03 Ken Raeburn <raeburn@gnu.org>
28991
28992 * lisp.h (CHECK_STRING_CAR): New macro.
28993 * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
28994 treating XCAR and XCDR as lvalues.
28995 (openp): Use CHECK_STRING_CAR.
28996 (read_list): Use XSETCDR instead of treating XCDR as lvalue.
28997
28998 2001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
28999
29000 * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
29001 (SIGMASKTYPE): Define.
29002
29003 * syssignal.h (sigunblock): Don't define if already defined.
29004
29005 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29006
29007 * eval.c (debugger_may_continue, Vdebug_ignored_errors)
29008 (call_debugger, Fcondition_case, skip_debugger, unbind_to):
29009 Fix typos in comments.
29010
29011 * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
29012 and #ifdef'd-out code.
29013 Fix and reindent comments.
29014
29015 * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
29016
29017 * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
29018 argument `i' in macros.
29019
29020 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
29021 `i' in macros.
29022
29023 * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
29024 (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
29025 (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
29026 (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
29027 (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
29028 (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
29029 (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
29030 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
29031 in macros.
29032
29033 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
29034 * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
29035 * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
29036 * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
29037 * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
29038 * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
29039 * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
29040 * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
29041 * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
29042 (remove unused second argument).
29043
29044 2001-11-02 Stefan Monnier <monnier@cs.yale.edu>
29045
29046 * syntax.c (describe_syntax): New wrapper.
29047 (Finternal_describe_syntax_value): Rename from describe_syntax.
29048 Don't insert space at front and \n at the end.
29049 (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
29050
29051 * regex.c (re_wctype): Try to fix some warnings.
29052 (regcomp, regexec): Don't forget the __restrict.
29053
29054 2001-11-02 Richard M. Stallman <rms@gnu.org>
29055
29056 * textprop.c (Fget_char_property): Doc fix.
29057
29058 2001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29059
29060 * process.c (Fstart_process): Add usage to doc-string.
29061
29062 * data.c (Fsetq_default): Ditto.
29063
29064 * callint.c (Finteractive): Ditto.
29065
29066 2001-11-01 Stefan Monnier <monnier@cs.yale.edu>
29067
29068 * macros.c: Don't include keymap.h any more.
29069
29070 2001-11-01 Richard M. Stallman <rms@gnu.org>
29071
29072 * data.c (Fmake_local_variable): Doc fix.
29073
29074 * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
29075 (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
29076
29077 * keymap.c (Fdescribe_buffer_bindings): Print character property
29078 bindings along with or instead of the buffer local map.
29079 Make the overriding maps override what they should.
29080
29081 2001-11-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29082
29083 * window.c (grow_mini_window): Fix typo in comment.
29084
29085 2001-11-01 Gerd Moellmann <gerd@gnu.org>
29086
29087 * xterm.c (x_scroll_bar_create): Check for width and height > 0.
29088 (XTset_vertical_scroll_bar): Likewise.
29089
29090 * xfns.c (x_build_heuristic_mask): Use four_corners_best
29091 instead of IMAGE_BACKGROUND.
29092
29093 * xfns.c (four_corners_best): Reindent.
29094
29095 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
29096 Handle :box so that it is possible to specify sexprs.
29097
29098 2001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
29099
29100 * s/hpux11.h: New file.
29101
29102 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29103
29104 * emacs.c (USAGE1): Show command line option --no-window-system
29105 instead of --no-windows in usage.
29106 (standard_args): Rename --no-windows to --no-window-system.
29107 (bug_reporting_address): Follow Emacs coding conventions.
29108
29109 * eval.c (Fcommandp): Doc fix.
29110 Change doc-string comments to `new style' [w/`doc:' keyword].
29111
29112 * frame.c (Fframe_live_p): Doc fix.
29113
29114 * buffer.c (selective-display-ellipses): Doc fix.
29115
29116 2001-10-31 Gerd Moellmann <gerd@gnu.org>
29117
29118 * lread.c (to_multibyte): Fix computation of new read_buffer_size.
29119
29120 * xfaces.c (realize_x_face): If C is not a single-byte character,
29121 set the face's colors_copied_bitwise_p instead of the defaulted_p
29122 members which have a different meaning.
29123 (free_face_colors): Do nothing for a face whose colors have been
29124 copied bitwise.
29125
29126 * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
29127
29128 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29129
29130 * marker.c, mocklisp.c: Change doc-string comments to `new style'
29131 [w/`doc:' keyword].
29132
29133 2001-10-31 Gerd Moellmann <gerd@gnu.org>
29134
29135 * fns.c (require_unwind): Return Lisp_Object.
29136
29137 2001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29138
29139 * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
29140 (last-input-char): Revert doc-string to be the same as the
29141 doc-string of `last-input-event'.
29142
29143 * xdisp.c: Fix typos in comments.
29144
29145 2001-10-31 Gerd Moellmann <gerd@gnu.org>
29146
29147 * window.c (grow_mini_window): Handle case that the root
29148 window is already smaller than the nominal mininum height.
29149
29150 2001-10-30 Stefan Monnier <monnier@cs.yale.edu>
29151
29152 * emacs.c (main): Don't call keys_of_macros any more.
29153
29154 * lisp.h (keys_of_macros): Remove.
29155
29156 * macros.c (keys_of_macros): Remove.
29157
29158 * xfaces.c (Fface_attribute_relative_p): Declare args.
29159
29160 2001-10-30 Jason Rumney <jasonr@gnu.org>
29161
29162 * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
29163 (enum_font_cb2): Ignore fonts with vertical orientation.
29164
29165 2001-10-30 Richard M. Stallman <rms@gnu.org>
29166
29167 * keyboard.c (Finput_pending_p): Doc fix.
29168
29169 2001-10-30 Gerd Moellmann <gerd@gnu.org>
29170
29171 * xterm.c (x_after_update_window_line): Don't run the code
29172 clearing in borders for rows whose visible height is 0.
29173
29174 * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
29175 resized_p flag is set. If not set, use the much less flickering
29176 method previously used.
29177
29178 * dispnew.c (change_frame_size_1): Set frame's resized_p.
29179
29180 * frame.h (struct frame) <resized_p>: New member.
29181
29182 * lread.c (to_multibyte): Ensure read_buffer is at least twice
29183 as large as the number of bytes to convert.
29184
29185 * lread.c (to_multibyte): New function.
29186 (read1): Use it.
29187
29188 2001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
29189
29190 * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
29191
29192 2001-10-30 Gerd Moellmann <gerd@gnu.org>
29193
29194 * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
29195 (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
29196 if the row's fill_line_p is set and drawing the last glyph with
29197 DRAW_IMAGE_{RAISED,SUNKEN}.
29198
29199 * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
29200
29201 2001-10-29 Stefan Monnier <monnier@cs.yale.edu>
29202
29203 * xmenu.c: Include coding.h and charset.h.
29204 (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
29205 (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
29206 (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
29207 Explicitly set wv->help. Use `TRUE' rather than `True'.
29208 (menu_help_callback): Use empty_string.
29209
29210 * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
29211 (Fx_popup_dialog): Explicitly init f.
29212 (w32_menu_display_help): Use empty_string.
29213
29214 2001-10-29 Richard M. Stallman <rms@gnu.org>
29215
29216 * fns.c (Frequire): Detect recursive try to require the same
29217 feature 3 or more levels deep, and get error.
29218 (require_unwind): New subroutine.
29219 (require_nesting_list): New variable.
29220 (syms_of_fns): Init and staticpro it.
29221
29222 * print.c (print_object): Clarify indication of insertion type.
29223
29224 2001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
29225
29226 * coding.c (syms_of_coding): Document that locale-coding-system is
29227 used for decoding input on X.
29228
29229 * window.c (Fscroll_left, Fscroll_right): Doc fix.
29230
29231 2001-10-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29232
29233 * keyboard.c (Finput_pending_p): Fix typo in doc-string.
29234 (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
29235
29236 2001-10-29 Gerd Moellmann <gerd@gnu.org>
29237
29238 * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
29239 use NO_CURSOR if cursor_in_non_selected_windows is false.
29240
29241 * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
29242 the slant attribute if FRAME is t.
29243
29244 * xfns.c (x_set_internal_border_width): Set frame garbaged
29245 when X window doesn't exist yet.
29246
29247 * xterm.c (x_after_update_window_line): Clear internal border
29248 in different circumstances.
29249
29250 * xterm.c (XTread_socket) <KeyPress>: Don't use
29251 STRING_CHAR_AND_LENGTH if nchars == nbytes. From Kenichi Handa
29252 <handa@etl.go.jp>.
29253
29254 2001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
29255
29256 * m/ibms390.h: New file. From Adam Thornton
29257 <athornton@sinenomine.net>.
29258
29259 2001-10-28 Gerd Moellmann <gerd@gnu.org>
29260
29261 * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
29262
29263 * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
29264 a loop counter.
29265
29266 2001-10-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29267
29268 * emacs.c: Use argv[0] instead of "emacs" when -t was specified.
29269
29270 * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
29271 keyword].
29272 Fix typos in comments.
29273
29274 * emacs.c (bug_reporting_address): New function.
29275 Use it when displaying usage message.
29276
29277 * minibuf.c (read_minibuf): Remove unused external declaration of
29278 variable `Qread_only'.
29279
29280 * keymap.c (access_keymap): Remove unused variable `charset'.
29281
29282 2001-10-28 Miles Bader <miles@gnu.org>
29283
29284 * xfaces.c (merge_face_heights): Handle TO being relative as well.
29285 Remove #ifdef'd-out code.
29286 (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
29287 (syms_of_xfaces): Initialize them.
29288
29289 2001-10-27 Jason Rumney <jasonr@gnu.org>
29290
29291 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
29292 <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
29293 position using the system caret.
29294
29295 * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
29296 (w32_system_caret_height, w32_system_caret_x)
29297 (w32_system_caret_y): New variables for tracking system caret.
29298 (w32_initialize): Initialize them.
29299 (x_display_and_set_cursor): Make system caret follow the active cursor.
29300
29301 * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
29302 New messages types.
29303
29304 * w32term.c (note_mouse_highlight): Clear old help_echo.
29305
29306 2001-10-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29307
29308 * xterm.c: Fix typo in a comment.
29309
29310 * emacs.c: Fix typos in comments.
29311 Remove unnecessary spaces.
29312 Change doc-string comments to `new style' [w/`doc:' keyword].
29313 (USAGE2): Fix typos in usage string.
29314
29315 * xterm.c: Fix typo in a comment.
29316
29317 * lisp.h (gdb_lisp_params): Remove code in #if 0 which is now in
29318 emacs.c.
29319
29320 2001-10-27 Gerd Moellmann <gerd@gnu.org>
29321
29322 * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
29323 instead of 1/2 line_height in the heuristic for skipping
29324 farther backward when target_y was not reached.
29325
29326 * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
29327 Display errno only if non-zero.
29328 (sound_warning): New function.
29329 (vox_configure): Don't treat failing to set sample rate as error.
29330 (various places): Improve error messages.
29331
29332 2001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
29333
29334 * fileio.c (Faccess_file): Run the argument filename through
29335 Fexpand_file_name, before using it.
29336
29337 * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
29338 ring-bell-function. Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
29339
29340 2001-10-26 Gerd Moellmann <gerd@gnu.org>
29341
29342 * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
29343
29344 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
29345 Fix clearing in the case of scroll bars on the right.
29346
29347 2001-10-26 Juanma Barranquero <lektu@terra.es>
29348
29349 * w32gui.h (XImage): Add a dummy typedef.
29350
29351 2001-10-26 Gerd Moellmann <gerd@gnu.org>
29352
29353 * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
29354
29355 2001-10-25 Eli Zaretskii <eliz@is.elta.co.il>
29356
29357 * frame.c (Fframe_parameter): Fix last change.
29358
29359 * fileio.c: Revert last change (which removed old commented-out
29360 version of expand-file-name). Add a comment that explains why
29361 this old version should not be removed.
29362
29363 2001-10-25 Gerd Moellmann <gerd@gnu.org>
29364
29365 * frame.c (Fframe_parameter): Fix a bug whereby some
29366 ``artificial'' frame parameters, like `minibuffer' were not
29367 obtained by calling Fframe_parameters.
29368
29369 * xterm.c (show_mouse_face): Clean up. Recognize overwritten
29370 cursor differently.
29371
29372 * xdisp.c (move_it_vertically_backward): Compute line height
29373 differently. Add heuristic to try to be more compatible to 20.x.
29374
29375 2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
29376
29377 * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
29378
29379 * editfns.c (text_property_stickiness): Fix Lisp_Object used as
29380 boolean.
29381
29382 2001-10-25 Miles Bader <miles@gnu.org>
29383
29384 * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
29385 BG is a pointer to a structure, not a structure.
29386 (gif_format, png_format): Add missing commas.
29387
29388 2001-10-24 Richard M. Stallman <rms@gnu.org>
29389
29390 * xfaces.c (Fface_attributes_as_vector): New function.
29391 (syms_of_xfaces): Defsubr it.
29392
29393 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29394
29395 * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
29396 variable `area'.
29397
29398 2001-10-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29399
29400 * search.c (scan_newline): Remove unused variable `selective_display'.
29401
29402 2001-10-25 Miles Bader <miles@gnu.org>
29403
29404 * dispextern.h (struct image): Add `background',
29405 `background_valid', and `background_transparent' fields.
29406 (image_background, image_background_transparent): New declarations.
29407 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
29408 * xfns.c (image_background, image_background_transparent)
29409 (four_corners_best): New functions.
29410 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
29411 (gs_format): Add `:background' entry.
29412 (lookup_image): Set IMG's background color if specified.
29413 (pbm_load, xbm_load_image, png_load): Set IMG's background field
29414 when appropriate.
29415 (x_clear_image_1): Reset `background_valid' and
29416 `background_transparent_valid' fields.
29417 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
29418 calculating it here. Set IMG's background_transparent field.
29419 (enum xpm_keyword_index): Add XPM_BACKGROUND.
29420 (enum png_keyword_index): Add PNG_BACKGROUND.
29421 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
29422 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
29423 (enum gif_keyword_index): Add GIF_BACKGROUND.
29424 (enum gs_keyword_index): Add GS_BACKGROUND.
29425 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
29426 Pre-calculate image background color where necessary.
29427 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
29428 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
29429 color to use for image glyph reliefs.
29430
29431 2001-10-24 Gerd Moellmann <gerd@gnu.org>
29432
29433 * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
29434 in full-width rows.
29435
29436 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
29437 Fix clearing of area not covered by scroll bar.
29438
29439 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29440
29441 * xterm.c (x_insert_glyphs): Remove unused variables `real_end'
29442 and `real_start'.
29443 (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
29444 (glyph_rect): Remove unused variable `area'.
29445
29446 2001-10-24 Gerd Moellmann <gerd@gnu.org>
29447
29448 * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
29449
29450 * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
29451 (row_containing_pos): Take additional argument DY.
29452 Treat rows ending in middle of char differently.
29453 (display_line): Handle tabs on window systems differently.
29454
29455 * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
29456 with additional argument.
29457
29458 * dispextern.h (row_containing_pos): Adjust prototype.
29459
29460 * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
29461 (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
29462 (try_window_id, try_window_reusing_current_matrix)
29463 (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
29464 (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
29465
29466 2001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29467
29468 * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
29469 gnuemacs).
29470 (HAVE_BOXES): Fix typo in comment.
29471 (push_menu_pane): Fix typo in comment.
29472
29473 * xdisp.c (display_prop_string_p): Remove unused local declaration
29474 of `Qwhen'.
29475 (single_display_prop_string_p): Remove unused local declarations
29476 of `Qwhen' and `Qmargin'.
29477 (string_buffer_position): Remove unused variable `around'.
29478 (store_frame_title): Remove unused variable `width'.
29479
29480 * window.c: Don't define max.
29481 (coordinates_in_window): Remove unused variable `uy'.
29482
29483 * widget.c: Don't define max.
29484
29485 * process.c: Don't define max.
29486 (create_process): Remove unused variable `buffer'.
29487
29488 2001-10-23 Gerd Moellmann <gerd@gnu.org>
29489
29490 * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
29491
29492 2001-10-23 Eli Zaretskii <eliz@is.elta.co.il>
29493
29494 * xfaces.c (Finternal_set_lisp_face_attribute)
29495 [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
29496 frame is on a windowed display.
29497
29498 2001-10-23 Gerd Moellmann <gerd@gnu.org>
29499
29500 * dispnew.c (sync_window_with_frame_matrix_rows):
29501 Fix handling of windows which aren't full-width, fix handling
29502 of marginal areas.
29503
29504 * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
29505
29506 2001-10-23 Andreas Schwab <schwab@suse.de>
29507
29508 * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
29509 LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
29510
29511 2001-10-23 Gerd Moellmann <gerd@gnu.org>
29512
29513 * xterm.c (x_draw_glyphs): Remove parameters READ_START and
29514 REAL_END. Notice if cursor gets overwritten.
29515 (notice_overwritten_cursor): Take X positions as parameters.
29516 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
29517 around call to x_draw_glyphs.
29518
29519 2001-10-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29520
29521 * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
29522 instead of C) and usage.
29523
29524 * editfns.c (char-to-string): Fix argument names (use CHAR instead
29525 of C) and usage.
29526
29527 * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
29528 `left', `max_width' and `max_height'.
29529
29530 2001-10-23 Gerd Moellmann <gerd@gnu.org>
29531
29532 * xdisp.c (display_line): For a tab continued to the next line,
29533 set row's ends_in_middle_of_char_p.
29534
29535 2001-10-22 Gerd Moellmann <gerd@gnu.org>
29536
29537 * xdisp.c (display_line): Fix computation of continuation lines
29538 width for TABs.
29539
29540 2001-10-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29541
29542 * xdisp.c (build_desired_tool_bar_string): Remove unused variable
29543 `Qlaplace'.
29544
29545 * fileio.c: Remove unused code.
29546
29547 2001-10-22 Miles Bader <miles@gnu.org>
29548
29549 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
29550 (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
29551 Remove `DOC_STRINGS_IN_COMMENTS' cases.
29552
29553 2001-10-21 Jason Rumney <jasonr@gnu.org>
29554
29555 * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
29556
29557 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
29558
29559 * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
29560 (Finsert_string): Avoid the multi-line string literals warning.
29561
29562 2001-10-22 Miles Bader <miles@gnu.org>
29563
29564 * doc.c (Vhelp_manyarg_func_alist): Variable removed.
29565 (Fdocumentation): Don't use it.
29566 (syms_of_doc): Don't initialize it.
29567
29568 * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
29569 * print.c (Fwith_output_to_temp_buffer): Likewise.
29570 * window.c (Fsave_window_excursion): Likewise.
29571 * editfns.c (Fsave_excursion, Fsave_current_buffer)
29572 (Fsave_restriction): Likewise.
29573 * eval.c (Frun_hooks, Frun_hook_with_args)
29574 (Frun_hook_with_args_until_failure)
29575 (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
29576 (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
29577 (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
29578 (Funwind_protect, Fcondition_case): Likewise.
29579 * coding.c (Ffind_operation_coding_system): Likewise.
29580 * keyboard.c (Ftrack_mouse): Likewise.
29581
29582 2001-10-21 Miles Bader <miles@gnu.org>
29583
29584 * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
29585 (Fmake_hash_table): Add usage: string to doc string.
29586 * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
29587 (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
29588 (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
29589 * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
29590 (Fml_prefix_argument_loop): Likewise.
29591
29592 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29593
29594 * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
29595
29596 * sysdep.c (init_sys_modes): Change doc-string comments to `new
29597 style' [w/`doc:' keyword].
29598
29599 * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
29600 * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
29601 comments to `new style' [w/`doc:' keyword].
29602
29603 2001-10-21 Jason Rumney <jasonr@gnu.org>
29604
29605 * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
29606
29607 * w32term.c (remember_mouse_glyph): New function.
29608 (w32_mouse_position): Use it.
29609 (note_mouse_movement): If the mouse moved off the glyph, remember
29610 its new position.
29611
29612 * w32term.h (struct w32_output): Correct spelling of x_compatible.
29613 (w32_display_info): Add mouse_face_overlay.
29614
29615 * w32term.c (notice_overwritten_cursor): Renamed from
29616 note_overwritten_text_cursor. Rewritten to take glyph widths into
29617 account.
29618 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
29619 (fast_find_string_pos): New function.
29620 (fast_find_position): Return the correct vpos. Add parameter
29621 STOP. In the final row, stop before glyphs having STOP as object.
29622 Don't consider glyphs that are not from a buffer.
29623 (fast_find_position) [0]: Add a presumably more correct version
29624 for after 21.1.
29625 (expose_window_tree, expose_frame): Don't compute intersections here.
29626 (expose_window): Do it here instead.
29627 (expose_window_tree, expose_window, expose_line): Return 1 when
29628 overwriting mouse-face.
29629 (expose_window): If W is the window currently being updated, mark
29630 the frame garbaged.
29631 (expose_frame): If mouse-face was overwritten, redo it.
29632 (x_use_underline_position_properties): New variable.
29633 (syms_of_xterm): DEFVAR_BOOL it.
29634 (x_draw_glyph_string): Add comment to use it in future.
29635 (x_draw_glyph_string): Restore clipping after drawing box.
29636 Fix a computation of the underline position.
29637 (w32_get_glyph_string_clip_rect): Minor cleanup.
29638 (x_fill_stretch_glyph_string): Remove an assertion.
29639 (x_produce_glyphs): Don't convert multibyte characters
29640 to unibyte characters in unibyte buffers.
29641 (cursor_in_mouse_face_p): New function.
29642 (x_draw_stretch_glyph_string): Use it to choose a different GC
29643 when drawing a cursor within highlighted text. Don't draw
29644 background again if it has already been drawn.
29645 (x_draw_glyph_string_box): Don't draw a full-width
29646 box just because the glyph row's full_width_p flag is set.
29647 (x_draw_glyphs): Fix computation of rightmost x for
29648 full-width rows.
29649 (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
29650 (w32_draw_relief_rect): Extend left shadow to the bottom and left;
29651 change bottom shadow accordingly. Some cleanup.
29652 (x_update_window_end): Handle overwritten mouse face
29653 also for tool bar windows.
29654 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
29655 DRAW is DRAW_IMAGE_RAISED.
29656 (clear_mouse_face): Return 1 if text with mouse face was
29657 actually redrawn. Make the function static.
29658 Reset dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
29659 optimize away highlighting if we pass over that same overlay again.
29660 (note_mouse_highlight): Call mouse_face_overlay_overlaps
29661 to detect a case where we have to highlight a different region
29662 despite not having left the currently highlighted region.
29663 Set mouse_face_overlay in the x_display_info. Avoid changing the
29664 mouse pointer shape when show_mouse_face has already done it, or
29665 there is no need. Handle mouse-face and help-echo in strings.
29666 (glyph_rect): New function.
29667 (w32_mouse_position): Use it to raise the threshold for mouse
29668 movement event generation.
29669 (w32_initialize_display_info): Initialize the x_display_info's
29670 mouse_face_overlay.
29671 (w32_set_vertical_scroll_bar): Don't clear a zero height
29672 or width area.
29673 (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
29674 a widget to zero height.
29675
29676 * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
29677 Protect unibyte strings created by replacing their multibyte
29678 equivalents in menu_items.
29679 (w32_menu_show): Don't overwrite an item's name with its key
29680 description in case the description is a multibyte string.
29681 (single_submenu): Some cleanup.
29682
29683 * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
29684 (postprocess_image): New function.
29685 (lookup_image): Call it for all image types except PostScript.
29686 (x_kill_gs_process): Call postprocess_image.
29687 (tiff_error_handler, tiff_warning_handler): New functions.
29688 (tiff_load): Install them as handlers.
29689 (x_kill_gs_process): Recognize if someone has cleared the image
29690 cache under us.
29691 (valid_image_p): Protect better against invalid image
29692 specifications. Previous code could signal an error.
29693 (Fx_hide_tip, Fshow_tip): Doc fix.
29694 (Fv_max_tooltip_size): New variable.
29695 (syns_of_xfns): DEFVAR_LISP it.
29696 (Fx_show_tip): Add parameter TEXT. Set the tip frame's root
29697 window buffer to *tip* right after creating the frame. Set frame's
29698 window_width. Use a maximum tooltip size specified by
29699 Vx_max_tooltip_size, if that has valid contents.
29700 (compute_tip_xy): Add parameters WIDTH and HEIGHT.
29701 Make sure the tooltip is completely visible.
29702 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
29703 (Fx_create_frame): Adjust the frame's height for presence
29704 of the tool bar before calling x_figure_window_size.
29705 (x_set_tool_bar_lines): Clear the tool bar window's current matrix
29706 when the window gets smaller.
29707 (x_set_foreground_color): Set frame's cursor_pixel.
29708 (x_set_foreground_color, x_set_background_color): Cleaned up.
29709 (x_set_font): Handle case of x_new_fontset returning the same name
29710 as before, although there was a change in fontsets.
29711
29712 2001-10-21 Miles Bader <miles@gnu.org>
29713
29714 * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
29715 (Flogxor): Add usage: string to doc string.
29716 * charset.c (Fstring): Likewise.
29717 * callproc.c (Fcall_process_region, Fcall_process): Likewise.
29718 * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
29719
29720 2001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
29721
29722 * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
29723
29724 * alloc.c: Reindent DEFUNs with doc: keywords.
29725
29726 * abbrev.c (Finsert_abbrev_table_description): Reindent.
29727
29728 * frame.c: Change doc-string comments to `new style' [w/`doc:'
29729 keyword].
29730
29731 See ChangeLog.9 for earlier changes.
29732
29733 ;; Local Variables:
29734 ;; coding: iso-2022-7bit
29735 ;; add-log-time-zone-rule: t
29736 ;; End:
29737
29738 Copyright (C) 2001, 2002, 2003, 2004, 2005,
29739 2006, 2007 Free Software Foundation, Inc.
29740
29741 This file is part of GNU Emacs.
29742
29743 GNU Emacs is free software; you can redistribute it and/or modify
29744 it under the terms of the GNU General Public License as published by
29745 the Free Software Foundation; either version 3, or (at your option)
29746 any later version.
29747
29748 GNU Emacs is distributed in the hope that it will be useful,
29749 but WITHOUT ANY WARRANTY; without even the implied warranty of
29750 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29751 GNU General Public License for more details.
29752
29753 You should have received a copy of the GNU General Public License
29754 along with GNU Emacs; see the file COPYING. If not, write to the
29755 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29756 Boston, MA 02110-1301, USA.
29757
29758 ;;; arch-tag: 5dcc435f-4038-4141-b3bf-5be51cd76bd4