(follow_key): Remove dead variable `did_meta'.
[bpt/emacs.git] / src / ChangeLog
CommitLineData
780379b1
AS
12003-05-10 Andreas Schwab <schwab@suse.de>
2
3 * xmenu.c (single_menu_item): Change last parameter to void* to
4 avoid warning.
5
ca2de342
RS
62003-05-09 Richard M. Stallman <rms@gnu.org>
7
8 * print.c (Fprin1_to_string): Instead of gcpro, set abort_on_gc.
9 Bind Qinhibit_modification_hooks to t so there will be no GC.
10 Rename local `tem' to `save_deactivate_mark'.
11
12 * eval.c (specpdl_ptr): Declare volatile.
13 (unbind_to): Copy the whole binding and decrement specpdl_ptr
14 before doing the work of unbinding it.
15
16 * lisp.h (struct specbinding): Declare elements volatile.
17 (specpdl_ptr): Declare volatile.
18
19 * Makefile.in (alloca.o): Specify -DDO_BLOCK_INPUT in compiling.
20
21 * alloca.c: Test DO_BLOCK_INPUT rather than `emacs'
22 for use of BLOCK_INPUT and inclusion of lisp.h and blockinput.h.
23
347003be
DL
242003-05-08 Dave Love <fx@gnu.org>
25
26 * coding.c (Vlast_coding_system_used): Doc fix.
27
5adcec23
JR
282003-05-07 Jason Rumney <jasonr@gnu.org>
29
30 * fileio.c (Ffile_symlink_p): Let handlers handle symlinks even
31 when system does not support them.
32
5fe3b8a4
SM
332003-05-05 Stefan Monnier <monnier@cs.yale.edu>
34
35 * fileio.c (Qwrite_region_annotate_functions): New var.
36 (build_annotations): Use it to process the global part of the hook.
37 (syms_of_fileio): Init and staticpro it.
38
39 * keyboard.c (safe_run_hooks_error): Display a message instead of
40 silently ignoring the error.
41
422003-05-03 Stefan Monnier <monnier@cs.yale.edu>
43
44 * keyboard.c (input_available_signal): Mark static.
45 (menu_bar_items): Use map_keymap.
46 (menu_bar_one_keymap): Remove.
47 (menu_bar_item): Adjust arglist (for use in map_keymap).
48 Properly hide a second binding when not both are keymaps.
49
50 * xmenu.c (struct skp): New struct, to pass args through map_keymap.
51 (single_keymap_panes): Use it and map_keymap.
52 (single_menu_item): Use skp as well.
53
54 * keymap.h (map_keymap_function_t): New type.
55 (map_keymap): Declare.
56
57 * keymap.c (map_keymap_item, map_keymap_char_table_item, map_keymap)
58 (map_keymap_call, Fmap_keymap): New functions.
59 (syms_of_keymap): Defsubr map-keymap.
60
4b1b4443
JD
612003-05-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
62
63 * gtkutil.c (create_dialog, make_widget_for_menu_item)
64 (make_menu_item, create_menus, xg_update_menu_item): Don't call
65 ..._with_mnemonic functions for menu items.
66
1f816871
KH
672003-05-01 Kenichi Handa <handa@m17n.org>
68
69 * coding.c (coding_system_accept_latin_extra_p): Delete this
70 function.
71 (find_safe_codings): Pay attention to
72 the property tranlsation-table-for-encode of each codings.
73 (syms_of_coding): Give Qtranslation_table the extra slot number 2.
74
5ed6ba5b
SM
752003-05-01 Stefan Monnier <monnier@cs.yale.edu>
76
77 * eval.c (Funwind_protect): Use func=Fprogn rather than symbol=Qnil.
78
32c06229
SM
792003-04-30 Stefan Monnier <monnier@cs.yale.edu>
80
81 * eval.c (unbind_to): Don't handle symbol = Qnil any more.
82
83 * lisp.h (CHECK): Wrap args in parenthesis.
84 (specbind): Fix doc: symbol = Qnil is not supported any more.
85
86 * bytecode.c (Fbyte_code) <unwind-protect>:
87 Use Fprogn rather than 0 and Qnil.
88
89 * keyboard.c (parse_modifiers_uncached): Parse `down', `drag',
90 `double', and `triple' modifiers as well.
91
ed3c3314
RS
922003-04-30 Richard M. Stallman <rms@gnu.org>
93
94 * keyboard.c (echo_char): Don't clear out a dash that follows a space.
95
96 * alloc.c (abort_on_gc): New variable.
97 (Fgarbage_collect): Abort if abort_on_gc is set.
98
99 * lisp.h (abort_on_gc): Add decl.
100
101 * eval.c (Fsignal): Clear abort_on_gc.
102
103 * editfns.c (Fformat): Set abort_on_gc during first scan of format.
32c06229 104 Reinit FORMAT_START and END before second scan.
ed3c3314
RS
105
106 * xdisp.c (move_it_vertically_backward): Do the final big else
107 even if nlines is 0.
108
109 * xdisp.c (redisplay_internal): Finish the per-frame loop
110 even if redisplay is suspended by input.
111
0b325c12
AC
1122003-04-24 Andrew Choi <akochoi@shaw.ca>
113
114 * macterm.c (x_list_fonts): Return all fonts that match if
115 maxnames = -1.
116
4e837cd0
KH
1172003-04-25 Kenichi Handa <handa@m17n.org>
118
119 * syntax.c (skip_chars): Fix previous change.
120
9af7511a
KH
1212003-04-24 Kenichi Handa <handa@m17n.org>
122
123 * syntax.c (skip_chars): Make the code faster by using the common
124 technique of *p, *stop, and *endp.
125
e3b2c21f
JD
1262003-04-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
127
128 * xdisp.c (update_tool_bar): BLOCK_INPUT before calling
32c06229 129 tool_bar_items so GTK tool bar expose callback does not access items
e3b2c21f
JD
130 being updated.
131
32c06229
SM
1322003-04-19 Stefan Monnier <monnier@cs.yale.edu>
133
134 * eval.c (Fapply): Undo last change and add a comment about why.
135
c6464167
MB
1362003-04-18 Miles Bader <miles@gnu.org>
137
138 * data.c (Faset): Calculate nbytes earlier, to satisfy the now
139 pickier PARSE_MULTIBYTE_SEQ.
140
e509f168
SM
1412003-04-17 Stefan Monnier <monnier@cs.yale.edu>
142
143 * eval.c (For, Fand, Fprogn, un_autoload, do_autoload):
144 Use XCDR, XCAR, CONSP.
145 (Fdefmacro): Fix docstring. Use XCAR, XCDR.
146 (Fapply): Remove unnecessary GCPRO.
147
148 * doc.c (Fsubstitute_command_keys): Remove spurious casts.
149
150 * charset.h (PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
151
152 * buffer.h: Don't hardcode BEG==1.
153
154 * abbrev.c (Fdefine_abbrev_table): Use XCAR, XCDR.
155
5ceea398
RS
1562003-04-16 Richard M. Stallman <rms@gnu.org>
157
158 * xdisp.c (try_window, try_window_reusing_current_matrix):
159 When at end of window, set window_end_pos to Z-ZV.
160
161 * buffer.c (Foverlay_recenter): Doc fix.
162
e509f168
SM
1632003-04-14 Stefan Monnier <monnier@cs.yale.edu>
164
165 * dispnew.c (Fsit_For): Support XEmacs-style arg list.
166
d243e605
AC
1672003-04-14 Andrew Choi <akochoi@shaw.ca>
168
169 * macterm.c (mac_check_for_quit_char): Don't check more often than
170 once a second.
171
6901b111
SM
1722003-04-11 Stefan Monnier <monnier@cs.yale.edu>
173
174 * keyboard.c (kbd_buffer_get_event): Don't handle SELECT_WINDOW_EVENT
175 specially, so that they can't hide an implicit switch-frame event.
176 (make_lispy_event): Handle SELECT_WINDOW_EVENT.
177 (head_table): Use switch-frame as event_kind for select-window.
178 (keys_of_keyboard): Don't bind [select-window] in special-event-map.
179
180 * editfns.c (Fformat): Lisp_Object/int mixup.
181 (format2): Remove unused var numargs.
182
e301806f 1832003-04-11 Kenichi Handa <handa@m17n.org>
aa95b710 184
6901b111 185 * fileio.c (Vafter_insert_file_adjust_coding_function): Delete.
aa95b710
KH
186 (Qafter_insert_file_set_coding): New variable.
187 (syms_of_fileio): Initialize and staticpro it. Delete declaration
188 for after-insert-file-adjust-coding-function.
189 (Finsert_file_contents): Call Qafter_insert_file_set_coding
190 instead of Vafter_insert_file_adjust_coding_function.
191
38914424
KH
1922003-04-11 Kenichi Handa <handa@m17n.org>
193
194 * lisp.h (temp_echo_area_glyphs): Adjust prototype.
195
196 * minibuf.c (temp_echo_area_glyphs): Change the arg to Lisp
197 string. Callers changed.
198
1992003-04-10 Kenichi Handa <handa@m17n.org>
a288d979 200
6901b111 201 * fileio.c (Vafter_insert_file_adjust_coding_function): New variable.
a288d979 202 (syms_of_fileio): Declare it as a lisp variable.
6901b111
SM
203 (Finsert_file_contents):
204 Call Vafter_insert_file_adjust_coding_function before calling
a288d979
KH
205 decode-format.
206
f979dc05
JD
2072003-04-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
208
209 * xterm.c (xg_scroll_callback): Call gtk_range_get_adjustment to
210 get GtkAdjustment as widget now is a GtkRange.
211
212 * gtkutil.c (xg_create_scroll_bar): Connect to value-changed on
213 GtkRange to avoid memory leak.
214
f8c6b4c2 2152003-04-09 Kenichi Handa <handa@m17n.org>
cb98871c 216
50ebc53d
KH
217 * xfaces.c (Vface_font_rescale_alist): New variable.
218 (struct font_name): New member rescale_ratio.
219 (font_rescale_ratio): New function.
6901b111 220 (split_font_name): If NUMERIC_P is nonzero, set font->rescale_ratio.
50ebc53d
KH
221 (better_font_p): On comparing point sized, pay attention to
222 recale_ratio member of fonts.
223 (build_scalable_font_name): Reflect font->rescale_ratio in the
224 font name.
6901b111 225 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
50ebc53d 226
cb98871c
KH
227 * lread.c (read1): Before calling index, check if the 2nd
228 arguemnt is in ASCII range.
229
4773b8ca
RS
2302003-04-08 Richard M. Stallman <rms@gnu.org>
231
b0ada147
RS
232 * fileio.c (Ffile_symlink_p): Doc fix.
233
234 * editfns.c (Fformat): Translate positions of text properties
235 in the format string to apply them to the result.
236
4773b8ca
RS
237 * fileio.c (Finsert_file_contents): Doc fix.
238 (syms_of_fileio) <after-insert-file-functions>: Doc fix.
239
2402003-04-08 Ivan Zakharyaschev <imz@altlinux.org> (tiny change)
6901b111 241
4773b8ca
RS
242 * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN.
243
e8f25745 2442003-04-08 Steven Tamm <steventamm@mac.com>
b0ada147 245
e8f25745
ST
246 * mac.c (init_mac_osx_environment): Switch libexec and bin so
247 that self-contained application finds libexec files.
248
f8c6b4c2 2492003-04-08 Kenichi Handa <handa@m17n.org>
2310d84c 250
6901b111
SM
251 * coding.c (code_convert_region_unwind):
252 Set Vlast_coding_system_used to the argument.
2310d84c
KH
253 (code_convert_region): If post-read-conversion function changed
254 the value of last-coding-sytem, keep the new value in
255 coding->symbol so that it won't be overridden.
256 (run_pre_post_conversion_on_str): Likewise.
7c086845
KH
257 (coding_system_accept_latin_extra_p): New function.
258 (find_safe_codings): Pay attention to characters registered in
259 latin-extra-code-table.
2310d84c 260
39c9a034
TTN
2612003-04-07 Thien-Thi Nguyen <ttn@gnu.org>
262
263 * Makefile.in (md5.o): Add missing dependency info.
264
eb67c5d6
RS
2652003-04-06 Richard M. Stallman <rms@gnu.org>
266
267 * xselect.c (x_handle_selection_request): Move UNGCPRO to very end.
268
269 * marker.c (verify_bytepos): New function.
270
271 * intervals.c (set_intervals_multibyte_1): When becoming
272 multibyte, adjust right and left child sizes to a whole set of
273 characters. If an interval gets zero total-length, delete it.
274 If an interval consists of just its children, delete one of them.
275
276 * intervals.h (CHECK_TOTAL_LENGTH): New macro.
277 * intervals.c: Add many calls to CHECK_TOTAL_LENGTH.
39c9a034 278
eb67c5d6
RS
279 * alloc.c: (VALIDATE_LISP_STORAGE): Macro deleted.
280 All calls deleted.
281 (lisp_malloc): Do the work here directly.
282
b1f81fc5
JB
2832003-04-06 Gareth Jones <emacs@referential.org.uk> (tiny change)
284
285 * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub
286 char tables.
287
2882003-04-04 Kenichi Handa <handa@m17n.org>
aa8b70ae
KH
289
290 * editfns.c (Fformat): Use a copy of FORMAT string so that we can
291 destructively change "%S" to "%s".
292
774666fb
MB
2932003-04-03 Miles Bader <miles@gnu.org>
294
295 * xfaces.c (choose_face_font): Make sure *NEEDS_OVERSTRIKE is
296 always set.
297
19c37f01
DL
2982003-04-01 Dave Love <fx@gnu.org>
299
300 * xfns.c (xpm_lookup_color): Grok "opaque".
301
2f4b24c3
AC
3022003-03-31 Andrew Choi <akochoi@shaw.ca>
303
304 * frame.c (x_report_frame_params) [HAVE_CARBON]: Do not report
305 parent window ID.
306
307 * macfns.c (syms_of_macfns): Remove call to init_x_parm_symbols.
308
309 * macterm.h (struct mac_output): Define x_pixels_diff and
310 y_pixels_diff.
b1f81fc5 311
9443fcf6
JB
3122003-03-31 Juanma Barranquero <lektu@terra.es>
313
314 * makefile.w32-in ($(BLD)/frame.$(O)): Add dependency on
315 blockinput.h and files included from it.
316
e072891b
KS
3172003-03-31 Kim F. Storm <storm@cua.dk>
318
319 The following changes consolidates the common code related to
320 frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
321 files into frame.c.
9443fcf6 322
e072891b
KS
323 * frame.c: Include blockinput.h.
324 (Vx_resource_name, Vx_resource_class, Qx_frame_parameter)
325 (Qx_resource_name, Qface_set_after_frame_default): Define vars here.
326 (Qauto_raise, Qauto_lower, ...): Define all frame parameter
327 related vars here.
328 (struct frame_parm_table, frame_parms): New table for describing
329 frame parameters and their associated Q-variable.
330 The order of the parameters corresponds to the sequence of the
331 frame_parm_handlers table in redisplay_interface.
332 (x_fullscreen_move, x_set_frame_parameters)
333 (x_report_frame_params, x_set_fullscreen, x_set_line_spacing)
334 (x_set_screen_gamma, x_set_font, x_set_fringe_width)
335 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
336 (x_set_autoraise, x_set_autolower, x_set_unsplittable)
337 (x_set_vertical_scroll_bars, x_set_scroll_bar_width, x_icon_type):
338 Generic functions for processing of frame parameters.
339 (validate_x_resource_name, xrdb_get_resource, Fx_get_resource)
340 (display_x_get_resource, x_get_resource_string): Functions for
341 generic access to X resources.
342 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
343 (x_default_parameter, Fx_parse_geometry): Functions for generic
344 access to frame parameters.
6901b111
SM
345 (x_figure_window_size): Generic calculation of frame size.
346 Fixed to add space needed for tool bar. Also setup size_hint_flags.
e072891b
KS
347 (syms_of_frame): Intern and staticpro frame parameter variables.
348 Defvar_lisp Vx_resource_class and Vx_resource_name here.
349 Defsubr Sx_get_resource and Sx_parse_geometry.
9443fcf6 350
e072891b
KS
351 * frame.h (Qauto_raise, Qauto_lower, ...): Declare extern all frame
352 parameter related vars defined in frame.c.
353 (EMACS_CLASS): Define here.
354 (enum FULLSCREEN_*): Define here.
355 (x_set_scroll_bar_default_width, x_wm_set_icon_position)
356 (x_set_offset, x_new_font, x_new_fontset): Add prototypes.
357 (x_fullscreen_adjust, x_set_frame_parameters, x_report_frame_params)
358 (x_set_fullscreen, x_set_line_spacing, x_set_screen_gamma, x_set_font)
359 (x_set_fringe_width, x_set_border_width, x_set_internal_border_width)
360 (x_set_visibility, x_set_autoraise, x_set_autolower)
361 (x_set_unsplittable, x_set_vertical_scroll_bars)
362 (x_set_scroll_bar_width, x_icon_type, validate_x_resource_name)
363 (x_figure_window_size): Add prototypes.
364
365 * dispextern.h (frame_parm_handler): New typedef.
366 (struct redisplay_interface): New member frame_parm_handlers.
367 (enum resource_types): Move declaration here.
368 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
369 (x_default_parameter): Add prototypes.
370
371 * window.c: Remove extern decl for frame parameter vars.
372 (change_window_heights): New generic function;
373 replaces x_change_window_heights. All users changed.
374
375 * window.h (change_window_heights): Add prototype.
376
377 * xfaces.c: Remove extern decl for frame parameter vars.
378
379 * xterm.h (EMACS_CLASS): Remove. Use generic define.
380 (struct w32_display_info): Fix type of xrdb member.
381 (enum FULLSCREEN_*): Remove.
382 Remove prototypes for generic functions (in frame.h).
383
384 * xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
385 parameters now defined in frame.h and frame.c.
386 (Vx_resource_name): Remove. Use generic var.
387 (enum x_frame_parms): Remove (bogus, unused enum).
388 (check_x_display_info): Make non-static (for frame.c).
389 (struct x_frame_parm_table, x_frame_parms): Remove.
390 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
391 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
392 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
393 (x_change_window_heights, x_set_autoraise, x_set_autolower)
394 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
395 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
396 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
397 Remove. Use generic functions instead.
398 (enum resource_types): Remove.
399 (x_set_scroll_bar_default_width): New global function (for frame.c).
400 (Fx_create_frame): Depend on x_figure_window_size to add space for
401 toolbar and setup size_hint_flags.
402 (x_frame_parm_handlers): New table for redisplay_interface.
403 (syms_of_xfns): Don't intern/staticpro removed vars.
9443fcf6 404
e072891b
KS
405 * xterm.c: Remove unnecessary extern declarations.
406 (x_fullscreen_adjust): Remove. Use generic instead.
407 (x_redisplay_interface): Add x_frame_parm_handlers member.
408
409 * w32gui.h (XrmDatabase): New (dummy) typedef.
410
411 * w32term.h (EMACS_CLASS): Remove. Use generic define.
412 (struct w32_display_info): Fix type of xrdb member.
413 (enum FULLSCREEN_*): Remove.
414 (x_fullscreen_adjust): Remove prototype.
415
416 * w32fns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
417 parameters now defined in frame.h and frame.c.
418 (Vx_resource_name): Remove. Use generic var.
419 (enum x_frame_parms): Remove (bogus, unused enum).
420 (check_x_display_info): Make non-static (for frame.c).
421 (struct x_frame_parm_table, x_frame_parms): Remove.
422 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
423 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
424 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
425 (x_change_window_heights, x_set_autoraise, x_set_autolower)
426 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
427 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
428 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
429 Remove. Use generic functions instead.
430 (enum resource_types): Remove.
431 (x_set_scroll_bar_default_width): New global function (for frame.c).
432 (Fx_create_frame): Depend on x_figure_window_size to add space for
433 toolbar and setup size_hint_flags.
434 (w32_frame_parm_handlers): New table for redisplay_interface.
435 (syms_of_w32fns): Don't intern/staticpro removed vars.
9443fcf6 436
e072891b
KS
437 * w32term.c: Remove unnecessary extern declarations.
438 (x_fullscreen_adjust): Remove. Use generic instead.
439 (x_redisplay_interface): Add w32_frame_parm_handlers member.
440
441 * w32reg.c (x_get_string_resource): Use XrmDatabase.
442
443 * macgui.h (XrmDatabase): New (dummy) typedef.
444
445 * macterm.h (EMACS_CLASS): Remove.
446 (struct mac_display_info): Add xrdb member.
447 (struct mac_output): Add want_fullscreen member.
448
449 * macfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
450 parameters now defined in frame.h and frame.c.
451 (Vx_resource_name): Remove. Use generic var.
452 (check_x_display_info): Make non-static (for frame.c).
453 (struct x_frame_parm_table, x_frame_parms): Remove.
454 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
455 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
456 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
457 (x_change_window_heights, x_set_autoraise, x_set_autolower)
458 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
459 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
460 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
461 Remove. Use generic functions instead.
462 (enum resource_types): Remove.
463 (x_set_scroll_bar_default_width): New global function (for frame.c).
464 (mac_frame_parm_handlers): New table for redisplay_interface.
465 (syms_of_macfns): Don't intern/staticpro removed vars.
9443fcf6 466
e072891b
KS
467 * macterm.c: Remove unnecessary extern declarations.
468 (x_redisplay_interface): Add mac_frame_parm_handlers member.
469
3e6a560b
KS
470 * Makefile.in (frame.o): Add dependency on blockinput.h and files
471 included from it (atimer.h and systime.h).
472
7b7b454e
AS
4732003-03-30 Andreas Schwab <schwab@suse.de>
474
475 * xdisp.c (x_insert_glyphs): Fix swapped width and height
476 parameters for shift_glyphs_for_insert.
477
478 * macterm.c (x_redisplay_interface): Add missing entry for
479 draw_vertical_window_border.
480
beb402de
KG
4812003-03-29 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
482
483 * fileio.c (Fexpand_file_name): In the no-handler case, after
484 expanding, look again for a handler and invoke it. This is needed
485 for filenames like "/foo/../user@host:/bar/../baz" -- the first
486 expansion produces "/user@host:/bar/../baz" which needs to be
487 expanded again for the finame result "/user@host:/baz".
488
b676f356
JD
4892003-03-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
490
491 * gtkutil.c (xg_tool_bar_item_expose_callback): Reduce size
492 of area to be redrawn for better performance.
493
3c671a56
SM
4942003-03-28 Stefan Monnier <monnier@cs.yale.edu>
495
496 * xterm.c (take_vertical_position_into_account): Remove.
497 (xt_action_hook): Call set_vertical_scroll_bar if needed.
498 (XM_SB_MIN, XM_SB_RANGE): Remove (min is now set to 0).
499 (xm_scroll_callback, x_create_toolkit_scroll_bar)
500 (x_set_toolkit_scroll_bar_thumb): Simplify.
501 (x_scroll_bar_expose): Only compile if !USE_TOOLKIT_SCROLL_BARS.
502 (XTread_socket): Remove unused var.
503 (x_make_frame_invisible): Replace goto with else.
504
505 * xdisp.c (set_vertical_scroll_bar): New fun.
506 (redisplay_window): Use it.
507
84f2e615
RS
5082003-03-26 Richard M. Stallman <rms@gnu.org>
509
510 * xdisp.c (update_tool_bar): Recompute tool bar if
511 update_mode_lines is set. Set w->update_mode_line
512 only if the tool bar contents actually change.
513 (update_menu_bar): Undo previous change.
514
70b6104c
JD
5152003-03-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
516
5fd6f727
JD
517 * gtkutil.c (xg_resize_widgets): Don't call xg_frame_cleared.
518 (xg_frame_set_char_size): Calculate scroll bar width before frame
519 width. Call SET_FRAME_GARBAGED and cancel_mouse_face.
520 (xg_separator_p): Check for all documented separator types.
521 (xg_update_scrollbar_pos): Variable gheight not needed, use height.
522 (update_frame_tool_bar): Don't call gdk_window_process_all_updates.
523
70b6104c
JD
524 * xdisp.c (update_menu_bar): Set w->update_mode_line to Qt
525 so tool bar gets updated.
526
d9b36d19
SM
5272003-03-26 Stefan Monnier <monnier@cs.yale.edu>
528
529 * data.c (store_symval_forwarding): Re-instate part of the code
530 that was deleted with too much enthusiasm.
531
5322003-03-25 Stefan Monnier <monnier@cs.yale.edu>
533
534 * data.c (store_symval_forwarding): Delete special read-only
535 hack for type == -1, since we now use ->constant instead.
536 (Fkill_local_variable): Don't use XBUFFER if it can be nil.
537
538 * buffer.c (overlays_in): Declare static.
539 (syms_of_buffer) <enable-multibyte-characters>: Use the symbol's
540 `constant' field rather than the variable's `type' field.
541
365fa1b3
AC
5422003-03-24 Andrew Choi <akochoi@shaw.ca>
543
544 * config.in [MAC_OSX]: Do not redefine bcopy, bzero, and bcmp.
545
546 * dispextern.h [HAVE_CARBON]: Include Carbon.h.
547
548 * fns.c [MAC_OSX]: Do not redefine vector.
549
550 * keyboard.c [MAC_OSX]: Handle SIGINT with interrupt_signal.
551
552 * macgui.h: Remove definition of No_Cursor.
553
d9b36d19 554 * macterm.h: Include Carbon.h. Replace (struct Cursor *) by Cursor.
365fa1b3
AC
555
556 * xdisp.c: Define No_Cursor.
557 (x_write_glyphs, notice_overwritten_cursor)
558 (draw_phys_cursor_glyph, note_mode_line_or_margin_highlight)
559 (note_mouse_highlight): Remove Mac-specific code.
560 (note_mouse_highlight): Use bcmp instead of == to compare Cursors.
d9b36d19 561
c0bcce6f
JPW
5622003-03-24 John Paul Wallington <jpw@gnu.org>
563
564 * xdisp.c (redisplay_window): If mini window's buffer is not
565 empty, then redisplay it like other windows.
566
a526b96c
KS
5672003-03-23 Kim F. Storm <storm@cua.dk>
568
569 * w32term.c (w32_draw_window_cursor): Fix last change.
570
37ab321e
KH
5712003-03-23 Kenichi Handa <handa@m17n.org>
572
a526b96c
KS
573 * alloc.c (make_string_from_bytes, make_specified_string):
574 Add `const' for the arg CONTENTS.
37ab321e
KH
575
576 * lisp.h (make_string_from_bytes, make_specified_string):
577 Prototypes adjusted.
578
7863d625
JD
5792003-03-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
580
a526b96c 581 * xdisp.c (get_glyph_string_clip_rect): Remove ; at end of #endif
fd4c9408 582
7863d625
JD
583 * gtkutil.h: Take two more arguments to xg_update_scrollbar_pos.
584 (XG_SB_RANGE): New define.
585
586 * gtkutil.c (xg_fixed_handle_expose): New function.
587 (xg_create_frame_widgets): Call xg_fixed_handle_expose for
588 expose events.
589 (xg_update_scrollbar_pos): Take two more arguments, left and width
590 of scroll bar including borders.
591 Clear left and right part outside scroll bar separately as some
592 themes have bars that are not an even number of pixels.
d9b36d19 593 Don't set reallocate_redraws, don't call
7863d625
JD
594 gdk_window_process_all_updates.
595 (xg_set_toolkit_scroll_bar_thumb): Upper value is fixed,
596 so no need to change it. Calculate size and value with XG_SB_RANGE.
597
d9b36d19
SM
598 * xterm.c (x_scroll_bar_create, XTset_vertical_scroll_bar):
599 Pass left and width of scroll bar including borders to
7863d625
JD
600 xg_update_scrollbar_pos.
601
af0ad939
TTN
6022003-03-22 Thien-Thi Nguyen <ttn@gnu.org>
603
604 * Makefile.in: Make sure space precedes end-of-line backslashes.
605
b22139fd
KS
6062003-03-22 Kim F. Storm <storm@cua.dk>
607
608 * xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
609 Add generic versions here. Remove system specific versions
610 defined elsewhere.
611
612 * dispextern.h (pixel_to_glyph_coords, glyph_to_pixel_coords):
613 Add prototypes.
614
6e6410cf
KS
615 * xterm.h (STORE_NATIVE_RECT): New macro.
616
5c9cc435
KS
6172003-03-21 Kim F. Storm <storm@cua.dk>
618
00c64fab
SM
619 * xdisp.c (get_glyph_string_clip_rect):
620 Use FRAME_INTERNAL_BORDER_WIDTH.
5c9cc435
KS
621
622 * dispextern.h (struct redisplay_interface): Add active_p
623 argument to draw_window_cursor member. All uses changed.
624
acd37560
KS
6252003-03-21 Kim F. Storm <storm@cua.dk>
626
627 The following changes consolidate code related to writing and
628 inserting glyphs, exposing frame, the tool bar, the mouse face,
629 the output cursor, and help echo from xterm.c, w32term.c and
630 macterm.c into xdisp.c. It also generalizes the use of the
631 window_part enum instead of using numeric values throughout.
af0ad939 632
acd37560
KS
633 * xdisp.c: Consolidate gui-independent code here.
634 Include keymap.h.
635 (Qhelp_echo): Import.
636 (mouse_autoselect_window, x_stretch_cursor_p): Declare here.
637 (help_echo_string, help_echo_window, help_echo_object)
638 (previous_help_echo_string, help_echo_pos): Declare here.
639 (output_cursor, last_mouse_frame, last_tool_bar_item): Declare here.
640 (estimate_mode_line_height): Define here. Handle windowing
641 systems directly (without using estimate_mode_line_height_hook).
642 (x_y_to_hpos_vpos, get_tool_bar_item, note_tool_bar_highlight):
643 (update_window_cursor, update_cursor_in_window_tree)
644 (fast_find_position, fast_find_string_pos)
645 (note_mode_line_highlight, note_mode_line_or_margin_highlight)
646 (expose_area, expose_line, expose_overlaps, expose_window)
647 (expose_window_tree, phys_cursor_in_rect_p): New generic versions;
648 declared static as they are only used locally in xdisp.c.
649 (draw_glyphs): Rename from x_draw_glyphs and make static.
650 (tool_bar_item_info, notice_overwritten_cursor): Make static.
651 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
652 (set_output_cursor, x_cursor_to, handle_tool_bar_click)
af0ad939 653 (x_write_glyphs, x_insert_glyphs, x_clear_end_of_line):
acd37560
KS
654 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
655 (display_and_set_cursor, x_update_cursor, x_clear_cursor)
656 (show_mouse_face, clear_mouse_face, cursor_in_mouse_face_p)
657 (note_mouse_highlight, x_clear_window_mouse_face)
658 (cancel_mouse_face, x_draw_vertical_border, expose_frame)
659 (x_intersect_rectangles): New generic functions for use by xdisp.c
660 and GUI front-ends.
661 (syms_of_xdisp): Initialize and staticpro help_echo* variables.
662 Defvar_bool "x-streach-cursor" and "mouse-autoselect-window" here.
663
664 * dispextern.h (Display_Info): Generic typedef for *_display_info.
665 (NativeRectangle): Generic typedef for rectangle type.
666 (enum window_part): Move here from window.c.
667 (struct redisplay_interface): New members flush_display_optional,
668 define_frame_cursor, clear_frame_area, draw_window_cursor,
669 draw_vertical_window_border, shift_glyphs_for_insert.
670 Rename member clear_mouse_face to clear_window_mouse_face.
671 (estimate_mode_line_height_hook): Remove hook.
672 (auto_raise_tool_bar_buttons_p): Don't declare extern.
673 (tool_bar_item_info): Remove prototype.
674 (help_echo_string, help_echo_window, help_echo_object)
675 (previous_help_echo_string, help_echo_pos)
676 (last_mouse_frame, last_tool_bar_item, mouse_autoselect_window):
677 (x_stretch_cursor_p, output_cursor): Declare extern.
678 (x_draw_glyphs, notice_overwritten_cursor): Remove prototypes.
679 (x_write_glyphs), x_insert_glyphs, x_clear_end_of_line)
680 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
681 (display_and_set_cursor, set_output_cursor, x_cursor_to)
682 (x_update_cursor, x_clear_cursor, x_draw_vertical_border)
683 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
684 (note_mouse_highlight, x_clear_window_mouse_face, cancel_mouse_face)
685 (handle_tool_bar_click, clear_mouse_face, show_mouse_face)
686 (cursor_in_mouse_face_p, expose_frame, x_intersect_rectangles):
687 Add prototypes.
688 (mode_line_string, marginal_area_string): Fix prototypes.
689
690 * window.c (enum window_part): Move to dispextern.h.
691 (coordinates_in_window): Use enum window_part member names
692 instead of numbers to describe return value.
693 (struct check_window_data): Change part member to window_part.
694 (check_window_containing): Return window_part unaltered.
695 (window_from_coordinates): Change part arg from int to enum
696 window_part. Allow part arg to be null. All users changed.
697
698 * window.h (window_from_coordinates): Fix prototype.
699
700 * term.c (estimate_mode_line_height): Move to xdisp.c.
701
702 * keyboard.c (make_lispy_event): Use enum window_part.
703
704 * dispnew.c (mode_line_string, marginal_area_string): Use enum
705 window_part instead of int in arg list. Users changed.
706
707 * xterm.h (No_Cursor): Declare as None for X.
708 (struct mac_output): Replace member cross_cursor by hand_cursor.
af0ad939 709
acd37560
KS
710 * xterm.c: Remove consolidated defines and code.
711 (BETWEEN): Remove unused macro.
712 (x_draw_vertical_window_border, x_shift_glyphs_for_insert)
713 (x_define_frame_cursor, x_clear_frame_area)
714 (x_draw_window_cursor): New X-specific functions for RIF.
715 (x_redisplay_interface): Add new members.
716
717 * xfns.c: Setup and use hand_cursor instead of cross_cursor.
718
719 * w32term.h (struct w32_output): Remove cross_cursor member.
720
721 * w32term.c: Remove consolidated defines and code.
722 (BETWEEN): Remove unused macro.
723 (w32_draw_vertical_window_border, w32_shift_glyphs_for_insert)
724 (w32_define_frame_cursor, w32_clear_frame_area)
725 (w32_draw_window_cursor): New W32-specific functions for RIF.
726 (w32_redisplay_interface): Add new members.
727
728 * w32gui.h (No_Cursor): Define as 0 for W32.
729 (XRectangle): Add X compatible rectangle type.
730 (NativeRectangle): Declare as RECT for W32.
731 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
732
733 * w32fns.c: Remove setup of cross_cursor (already has hand_cursor).
734
735 * w32console.c: Remove consolidated defines and code.
af0ad939 736
acd37560
KS
737 * msdos.h (Display_Info): Add generic typedef.
738
739 * msdos.c: Remove consolidated defines and code.
740 (IT_note_mouse_highlight, dos_rawgetc): Use enum window_part.
741
742 * macterm.h (struct mac_output): Replace member cross_cursor by
743 hand_cursor.
744 (activate_scroll_bars, deactivate_scroll_bars): Add prototypes.
745
746 * macterm.c: Remove consolidated defines and code.
747 (BETWEEN): Remove unused macro.
748 (mac_draw_vertical_window_border, mac_shift_glyphs_for_insert)
749 (mac_define_frame_cursor, mac_clear_frame_area)
750 (mac_draw_window_cursor): New Mac-specific functions for RIF.
751 (x_redisplay_interface): Add new members.
752
753 * macgui.h (No_Cursor): Define as 0 for Mac.
754 (XRectangle): Add X compatible rectangle type.
755 (NativeRectangle): Declare as Rect for Mac.
756 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
757
204ccab1
KS
758 * macfns.c (x_set_mouse_color): Setup hand_cursor.
759 (x_set_cursor_color): Use x_display_and_set_cursor.
acd37560 760
9443fcf6 761 * Makefile.in (xdisp.o): Add dependency on blockinput.h and files
acd37560
KS
762 included from it. Add dependency on keymap.h.
763
764 * makefile.w32-in (xdisp.o): Add dependency on keymap.h.
765
8ba01a70 7662003-03-21 Kenichi Handa <handa@m17n.org>
3f817c73
KH
767
768 * fileio.c (Fexpand_file_name): Fix previous change.
769
8ba01a70 7702003-03-19 Kenichi Handa <handa@m17n.org>
4f497b0a
KH
771
772 * fileio.c (Ffile_name_directory): Reconstruct file name by
773 make_specified_string.
774 (Ffile_name_nondirectory, Ffile_name_as_directory)
775 (Fdirectory_file_name, Fexpand_file_name)
776 (Fsubstitute_in_file_name): Likewise.
777 (Fread_file_name): Compare decoded homedir with DIR and
778 DEFAULT_FILENAME.
779
780 * alloc.c (make_specified_string): If NCHARS is negative, count
781 the number of characters.
782
19536747
JD
7832003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
784
de38ae5a
JD
785 * gtkutil.c (xg_frame_cleared): Call gtk_widget_queue_draw for
786 all widgets.
787
19536747
JD
788 * gtkutil.h: Removed xg_ignore_next_thumb.
789
37ab321e 7902003-03-18 Kenichi Handa <handa@m17n.org>
cb0d4562
KH
791
792 * coding.c (Vchar_coding_system_table): Remove this variable.
793 (Vcoding_system_safe_chars): New variable.
794 (intersection): Remove this function.
795 (find_safe_codings): Don't use Vchar_coding_system_table, but try
796 all codings in SAFE_CODINGS.
00c64fab 797 (Ffind_coding_systems_region_internal): Adjust for the change of
cb0d4562
KH
798 find_safe_codings. Get generic coding systems from
799 Vcoding_system_safe_chars.
800 (Fdefine_coding_system_internal): New function.
801 (syms_of_coding): Defsubr Sdefine_coding_system_internal.
802 Initialize and staticpro Vcoding_system_safe_chars.
803
17097258
JD
8042003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
805
2a2071c3
JD
806 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb): Check if new values
807 equal old values before updating.
808
17097258
JD
809 * xterm.c (xg_scroll_callback): Remove xg_ignore_next_thumb.
810
811 * gtkutil.c (xg_initialize): Remove xg_ignore_next_thumb.
812
8132003-03-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
814
815 * gtkutil.c: Removed handle_fixed_child, struct xg_last_sb_pos.
816 (xg_resize_widgets): Don't call foreach(handle_fixed_child).
817 (xg_gtk_scroll_destroy): Remove free of struct xg_last_sb_pos.
818 (scroll_bar_button_cb): Set bar->dragging to NIL on button release.
819 (xg_create_scroll_bar): Pass bar to button event callback.
820 (xg_find_top_left_in_fixed): New function.
821 (xg_update_scrollbar_pos): Don't call gdk_window_clear on
822 whole scroll bar area. Get old position with
823 xg_find_top_left_in_fixed, calculate and only clear needed areas.
824 (xg_set_toolkit_scroll_bar_thumb): Do not adjust scroll bar if
825 dragging is in progress. Calculate whole as for Motif.
826 Remove code that saved last values. Call gtk_range functions to
827 set scroll bar sizes.
828
829 * gtkutil.h: Removed xg_ignore_next_thumb.
830
8cb9dfbf
JB
8312003-03-17 Juanma Barranquero <lektu@terra.es>
832
833 * makefile.w32-in ($(BLD)/xdisp.$(O)): Add dependency on blockinput.h
834 and files included from it.
835
00c64fab
SM
8362003-03-18 Stefan Monnier <monnier@cs.yale.edu>
837
838 * keymap.c (accessible_keymaps_1): Break cycles but without preventing
839 multiple occurrences of the same keymap under different prefixes.
840 (Faccessible_keymaps): Remove code redundant since 1994-08-03T07:39:00Z!rms@gnu.org.
841
c45bb3b2
JR
8422003-03-16 Jason Rumney <jasonr@gnu.org>
843
844 * w32gui.h: Use HDC for Display.
845
846 * w32term.c (w32_encode_char): Prevent double-byte chars from
847 crashing Emacs.
848
849 * w32fns.c (jpeg_load, png_load, slurp_file): Read image files
850 as binary.
851
2a6d0874
JB
8522003-03-16 Juanma Barranquero <lektu@terra.es>
853
854 * xdisp.c (x_produce_glyphs): Use FRAME_BASELINE_OFFSET.
855
03eb5fab
KS
8562003-03-16 Kim F. Storm <storm@cua.dk>
857
858 The following changes consolidate some of the gui-independent
859 parts of the processing and drawing of "glyph strings" from
860 xterm.c, w32term.c, and macterm.c into xdisp.c.
2a6d0874 861
03eb5fab
KS
862 * dispextern.h (struct glyph): Reduce face_id member from 22 to
863 21 bits (this reduces number of faces from 4M to 2M).
864 Replace W32 specific w32_font_type member (2 bits) by generic
865 font_type member (3 bits) for portability.
866 (FONT_TYPE_UNKNOWN): New define, default for font_type member.
867 (enum draw_glyphs_face): Define here.
868 (struct glyph_string): Define here. Merge W32 and X versions.
869 (struct redisplay_interface): New members per_char_metric,
870 encode_char, compute_glyph_string_overhangs, draw_glyph_string.
871 (VCENTER_BASELINE_OFFSET): Define here.
872 (dump_glyph_string, x_get_glyph_overhangs, x_produce_glyphs)
873 (x_draw_glyphs, notice_overwritten_cursor): Declare prototypes here.
874
875 * xdisp.c: Consolidate gui-independent "glyph string" code here.
876 (dump_glyph_string): Moved here.
877 (init_glyph_string, append_glyph_string_lists, append_glyph_string)
878 (prepend_glyph_string_lists, get_glyph_face_and_encoding)
879 (fill_composite_glyph_string, fill_glyph_string)
880 (fill_image_glyph_string, fill_stretch_glyph_string)
881 (left_overwritten, left_overwriting, right_overwritten)
882 (right_overwriting, get_char_face_and_encoding)
883 (set_glyph_string_background_width, compute_overhangs_and_x)
884 (append_glyph, append_composite_glyph, produce_image_glyph)
885 (take_vertical_position_into_account, append_stretch_glyph)
886 (produce_stretch_glyph): New generic functions (based on X version).
887 Call platform specific functions through rif.
888 (INIT_GLYPH_STRING): New macro, hides W32 details.
889 (BUILD_STRETCH_GLYPH_STRING, BUILD_IMAGE_GLYPH_STRING)
890 (BUILD_CHAR_GLYPH_STRINGS, BUILD_COMPOSITE_GLYPH_STRING)
891 (BUILD_GLYPH_STRINGS): Generic macros (based on X version).
892 (x_draw_glyphs, x_get_glyph_overhangs, x_produce_glyphs)
893 (notice_overwritten_cursor):
894 Generic functions exported to platform modules. Users changed.
895
896 * xterm.h (FONT_DESCENT, FRAME_X_OUTPUT, FRAME_BASELINE_OFFSET)
897 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE)
898 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
fad49844 899 New macros for consolidated code.
2a6d0874 900
03eb5fab
KS
901 * xterm.c: Remove consolidated defines and code.
902 (x_per_char_metric, x_encode_char)
903 (x_compute_glyph_string_overhangs): Adapt to RIF requirements.
904 (x_redisplay_interface): Add new members.
905
906 * w32gui.h (Display): Add dummy typedef for consolidation.
907 (XChar2b): Define alias for wchar_t for consolidation.
908 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
909
910 * w32term.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY)
2a6d0874 911 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE):
03eb5fab
KS
912 New macros for consolidation.
913
fad49844 914 * w32term.c: Remove consolidated defines and code.
03eb5fab
KS
915 (BUILD_WCHAR_T, BYTE1, BYTE2): Macros removed; callers changed
916 to use STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2 instead.
917 (w32_per_char_metric): Change font_type arg to int for RIF.
918 (w32_encode_char): Return int according to RIF requirements.
919 (w32_compute_glyph_string_overhangs): Adapt to RIF.
920 (w32_get_glyph_overhangs): New function for RIF. Uses generic
921 x_get_glyph_overhangs.
922 (w32_redisplay_interface): Add new members.
923
924 * macgui.h (XChar2b): Move typedef here for consolidation.
925 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
926
927 * macterm.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY):
928 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): New macros for
929 consolidation.
930
931 * macterm.c: Remove consolidated defines and code.
932 (mac_per_char_metric): New function for RIF.
00c64fab 933 (mac_encode_char): Adapt to new RIF requirements.
03eb5fab
KS
934 (mac_compute_glyph_string_overhangs): Adapt for RIF.
935 (x_redisplay_interface): Add new members.
936
00c64fab
SM
9372003-03-15 Stefan Monnier <monnier@cs.yale.edu>
938
939 * keymap.c (Vmenu_events): New var.
940 (syms_of_keymap): Initialize it.
941 (where_is_internal): Check more carefully what is a menu event.
942
225c7a07
RS
9432003-03-14 Richard M. Stallman <rms@gnu.org>
944
945 * lread.c (read1): After #!, exit loop on eof.
946
cea9be54
JD
9472003-03-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
948
9ea0e54d
JD
949 * gtkutil.h: Add declaration for xg_frame_cleared.
950
0cb35f4e
JD
951 * xterm.c (x_clear_frame): Call xg_frame_cleared for GTK.
952
cea9be54
JD
953 * gtkutil.c (struct xg_last_sb_pos): New structure.
954 (handle_fixed_child): New function.
955 (xg_resize_widgets): Call handle_fixed_child on all scroll bar widgets
956 and force a redraw on them.
957 (xg_gtk_scroll_destroy): Free struct xg_last_sb_pos also.
958 (xg_create_scroll_bar): Add struct xg_last_sb_pos to scroll bar
959 so we can avoid unneeded redraws.
960 (xg_update_scrollbar_pos): Invalidate data in xg_last_sb_pos
961 and force a redraw on the scroll bar.
962 (xg_set_toolkit_scroll_bar_thumb): Do not change/redraw scroll bar
963 if xg_last_sb_pos shows the positions are up to date.
0cb35f4e 964 (xg_frame_cleared): New function.
cea9be54 965
20b853f3
KH
9662003-03-13 Kenichi Handa <handa@m17n.org>
967
968 * coding.c (Fdetect_coding_region): Fix docstring.
969 (Fdetect_coding_string): Fix docstring.
970
7a555aff
AS
9712003-03-13 Andreas Schwab <schwab@suse.de>
972
25cc0080
AS
973 * gtkutil.c: Add prototype for create_menus.
974
30225431
AS
975 * data.c (long_to_cons): Fix type of top.
976
977 * xselect.c (selection_data_to_lisp_data): Use int instead of
978 long for an integer of size 4.
979
7a555aff 980 * gtkutil.c (xg_update_frame_menubar): Add missing return value.
30225431 981 (xg_tool_bar_help_callback): Likewise.
7a555aff 982
a3e4741f
AS
9832003-03-12 Andreas Schwab <schwab@suse.de>
984
985 * xterm.c (x_term_init) [USE_GTK]: Fix typo.
986
9668be7c
KS
9872003-03-12 Kim F. Storm <storm@cua.dk>
988
03eb5fab 989 The following changes consolidate the fringe handling from
9668be7c 990 xterm.c, w32term.c, and macterm.c into xdisp.c.
00a88f32 991
9668be7c
KS
992 * xdisp.c: Consolidate fringe handling code here.
993 (left_bits, right_bits, continued_bits, continuation_bits)
994 (ov_bits, zv_bits): Define fringe bitmaps.
995 (fringe_bitmaps): New array holding fringe bitmaps.
996 (draw_fringe_bitmap): Draw a specific bitmap; call display
997 specific drawing routine via rif->draw_fringe_bitmap.
998 (draw_row_fringe_bitmaps): Generic replacement for
999 x_draw_row_fringe_bitmaps; all callers changed.
1000 (compute_fringe_widths): Generic replacement for
1001 x_compute_fringe_widths; all callers changed.
1002
1003 * dispextern.h (enum fringe_bitmap_type): Define here.
1004 (struct fringe_bitmap, struct draw_fringe_bitmap_params): New.
1005 (fringe_bitmaps): Declare extern.
1006 (struct redisplay_interface): New member draw_fringe_bitmap.
1007 (draw_row_fringe_bitmaps, compute_fringe_widths): Declare extern.
1008
1009 * xterm.c: Remove generic fringe code.
1010 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
1011 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
1012
1013 * w32term.c: Remove generic fringe code.
1014 (w32_draw_fringe_bitmap): Only perform actual fringe drawing.
1015 (w32_redisplay_interface): Add w32_draw_fringe_bitmap member.
00a88f32 1016
9668be7c
KS
1017 * macterm.c: Remove generic fringe code.
1018 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
1019 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
1020
00a88f32
SM
10212003-03-11 Stefan Monnier <monnier@cs.yale.edu>
1022
1023 * print.c (Fprin1_to_string): Return unibyte string if possible.
1024
1d1de695
DK
10252003-03-09 David Kastrup <dak@gnu.org>
1026
1027 * process.c (read_process_output): We have allocated enough space
1028 for readmax and carryover, so actually use the alloted space.
1029
257f40f2
JD
10302003-03-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1031
1032 * keyboard.c (make_lispy_event): Extend mouse_syms if needed for
1033 toolkit scrollbar click.
1034
1035 * xterm.c (x_window_to_scroll_bar): Call xg_get_scroll_id_for_window
1036 for USE_GTK.
1037 (x_scroll_bar_handle_click): Use this function for toolkit scrollbars
1038 also.
1039 (handle_one_xevent): ButtonPress/Release: If event is for a toolkit
1040 scrollbar and control is pressed, call x_scroll_bar_handle_click.
00a88f32 1041
257f40f2
JD
1042 * gtkutil.h: Declare xg_get_scroll_id_for_window.
1043
1044 * gtkutil.c (xg_get_scroll_id_for_window): New function.
1045 (xg_tool_bar_item_expose_callback): New function.
1046 (xg_tool_bar_expose_callback): Call update_frame_tool_bar.
1047 (xg_create_tool_bar): Connect xg_tool_bar_expose_callback to expose
1048 on the tool bar widget.
1049 (update_frame_tool_bar): Connect xg_tool_bar_item_expose_callback
1050 to expose on the tool bar item widgets.
1051
15213141
JD
10522003-03-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1053
26b74a0b 1054 * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of
00a88f32 1055 struct image* when deciding to update (struct image* may have been
26b74a0b
JD
1056 deleted from the image cache).
1057
15213141
JD
1058 * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if
1059 the event isn't for a frame (i.e. for dialogs).
1060
20b853f3 10612003-03-07 Kenichi Handa <handa@m17n.org>
cb681b34
KH
1062
1063 * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of
1064 composition components reaches the limit, terminate composing.
1065 (COMPOSITION_OK): New macro.
00a88f32 1066 (detect_coding_iso2022): Use it if an escape sequence for
cb681b34
KH
1067 composition is found.
1068 (coding_restore_composition): Adjust the number of composition
1069 components if it is not sane.
1070
c9029fe5
JB
10712003-03-06 Juanma Barranquero <lektu@terra.es>
1072
1073 * w32term.h (struct w32_display_info): Add xrdb member to support
1074 passing resources via -xrm on Windows.
1075
1076 * w32term.c (w32_make_rdb): New function.
1077 (w32_term_init): Use it to initialize xrdb member of w32_display_info
1078 struct. Delete leftover code.
1079
1080 * w32fns.c (Fx_get_resource, x_get_resource_string): Pass xrdb to check
1081 for resources passed on the command line.
1082
1083 * w32reg.c (w32_get_rdb_resource): New function.
1084 (x_get_string_resource): Use it, so resources passed with -xrm
1085 supercede the ones in the registry.
1086
9d00001f
JD
10872003-03-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1088
1089 * xterm.c (x_detect_focus_change): Call x_any_window_to_frame
1090 instead of x_top_window_to_frame.
1091
ca2417b9
JD
10922003-03-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1093
1094 * xsmfns.c (smc_save_yourself_CB): Add --no-splash to options
1095 when restarting Emacs.
1096
5b20caf0
RS
10972003-03-03 Richard M. Stallman <rms@gnu.org>
1098
1099 * buffer.c (Fkill_buffer): Use Frun_hook_with_args_until_failure
1100 to run kill-buffer-query-functions.
1101 (Qkill_buffer_query_functions): New var.
1102 (syms_of_buffer): Init and staticpro it.
1103
58e91b77
JD
11042003-03-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1105
1106 * xterm.h (XSync): Define as gdk_window_process_all_updates for GTK.
1107
932357b4
KS
11082003-02-25 Kim F. Storm <storm@cua.dk>
1109
1110 * xdisp.c (redisplay_window): Fix infinite loop in redisplay.
1111 If centering point failed to make whole line visible and vscroll
1112 is non-zero, disable vscroll and try centering point again.
1113
1114 * lread.c (read1): Accept `single space' syntax like (? x).
1115
bb8db7e1
JD
11162003-02-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1117
1118 * keyboard.c (cancel_hourglass_unwind): Surround with
1119 #ifdef HAVE_X_WINDOWS
1120
47d77aab
KH
11212003-02-25 Kenichi Handa <handa@m17n.org>
1122
1123 * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer
1124 process only when "subprocesses" is defined.
1125
6a097c0c
SM
11262003-02-24 Stefan Monnier <monnier@cs.yale.edu>
1127
1128 * syntax.c (back_comment): Only check nestedness of 2nd char if needed.
1129
0b063c27
JB
11302003-02-24 Juanma Barranquero <lektu@terra.es>
1131
d1135afc
JB
1132 * callint.c (fix_command): Declare as static void and move before
1133 Fcall_interactively.
1134
0b063c27
JB
1135 * xdisp.c (Qwhen): Declare external; it's now defined in callint.c.
1136 (syms_of_xdisp): Don't initialize Qwhen.
1137
0af912f0
JD
11382003-02-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1139
1140 * keyboard.c (cancel_hourglass_unwind): New function.
1141 (command_loop_1): Cancel hourglass with unwind-protect.
1142
120d0a23
RS
11432003-02-23 Richard M. Stallman <rms@gnu.org>
1144
1145 * callint.c (fix_command): New subroutine, from Fcall_interactively.
1146 Detect (when ... (region-beginning)) etc.
1147 (Fcall_interactively): Call fix_command.
1148 (Qif, Qwhen): New variables.
1149 (syms_of_callint): Init and staticpro them.
0b063c27 1150
120d0a23
RS
1151 * regex.c (print_partial_compiled_pattern): Output to stderr.
1152
4ece81a6
KG
11532003-02-23 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
1154
1155 * dired.c (directory_files_internal): Don't expand directory.
1156 (Fdirectory_files, Fdirectory_files_and_attributes): Do it here
1157 instead. From Lars Hansen <larsh@math.ku.dk>.
1158
e52bd6b7
SM
11592003-02-22 Stefan Monnier <monnier@cs.yale.edu>
1160
1161 * fns.c (string_to_multibyte): Remove unused var i.
1162 (Flanginfo): Fix int/Lisp_Object mixup.
1163 (void_call2): New fun.
1164 (Fmap_char_table): Use it in place of call2.
1165
1166 * xfaces.c (x_face_list_fonts): Fix int/Lisp_Object mixup.
1167
1168 * macros.c (Fstart_kbd_macro): Remove redundant assignment.
1169
1170 * keymap.c (copy_keymap_1): Make it static.
1171
1172 * alloc.c (Fgarbage_collect): Don't use XSETFLOAT.
1173
c33ef7c4
JB
11742003-02-22 David Ponce <david@dponce.com>
1175
1176 * lread.c (Fload): Don't check STRING_MULTIBYTE.
1177
16782258
JD
11782003-02-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1179
1180 * process.h: Removed subtty field from struct Lisp_Process.
1181
1182 * process.c (create_process): Remove setting of subtty.
1183 (emacs_get_tty_pgrp): New function.
e52bd6b7
SM
1184 (Fprocess_running_child_p, process_send_signal):
1185 Call emacs_get_tty_pgrp instead of ioctl.
16782258
JD
1186 (process_send_signal): Call EMACS_KILLPG if ioctl TIOCSIGSEND fails.
1187
3abeca61
KG
11882003-02-21 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
1189
1190 * keymap.c (Fdefine_key): Doc fix.
1191
92a8ce63
JB
11922003-02-21 Juanma Barranquero <lektu@terra.es>
1193
1194 Port of patch for RC by Klaus Zeitler <kzeitler@lucent.com>.
1195
1196 * s/hpux10.h: Define POLL_INTERRUPTED_SYS_CALL, not
1197 POLLING_PROBLEM_IN_SELECT.
1198
1199 * s/hpux11.h: Include hpux10-20.h instead of hpux10.h.
1200 Delete #undef of POLLING_PROBLEM_IN_SELECT.
1201
1202 * s/hpux10-20.h: New file.
1203
e52bd6b7
SM
1204 * process.c (wait_reading_process_input):
1205 Use POLL_INTERRUPTED_SYS_CALL, not POLLING_PROBLEM_IN_SELECT.
92a8ce63 1206
20f1ef2e
KH
12072003-02-20 Kenichi Handa <handa@m17n.org>
1208
32d0a9dc
KH
1209 * fontset.c (check_fontset_name): If NAME is nil, return the
1210 default fontset.
1211 (override_font_info): New function.
e52bd6b7 1212 (Fset_fontset_font): Document that NAME nil means the default fontset.
32d0a9dc
KH
1213 (Ffontset_info): If FONTSET is not the default fontset, merge
1214 FONTSET onto the copy of the default fontset, and work on that
1215 copy. Document that NAME nil means the default fontset.
1216 (Ffontset_font): Document that NAME nil means the default fontset.
1217
20f1ef2e
KH
1218 * process.c (setup_process_coding_systems): If the process's
1219 in/out descriptor is -1, do nothing.
1220
77d1daf2
AS
12212003-02-19 Andreas Schwab <schwab@suse.de>
1222
e52bd6b7
SM
1223 * lisp.h (Fcancel_kbd_macro_events, Fstring_to_multibyte):
1224 Add prototypes.
77d1daf2 1225
f9a45bb3
KH
12262003-02-19 Kenichi Handa <handa@m17n.org>
1227
1228 * xfaces.c (try_alternative_families): Try all scalable fonts if
1229 Vscalable_fonts_allowed is not Qt.
1230
72ecb43c
JD
12312003-02-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1232
1233 * xfaces.c (x_face_list_fonts): Set *pfonts to 0 if no fonts found.
1234
ee5be7c3
JD
12352003-02-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1236
1237 * xterm.c (x_list_fonts): If maxnames is less than 0, get all font
1238 names.
1239
1240 * xfaces.c (x_face_list_fonts): Allocate struct font_name here.
e52bd6b7 1241 (sorted_font_list): Move allocation of struct font_name to
ee5be7c3
JD
1242 x_face_list_fonts.
1243 (Fx_font_family_list): Set font-list-limit to -1 to get all font names.
1244 (Fx_list_fonts): Set maxnames to -1 to get all font names.
1245
4cd519a7
KS
12462003-02-18 Kim F. Storm <storm@cua.dk>
1247
068f9882
KS
1248 * lread.c (read1): Fix last change.
1249 "`" is not always special. Allow "?" after a character constant.
4cd519a7 1250
7290a344
AC
12512003-02-18 Andrew Choi <akochoi@shaw.ca>
1252
1253 * unexmacosx.c (copy_data_segment): Also copy __cfstring section.
1254
1f7fa69b
AS
12552003-02-18 Andreas Schwab <schwab@suse.de>
1256
1257 * window.c (window_scroll_pixel_based): Move outside a
1258 multi-glyph character before setting new window start.
1259
1260 * xdisp.c (in_display_vector_p): New function.
1261 * dispextern.h (in_display_vector_p): Declare.
1262
23e21195
KS
12632003-02-18 Kim F. Storm <storm@cua.dk>
1264
1265 * lread.c (read1): Fix and relax read syntax.
1266 Recognize "[", ";", "#", and "?" after a dotted-pair dot.
1267 Only recognize "," after dotted-pair dot if inside backquote.
1268 Never include "`" or "," (inside backquote) in a symbol.
1269 Allow dotted-pair dot after a character constant.
1270 Allow "`" and "," (inside backquote) after a character constant.
92a8ce63 1271
f098b121
JD
12722003-02-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1273
1274 * gtkutil.c (xg_tool_bar_expose_callback): New function.
1275 (xg_create_tool_bar): Force style of tool bar to be horizontal with
1276 icons. Set name of tool bar to emacs-toolbar.
1277 (update_frame_tool_bar): Connect expose event to
1278 xg_tool_bar_expose_callback.
1279
63020c46
RS
12802003-02-17 Richard M. Stallman <rms@gnu.org>
1281
1282 * keyboard.c (this_command_key_count_reset): New variable.
1283 Initiatize to 0 where this_command_key_count is set.
1284 (read_char): Save and restore this_command_key_count_reset
1285 around input method code.
1286 (read_char): If this_command_key_count_reset, echo reread commands.
1287 (Freset_this_command_lengths): Set this_command_key_count_reset to 1.
1288
fb4452cc
KH
12892003-02-17 Kenichi Handa <handa@m17n.org>
1290
1291 * fns.c (string_to_multibyte): Always return a multibyte string.
1292
bd11cc09
JR
12932003-02-16 Jason Rumney <jasonr@gnu.org>
1294
e52bd6b7
SM
1295 * w32fns.c (w32_list_bdf_fonts, w32_list_fonts):
1296 Negative max_fonts parameter means list all.
bd11cc09 1297
4cdf4bde
DL
12982003-02-14 Dave Love <fx@gnu.org>
1299
1300 * fns.c (Flanginfo): Doc fix.
1301
023b93f6
KS
13022003-02-13 Kim F. Storm <storm@cua.dk>
1303
37cd4238
KS
1304 * lread.c (read_escape): Interpret \s as a SPACE character, except
1305 for \s-X in a character constant which still is the super modifier.
1306 (read1): Signal an `invalid read syntax' error if a character
1307 constant is immediately followed by a digit or symbol character.
1308
140a6b7e
KS
1309 * search.c (Fmatch_data): Doc fix. Explicitly state that
1310 match-data is undefined if last search failed.
1311
023b93f6
KS
1312 * keymap.c (Fcommand_remapping): Renamed from Fremap_command.
1313 All uses changed.
1314
7d5c86e5
JB
13152003-02-12 Juanma Barranquero <lektu@terra.es>
1316
1317 * eval.c (Fdefmacro): Fix typo.
1318
295fff2c
KS
13192003-02-12 Kim F. Storm <storm@cua.dk>
1320
1321 * macros.c (Fstart_kbd_macro): If appending, and last keyboard
1322 macro is a string, convert meta modifiers in string when copying
1323 the string into a vector.
1324
60f3202d
KS
13252003-02-11 Kim F. Storm <storm@cua.dk>
1326
1327 * keymap.c (Fremap_command): Return nil if arg is not a symbol.
1328
61cb0b53
KH
13292003-02-11 Kenichi Handa <handa@m17n.org>
1330
1331 * Makefile.in (lisp, shortlisp): Add malayalam.el and tamil.el.
1332
7392e23c
KS
13332003-02-10 Kim F. Storm <storm@cua.dk>
1334
1335 * process.c: Doc fixes.
1336 (syms_of_process): Add `:' prefix to QCfilter_multibyte.
1337
ce4254bd
KH
13382003-02-10 Kenichi Handa <handa@m17n.org>
1339
9c7a329a
KH
1340 * fns.c (Fstring_to_multibyte): Fix typo in the docstring.
1341
ce4254bd
KH
1342 * process.c (QCfilter_multibyte): New variable.
1343 (setup_process_coding_systems): New function.
e52bd6b7
SM
1344 (Fset_process_buffer, Fset_process_filter):
1345 Call setup_process_coding_systems.
ce4254bd
KH
1346 (Fstart_process): Initialize the member `filter_multibyte' of
1347 struct Lisp_Process.
1348 (create_process): Call setup_process_coding_systems.
1349 (Fmake_network_process): New keyward `:filter-multibyte'.
1350 Initialize the member `filter_multibyte' of struct Lisp_Process.
1351 Call setup_process_coding_systems.
1352 (server_accept_connection): Call setup_process_coding_systems.
1353 (read_process_output): If the process has a filter, decide the
1354 multibyteness of a string to given to the filter by
1355 `filter_multibyte' member of the process. If the process doesn't
1356 have a filter and the result of conversion is unibyte, use
1357 Fstring_to_multibyte (not Fstring_make_multibyte) to get the
1358 multibyte form.
1359 (Fset_process_coding_system): Call setup_process_coding_systems.
1360 (Fset_process_filter_multibyte): New function.
1361 (Fprocess_filter_multibyte_p): New function.
1362 (syms_of_process): Intern and staticpro QCfilter_multibyte.
1363 Defsubr Sset_process_filter_multibyte and
1364 Sprocess_filter_multibyte_p.
1365
1366 * process.h (struct Lisp_Process): New member filter_multibyte.
1367
1368 * lisp.h (setup_process_coding_systems): Add prototype.
1369
1370 * buffer.c (Fset_buffer_multibyte): If the current buffer has a
1371 process, update coding systems for the process.
1372
b08d5f59
KH
13732003-02-09 Kenichi Handa <handa@m17n.org>
1374
1375 * fns.c (string_to_multibyte): New function.
1376 (Fstring_to_multibyte): New function.
1377 (syms_of_fns): Defsubr it.
1378
0dfd93c0
AS
13792003-02-08 Andreas Schwab <schwab@suse.de>
1380
1381 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
1382 instead of the substitution.
1383
7b76ca1c
JD
13842003-02-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1385
1386 * xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
1387
1388 * xmenu.c (menu_position_func): Adjust menu popup position so that
1389 the menu is fully visible.
7b76ca1c 1390
2436a4e4
JD
13912003-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1392
1393 * xterm.c (x_text_icon, x_raise_frame, x_lower_frame)
e52bd6b7
SM
1394 (x_make_frame_invisible, x_wm_set_icon_position):
1395 Use FRAME_OUTER_WINDOW instead of ifdef X_TOOLKIT/else/endif.
2436a4e4
JD
1396
1397 * xfns.c (x_set_name, x_set_title): Ditto.
1398
37d1e680
RS
13992003-02-04 Richard M. Stallman <rms@gnu.org>
1400
1401 * keyboard.c (echo_now): Update before_command_echo_length.
1402 (Freset_this_command_lengths): Reset this_command_key_count etc.
1403 immediately rather than arranging to do it later.
1404 (before_command_key_count_1, before_command_echo_length_1)
1405 (before_command_restore_flag): Vars deleted.
1406 (add_command_key): Don't handle before_command_restore_flag.
1407 (read_char, record_menu_key): Don't update before_command_key_count or
1408 before_command_echo_length.
1409 (read_char): Don't handle before_command_restore_flag.
1410
1411 * keyboard.c (command_loop_1): Don't call adjust_point_for_property
1412 in direct-output clauses if it wouldn't be called in the ordinary case.
1413
578846a3
KS
14142003-02-04 Kim F. Storm <storm@cua.dk>
1415
1416 * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix.
1417
49853a4d
JD
14182003-02-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1419
1420 * gtkutil.c (remove_from_container): Copying list is not needed.
1421 (xg_update_menubar, xg_update_menu_item, xg_update_submenu)
1422 (xg_modify_menubar_widgets, update_frame_tool_bar): Call g_list_free
1423 on list returned from gtk_container_get_children to avoid memory leak.
1424
8b53dc06
JR
14252003-02-01 Jason Rumney <jasonr@gnu.org>
1426
5d54d177
JR
1427 * w32fns.c (w32_create_pixmap_from_bitmap_data): Use alloca for
1428 local malloc.
1429 [HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
1430 definitions in xpm.h.
1431 (init_xpm_functions): New function.
1432 (xpm_load): Sync with xfns.c. Adapt for Windows version of libXpm.
1433 (init_external_image_libraries): Try to load libXpm.dll.
1434
8b53dc06
JR
1435 * fileio.c (Fcopy_file) [WINDOWSNT]: Reverse logic for setting
1436 timestamp.
1437
b222e415
DL
14382003-01-31 Dave Love <fx@gnu.org>
1439
1440 * syntax.c (Fskip_chars_forward)
1441 (open-paren-in-column-0-is-defun-start): Doc fix.
1442
c60ee5e7
JB
14432003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
1444
1445 * fileio.c: Support // at start of name for Cygwin (just added proper
1446 preprocessor tests).
1447
1448 * keyboard.c: Port to Cygwin (just added proper preprocessor tests).
1449
1450 * Makefile.in: Use @EXEEXT@ for Cygwin.
1451
1452 * mem-limits.h: Added ifdef to define BSD4_2 for Cygwin.
1453
1454 * s/cygwin.h: Added for Cygwin port.
1455
53b37591
JB
14562003-01-31 Juanma Barranquero <lektu@terra.es>
1457
1458 * w32fns.c (DrawText): Kludge to avoid a redefinition on Windows
1459 when including gif_lib.h.
fe929957
JB
1460 (init_gif_functions, init_tiff_functions): New functions.
1461 (gif_load, tiff_load): Sync with xfns.c version. Adjust colors for
1462 Windows. Disable color table lookups. Call library functions
53b37591 1463 through pointers determined at runtime.
fe929957
JB
1464 (init_external_image_libraries): Try to load libungif.dll and
1465 libtiff.dll.
53b37591 1466
45415a8f
KH
14672003-01-31 Kenichi Handa <handa@m17n.org>
1468
1469 * xdisp.c (SKIP_GLYPHS): New macro.
e52bd6b7 1470 (set_cursor_from_row): Skip all glyphs that comes from overlay string.
45415a8f 1471
a97e4138
JD
14722003-01-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1473
e52bd6b7 1474 * gtkutil.c (free_frame_tool_bar): Remove debug printf.
a97e4138 1475
6eed9bed
DL
14762003-01-30 Dave Love <fx@gnu.org>
1477
1478 * alloc.c (Vgc_elapsed, gcs_done): New variables.
1479 (Fgarbage_collect): Use them.
1480 (init_alloc, syms_of_alloc): Set them up.
1481
100dcd40
JB
14822003-01-30 Juanma Barranquero <lektu@terra.es>
1483
1484 * w32fns.c (init_external_image_libraries): Add missing operator.
1485
fbd852af
JR
14862003-01-29 Jason Rumney <jasonr@gnu.org>
1487
1488 * w32fns.c (init_external_image_libraries): Allow jpeg-62.dll as
1489 an alternative name for jpeg.dll.
1490
8a2d8020
KH
14912003-01-29 Kenichi Handa <handa@m17n.org>
1492
1493 * xdisp.c (set_cursor_from_row): Pay attention to string display
1494 properties.
1495
058c18c7
AC
14962003-01-28 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
1497
1498 * macterm.c (keycode_to_xkeysym_table): Add <tab>, <backspace>,
1499 <escape>.
1500 (keycode_to_xkeysym_table): Reformat and add more comments.
1501 (XTread_socket): Drop special case for backspace.
1502
385f11cf
AC
15032003-01-28 Andrew Choi <akochoi@shaw.ca>
1504
1505 * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
1506 values in old-style RGB specs.
1507
c922a224
JB
15082003-01-27 Juanma Barranquero <lektu@terra.es>
1509
1510 * w32fns.c (init_external_image_libraries): Try alternate names for the
1511 jpeg dll.
1512
0a1d6de0
JD
15132003-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1514
1515 * gtkutil.c (create_dialog, xg_separator_p)
1516 (xg_item_label_same_p, xg_update_menu_item): Check for NULL string
1517 before calling strcmp or strlen.
1518
a97e4138 15192003-01-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1d1885fc
JD
1520
1521 * gtkutil.c (update_frame_tool_bar): Call prepare_image_for_display
1522 and handle image load failure.
1523
28908312
JR
15242003-01-26 Jason Rumney <jasonr@gnu.org>
1525
1526 * w32fns.c (init_jpeg_functions, jpeg_resync_to_restart_wrapper):
1527 New functions.
1528 (jpeg_load): Sync with xfns.c version. Adjust colors for Windows.
1529 Disable color table lookups. Call jpeg library functions
1530 through pointers determined at runtime.
1531 (init_external_image_libraries): Try to load jpeg.dll.
1532
84e47416
RS
15332003-01-25 Richard M. Stallman <rms@gnu.org>
1534
1535 * lisp.h: Declare format2 instead of format1.
1536
1537 * fileio.c (barf_or_query_if_file_exists):
1538 Call format2 instead of format1.
1539
1540 * editfns.c (format2): New function, replaces format1
1541 but takes exactly two Lisp Objects as format args.
1542
1543 * buffer.c (Fkill_buffer): Call format2 instead of format1.
1544
a97e4138 15452003-01-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1fcfb866
JD
1546
1547 * xterm.h: Change to return value of x_dispatch_event to int.
1548
1549 * xterm.c (x_filter_event): New function.
1550 (event_handler_gdk, XTread_socket): Call x_filter_event.
1551 (x_dispatch_event): Change to return value of finish.
1552 (event_handler_gdk): Use return value from x_dispatch_event.
1553
1554 * xfns.c (x_window): Call create_frame_xic for GTK version to
1555 initialize input methods.
1556
1557 * gtkutil.h: Add (void) prototypes.
1558
1559 * gtkutil.c (create_menus): Remove code that puts the help menu to
1560 the right.
1561
54eefef1
JR
15622003-01-25 Jason Rumney <jasonr@gnu.org>
1563
1564 * w32fns.c (XPutPixel): Handle monochrome images; used for masks.
1565 [HAVE_PNG]: Sync with xfns.c version.
1566 (png_load): Adjust colors for Windows. Use Windows
1567 bitmaps. Disable color table lookups.
c262430d
JR
1568 (DEF_IMGLIB_FN, LOAD_IMGLIB_FN): New macros.
1569 (init_png_functions): New function.
1570 (png_read_from_memory, png_load): Call png library functions
1571 through pointers determined at runtime.
1572 (QCloader, QCbounding_box, QCpt_width, QCpt_height): Declare.
1573 (init_external_image_libraries): New function.
1574 (init_xfns): Call it.
54eefef1 1575
1a9e275b
AS
15762003-01-24 Andreas Schwab <schwab@suse.de>
1577
1578 * minibuf.c (Fminibuffer_message): Verify type of parameter.
1579
a97e4138 15802003-01-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
81e302ef
JD
1581
1582 * gtkutil.c (xg_initialize): Initialize id_to_widget here instead
1583 of static initializer.
1584
422eec7e
DL
15852003-01-24 Dave Love <fx@gnu.org>
1586
1587 * s/gnu-linux.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define for more
1588 architectures.
1589
1590 * alloc.c (mark_stack) [!GC_LISP_OBJECT_ALIGNMENT && __GNUC__]:
1591 Use __alignof__.
1592
2a026b04
KH
15932003-01-24 Kenichi Handa <handa@m17n.org>
1594
1595 * keyboard.c (adjust_point_for_property): New second arg MODIFIED.
e52bd6b7 1596 It it is nonzero, don't pretend that an invisible area doesn't exist.
2a026b04
KH
1597 (command_loop_1): Call adjust_point_for_property with proper
1598 second arg.
1599
a18bb28d
JR
16002003-01-22 Jason Rumney <jasonr@gnu.org>
1601
1602 Sync changes with xterm.c and xfns.c.
1603
1604 * w32term.c (x_draw_glyph_string_foreground)
1605 (x_draw_composite_glyph_string_foreground): Implement overstriking.
1606
1607 * w32term.c (x_write_glyphs): Clear phys_cursor_on_p if current
1608 phys_cursor's hpos is overwritten. This is still not completely
1609 correct, as it doesn't really make sense to use hpos at all to
1610 get the cursor glyph (as that is relative to the width of the
1611 characters on the line, which may have changed during the update).
1612
1613 * w32term.c (notice_overwritten_cursor): Handle the special case
1614 of the cursor being in the first blank non-text line at the
1615 end of a window.
1616
1617 * w32term.c (x_draw_hollow_cursor, x_draw_bar_cursor)
1618 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
1619 Compute from the x position returned by x_draw_glyphs.
1620
1621 (x_display_and_set_cursor): Don't set phys_cursor_width here,
1622 except for NO_CURSOR and system caret, to make phys_cursor_width
1623 contain what its name suggests.
1624 (notice_overwritten_cursor): Consider the cursor image erased if
1625 the output area intersects the cursor image in y-direction.
1626
6a097c0c
SM
1627 * w32term.c (note_mode_line_or_margin_highlight): Rename from
1628 note_mode_line_highlight and extend.
a18bb28d
JR
1629
1630 * w32term.c (last_window): New variable.
1631 (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs.
1632 (note_mouse_movement): Remove reimplemented code in #if 0.
1633
1634 * w32fns.c (x_set_cursor_type): Set cursor_type_changed,
1635 not update_mode_lines, and always set it to 1.
1636
ac6e47ef
JR
16372003-01-21 Jason Rumney <jasonr@gnu.org>
1638
1639 * w32fns.c (IDC_HAND): Define it if system headers don't.
1640
16412003-01-21 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
1642
1643 * w32term.h (struct w32_output): New member hand_cursor.
1644 (WM_EMACS_SETCURSOR): New message definition.
1645
1646 * w32term.c (note_mode_line_highlight): Delete #if 0 to enable
1647 function w32_define_cursor.
1648 (note_mouse_highlight): Initialize, setup cursor accoding to mouse
1649 position, change member name output_data.x to output_data.w32 and
1650 add function w32_define_cursor.
1651 (show_mouse_face): Delete #if 0 to enable function w32_define_cursor
1652 and change member name output_data.x to output_data.w32.
e52bd6b7
SM
1653 (w32_initialize_display_info):
1654 Setup dpyinfo->vertical_scroll_bar_cursor.
ac6e47ef
JR
1655
1656 * w32fns.c (Vx_hand_shape): New variable.
1657 (w32_wnd_proc): Add message entries for WM_SETCURSOR and
1658 WM_EMACS_SETCURSOR.
1659 (x-create-frame): Setup Cursor types.
1660
ceb39a17
JB
16612003-01-21 David Ponce <david@dponce.com>
1662
ac6e47ef
JR
1663 * w32term.c (w32_encode_char): For DIM=1 charset, set
1664 ccl->reg[2] to -1 before calling ccl_driver. (Sync. with xterm.c
1665 x_encode_char change by Kenichi Handa <handa@m17n.org> on
ceb39a17 1666 2002-09-30.)
ac6e47ef
JR
1667 (w32_draw_relief_rect): Declare all args.
1668 (w32_define_cursor): New.
1669
1670 * w32fns.c (w32_load_cursor): New function.
1671 (w32_init_class): Use it.
1672 (x_put_x_image): Declare all args.
1673
46cf0bed
JB
16742003-01-21 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change)
1675
1676 * Makefile.in (ALL_CFLAGS): Include MYCPPFLAGS, not MYCPPFLAG.
1677
a97e4138 16782003-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
e8794476
JD
1679
1680 * gtkutil.c: Must include stdio.h before termhooks.h
1681
83fc9c63
DL
16822003-01-21 Dave Love <fx@gnu.org>
1683
1684 * alloc.c (Fgc_status): Print zombie list.
1685 (mark_maybe_object) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
1686 Fix assignment of zombies.
1687 (Fgarbage_collect) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
1688 Don't take car of non-cons.
1689
1690 * s/sol2-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
1691
1692 * s/sunos4-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
1693
fe04b8c8
JR
16942003-01-20 David Ponce <david@dponce.com>
1695
1696 * w32menu.c (digest_single_submenu): Declare all args.
1697
1698 Sync with 2002-12-23 Richard M. Stallman <rms@gnu.org>
1699 changes in xmenu.c:
1700
1701 (parse_single_submenu): Use individual keymap's prompt
1702 string as pane name, if there is one.
1703 (set_frame_menubar): Save menu_items_n_panes from each call to
1704 parse_single_submenu and use it when calling digest_single_submenu.
1705
539e69a9
ST
17062003-01-20 Steven Tamm <steventamm@mac.com>
1707
1708 * macterm.c (XTread_socket): Checks for valid, visible window
1709 before sending a scroll-wheel event.
1710
675d000f
RS
17112003-01-20 Richard M. Stallman <rms@gnu.org>
1712
1713 * xdisp.c (redisplay_window): If mini window's buffer is not
1714 a minibuffer, then redisplay it like other windows.
1715
a97e4138 17162003-01-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22174d10
JD
1717
1718 * gtkutil.c (xg_create_frame_widgets): Check if there is an
1719 external tool bar before setting tool bar height.
1720
048addec
JD
17212003-01-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1722
1723 * xterm.c (handle_one_xevent): Surround popup_activated
1724 with #ifdef:s for non-toolkit version.
1725
1726 * Makefile.in (XOBJ): Add gtkutil.o if USE_GTK
1727 (gtkutil.o): New file.
1728 (TOOLKIT_DEFINES): Set to -DUSE_GTK if HAVE_GTK.
1729 (LIBW): Set to @GTK_LIBS@ if USE_GTK.
1730
1731 * gtkutil.c: New file for GTK version.
1732
1733 * gtkutil.h: New file for GTK version.
1734
1735 * xterm.h: Add xt_or_gtk_widget.
1736 Include gtk files for USE_GTK.
1737 (struct x_output): Add toolbar_height.
1738 (struct x_output): Add GTK widgets and Gdk size_hints.
1739 (GTK_WIDGET_TO_X_WIN, FRAME_GTK_OUTER_WIDGET, FRAME_GTK_WIDGET)
1740 (FRAME_OUTER_WINDOW): New macros for USE_GTK.
1741 (FRAME_OUTER_TO_INNER_DIFF_Y): Add FRAME_TOOLBAR_HEIGHT to calculation.
1742
1743 * xterm.c: Include gtkutil.h for USE_GTK.
1744 Declare extern void free_frame_menubar for USE_GTK.
1745 (note_mouse_highlight): Check popup_activated for USE_GTK.
1746 (xt_action_hook): Don't compile if USE_GTK.
1747 (x_scroll_bar_to_input_event): Use CurrentTime for USE_GTK.
1748 (xg_scroll_callback): New function.
1749 (x_create_toolkit_scroll_bar): Call xg_create_scroll_bar for USE_GTK.
1750 (x_set_toolkit_scroll_bar_thumb): Call xg_set_toolkit_scroll_bar_thumb
1751 for USE_GTK.
1752 (x_scroll_bar_create): Call xg_update_scrollbar_pos and
1753 xg_show_scroll_bar for USE_GTK.
1754 (x_scroll_bar_remove): Call xg_remove_scroll_bar for USE_GTK.
1755 (XTset_vertical_scroll_bar): Call xg_update_scrollbar_pos for USE_GTK.
1756 (event_handler_gdk): New function for USE_GTK.
1757 (handle_one_xevent): Call xg_resize_widgets for USE_GTK.
1758 (handle_one_xevent): Make sure widget is mapped before
1759 calling x_real_positions for USE_GTK.
1760 (XTread_socket): Add GTK event loop for USE_GTK.
1761 (x_set_window_size): Call xg_frame_set_char_size for USE_GTK.
1762 (x_make_frame_visible): Call gtk_widget_show_all for USE_GTK.
1763 (x_make_frame_invisible): Call gtk_widget_hide for USE_GTK.
1764 (x_iconify_frame): Add code for USE_GTK.
1765 (x_free_frame_resources): Call gtk_widget_destroy for USE_GTK.
1766 (x_wm_set_size_hint): Only compile if not USE_GTK. GTK version
1767 is in gtkutil.c.
1768 (x_term_init): Add initialization for GTK.
1769 (syms_of_xterm): Set Vx_toolkit_scroll_bars for USE_GTK.
1770
1771 * xmenu.c: Include gtkutil.h for USE_GTK.
1772 (Fx_popup_menu): Use current position if x and y is NIL.
6bdb309a
SM
1773 (single_menu_item, single_menu_item, Fx_popup_dialog):
1774 Check for USE_GTK.
048addec
JD
1775 (popup_widget_loop): New function for USE_GTK.
1776 (x_activate_menubar): Add code for USE_GTK.
1777 (popup_activate_callback, popup_deactivate_callback)
6bdb309a
SM
1778 (menu_highlight_callback, menubar_selection_callback):
1779 Add USE_GTK versions.
048addec
JD
1780 (update_frame_menubar): Call xg_update_frame_menubar for USE_GTK.
1781 (set_frame_menubar): Call xg_modify_menubar_widgets for USE_GTK.
1782 (free_frame_menubar): Only compile if not USE_GTK. GTK version
1783 is in gtkutil.c.
1784 (popup_selection_callback): New version for USE_GTK.
1785 (create_and_show_popup_menu): New fuction, one USE_GTK version and
6bdb309a 1786 one USE_X_TOOLKIT version.
048addec
JD
1787 (xmenu_show): Call create_and_show_popup_menu.
1788 (dialog_selection_callback): New version for USE_GTK.
1789 (create_and_show_dialog): New fuction, one USE_GTK version and
6bdb309a 1790 one USE_X_TOOLKIT version.
048addec
JD
1791 (xdialog_show): Call create_and_show_dialog.
1792
1793 * xfns.c: Include gtkutil for USE_GTK.
1794 (x_window_to_frame, x_any_window_to_frame)
1795 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
1796 (x_top_window_to_frame): Add code for USE_GTK.
1797 (x_set_background_color): Call xg_set_background_color for GTK.
1798 (x_set_menu_bar_lines): Check for USE_GTK.
1799 (x_set_tool_bar_lines): Call update_frame_tool_bar for USE_GTK.
1800 (x_set_name, x_set_title): Call gtk_window_set_title for USE_GTK.
1801 (x_window): Call xg_create_frame_widgets for USE_GTK.
1802 (Fx_create_frame): Check for USE_GTK
1803 (Fx_file_dialog): New implementation for USE_GTK.
1804
1805 * xdisp.c: Add check for USE_GTK for extern void set_frame_menubar.
1806 (update_menu_bar): Add check for USE_GTK.
1807 (update_tool_bar): Add check for USE_GTK and external tool bar.
1808 (redisplay_tool_bar): Add check for USE_GTK and external tool bar.
1809 (redisplay_internal): Add check for USE_GTK and popup_activated.
1810 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_MENU_BAR.
1811 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_TOOL_BAR.
1812 (display_menu_bar): Add check for USE_GTK
1813
1814 * lisp.h: Declare Vx_resource_name extern.
1815
1816 * keyboard.c (kbd_buffer_get_event): Check MENU_BAR_ACTIVATE_EVENT
1817 for USE_GTK.
1818 (make_lispy_event): Check MENU_BAR_EVENT for USE_GTK.
1819
1820 * frame.h (struct frame): Add external_tool_bar. Check for USE_GTK.
1821 (FRAME_EXTERNAL_TOOL_BAR): New macro.
1822 (FRAME_EXTERNAL_MENU_BAR): Check for USE_GTK.
1823
1824 * fileio.c (Fread_file_name): Add check for USE_GTK.
1825
6bdb309a
SM
1826 * dispnew.c (adjust_frame_glyphs_for_window_redisplay):
1827 Add check for USE_GTK.
048addec
JD
1828
1829 * config.in: Added HAVE_GTK
1830
1831 * alloc.c (Fgarbage_collect): Call xg_mark_data for GTK.
1832
18332003-01-18 Stefan Monnier <monnier@cs.yale.edu>
1834
1835 * charset.h (Funibyte_char_to_multibyte): Export.
1836
18372003-01-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1838
1839 * xmenu.c (mouse_position_for_popup): New function.
1840 (Fx_popup_menu): Call mouse_position_for_popup for X and
1841 mouse_position_hook for others.
1842
18432003-01-17 Kim F. Storm <storm@cua.dk>
1844
1845 * editfns.c (Finsert): Mention `string-make-multibyte' and
1846 `string-as-multibyte' in doc string.
1847
18482003-01-17 Kenichi Handa <handa@m17n.org>
1849
1850 * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here.
3c02a6f5 1851
048addec
JD
1852 * editfns.c (Fformat): Convert an unibyte char argument that is
1853 formatted by "%c" to multibyte if the total result must be a
1854 multibyte string.
cd7df9c0 1855
048addec 18562003-01-16 Kim F. Storm <storm@cua.dk>
cd7df9c0 1857
048addec
JD
1858 * process.c (set-process-filter): Document unibyte/multibyte-ness
1859 of string argument.
56210ecd 1860
048addec 18612003-01-16 Kenichi Handa <handa@m17n.org>
56210ecd 1862
048addec 1863 * charset.h (NEXT_CHAR_BOUNDARY, PREV_CHAR_BOUNDARY): New macros.
56210ecd 1864
048addec
JD
1865 * regex.c (GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
1866 (re_search_2): Likewise.
6df8b9fe 1867
048addec 18682003-01-15 Kenichi Handa <handa@m17n.org>
6df8b9fe 1869
048addec
JD
1870 * xdisp.c (message_dolog): Fix bug of the case that *Message*
1871 buffer is unibyte.
292ddc31 1872
048addec 18732003-01-15 Francesco Potort\e,Al\e(B <pot@gnu.org>
292ddc31 1874
048addec 1875 * fns.c (Fsubstring): Clarify doc string.
292ddc31 1876
048addec
JD
1877 * textprop.c (Ftext_properties_at, Fnext_char_property_change)
1878 (Fprevious_char_property_change)
1879 (Fnext_single_char_property_change)
1880 (Fprevious_single_char_property_change, Fnext_property_change)
1881 (Fnext_single_property_change, Fprevious_property_change)
1882 (Fprevious_single_property_change, Fadd_text_properties)
1883 (Fput_text_property, Fset_text_properties)
1884 (Fremove_text_properties, Fremove_list_of_text_properties)
1885 (Ftext_property_any, Ftext_property_not_all): Clarify doc strings.
63e4e4c6 1886
048addec 18872003-01-14 Kim F. Storm <storm@cua.dk>
63e4e4c6 1888
048addec
JD
1889 * process.h (struct Lisp_Process): New member plist replaces old
1890 member private_vars. All uses changed.
63e4e4c6 1891
048addec 1892 * process.c: Reworked 2003-01-12 change -- call a plist a plist!
6bdb309a 1893 (QCplist): Rename from QCvars. Change all uses.
048addec 1894 (Fprocess_plist): Replaces Fprocess_variable. Simplified.
6bdb309a 1895 (Fset_process_plist): Replaces Fset_process_variable. Simplify.
048addec 1896 (syms_of_process): Intern, staticpro, defsubr these.
6bdb309a 1897 (Fmake_network_process): Describe :plist arg. Remove :vars arg.
7ed16567 1898
048addec 18992003-01-14 Francesco Potort\e,Al\e(B <pot@gnu.org>
7ed16567 1900
6bdb309a 1901 * m/delta.h: Remove (obsolete).
e833850f 1902
048addec 19032003-01-13 Francesco Potort\e,Al\e(B <pot@gnu.org>
e833850f 1904
048addec
JD
1905 * fileio.c (Fdelete_directory, Fdelete_file): Document the
1906 behaviour in front of symlinks.
1907 (Fdelete_file): Raise an error on directories.
817cb127 1908
048addec 19092003-01-13 Dave Love <fx@gnu.org>
817cb127 1910
048addec 1911 * fns.c (Freverse): Use QUIT.
3e8cf2ea 1912
048addec 19132003-01-13 Richard M. Stallman <rms@gnu.org>
3e8cf2ea 1914
048addec
JD
1915 * minibuf.c (minibuffer_completion_contents):
1916 Error if point is inside prompt.
3e8cf2ea 1917
048addec
JD
1918 * keyboard.c (command_loop_1): Don't redisplay directly
1919 if there's a post-command-hook.
3e8cf2ea 1920
048addec
JD
1921 * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix.
1922 (Fdo_auto_save): Add gcpros around Ffile_name_directory.
2c10f029 1923
048addec 19242003-01-12 Kim F. Storm <storm@cua.dk>
94e8ffca 1925
048addec 1926 * process.h (struct Lisp_Process): New member private_vars.
94e8ffca 1927
048addec
JD
1928 * process.c (QCvars): New variable.
1929 (syms_of_process): Intern and staticpro it.
1930 (Fset_process_contact): Removed function.
1931 (Fprocess_variable, Fset_process_variable): New functions.
1932 (syms_of_process): Defsubr them.
1933 (Fstart_process): Initialize private_vars plist to nil.
1934 (Fmake_network_process): New arg :vars to setup the private
1935 variables for new network process.
1936 (server_accept_connection): Copy server's private variables to
1937 client process.
2c10f029 1938
048addec
JD
1939 * alloc.c (pure_alloc): Fixed 2003-01-10 changed (caused spurious
1940 crashes). Code rewritten and simplified. Now directly aligns the
1941 pointer and recalculates pure_bytes_used, rather than aligning the
1942 size and adjusting the pointer.
b8a76c6c 1943
048addec 19442003-01-11 Kim F. Storm <storm@cua.dk>
b8a76c6c 1945
048addec
JD
1946 * process.c (Fset_process_contact): New function.
1947 (syms_of_process): defsubr it.
1948 (make-network-process): Update doc.
3a8d0899 1949
048addec 19502003-01-10 Andreas Schwab <schwab@suse.de>
3a8d0899 1951
048addec
JD
1952 * alloc.c (pure_alloc): Correct alignment for Lisp_Floats.
1953 Reported by Berthold Gunreben <b.gunreben@web.de>.
4abc7470 1954
048addec 19552003-01-10 Dave Love <fx@gnu.org>
4abc7470 1956
048addec 1957 * composite.c (syms_of_composite): Make composition_hash_table weak.
b809d662 1958
048addec 19592003-01-09 Kim F. Storm <storm@cua.dk>
b809d662 1960
048addec
JD
1961 * process.c (Fmake_network_process): Convert new port number
1962 to host byte order for `:service t' case. From Mario Lang.
bf338245 1963
048addec 19642003-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
bf338245 1965
048addec
JD
1966 * xfns.c (Fx_file_dialog): Call XtAppNextEvent and x_dispatch_event
1967 instead of XtAppProcessEvent.
bf338245 1968
048addec
JD
1969 * xterm.c (handle_one_xevent): New function.
1970 (x_dispatch_event): New function.
1971 (XTread_socket): Call handle_one_xevent.
bf338245 1972
048addec 1973 * xterm.h (FRAME_OUTER_TO_INNER_DIFF_X/Y): New.
e833850f 1974
048addec
JD
1975 * xmenu.c (Fx_popup_menu): If popping up at mouse position,
1976 call XQueryPointer to get coordinates.
1977 (popup_get_selection): Do not set popup_activated_flag to zero,
1978 let popup_deactivate_callback do that. Needed for Motif.
1979 Call x_dispatch_event instead of XtDispatchEvent.
1980 (xmenu_show): Calculate root coordinate from frame top/left position.
c4af2bce 1981
048addec 19822003-01-08 Kim F. Storm <storm@cua.dk>
c4af2bce 1983
6bdb309a 1984 * process.c (server_accept_connection): Fix recording of new
048addec
JD
1985 connection's local address in :local property of contact info.
1986 (Fmake_network_process): Record local network address for new
1987 client processes in :local property of contact info.
6bdb309a 1988 (format-network-address): Add arg OMIT-PORT. Change callers.
00e3ab56 1989
048addec 19902003-01-07 Dave Love <fx@gnu.org>
00e3ab56 1991
048addec 1992 * Makefile.in (fns.o): Depend on coding.h.
f387e1fd 1993
048addec 19942003-01-07 Markus Rost <rost@math.ohio-state.edu>
f387e1fd 1995
048addec 1996 * minibuf.c (Fread_variable): Doc fix.
f387e1fd 1997
048addec
JD
1998 * eval.c (Fuser_variable_p): Doc change. For custom variables,
1999 use the same test as for custom-variable-p.
8c6d74c6 2000
048addec 20012003-01-05 Richard M. Stallman <rms@gnu.org>
e833850f 2002
048addec
JD
2003 * xdisp.c (try_scrolling): New arg LAST_LINE_MISFIT.
2004 Count LAST_LINE_MISFIT in scroll margin for end of window.
2005 Move label too_near_end before setting SCROLL_MARGIN_POS.
2006 Set LAST_LINE_MISFIT before jumping there.
8c6d74c6 2007
048addec
JD
2008 * xdisp.c (try_scrolling): Calculate amount_to_scroll better in
2009 scroll_conservatively case. If scrolling that much doesn't change
2010 STARTP, move it down one line.
e833850f 2011
048addec
JD
2012 * xdisp.c (redisplay_window): Pass last_line_misfit arg to
2013 try_scrolling. Make it 1 after make_cursor_line_fully_visible fails.
8c6d74c6 2014
048addec
JD
2015 * xdisp.c (setup_echo_area_for_printing): Kill Emacs if no
2016 selected frame.
8c6d74c6 2017
048addec
JD
2018 * keymap.c (apropos_predicate, apropos_accumulate): Make them static.
2019 (syms_of_keymap): staticpro them.
2020 (Fapropos_internal): Initialize them and clear them out.
2021 Don't GCPRO them.
8c6d74c6 2022
048addec
JD
2023 * buffer.c (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>:
2024 Doc fixes.
8c6d74c6 2025
048addec
JD
2026 * lisp.h: New misc type Lisp_Save_Value.
2027 (enum Lisp_Misc_Type): Add Lisp_Misc_Save_Value.
2028 (XSAVE_VALUE): New macro.
2029 (struct Lisp_Save_Value): New data type.
2030 (union Lisp_Misc): Add u_save_value alternative.
2031 (make_save_value): Declared.
8c6d74c6 2032
048addec 2033 * alloc.c (make_save_value): New function.
8c6d74c6 2034
048addec
JD
2035 * xterm.c (x_catch_errors): Save dpy using make_save_value.
2036 (x_catch_errors_unwind): Call XSync.
8c6d74c6 2037
048addec 20382003-01-01 Richard M. Stallman <rms@gnu.org>
8c6d74c6 2039
048addec 2040 * window.c (window_scroll_pixel_based): Partially undo last change.
8c6d74c6 2041
048addec
JD
2042 * keyboard.c (command_loop_1): Call adjust_point_for_property
2043 in direct action cases for Qforward_char and Qbackward_char.
2044 Set already_adjusted so it won't be done twice.
8c6d74c6 2045
048addec 20462002-12-30 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change)
8c6d74c6 2047
048addec
JD
2048 * src/config.in (!HAVE_SIZE_T): Fix order of arguments in
2049 type definition of size_t.
8c609cff 2050
048addec 20512003-01-02 Steven Tamm <steventamm@mac.com>
8c609cff 2052
048addec
JD
2053 * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to
2054 distinguish Carbon GUI builds from X11 builds on darwin.
b37113a1 2055
048addec 20562002-12-30 Steven Tamm <steventamm@mac.com>
b37113a1 2057
048addec
JD
2058 * macterm.c (syms_of_macterm): Set mac-wheel-button-is-mouse-2
2059 to default to t.
fa634a5e 2060
048addec 20612002-12-29 Francesco Potort\e,Al\e(B <pot@gnu.org>
fa634a5e 2062
048addec 2063 * data.c (Fstring_to_number, Fminus): Better English in doc strings.
ce0669d4 2064
048addec 20652002-12-28 Steven Tamm <steventamm@mac.com>
ce0669d4 2066
048addec
JD
2067 * Makefile.in (macosx-bundle): Fixes to Mac OS X/Carbon port to
2068 allow building in a different directory than source. Uses some
2069 GNU Make extensions, but there is no other make on Mac OS X.
2308af15 2070
048addec 20712002-12-26 Francesco Potort\e,Al\e(B <pot@gnu.org>
2308af15 2072
048addec
JD
2073 * data.c (Fmakunbound, Ffmakunbound, Fmake_variable_buffer_local)
2074 (Fsetq_default, Fmake_local_variable, Fkill_local_variable)
2075 (Fmake_variable_frame_local, Faset, Fnumber_to_string, Fminus)
2076 (Fstring_to_number): Mention the returned value in the doc strings.
2155ecf3 2077
048addec 20782002-12-23 Richard M. Stallman <rms@gnu.org>
2155ecf3 2079
048addec
JD
2080 * buffer.c (syms_of_buffer) <scroll-up-aggressively>
2081 <scroll-down-aggressively>: Doc fix.
2155ecf3 2082
048addec
JD
2083 * xmenu.c (parse_single_submenu): Use individual keymap's prompt
2084 string as pane name, if there is one.
2085 (set_frame_menubar): Save menu_items_n_panes from each call to
2086 parse_single_submenu and use it when calling digest_single_submenu.
2155ecf3 2087
048addec
JD
2088 * window.c (window_scroll_pixel_based): Fix check for reaching BEGV.
2089 Don't try to make last line fully visible if it is past end of window.
61f1d295 2090
048addec 20912002-12-22 Steven Tamm <steventamm@mac.com>
61f1d295 2092
048addec
JD
2093 * macmenu.c (MIN_POPUP_SUBMENU_ID): Add.
2094 (mac_menu_show): Add support for hierarchical popup menus.
2095 (add_menu_item): Remove indentation support.
2096 (fill_submenu, fill_menu): Create hierarchical menus
2097 instead of using indentation.
0b17a217 2098
048addec 20992002-12-22 Richard M. Stallman <rms@gnu.org>
0b17a217 2100
048addec
JD
2101 * xdisp.c (try_cursor_movement): Don't call try_window here.
2102 (redisplay_window): Never redisplay minibuffer when inactive.
0b17a217 2103
048addec 2104 * window.c (select_window_1): Undo 9/21 change.
402e4f8b 2105
048addec 21062002-12-22 Steven Tamm <steventamm@mac.com>
402e4f8b 2107
048addec
JD
2108 * macterm.c (XTread_socket): Call KeyTranslate for control and
2109 meta to deal correctly shifted non-alpha characters, like C-S-5
2110 being treated like C-%. Does not look for shift key to deal
2111 with masking off control-key with mac-reverse-ctrl-meta.
f02cac82 2112
048addec 21132002-12-21 Richard M. Stallman <rms@gnu.org>
f02cac82 2114
048addec
JD
2115 * xmenu.c (popup_get_selection): Now static. New arg DO_TIMERS.
2116 If it is non-nil, run timers. Use an unwind-protect to requeue
2117 the events that were read ahead.
2118 (popup_get_selection_unwind): New subroutine.
2119 (popup_get_selection_queue): File-scope variable now holds that queue.
2120 (xmenu_show): Pass 0 for DO_TIMERS to popup_get_selection.
2121 (xdialog_show): Pass 1 for DO_TIMERS to popup_get_selection.
2122 Use an unwind-protect to pop down the dialog box.
2123 (xdialog_show_unwind): New subroutine implements that.
f02cac82 2124
048addec
JD
2125 * xdisp.c (row_containing_pos): Change exit test using last_y.
2126 (try_window_id): Abort if row_containing_pos returns null.
f02cac82 2127
048addec
JD
2128 * lread.c (load_error_handler): New function.
2129 (Fload): Handle errors in Fsubstitute_in_file_name.
2130 Don't expect Fsignal to return.
f02cac82 2131
048addec
JD
2132 * eval.c: Errors and throws work right with interrupt blocking.
2133 (struct catchtag): New elt interrupt_input_blocked.
2134 (unwind_to_catch): Restore interrupt_input_blocked from saved value.
2135 (internal_catch, Fcondition_case, internal_condition_case)
2136 (internal_condition_case_1, internal_condition_case_2): Save it.
2137 (Fsignal): Don't do TOTALLY_UNBLOCK_INPUT.
f02cac82 2138
048addec 2139 * editfns.c (Fformat): Add parens.
f02cac82 2140
048addec
JD
2141 * dired.c (file_name_completion): Fix that change.
2142 Delete special quit-handling code; just use QUIT.
f02cac82 2143
048addec 21442002-12-21 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
f02cac82 2145
048addec
JD
2146 * dired.c (file_name_completion): Close directory on error
2147 just as in directory_files_internal.
1a590729 2148
048addec 21492002-12-19 David Kastrup <David.Kastrup@t-online.de>
1a590729 2150
048addec
JD
2151 * window.c (Fset_window_configuration): Set old_point to correct
2152 value when new_current_buffer == current_buffer.
f02cac82 2153
048addec 21542002-12-17 Ben Key <bkey1@tampabay.rr.com>
2308af15 2155
048addec
JD
2156 Revisited my earlier fix for the following entry in etc/PROBLEMS:
2157 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
2158 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
9785d95b 2159
048addec
JD
2160 These changes were in part based upon suggestions made by Peter
2161 'Luna' Runestig [peter@runestig.com].
9785d95b 2162
048addec
JD
2163 * w32.c (g_b_init_is_windows_9x, g_b_init_open_process_token,
2164 g_b_init_get_token_information, g_b_init_lookup_account_sid,
6bdb309a 2165 g_b_init_get_sid_identifier_authority ): Add several static
048addec 2166 global variables.
9785d95b 2167
048addec
JD
2168 * w32.c (globals_of_w32): New function. Used to initialize those
2169 global variables that must always be initialized on startup even
2170 when the global variable initialized is non zero. Its primary
2171 purpose at this time is to set the global variables
2172 g_b_init_is_windows_9x, g_b_init_open_process_token,
2173 g_b_init_get_token_information, g_b_init_lookup_account_sid, and
2174 g_b_init_get_sid_identifier_authority to 0 on startup.
2175 Called from main.
9785d95b 2176
048addec
JD
2177 * w32.c (is_windows_9x): Perform initialization only if
2178 g_b_init_is_windows_9x is equal to 0. On initialization set
2179 g_b_init_is_windows_9x equal to 1.
2308af15 2180
048addec
JD
2181 * w32.c (open_process_token): Perform initialization only if
2182 g_b_init_open_process_token is equal to 0. On initialization set
2183 g_b_init_open_process_token equal to 1.
2308af15 2184
048addec
JD
2185 * w32.c (get_token_information): Perform initialization only if
2186 g_b_init_get_token_information is equal to 0. On initialization
2187 set g_b_init_get_token_information equal to 1.
9785d95b 2188
048addec
JD
2189 * w32.c (lookup_account_sid): Perform initialization only if
2190 g_b_init_lookup_account_sid is equal to 0. On initialization
2191 set g_b_init_lookup_account_sid equal to 1.
9785d95b 2192
048addec
JD
2193 * w32.c (get_sid_identifier_authority): Perform initialization
2194 only if g_b_init_get_sid_identifier_authority is equal to 0.
2195 On initialization set g_b_init_get_sid_identifier_authority equal to 1.
9785d95b 2196
048addec
JD
2197 * w32fns.c (globals_of_w32fns): New function. Used to initialize
2198 those global variables that must always be initialized on startup
2199 even when the global variable initialized is non zero.
2200 Its primary purpose at this time is to initialize the global variable
2201 track_mouse_event_fn.
9785d95b 2202
048addec
JD
2203 * w32fns.c (w32_wnd_proc): Remove initialization of
2204 track_mouse_event_fn from the handler for the WM_SETFOCUS message.
9785d95b 2205
048addec 2206 * w32fns.c (syms_of_w32fns): Call globals_of_w32fns.
9785d95b 2207
048addec
JD
2208 * w32menu.c (globals_of_w32menu): New function. Used to
2209 initialize those global variables that must always be initialized
2210 on startup even when the global variable initialized is non zero.
2211 Its primary purpose at this time is to initialize the global
2212 variables get_menu_item_info and set_menu_item_info.
9785d95b 2213
048addec
JD
2214 * w32menu.c (initialize_frame_menubar): Remove initialization of
2215 get_menu_item_info and set_menu_item_info.
9785d95b 2216
048addec 2217 * w32menu.c (syms_of_w32menu): Call globals_of_w32menu.
9785d95b 2218
048addec
JD
2219 * w32.h (globals_of_w32, globals_of_w32fns, globals_of_w32menu):
2220 Declare them.
9785d95b 2221
048addec
JD
2222 * emacs.c (main): Call globals_of_w32 prior to calling
2223 init_environment if WINDOWSNT is defined. Call globals_of_w32fns
2224 and globals_of_w32menu if initialized is non zero and HAVE_NTGUI
2225 is defined.
9785d95b 2226
048addec
JD
2227 * w32term.c (x_update_window_begin): Fix Windows API error
2228 detected by BoundsChecker. Test to determine if
2229 w32_system_caret_hwnd is NULL prior to attempting to use
2230 SendMessage to send the WM_EMACS_HIDE_CARET message to it.
2308af15 2231
048addec
JD
2232 * w32term.c (x_update_window_end): Fix Windows API error
2233 detected by BoundsChecker. Test to determine if
2234 w32_system_caret_hwnd is NULL prior to attempting to use
2235 SendMessage to send the WM_EMACS_SHOW_CARET message to it.
b6da19ef 2236
048addec 22372002-12-17 Kenichi Handa <handa@m17n.org>
b6da19ef 2238
048addec
JD
2239 * coding.c (coding_system_require_warning): New variable.
2240 (syms_of_coding): DEFVAR it.
b6da19ef 2241
048addec 2242 * coding.h (coding_system_require_warning): Extern it.
b6da19ef 2243
048addec
JD
2244 * fileio.c (choose_write_coding_system): Even if
2245 Vcoding_system_for_write is non-nil, if
2246 coding_system_require_warning is nonzero, call
2247 Vselect_safe_coding_system_function.
bfcf6dbe 2248
048addec 22492002-12-17 Markus Rost <rost@math.ohio-state.edu>
bfcf6dbe 2250
048addec
JD
2251 * Makefile.in (lisp, shortlisp): Add cus-face and timer.
2252 (lisp): Add font-core.
2c568af5 2253
048addec 22542002-12-13 Stefan Monnier <monnier@cs.yale.edu>
2c568af5 2255
048addec
JD
2256 * textprop.c (text_read_only): New arg `propval'.
2257 (get_char_property_and_overlay): Remove unused var `next_overlay'.
2258 (verify_interval_modification): Use text_read_only's new arg.
b8c6225c 2259
048addec 22602002-12-13 Kenichi Handa <handa@m17n.org>
b8c6225c 2261
048addec 2262 * coding.c (Funencodable_char_position): Set pend correctly.
706ddb8f 2263
048addec 22642002-12-12 Jason Rumney <jasonr@gnu.org>
706ddb8f 2265
048addec
JD
2266 * w32term.c (last_mousemove_x, last_mousemove_y): New variables.
2267 (w32_read_socket) <WM_MOUSEMOVE>: Use them to detect non-movement.
2268 Be more careful about when help_events are generated.
96720f09 2269
048addec 22702002-12-12 Steven Tamm <steventamm@mac.com>
96720f09 2271
048addec
JD
2272 * macterm.c (mac_check_for_quit_char): Correctly set the
2273 modifiers of the event to 0.
2274 * mac.c (sys_select): Duplicate rfds before calling select to
2275 ensure that rfds survive the while loop.
e5ae1c49 2276
048addec 22772002-12-11 Kim F. Storm <storm@cua.dk>
e5ae1c49 2278
048addec
JD
2279 * xdisp.c (try_window_id): Don't call set_cursor_from_row if
2280 row_containing_pos returned NULL.
2eb46b2d 2281
048addec 22822002-12-10 Steven Tamm <steventamm@mac.com>
2eb46b2d 2283
6bdb309a 2284 * mac.c (sys_read): Fix sys_read to not call select if IO is
048addec 2285 non-blocking.
6bdb309a 2286 (sys_select): Fix sys_select to not use a timeout larger than
048addec 2287 the one given.
b11f1d8a 2288
048addec 22892002-12-10 Juanma Barranquero <lektu@terra.es>
b11f1d8a 2290
048addec 2291 * editfns.c (Fformat): Use alloca, not _alloca.
d8528226 2292
048addec 22932002-12-09 Richard M. Stallman <rms@gnu.org>
d8528226 2294
048addec
JD
2295 * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input
2296 as the last thing.
a4ac5b17 2297
048addec 22982002-12-09 Dave Love <fx@gnu.org>
a4ac5b17 2299
048addec 2300 * s/sol2-8.h: Removed. (Not necessary.)
ac42d7b9 2301
048addec 23022002-12-09 Matthew Swift <swift@alum.mit.edu>
ac42d7b9 2303
048addec
JD
2304 * editfns.c (Fformat): Handle precision in string conversion
2305 specifiers like libc functions do (ie, print at most that many
2306 characters).
85cce843 2307
048addec 23082002-12-08 Richard M. Stallman <rms@gnu.org>
85cce843 2309
048addec
JD
2310 * xdisp.c (row_containing_pos): Check more carefully
2311 whether charpos is really in the row before returning it.
0d4d26a7 2312
048addec 23132002-12-07 Steven Tamm <steventamm@mac.com>
0d4d26a7 2314
048addec 2315 * sysdep.c (emacs_read) [HAVE_CARBON]: Have emacs_read use sys_read.
b11f1d8a 2316
048addec
JD
2317 * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at
2318 each stack frame. This may change as it could be time consuming.
0d4d26a7 2319
048addec
JD
2320 * macterm.c (mac_check_for_quit_char, quit_char_comp)
2321 (init_quit_char_handler, mac_determine_quit_char_modifiers)
6bdb309a 2322 (mac_initialize): Add code to check for pressing of quit_char
048addec 2323 in the OS event queue.
b11f1d8a 2324
048addec
JD
2325 * mac.c (sys_select): Call mac_check_for_quit_char every second
2326 while blocking on select.
0d4d26a7 2327
048addec
JD
2328 * mac.c (sys_read): Use sys_select to test for input first
2329 before calling read, to allow C-g to break.
9252f7bc 2330
048addec 23312002-12-07 Richard M. Stallman <rms@gnu.org>
9252f7bc 2332
048addec 2333 * minibuf.c (Fcompleting_read): Doc fix.
9252f7bc 2334
048addec 2335 * lread.c (syms_of_lread) <load-history>: Doc fix.
9252f7bc 2336
048addec 2337 * fileio.c (Fcopy_file): Set immediate_quit around emacs_open call.
9252f7bc 2338
048addec
JD
2339 * eval.c (Fdefun, Fdefmacro): Record in load-history redefining an
2340 autoload.
9252f7bc 2341
048addec 2342 * data.c (Fdefalias): Record in load-history redefining an autoload.
9252f7bc 2343
048addec 2344 * alloca.c: Undo ifdef change accidentally made on 12-04.
bfa261c0 2345
048addec 23462002-12-06 Francesco Potorti` <pot@gnu.org>
bfa261c0 2347
048addec 2348 * xfns.c (png_load): Avoid double gamma correction for PNG images.
c5992177 2349
048addec 23502002-12-04 Richard M. Stallman <rms@gnu.org>
c5992177 2351
048addec 2352 * sysdep.c (fcntl.h): Test only HAVE_FCNTL_H.
c5992177 2353
048addec 2354 * fileio.c (fcntl.h): Test only HAVE_FCNTL_H.
c5992177 2355
048addec 2356 * alloca.c: Don't use #error.
02d588e2 2357
048addec 23582002-12-03 Dave Love <fx@gnu.org>
02d588e2 2359
048addec
JD
2360 * buffer.c (Qucs_set_table_for_input): New.
2361 (Fget_buffer_create): Use it.
2362 (Qset_buffer_major_mode_hook): Deleted.
2363 (Fset_buffer_major_mode): Revert previous change.
2364 (init_buffer_once): Intern ucs-set-table-for-input.
2365 (syms_of_buffer): Delete Qset_buffer_major_mode_hook.
2366 Add &Qucs_set_table_for_input.
451e2697 2367
048addec 23682002-12-03 Andreas Schwab <schwab@suse.de>
451e2697 2369
048addec
JD
2370 * callint.c (Fcall_interactively): Use next_event only if less
2371 than key_count.
72742a99 2372
048addec 23732002-12-02 Andrew Choi <akochoi@shaw.ca>
72742a99 2374
048addec
JD
2375 * macmenu.c (add_menu_item, fill_menubar): Truncate menu item
2376 names to 255 characters.
72742a99 2377
048addec
JD
2378 * macterm.c (XTread_socket): If all frames have been collapsed,
2379 expand the first one before handling drag-and-drop events.
72742a99 2380
048addec
JD
2381 * s/darwin.h (GETPGRP_NO_ARG): Delete. Replaced by GETPGRP_VOID,
2382 which is detected by autoconf.
40e6ff95 2383
048addec 23842002-12-01 Steven Tamm <steventamm@mac.com>
40e6ff95 2385
048addec
JD
2386 * unexmacosx.c (copy_twolevelhints, dump_it): Now corrects the
2387 offset in two hints table to allow prebinding to be redone and
2388 allow the executable to be stripped.
c02138c6 2389
048addec 23902002-11-29 Dave Love <fx@gnu.org>
c02138c6 2391
048addec
JD
2392 * fns.c (Frequire): Don't call LOADHIST_ATTACH if feature was
2393 already provided.
0e47bbf7 2394
048addec 23952002-11-29 Richard M. Stallman <rms@gnu.org>
0e47bbf7 2396
048addec
JD
2397 * xdisp.c (start_display): Check more intelligently for
2398 whether the line is continued.
2399 (move_it_vertically_backward): Clear it->continuation_lines_width.
44129dcb 2400
048addec 24012002-11-28 Dave Love <fx@gnu.org>
44129dcb 2402
048addec
JD
2403 * s/amdahl.h, s/unipl5-0.h, m/sgi3000.h, s/3700.h, s/alliant-2800.h:
2404 * s/alliant.h, s/altos.h: Deleted. (Unused/empty.)
f707342d 2405
048addec 24062002-11-27 Steven Tamm <steventamm@mac.com>
f707342d 2407
048addec
JD
2408 * fns.c (Frequire): Change nesting allowance from 2 to 3 to cause
2409 more descriptive error output from lread.c:Fload upon most require
2410 cycles during boostrapping.
1637fd2c 2411
048addec 24122002-11-27 Jason Rumney <jasonr@gnu.org>
1637fd2c 2413
048addec
JD
2414 * fileio.c (Finsert_file_contents): Give a more appropriate error
2415 for files bigger than 2Gb when off_t is 32 bit.
1637fd2c 2416
048addec
JD
2417 * dired.c (Ffile_attributes): Don't return negative file sizes for
2418 files bigger than 2Gb when off_t is 32 bit.
540c2788 2419
048addec 24202002-11-27 Dave Love <fx@gnu.org>
6b2fd6ea 2421
048addec 2422 * s/irix6-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
6b2fd6ea 2423
048addec
JD
2424 * systty.h: Don't conditionally define GETPGRP_NO_ARG.
2425 Test GETPGRP_VOID instead.
2426 [BSD_TERMIOS]: Remove definitions (never used).
6b2fd6ea 2427
048addec
JD
2428 * s/osf5-0.h (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist):
2429 Don't define.
2430 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
540c2788 2431
048addec 2432 * m/mips.h (WORDS_BIG_ENDIAN): Define conditionally.
8cc03716 2433
048addec 24342002-11-25 Jason Rumney <jasonr@gnu.org>
8cc03716 2435
048addec
JD
2436 * w32.c (sys_write): Avoid non-blocking mode, which is not fully
2437 supported.
4042a81a 2438
048addec 24392002-11-25 Dave Love <fx@gnu.org>
4042a81a 2440
048addec 2441 * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec.
4042a81a 2442
048addec 2443 * Makefile.in (TEMACS_LDFLAGS): Update last change.
be4ee72f 2444
048addec 24452002-11-25 Andreas Schwab <schwab@suse.de>
be4ee72f 2446
048addec 2447 * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change.
82122254 2448
048addec 24492002-11-24 Steven Tamm <steventamm@mac.com>
82122254 2450
048addec
JD
2451 * unexmacosx.c (unexec_realloc): Use malloc_default_zone to
2452 determine the size of pointers alloced in unexed space instead
2453 of using possibly invalid emacs_zone pointers. This fixes the
2454 binary incompatibility problems caused by updates to libSystem.B.
c1ee53bc 2455
048addec 24562002-11-24 Richard M. Stallman <rms@gnu.org>
c1ee53bc 2457
048addec 2458 * search.c (Fstring_match): Doc fix.
c1ee53bc 2459
048addec
JD
2460 * callint.c (Fcall_interactively): If a command fails because
2461 `*' detects a read-only buffer, but RECORD_FLAG is set,
2462 record it anyway if the args don't actually do tty input.
5598c32e 2463
048addec 24642002-11-22 Dave Love <fx@gnu.org>
5598c32e 2465
048addec 2466 * sysdep.c (stuff_char) [PROTOTYPES]: Provide ISO C arglist.
5598c32e 2467
048addec
JD
2468 * keyboard.c (interrupt_signal): Provide forward declaration.
2469 (kbd_buffer_store_event): Don't declare interrupt_signal.
5598c32e 2470
048addec 2471 * xdisp.c (store_frame_title_char) [PROTOTYPES]: Provide ISO C arglist.
97b14e22 2472
048addec 24732002-11-21 Richard M. Stallman <rms@gnu.org>
97b14e22 2474
048addec
JD
2475 * eval.c (interactive_p): Skip any number of bytecode
2476 and special form frames, in any order.
516eea8e 2477
048addec 24782002-11-20 Jason Rumney <jasonr@gnu.org>
516eea8e 2479
048addec
JD
2480 * w32fns.c (convert_mono_to_color_image): New function.
2481 (xbm_load, xbm_load_image): Use it when foreground or background
2482 is explicitly set.
04dbfa08 2483
048addec 24842002-11-19 Dave Love <fx@gnu.org>
04dbfa08 2485
048addec 2486 * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
b4aebae3 2487
048addec 24882002-11-18 Jason Rumney <jasonr@gnu.org>
b4aebae3 2489
048addec
JD
2490 * w32fns.c (x_build_heuristic_mask): Filter palette info from color.
2491 (XPutPixel): Swap blue and red.
2492 (xpm_format, pbm_format, png_format, jpeg_format, tiff_format)
2493 (gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
2494 (xpm_image_p, pbm_image_p, png_image_p, jpeg_image_p)
2495 (tiff_image_p, gif_image_p, gs_image_p): Don't check ascent.
1998560a 2496
048addec 24972002-11-18 Dave Love <fx@gnu.org>
d824beee 2498
048addec 2499 * m/orion105.h (HAVE_ALLOCA): Don't define.
d824beee 2500
048addec 2501 * m/m68k.h, m/arm.h, mtekxd88.h, m/tower32v3.h: Don't define alloca.
d824beee 2502
048addec 2503 * m/intel386.h: Don't include alloca.h or define alloca.
d824beee 2504
048addec
JD
2505 * m/ia64.h: Don't include alloca.h, stdlib.h. Don't declare
2506 malloc, realloc, calloc.
d824beee 2507
048addec
JD
2508 * m/hp800.h, m/sr2k.h, m/ns16000.h, m/wicat.h (bcopy, bzero)
2509 (bcmp): Don't define.
d824beee 2510
048addec 2511 * m/delta.h (bcopy, bzero, bcmp, alloca): Don't define.
d824beee 2512
048addec 2513 * m/amdahl.h: Don't define LIB_STANDARD.
d824beee 2514
048addec 2515 * m/alpha.h: Move OSF1 stuff from here to s/osf1.h.
d824beee 2516
048addec 2517 * s/osf1.h: Move OSF1 stuff from m/alpha.h to here.
d824beee 2518
048addec
JD
2519 * s/irix4-0.h, s/irix5-0.h, m/powerpcle.h, m/sparc.h:
2520 Don't include alloca.h.
d824beee 2521
048addec 2522 * s/aix3-2.h (HAVE_FSYNC): Don't define.
1998560a 2523
048addec 2524 * regex.c (_GNU_SOURCE): Don't define.
1998560a 2525
048addec 2526 * process.c (_GNU_SOURCE): Don't define.
1998560a 2527
048addec 2528 * fileio.c (_GNU_SOURCE, HAVE_FSYNC): Don't define.
8704a6ab 2529
048addec 25302002-11-18 Markus Rost <rost@math.ohio-state.edu>
8704a6ab 2531
048addec 2532 * s/sol2-8.h: Include sol2-6.h.
6ae2cd57 2533
048addec 25342002-11-18 Miles Bader <miles@gnu.org>
6ae2cd57 2535
048addec
JD
2536 * dispextern.h (struct face): Add `overstrike' field.
2537 * xterm.c (x_draw_glyph_string_foreground)
2538 (x_draw_composite_glyph_string_foreground): Implement overstriking.
2539 * xfaces.c (load_face_font): Set `face->overstrike' based on
2540 result from choose_face_font.
2541 (best_matching_font, choose_face_font): Add `needs_overstrike'
2542 argument, and use it to return whether overstriking is desirable
2543 for this face/font combo.
2544 (set_font_frame_param: Pass new argument to choose_face_font.
6ae2cd57 2545
048addec 25462002-11-17 Ben Key <BKey1@tampabay.rr.com>
3582b6a3 2547
048addec
JD
2548 This change is my fix for the following entry in etc/PROBLEMS:
2549 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
2550 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
f60ae425 2551
048addec
JD
2552 * w32.c: Added wrapper functions around the win32 API functions
2553 OpenProcessToken, GetTokenInformation, LookupAccountSid, and
2554 GetSidIdentifierAuthority. These wrapper functions serve two
2555 purposes:
2556 1. They ensure that the wrapped function can never be called
2557 when Emacs is running on an operating system on which they are
2558 not supported (Microsoft Windows 95 / 98 / ME).
2559 2. They call the wrapped functions via function pointers rather
2560 than calling them directly. This avoids taking advantage of the
2561 undocumented fact that although these functions are not supported
2562 in the 9x branch of Microsoft Windows, the functions do exist in
2563 the version of advapi32.dll that is found in the 9x branch of
2564 Microsoft Windows.
f60ae425 2565
6bdb309a 2566 * w32.c (init_user_info): Replace the calls to the win32 API
048addec
JD
2567 functions OpenProcessToken, GetTokenInformation, LookupAccountSid,
2568 and GetSidIdentifierAuthority with calls to the newly added
2569 wrapper functions.
f60ae425 2570
048addec
JD
2571 * w32.h: Added extern declarations for the following functions:
2572 syms_of_w32term, syms_of_w32fns, syms_of_w32select,
2573 syms_of_w32menu, and void syms_of_fontset.
f60ae425 2574
6bdb309a 2575 * w32fns.c (w32_wnd_proc): Add code to reinitialize the
048addec
JD
2576 function pointer track_mouse_event_fn in the handler for the
2577 WM_SETFOCUS message.
3582b6a3 2578
6bdb309a 2579 * w32menu.c (initialize_frame_menubar): Add code to
048addec
JD
2580 reinitialize the function pointers set_menu_item_info and
2581 get_menu_item_info.
f60ae425 2582
048addec 25832002-11-17 Ben Key <BKey1@tampabay.rr.com>
f60ae425 2584
048addec
JD
2585 * sound.c: Added a partial implementation of play-sound-internal
2586 for Microsoft Windows. Added various #ifdef / #else / #endif
2587 code blocks to separate the code that will compile under
2588 Microsoft Windows from the code that is specific to Gnu/Linux.
2589 Moved several blocks of code around to make this separation of code
2590 into Windows compatible and Gnu/Linux compatible code blocks easier.
f60ae425 2591
048addec 2592 * makefile.w32-in: Include sound.c and link with WinMM.lib.
a0f0878d 2593
048addec
JD
2594 * s/ms-w32.h: Defined the symbol HAVE_SOUND so that the newly
2595 added support for play-sound-internal under Windows would be
2596 included in the build of Emacs.
517f42a0 2597
048addec 25982002-11-16 Jason Rumney <jasonr@gnu.org>
517f42a0 2599
048addec 2600 * w32fns.c (w32_load_system_font): Don't disable Cleartype.
517f42a0 2601
048addec 2602 * w32term.c (w32_get_glyph_string_clip_rect): Clip cursor tightly.
a0f0878d 2603
048addec 26042002-11-15 Stefan Monnier <monnier@cs.yale.edu>
a0f0878d 2605
048addec
JD
2606 * keyboard.c (command_loop_1): Fix int/Lisp_Object mixup.
2607 (adjust_point_for_property): Move out of display and invisible even if
2608 we were already inside before (in case a property was added while
2609 we weren't looking). Be more careful when handling invisible props.
2610 Skip invisible text as if it really wasn't there at all.
aab83f91 2611
048addec 26122002-11-15 Jason Rumney <jasonr@gnu.org>
aab83f91 2613
048addec
JD
2614 * w32term.c (x_draw_image_foreground)
2615 (w32_draw_image_foreground_1): Use standard copy and invert
2616 operations to draw images.
aab83f91 2617
048addec
JD
2618 * w32fns.c (x_create_x_image_and_pixmap): Fill in palette for
2619 depth of 1.
2620 (xbm_read_bitmap_data): Invert bits as xbm is read in.
2621 (XPutPixel): Don't invert bits here.
a4478a76 2622
048addec 26232002-11-15 Jason Rumney <jasonr@gnu.org>
a4478a76 2624
048addec
JD
2625 * w32term.c (x_draw_image_foreground, x_draw_image_glyph_string)
2626 (w32_draw_image_foreground_1): Handle image masks.
2627 (x_draw_image_glyph_string): Don't BitBlt transparently.
a4478a76 2628
048addec
JD
2629 * w32fns.c (w32_defined_color): Adjust RGB values for Emacs.
2630 (x_from_xcolors): Adjust RGB values for W32.
2631 (image_background, image_background_transparent)
2632 (postprocess_image, x_to_xcolors, x_disable_image)
2633 (x_build_heuristic_mask): Adapt for W32 and enable.
2634 (x_create_x_image_and_pixmap): Mark images with palettes as such.
2635 (xbm_load): Remove unused variable.
03670a65 2636
048addec 26372002-11-14 Richard M. Stallman <rms@gnu.org>
03670a65 2638
048addec 2639 * buffer.c (syms_of_buffer): Doc fix.
59daa29a 2640
048addec 26412002-11-14 Dave Love <fx@gnu.org>
59daa29a 2642
048addec 2643 * alloc.c (SETJMP_WILL_NOT_WORK): Add note.
59daa29a 2644
048addec
JD
2645 * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
2646 * xmenu.c (unuse_menu_items, digest_single_submenu):
2647 * xfns.c (x_put_x_image):
2648 * xdisp.c (message2_nolog, set_message):
2649 * undo.c (record_point):
2650 * terminfo.c (tparam):
2651 * syntax.c (scan_sexps_forward):
2652 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
2653 * composite.c (update_compositions):
2654 * cm.c (calccost, cmgoto):
2655 * charset.c (c_string_width): Declare all args (per C99).
59daa29a 2656
048addec 2657 * frame.h (get_specified_cursor_type, get_window_cursor_type): Declare.
59daa29a 2658
048addec
JD
2659 * lisp.h (get_specified_cursor_type, get_window_cursor_type):
2660 Don't declare.
59daa29a 2661
048addec 2662 * emacs.c (main) [!VMS]: Avoid third arg.
59daa29a 2663
048addec
JD
2664 * fns.c (Fcopy_sequence): Doc fix.
2665 (Fmap_char_table): Cast `call2'.
3947677c 2666
048addec
JD
26672002-11-14 Francesco Potorti` <pot@gnu.org>
2668
2669 * s/sol2-8.h: New file.
2670
26712002-11-14 Kim F. Storm <storm@cua.dk>
2672
2673 * buffer.c (syms_of_buffer) <mode-line-format>: Document symbol
2674 dependency on `risky-local-variable' and the :propertize form.
2675
26762002-11-12 Stefan Monnier <monnier@cs.yale.edu>
2677
2678 * fns.c (Fmap_char_table): Don't use map_char_table's function arg.
2679
2680 * syntax.c (scan_sexps_forward): Undo last patch.
2681 Use a more obvious fix: check eob before updating the syntax table.
2682
26832002-11-09 Stefan Monnier <monnier@cs.yale.edu>
2684
2685 * syntax.c (scan_sexps_forward): Update syntax table before reading
2686 a char rather than after so we don't update the table past eob.
2687
26882002-11-09 Dave Love <fx@gnu.org>
2689
2690 * buffer.c (Fset_buffer_major_mode): Fix last change.
2691
2692 * regex.c (regexec): Fix pmatch declaration.
2693
2694 * cmds.c (Fself_insert_command): Apply Vtranslation_table_for_input.
2695
2696 * keyboard.c (command_loop_1): Apply Vtranslation_table_for_input
2697 to self-inserting characters.
2698 (syms_of_keyboard) <keyboard-translate-table>: Doc fix.
2699
2700 * coding.c (Vtranslation_table_for_input): New.
2701 (syms_of_coding): DEFVAR it.
2702
27032002-11-08 Juanma Barranquero <lektu@terra.es>
2704
2705 * w32term.c (w32_draw_fringe_bitmap): Remove unused local variable
2706 window.
2707
27082002-11-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2709
6bdb309a 2710 * process.c (Fformat_network_address): Remove unused locals p,
048addec
JD
2711 cp, and i.
2712
27132002-11-06 Dave Love <fx@gnu.org>
2714
2715 * buffer.c (Qset_buffer_major_mode_hook): New.
2716 (Fset_buffer_major_mode): Use it.
2717
27182002-11-06 Richard M. Stallman <rms@gnu.org>
2719
2720 * xterm.c (x_term_init): Use turn_on_atimers, not start_polling
2721 and stop_polling.
2722
2723 * process.c (wait_reading_process_input):
2724 Test POLLING_PROBLEM_IN_SELECT, not hpux.
2725 Avoid initialization for auto Lisp_Object var.
2726
2727 * s/hpux11.h (POLLING_PROBLEM_IN_SELECT): Add #undef.
2728
2729 * s/hpux10.h (POLLING_PROBLEM_IN_SELECT): Defined.
2730
27312002-11-05 Richard M. Stallman <rms@gnu.org>
2732
2733 * s/sol2-5.h (BROKEN_SIGIO): Turn off the #undef.
2734
2735 * callint.c (Fcall_interactively): New local filter_specs.
2736 (Fcall_interactively): Check for progn as well as let.
2737 Add a gcpro.
2738 (Qprogn): New variable.
2739 (syms_of_callint): Staticpro and init Qprogn.
2740
27412002-11-04 John Paul Wallington <jpw@shootybangbang.com>
2742
2743 * lread.c (Feval_buffer): Doc fix.
2744
27452002-11-04 Dave Love <fx@gnu.org>
2746
2747 * keyboard.c (read_char): Always translate iff
2748 Vkeyboard_translate_table is a char table and c is valid.
2749
2750 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
2751 and fix C types.
2752
27532002-11-03 Stefan Monnier <monnier@cs.yale.edu>
2754
2755 * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
2756
2757 * editfns.c (get_pos_property): Don't hardcode Qfield.
2758
2759 * keyboard.c (adjust_point_for_property): Handle `display' prop on
2760 overlays. Also handle `invisible' prop.
2761
27622002-11-02 Stefan Monnier <monnier@cs.yale.edu>
2763
2764 * coding.c (decode_coding_emacs_mule, decode_coding_iso2022)
2765 (decode_coding_sjis_big5, decode_eol): Allow lone \r in DOS EOL.
2766
27672002-11-01 Andreas Schwab <schwab@suse.de>
2768
2769 * editfns.c (Fmessage): Revert last change to properly handle %%.
2770
27712002-11-01 Stefan Monnier <monnier@cs.yale.edu>
2772
2773 * xmenu.c (unuse_menu_items): New fun.
2774 (menu_items_inuse): New var.
2775 (syms_of_xmenu): Initialize it.
2776 (init_menu_items): Use it to detect re-entrance.
2777 (Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset when done.
2778 (Fx_popup_menu): Remove spurious XSETFRAME.
2779
2780 * editfns.c (find_field): Make an exception for nil fields.
2781
27822002-11-01 Dave Love <fx@gnu.org>
2783
2784 * m/gec63.h: Deleted.
2785
27862002-10-31 Dave Love <fx@gnu.org>
2787
2788 * xterm.c (XTread_socket): Fix last change.
2789 (xaw_scroll_callback): Cast call_data to long to avoid warning.
2790
27912002-10-31 Stefan Monnier <monnier@cs.yale.edu>
2792
2793 * process.c (Fformat_network_address): Fix int/Lisp_Object mixup.
2794
27952002-10-30 Stefan Monnier <monnier@cs.yale.edu>
2796
2797 * editfns.c (overlays_around, get_pos_property): New funs.
2798 (find_field): Use them.
2799 Also be careful not to modify POS before its last use.
2800 (Fmessage): Don't Fformat if there's nothing to format.
2801
28022002-10-30 Dave Love <fx@gnu.org>
2803
2804 * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
2805 [HAVE_PTY_H]; Include pty.h.
2806
2807 * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
2808
2809 * xterm.c (Qeql): Declare.
2810 (Vx_keysym_table): New.
2811 (syms_of_xterm): Initialize it.
2812 (XTread_socket): Use it. Deal with ASCII keysyms.
2813 (XSetIMValues) [HAVE_X11R6]: Prototype.
2814
2815 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
2816 (lispy_kana_keys): Comment out.
2817 (make_lispy_event) [XK_kana_A]: Comment out.
2818 (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>:
2819 Fix sprintf call.
2820
2821 * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
2822 regexp.h change).
2823 (TERMINFO, LIBS_TERMCAP): Define.
2824
2825 * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
2826 (bcmp): Define conditional on HAVE_BCMP.
2827 (NO_SIOCTL_H): Don't define.
2828 (TIOCSIGSEND): Don't make conditional on IRIX6.
2829
2830 * s/sol2-5.h: Don't include strings.h.
2831 (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
2832
2833 * s/irix6-0.h (IRIX6): Don't define.
2834 (bcopy, bcmp, bzero): Don't undef.
2835
2836 * s/irix6-5.h: Don't include strings.h.
2837 (IRIX6): Don't define.
2838 (bcopy, bcmp, bzero): Don't undef.
2839
2840 * syntax.c (Fforward_comment): Doc fix.
2841
28422002-10-29 Kim F. Storm <storm@cua.dk>
2843
2844 * process.c (Fsignal_process): Allow PROCESS to be specified by
2845 name in addition to pid (as integer or string).
2846
28472002-10-28 Harald Maier <Harald.Maier.BW@t-online.de> (tiny change)
2848
2849 * w32heap.c: Don't redefine _heap_init and _heap_term on MSVC 7 build
2850 environments.
2851
28522002-10-27 Kim F. Storm <storm@cua.dk>
2853
2854 * xterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
2855
2856 * w32term.c (note_mouse_highlight): Don't use mouse-face if hidden.
2857
2858 * msdos.c (IT_note_mouse_highlight): Don't use mouse-face if hidden.
2859
2860 * macterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
2861
28622002-10-26 Richard M. Stallman <rms@gnu.org>
2863
2864 * editfns.c (Fformat): Detect invalid format letters for floats.
2865
28662002-10-25 Kenichi Handa <handa@m17n.org>
2867
2868 * xfns.c (x_set_name): Encode by Qcompound_text unconditionally.
2869 (x_set_title): Likewise.
2870
28712002-10-25 Juanma Barranquero <lektu@terra.es>
2872
2873 * macgui.h:
2874 * w32gui.h: Remove definition of XColor.
2875
2876 * dispextern.h [!HAVE_X_WINDOWS]: Define XColor.
2877
28782002-10-24 Kim F. Storm <storm@cua.dk>
2879
2880 * xdisp.c (get_window_cursor_type): New arg ACTIVE_CURSOR.
2881 Callers changed (supply dummy arg).
2882
2883 * lisp.h (get_window_cursor_type): Update prototype.
2884
2885 * w32term.c (x_display_and_set_cursor): Get active_cursor from
2886 get_window_cursor_type to track system caret.
2887
28882002-10-24 Kim F. Storm <storm@cua.dk>
2889
2890 * process.c (Fformat_network_address): New function.
2891 (syms_of_process): Defsubr it.
2892 (list_processes_1): Use it to format :local/:remote address if
2893 service/host is not set; before emacs would crash in that case.
2894 (Fmake_network_process): Don't use Ffind_operation_coding_system
2895 to setup coding system if host or service is not set.
2896
28972002-10-23 Juanma Barranquero <lektu@terra.es>
2898
2899 Patch suggested by Jay Finger <jay_finger@hotmail.com>.
2900
2901 * w32term.c (w32_term_init): Pass XColor to w32_define_color, not
2902 COLORREF.
2903
2904 * macgui.h:
2905 * w32gui.h: Add definition of XColor.
2906
2907 * macfns.c:
2908 * w32fns.c:
2909 * xfaces.c: Remove definition of XColor.
2910
29112002-10-22 Stefan Monnier <monnier@cs.yale.edu>
2912
2913 * xfns.c (x_set_name, x_set_title): `icon.value' has unsigned char.
2914
2915 * window.c (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
2916 Only ignore truly dedicated windows. For UNSHOW_BUFFER, delete the
2917 window if it is dedicated.
2918 (Fshrink_window): Add preserve_before as was done for enlarge_window.
2919 (Vspecial_display_function): Update docstring.
2920
2921 * buffer.c (assoc_ignore_text_properties, Fother_buffer, Fkill_buffer)
2922 (call_overlay_mod_hooks): Use CONSP and XCAR/XCDR.
2923 (Fget_buffer_create, advance_to_char_boundary): Use BEG and BEG_BYTE;
2924
29252002-10-21 Stefan Monnier <monnier@cs.yale.edu>
2926
2927 * casefiddle.c (casify_region): Don't treat a prefix char as part
2928 of a word when at the beginning.
2929
29302002-10-17 Juanma Barranquero <lektu@terra.es>
2931
2932 * lread.c (syms_of_lread): Fix typos.
2933
29342002-10-17 Dave Love <fx@gnu.org>
2935
2936 * Makefile.in (TEMACS_LDFLAGS): Add trailing comment.
2937
29382002-10-16 Richard M. Stallman <rms@gnu.org>
2939
2940 * fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
2941
29422002-10-14 Juanma Barranquero <lektu@terra.es>
2943
2944 * w16select.c (syms_of_win16select): Fix docstring for
2945 `selection-coding-system'.
2946
2947 * w32select.c (syms_of_w32select): Likewise.
2948
29492002-10-14 Stefan Monnier <monnier@cs.yale.edu>
2950
2951 * syntax.c (scan_lists): Don't get fooled by a symbol ending with
2952 a backslash-quoted char.
2953 (scan_lists, scan_sexps_forward): Pacify the compiler.
2954
29552002-10-13 Richard M. Stallman <rms@gnu.org>
2956
2957 * window.c (window_scroll): Set immediate_quit.
2958
2959 * print.c (print): When backquote form is the car of a list,
2960 output in old style. Use old_backquote_output to output all
2961 comma forms inside it in old style too.
2962
2963 * buffer.h (struct buffer): Move `undo_list' down below `name'.
2964
29652002-10-11 Markus Rost <rost@math.ohio-state.edu>
2966
2967 * emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in
2968 batch mode).
2969
2970 * lread.c (Fload): Doc fix (load-suffixes).
2971
29722002-10-10 Steven Tamm <steventamm@mac.com>
2973
2974 * macterm.c (syms_of_macterm, mac_get_mouse_btn):
2975 Reverse functionality of mac-wheel-button-is-mouse-2 to be correct.
2976 Also switch the default to Qnil from Qt.
2977
29782002-10-08 Kenichi Handa <handa@m17n.org>
2979
2980 * coding.c (code_convert_region): When we need more GAP for
2981 conversion, pay attention to the case that coding->produced is not
2982 greater than coding->consumed.
2983
29842002-10-07 Richard M. Stallman <rms@gnu.org>
2985
2986 * unexelf.c (unexec): Redo 9/16 change, but only if IRIX6_5.
2987
29882002-10-06 Andrew Choi <akochoi@shaw.ca>
2989
2990 * macmenu.c (mac_menu_show): Add j to count menu items; match
2991 menu_item_selection to it to find selected item.
2992
29932002-10-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2994
2995 * xterm.c (XTread_socket): Fix from 2002-10-03 didn't cover all
2996 cases. The correct fix is to pass ReparentNotify to Xt.
2997 The shell widget interprets ConfigureNotify differently depending
2998 on if it has been reparented or not.
2999
30002002-10-05 Markus Rost <rost@math.ohio-state.edu>
3001
3002 * editfns.c (Fformat_time_string): Doc fix.
3003
30042002-10-05 John Paul Wallington <jpw@shootybangbang.com>
3005
3006 * fns.c (Flength): Doc fix.
3007
30082002-10-04 Stefan Monnier <monnier@cs.yale.edu>
3009
3010 * keyboard.c (keyremap): New struct.
3011 (read_key_sequence): Use it: globally replace keytran_foo with
3012 keytran.foo and fkey_foo with fkey.foo. Rename temp vars
3013 keytran_next and fkey_next to just `next'.
3014
30152002-10-04 Steven Tamm <steventamm@mac.com>
3016
3017 * macterm.c (keycode_to_xkeysym_table): Change return to be
3018 treated like an X keysym.
3019
30202002-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3021
3022 * xterm.c (XTread_socket): For ConfigureNotify, with x and y == 0,
3023 and USE_MOTIF, call XTranslateCoordinates to get the real x and y.
3024 This is to also handle x/y changes that occur because of a resize.
3025
30262002-10-02 John Paul Wallington <jpw@shootybangbang.com>
3027
3028 * frame.c (Vdelete_frame_functions): New variable.
3029 (syms_of_frame): Initialize and defvar it.
3030 (Fdelete_frame): Use it instead of delete-frame-hook. Don't run
3031 it when frame's `tooltip' parameter is non-nil.
3032
3033 * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t.
3034
3035 * w32fns.c (x_create_tip_frame): Likewise.
3036
3037 * macfns.c (x_create_tip_frame): Likewise.
3038
30392002-09-30 Kenichi Handa <handa@m17n.org>
3040
3041 * xterm.c (x_encode_char): For DIM=1 charset, set ccl->reg[2] to
3042 -1 before calling ccl_driver.
3043
3044 * coding.c (decode_coding_emacs_mule): Check coding->cmp_data.
3045 Only when it is non-nil, handle composition sequence.
3046 (setup_coding_system) <0>: Don't force composition handling.
3047
3048 * Makefile.in (lisp, shortlisp): Add utf-16.elc
3049
30502002-09-29 Richard M. Stallman <rms@gnu.org>
3051
3052 * search.c (Freplace_match): Adjust match data for the substitution
3053 just made in the buffer.
3054
3055 * xdisp.c (STOP_POLLING, RESUME_POLLING): New macros.
3056 (redisplay_internal): Use them. Do RESUME_POLLING at end of function.
3057
30582002-09-27 Richard M. Stallman <rms@gnu.org>
3059
3060 * keyboard.c (STOP_POLLING, RESUME_POLLING): New macros.
3061 (read_char): Use them. Do all exits thru the end of the function.
3062
30632002-09-27 Kenichi Handa <handa@etl.go.jp>
3064
3065 * xfaces.c (try_font_list): Pay attention to the case that FAMILY
3066 is nil.
3067
30682002-09-26 Richard M. Stallman <rms@gnu.org>
3069
3070 * regex.h (__restrict_arr): Don't define if already defined.
3071
3072 * coding.c (run_pre_post_conversion_on_str):
3073 Save and restore Vdeactivate_mark.
3074
30752002-09-26 John Paul Wallington <jpw@shootybangbang.com>
3076
3077 * minibuf.c (Fminibufferp): Add an optional `buffer' argument.
3078
30792002-09-26 Kenichi Handa <handa@etl.go.jp>
3080
3081 * xfaces.c (try_font_list): New arg PREFER_FACE_FAMILY. If it is
3082 nonzero, try face's family at first. Otherwise try FAMILY at first.
3083 (choose_face_font): If C is a single byte char or latin-1, call
3084 try_font_list with PREFER_FACE_FAMILY 1.
3085
30862002-09-21 Richard M. Stallman <rms@gnu.org>
3087
3088 * window.c (select_window_1): Don't select frame.
3089 Set frame's selected window only when frame itself is selected.
3090 (Fselect_window): Doc fix.
3091
30922002-09-18 Kim F. Storm <storm@cua.dk>
3093
3094 * process.c (make-network-process): Doc fix (there is no
3095 network-server-log-function hook).
3096
30972002-09-18 Richard M. Stallman <rms@gnu.org>
3098
3099 * print.c (print): Clear out the unused parts of Vprint_number_table.
3100 (syms_of_print): Doc fix for `print-number-table'.
3101
3102 * unexelf.c (unexec): Undo previous change.
3103
31042002-09-17 Andreas Schwab <schwab@suse.de>
3105
3106 * m/alpha.h [LINUX]: Don't define DATA_START.
3107
31082002-09-16 Dave Love <fx@gnu.org>
3109
3110 * unexelf.c (unexec): Deal with .got, reinstating change from
3111 25-08-1999.
3112
31132002-09-13 Richard M. Stallman <rms@gnu.org>
3114
3115 * s/sol2-6.h (UNEXEC): Comment out definition.
3116
3117 * unexsol.c (unexec): Don't downcase first letter of error msg.
3118
3119 * xfaces.c (Fcolor_supported_p): Just one arg is required.
3120
31212002-09-12 Markus Rost <rost@math.ohio-state.edu>
3122
3123 * unexsol.c: Include buffer.h, charset.h, coding.h.
3124
31252002-09-11 Richard M. Stallman <rms@gnu.org>
3126
3127 * unexsol.c: Don't use report_file_error; do it by hand
3128 using dlerror.
3129
3130 * process.c (wait_reading_process_input, both versions):
3131 Before calling turn_on_atimers, call stop_polling.
3132
3133 * emacs.c (syms_of_emacs) <command-line-args>: Doc fix.
3134
3135 * xdisp.c (try_scrolling): If after make_cursor_line_fully_visible
3136 we go to too_near_end, call clear_glyph_matrix.
3137 (redisplay_window): After make_cursor_line_fully_visible,
3138 call clear_glyph_matrix and bypass `goto done'.
3139
3140 * xfns.c (x_report_frame_params): If FRAME_SCROLL_BAR_PIXEL_WIDTH is 0
3141 and we have non-toolkit scroll bars, return nil for scroll-bar-width.
3142
31432002-09-10 Richard M. Stallman <rms@gnu.org>
3144
3145 * fileio.c (Fdo_auto_save): Catch error making directory.
3146 Only call push_message if we need to.
3147 At the same time, make an unwind-protect to pop it.
3148 Rename local message_p to old_message_p.
3149 (do_auto_save_make_dir, do_auto_save_eh): New functions.
3150 (do_auto_save_unwind): Don't call pop_message.
3151
3152 * lisp.h (pop_message_unwind): Renamed from push_message_unwind.
3153
3154 * keyboard.c (Fexecute_extended_command): Use pop_message_unwind.
3155
3156 * alloc.c (Fgarbage_collect): Use pop_message_unwind.
3157
3158 * xdisp.c (pop_message_unwind): Renamed from push_message_unwind.
3159
31602002-09-10 Stefan Monnier <monnier@cs.yale.edu>
3161
3162 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete.
3163 (CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1.
3164 (re_match_2_internal): Be more careful with infinite loops.
3165
31662002-09-10 Kim F. Storm <storm@cua.dk>
3167
3168 * macros.c (end_kbd_macro): New function.
3169 (Fend_kbd_macro): Use it.
3170
3171 * macros.h (end_kbd_macro): Declare extern.
3172
3173 * keyboard.c (Fdiscard_input): If defining keyboard macro,
3174 end and save it instead of discarding it.
3175
31762002-09-09 Markus Rost <rost@math.ohio-state.edu>
3177
3178 * s/sol2-6.h: Fix typo. Add comment.
3179
31802002-09-09 Richard M. Stallman <rms@gnu.org>
3181
3182 * regex.c (regnum_t): Use signed int, not unsigned int.
3183
3184 * s/sol2-6.h: New file.
3185
3186 * s/sol2-5.h (UNEXEC): Definition deleted.
3187
31882002-09-08 Kim F. Storm <storm@cua.dk>
3189
3190 * macros.c (executing_macro_index): Change type to EMACS_INT.
3191 (syms_of_macros): DEFVAR_INT it (needed by kmacro).
3192
3193 * macros.h (executing_macro_index): Change type to EMACS_INT.
3194
31952002-09-06 Richard M. Stallman <rms@gnu.org>
3196
3197 * casetab.c (set_case_table): Make canon table point to eqv table.
3198
31992002-09-06 Juanma Barranquero <lektu@terra.es>
3200
3201 * coding.c (syms_of_coding): Fix spacing.
3202
3203 * composite.c (Fcompose_region_internal)
3204 (Fcompose_string_internal): Likewise.
3205
3206 * data.c (Flsh): Likewise.
3207
3208 * fontset.c (Fset_fontset_font): Likewise.
3209
3210 * macfns.c (Fx_server_max_request_size): Likewise.
3211
3212 * w16select.c (syms_of_win16select): Likewise.
3213
3214 * w32select.c (syms_of_w32select): Likewise.
3215
3216 * xselect.c (syms_of_xselect): Likewise.
3217
32182002-09-05 Richard M. Stallman <rms@gnu.org>
3219
3220 * regex.c (set_image_of_range_1): In no-TRANSLATE case,
3221 call EXTEND_RANGE_TABLE and return a proper value.
3222 (set_image_of_range): Don't call set_image_of_range_1
3223 if no TRANSLATE or if range includes all of Latin-1.
3224 Only call it for the Latin-1 part of the range.
3225 For other cases, make two separate ranges,
3226 one for the original specified characters and one for
3227 their case-conversions.
3228
32292002-09-04 Richard M. Stallman <rms@gnu.org>
3230
3231 * s/sol2-5.h (UNEXEC): Use unexsol.o.
3232
3233 * window.c (displayed_window_lines): Correct for one-off bug
3234 in HEIGHT on non-window displays.
3235
3236 * regex.c (set_image_of_range_1): New function.
3237 (set_image_of_range): Use set_image_of_range_1 for Latin-1.
3238 Return a value to indicate running out of memory.
3239 (SET_RANGE_TABLE_WORK_AREA): Check value from set_image_of_range.
3240 (extend_range_table_work_area): New subroutine.
3241 (EXTEND_RANGE_TABLE): Replaces EXTEND_RANGE_TABLE_WORK_AREA.
3242 Different calling conventions, and used from set_image_of_range{,_1}.
3243 (IMMEDIATE_QUIT_CHECK): Definitions moved.
3244
32452002-09-04 Juanma Barranquero <lektu@terra.es>
3246
3247 * makefile.w32-in: All dependencies updated.
3248
32492002-09-01 Richard M. Stallman <rms@gnu.org>
3250
3251 * unexsol.c: New file.
3252
3253 * xfns.c (Qbox): Declare external, don't define.
3254
3255 * xdisp.c (redisplay_window) <force-start case>:
3256 If point is on semi-visible last line, reposition
3257 it at previous line.
3258
3259 * alloc.c (display_malloc_warning): Use display-warning.
3260 (malloc_warning_1): Function deleted.
3261
3262 * alloc.c [ALLOC_DEBUG]: #undef INLINE.
3263
3264 * lread.c (read1): Handle #! by skipping the line.
3265
32662002-08-31 Richard M. Stallman <rms@gnu.org>
3267
3268 * Makefile.in (TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS.
3269 Don't include LDFLAGS.
3270 (temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
3271
32722002-08-31 Eli Zaretskii <eliz@is.elta.co.il>
3273
3274 * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame
3275 member of x_display_info unless we compile for some window system.
3276
32772002-08-31 Kim F. Storm <storm@cua.dk>
3278
3279 * xdisp.c (Valternate_cursor_type, Qalternate_cursor_type): Removed.
3280 (get_window_cursor_type): Don't use them.
3281 (syms_of_xdisp): Remove intern, staticpro, and defvar for them.
3282
32832002-08-30 Kenichi Handa <handa@etl.go.jp>
3284
3285 * xdisp.c (get_next_display_element): Fix previous change.
3286
32872002-08-30 Andrew Choi <akochoi@shaw.ca>
3288
3289 * macterm.c (expose_overlaps): New function (merge code from xterm.c).
3290 (expose_window): Use it to fix the display of overlapping
3291 rows (merge code from xterm.c).
3292
3293 * macfns.c (Qbox): Add extern declaration.
3294
32952002-08-30 Juanma Barranquero <lektu@terra.es>
3296
3297 * w32fns.c (Qbox): Make extern.
3298 (syms_of_w32fns): Remove initialization of Qbox.
3299
33002002-08-30 Rune Kleveland <runekl@viewpoint.no> (tiny change)
3301
3302 * xfns.c (Fx_open_connection): Fix error message.
3303
33042002-08-30 Kim F. Storm <storm@cua.dk>
3305
3306 The following changes consolidates the handling of the cursor
3307 type in xdisp.c, moving duplicate code and functionality from
3308 xfns.c, xterm.c, w32fns.c, w32term.c, macfns.c, and macterm.c.
3309
3310 * frame.h (enum text_cursor_kinds): Consolidated here.
3311 Added DEFAULT_CURSOR value.
3312 (struct frame) <desired_cursor, cursor_width>
3313 <blink_off_cursor, blink_off_cursor_width>: New fields.
3314 Consolidated from output_x, output_w32 and output_mac structs.
3315 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
3316 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros consolidated here.
3317
3318 * xdisp.c (Qbar, Qhbar, Qbox, Qhollow, Vblink_cursor_alist):
3319 Variables consolidated here.
3320 (Valternate_cursor_type, Qalternate_cursor_type): New variables.
3321 (Vcursor_in_non_selected_windows): Renamed from
3322 cursor_in_non_selected_windows and changed to Lisp_Object.
3323 (syms_of_xdisp): Define and staticpro new and moved variables.
3324 (get_specified_cursor_type): Renamed from x_specified_cursor_type;
3325 consolidated here. Recognize Qhollow setting.
3326 (set_frame_cursor_types): New function to set frame cursor types
3327 based on the frame parameters.
3328 (get_window_cursor_type): New function to calculate new cursor
3329 type and width for the specified window. Based on duplicated
3330 code consolidated here.
3331 Enhancements: cursor-in-non-selected-windows may be a cursor type,
3332 check buffer-local alternate-cursor-type and blink-cursor-alist
3333 before using built-in blink off methods.
3334
3335 * dispextern.h (cursor_in_non_selected_windows): Extern removed.
3336
3337 * lisp.h (Qcursor_in_non_selected_windows): Extern removed.
3338 (get_specified_cursor_type, get_window_cursor_type)
3339 (set_frame_cursor_types): Added prototypes.
3340
3341 * macfns.c (x_specified_cursor_type): Removed.
3342 (x_set_cursor_type): Use set_frame_cursor_types.
3343 (Qbar, Qbox): Removed.
3344 (syms_of_macfns): Don't intern or staticpro them.
3345
3346 * macterm.c (x_specified_cursor_type): Remove prototype.
3347 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
3348 (x_display_and_set_cursor): Use get_window_cursor_type.
3349 Remove unused local variables cursor_non_selected, active_cursor.
3350 Redraw cursor if hbar cursor width changes.
3351 (make_mac_frame): Set FRAME_DESIRED_CURSOR.
3352
3353 * macterm.h (enum text_cursor_kinds): Removed.
3354 (struct output_mac) <current_cursor, desired_cursor, cursor_width>
3355 <blink_off_cursor, blink_off_cursor_width>: Members removed.
3356 (FRAME_DESIRED_CURSOR): Macro removed.
3357
3358 * w32fns.c (Vblink_cursor_alist): Removed.
3359 (Qbar, Qhbar, Qbox, Qhollow): Removed.
3360 (syms_of_w32fns): Don't intern, staticpro, or define them.
3361 (x_specified_cursor_type): Removed.
3362 (x_set_cursor_type): Use set_frame_cursor_types.
3363
3364 * w32term.c (x_specified_cursor_type): Remove prototype.
3365 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
3366 (x_display_and_set_cursor): Use get_window_cursor_type.
3367 Remove unused local variables cursor_off_state.
3368 Redraw cursor if hbar cursor width changes.
3369 Changed all occurrences of w32_highlight_frame to x_highlight_frame.
3370
3371 * w32term.h (enum text_cursor_kinds): Removed.
3372 (struct output_w32) <current_cursor, desired_cursor, cursor_width>
3373 <blink_off_cursor, blink_off_cursor_width>: Members removed.
3374 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
3375 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
3376 (struct w32_display_info) <x_highlight_frame>: Renamed member from
3377 w32_highlight_frame.
3378
3379 * xfns.c (Vblink_cursor_alist): Removed.
3380 (Qbar, Qhbar, Qbox, Qhollow): Removed.
3381 (syms_of_xfns): Don't intern, staticpro, or define them.
3382 (x_specified_cursor_type): Removed.
3383 (x_set_cursor_type): Use set_frame_cursor_types.
3384
3385 * xterm.c (x_specified_cursor_type): Remove prototype.
3386 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
3387 (x_display_and_set_cursor): Use get_window_cursor_type.
3388 Remove unused local variables cursor_off_state.
3389 Redraw cursor if hbar cursor width changes.
3390
3391 * xterm.h (enum text_cursor_kinds): Removed.
3392 (struct output_x) <current_cursor, desired_cursor, cursor_width>
3393 <blink_off_cursor, blink_off_cursor_width>: Members removed.
3394 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
3395 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
3396 (x_specified_cursor_type): Remove prototype.
3397
33982002-08-28 Richard M. Stallman <rms@gnu.org>
3399
3400 * w32fns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
3401 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
3402 (Vblink_cursor_alist): New variable.
3403 (syms_of_w32fns): Initialize and defvar it.
3404 (x_specified_cursor_type): Recognize Qbox for filled box.
3405 Exceptions are hollow boxes.
3406 (Qbox, Qhollow): New variables.
3407 (syms_of_w32fns): Initialize and staticpro them.
3408
3409 * w32term.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
3410 New macros.
3411 (struct w32_output): New fields blink_off_cursor,
3412 blink_off_cursor_width.
3413 (FRAME_CURSOR_WIDTH): New macro.
3414
3415 * w32term.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
3416 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
3417
3418 * w32term.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
3419 for bar cursor.
3420
3421 * w32term.c (expose_overlaps): New function.
3422 (expose_window): Use it to fix the display of overlapping rows.
3423
34242002-08-28 Simon Josefsson <jas@extundo.com>
3425
3426 * xfns.c (Fx_open_connection): Improve help when X connection
3427 fails, xhost is insecure and xauth is better.
3428
34292002-08-28 Juanma Barranquero <lektu@terra.es>
3430
3431 * makefile.w32-in: Add missing dependencies on w32term.h and
3432 composite.h.
3433
3434 * emacs.c (USAGE1): Add missing newline.
3435
34362002-08-27 Andrew Choi <akochoi@shaw.ca>
3437
3438 * s/darwin.h [HAVE_LIBNCURSES]: Define HAVE_TERMINFO.
3439
34402002-08-27 Richard M. Stallman <rms@gnu.org>
3441
3442 * xfns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
3443 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
3444 (Vblink_cursor_alist): New variable.
3445 (syms_of_xfns): Initialize and defvar it.
3446 (x_specified_cursor_type): Recognize Qbox for filled box.
3447 Exceptions are hollow boxes.
3448 (Qbox, Qhollow): New variables.
3449 (syms_of_xfns): Initialize and staticpro them.
3450
3451 * xterm.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
3452 New macros.
3453 (struct x_output): New fields blink_off_cursor, blink_off_cursor_width.
3454
3455 * xterm.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
3456 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
3457
3458 * emacs.c (main): Handle --script.
3459 (USAGE1): Mention --script.
3460 (standard_args): Define sort order for --script.
3461
34622002-08-27 Gerd Moellmann <gerd.moellmann@t-online.de>
3463
3464 * xdisp.c (redisplay_updating_p): Variable removed.
3465 (inhibit_free_realized_faces, Qinhibit_free_realized_faces):
3466 New variables.
3467 (init_iterator): Don't free realized faces if
3468 inhibit_free_realized_faces is set.
3469 (redisplay_internal): Bind Qinhibit_free_realized_faces to nil.
3470 (syms_of_xdisp): DEFVAR_BOOL inhibit-free-realized-faces,
3471 initialize Qinhibit_free_realized_faces.
3472
3473 * dispextern.h (PRODUCE_GLYPHS): Set inhibit_free_realized_faces
3474 when iterator is adding glyphs to a glyph matrix.
3475
34762002-08-27 Kenichi Handa <handa@etl.go.jp>
3477
3478 * xdisp.c (get_next_display_element): In unibyte case, don't use
3479 octal form for such eight-bit characters that can be converted to
3480 multibyte char.
3481
34822002-08-26 Kim F. Storm <storm@cua.dk>
3483
3484 * frame.c (make_terminal_frame) [CANNOT_DUMP]: Initialize foreground
3485 and background colors. From Joe Buehler (tiny change).
3486
34872002-08-26 Miles Bader <miles@gnu.org>
3488
3489 * bytecode.c (Fbyte_code): Fsub1 can GC, so protect it.
3490
34912002-08-25 Andrew Choi <akochoi@shaw.ca>
3492
3493 * emacs.c (main): Call init_mac_osx_environment if HAVE_CARBON is
3494 defined instead of MAC_OSX.
3495
3496 * s/darwin.h (select): Define select to sys_select only if
3497 HAVE_CARBON is defined.
3498 (HAVE_WORKING_VFORK): #undef it. Define vfork to fork.
3499 (DONT_REOPEN_PTY): #def it.
3500
3501 * macterm.c (XTread_socket): Remove code to call
3502 SendEventToEventTarget for keys with command modifiers when
3503 mac_command_key_is_meta is nil.
3504
35052002-08-24 Andreas Schwab <schwab@suse.de>
3506
3507 * eval.c (Fdefvar): Fix last change.
3508
35092002-08-23 Richard M. Stallman <rms@gnu.org>
3510
3511 * eval.c (Fdefvar, Fdefconst, Fdefvaralias):
3512 Record variables in load history as (defvar . VAR).
3513 (Fdefvar): Don't record in load history if no initial value.
3514 (Qdefvar): New variable.
3515 (syms_of_eval): Init and staticpro it.
3516
3517 * lread.c (syms_of_lread): Doc fix.
3518 (build_load_history): Use Fmember to see if a definition
3519 is already in the Vload_history element.
3520
3521 * process.c (Fstart_process): Remove /: from program name.
3522
3523 * emacs.c (decode_env_path): Don't add /: if file name handler
3524 has a `safe-magic' property.
3525
3526 * callproc.c (Fcall_process): Remove /: from program name.
3527
35282002-08-23 Stefan Monnier <monnier@cs.yale.edu>
3529
3530 * regex.c (PATFETCH): Remove the translating fetch.
3531 (PATFETCH_RAW): Rename to PATFETCH.
3532 (set_image_of_range): New fun.
3533 (SET_RANGE_TABLE_WORK_AREA): Use it.
3534 (regex_compile): Don't translate the pattern chars so eagerly.
3535 Only do it when inserting an `exactn' bytecode or when handling
3536 a char-range.
3537 (mutually_exclusive_p): Avoid empty statement.
3538
35392002-08-22 Kim F. Storm <storm@cua.dk>
3540
3541 * xdisp.c (redisplay_window): Do not `goto try_to_scroll' when we
3542 end up on a partially visible line; this reverts a specific part
3543 of the 2002-07-07 change by Richard M. Stallman to "fix" a nasty
3544 display error which has been reported several times now.
3545 However it introduces the problem that changes was supposed to fix.
3546 See my comments in the source if you want to debug this further.
3547
35482002-08-20 Kenichi Handa <handa@etl.go.jp>
3549
3550 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
3551
35522002-08-19 Eli Zaretskii <eliz@is.elta.co.il>
3553
3554 * msdos.c (croak): Add `void' to definition.
3555
3556 * sysdep.c [MSDOS] (request_sigio, unrequest_sigio):
3557 Don't define them, they are defined in msdos.c.
3558
3559 * mem-limits.h [MSDOS]: Declare etext.
3560
3561 * fileio.c (Ffile_name_directory) [DOS_NT]: Don't declare `beg'
3562 `const' since CORRECT_DIR_SEPS modifies its target.
3563
35642002-08-19 Kim F. Storm <storm@cua.dk>
3565
3566 * keyboard.c (Fclear_this_command_keys): Added optional arg
3567 KEEP-RECORD to avoid clearing lossage when we just want to clear
3568 the current key sequence (kmacro needs this).
3569
35702002-08-19 Kenichi Handa <handa@localhost>
3571
3572 * composite.c (run_composition_function): Call FUNC if it is fboundp.
3573
3574 * composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
3575 cons, return Qnil.
3576
35772002-08-17 Richard M. Stallman <rms@gnu.org>
3578
3579 * s/sol2-5.h (BROKEN_SIGIO): Add #undef.
3580
3581 * sysdep.c [!VMS]: Include sys/files.h.
3582
3583 * editfns.c (save_restriction_restore): Defend from unchained marker.
3584
3585 * buffer.c (overlays_at): Handle extending vec uniformly.
3586 (overlays_in): Handle extending vec from length 0 as in overlays_at.
3587
35882002-08-15 Andrew Choi <akochoi@shaw.ca>
3589
3590 * mac.c (init_mac_osx_environment): New function.
3591
3592 * emacs.c (main) [MAC_OSX]: Call init_mac_osx_environment.
3593
35942002-08-14 Kim F. Storm <storm@cua.dk>
3595
3596 * macros.c (Fstart_kbd_macro): Added NO-EXEC argument to inhibit
3597 executing macro before appending to it (when used from Lisp).
3598 (Fexecute_kbd_macro): Added LOOPFUNC argument to supply function
3599 which is called prior to each iteration of macro (for kmacro.el).
3600 (Fend_kbd_macro, Fcall_last_kbd_macro): Likewise.
3601
3602 * lisp.h (Fexecute_kbd_macro): Update prototype.
3603
3604 * keyboard.c (Fcommand_execute): Update call to Fexecute_kbd_macro.
3605
36062002-08-14 Kenichi Handa <handa@etl.go.jp>
3607
3608 * xselect.c (QUTF8_STRING): New variable.
3609 (symbol_to_x_atom): Pay attention to QUTF8_STRING.
3610 (x_atom_to_symbol): Likewise.
3611 (x_get_local_selection): New argument local_request. If it is
3612 nonzero, call handler_fn with the second arg nil.
3613 (x_handle_selection_request): Call x_get_local_selection with
3614 local_request 0.
3615 (lisp_data_to_selection_data): Don't encode the string here.
3616 (Fx_get_selection_internal): Call x_get_local_selection with
3617 local_request 1.
3618 (syms_of_xselect): Intern and staticpro QUTF8_STRING.
3619
3620 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
3621
3622 * xterm.h (struct x_display_info): New member Xatom_UTF8_STRING.
3623
36242002-08-13 Richard M. Stallman <rms@gnu.org>
3625
3626 * minibuf.c (Fminibufferp): New function.
3627 (syms_of_minibuf): Defsubr it.
3628 (Fminibuffer_prompt_end): Handle non-minibuffers specially.
3629
36302002-08-13 Gerd Moellmann <gerd.moellmann@t-online.de>
3631
3632 * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
3633
36342002-08-12 Richard M. Stallman <rms@gnu.org>
3635
3636 * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
3637 [!VMS] (WCOREDUMP, WEXITSTATUS, WIFEXITED, WIFSTOPPED, WIFSIGNALED)
3638 (WSTOPSIG, WTERMSIG): Define each one independently if not defined
3639 already.
3640
3641 * buffer.c (syms_of_buffer) <fill-column>: Doc fix.
3642
36432002-08-11 Andrew Choi <akochoi@shaw.ca>
3644
3645 * macterm.c (XTmouse_position): Check wp with is_emacs_window.
3646 (Vmac_pass_command_to_system): New variable.
3647 (Vmac_pass_control_to_system): New variable.
3648 (do_mouse_moved): Check wp with is_emacs_window.
3649 (XTread_socket): Check window_ptr with is_emacs_window.
3650 Call FrontNonFloatingWindow instead of FrontWindow. Send keydown
3651 events back to Mac Toolbox for processing, depending on values of
3652 Vmac_pass_command_to_system and Vmac_pass_control_to_system.
3653 (syms_of_macterm): DEFVAR_LISP Vmac_pass_command_to_system and
3654 Vmac_pass_control_to_system.
3655
36562002-08-10 Kenichi Handa <handa@etl.go.jp>
3657
3658 * coding.c (unencodable_char_position): New function.
3659 (Funencodable_char_position): New function.
3660 (syms_of_coding): Defsubr Funencodable_char_position.
3661
36622002-08-10 Andrew Choi <akochoi@shaw.ca>
3663
3664 * mac.c (sys_select) [MAC_OSX]: New function.
3665
3666 * macterm.c (MakeMeTheFrontProcess): New function.
3667 (mac_initialize): Call MakeMeTheFrontProcess.
3668
3669 * s/darwin.h: Define select to sys_select.
3670
36712002-08-09 Richard M. Stallman <rms@gnu.org>
3672
3673 * keyboard.c (make_lispy_event): Test WINDOWSNT, not WINDOWS_NT.
3674
36752002-08-09 Gerd Moellmann <gerd.moellmann@t-online.de>
3676
3677 * xdisp.c (forward_to_next_line_start): Return 0 when reaching the
3678 end of the buffer.
3679
36802002-08-08 Ken Raeburn <raeburn@mit.edu>
3681
3682 * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
3683
3684 * puresize.h (BASE_PURESIZE): Increase to 910000.
3685
36862002-08-08 Kenichi Handa <handa@etl.go.jp>
3687
3688 * coding.c (Ffind_operation_coding_system): For write-region, if
3689 VISIT is a filename, make it the target.
3690
36912002-08-07 Richard M. Stallman <rms@gnu.org>
3692
3693 * alloc.c (mark_object): Detect long lists for debugging.
3694 (mark_object_loop_halt): New variable.
3695
3696 * s/hpux10.h (C_SWITCH_SYSTEM): #undef it.
3697
3698 * data.c (Fmake_variable_frame_local): Doc fix.
3699
37002002-08-01 David Ponce <david@dponce.com>
3701
3702 * w32menu.c (local_heap, local_alloc, local_free): New macros.
3703 (malloc_widget_value, free_widget_value)
3704 (w32_free_submenu_strings): Use them.
3705
3706 (push_submenu_start, push_submenu_end, push_left_right_boundary)
3707 (push_menu_pane, push_menu_item, single_keymap_panes)
3708 (single_menu_item, Fx_popup_menu, menubar_selection_callback)
3709 (single_submenu, set_frame_menubar)
3710 (w32_menu_show, w32_dialog_show): Use AREF, ASET, ASIZE.
3711
3712 (Fx_popup_menu): Don't show pop up menu until preceding one is
3713 actually cleaned up. Moved UNGCPRO outside #ifdef HAVE_MENUS block.
3714
3715 * w32menu.c: Changes adapted from xmenu.c
3716 (set_frame_menubar): First parse all submenus,
3717 then make widget_value trees from them.
3718 Don't allocate any widget_value objects
3719 until we are done with the parsing.
3720 (parse_single_submenu): New function.
3721 (digest_single_submenu): New function.
3722 (single_submenu): Function deleted, replaced by those two.
3723
37242002-08-04 Andrew Choi <akochoi@shaw.ca>
3725
3726 * macterm.c (XTread_socket): Check that FrontNonFloatingWindow
3727 returns a valid window pointer before proceeding for keyDown and
3728 autoKey events.
3729
37302002-08-03 Andrew Choi <akochoi@shaw.ca>
3731
3732 * macterm.c (USE_CARBON_EVENTS): New macro.
3733 (macCtrlKey, macShiftKey, macMetaKey, macAltKey): New macros.
3734 (x_iconify_frame): Call CollapseWindow.
3735 (Vmac_reverse_ctrl_meta): New variable.
3736 (Vmac_wheel_button_is_mouse_2): New variable.
3737 (init_mac_drag_n_drop): New function.
3738 (mac_do_receive_drag): New function.
3739 (mac_handle_service_event): New function.
3740 (init_service_handler): New function.
3741 (mac_to_emacs_modifiers): New function.
3742 (mac_event_to_emacs_modifiers): New function.
3743 (mac_get_mouse_btn): New function.
3744 (mac_convert_event_ref): New function.
3745 (XTread_socket) [USE_CARBON_EVENTS]: Call ReceiveNextEvent,
3746 SendEventToEventTarget, mac_event_to_emacs_modifiers, and
3747 mac_get_mouse_btn.
3748 (mac_initialize): Call init_mac_drag_n_drop and init_service_handler.
3749
3750 * keyboard.c: Define Qmouse_wheel, mouse_wheel_syms, and
3751 lispy_mouse_wheel_names for MAC_OSX as well as for WINDOWS_NT.
3752 (kbd_buffer_get_event): Set used_mouse_menu for MENU_BAR_EVENT and
3753 TOOL_BAR_EVENT for MAC_OS as well.
3754 (make_lispy_event): Handle MOUSE_WHEEL_EVENT for MAC_OSX as well
3755 as for WINDOWS_NT.
3756 (syms_of_keyboard): Initialize Qmouse_wheel for MAC_OSX.
3757
3758 * termhooks.h (event_kind): Define MOUSE_WHEEL_EVENT also for MAC_OSX.
3759
37602002-08-03 Gerd Moellmann <gerd.moellmann@t-online.de>
3761
3762 * xdisp.c (forward_to_next_line_start): Fix a condition that
3763 lead to a newline being skipped.
3764
37652002-08-02 Andrew Choi <akochoi@shaw.ca>
3766
3767 * mac.c (syms_of_mac): Defsubr Sx_selection_exists_p.
3768
37692002-08-01 Richard M. Stallman <rms@gnu.org>
3770
3771 * Makefile.in (SOME_MACHINE_OBJECTS): Add fontset.o.
3772
37732002-07-31 Andrew Choi <akochoi@shaw.ca>
3774
3775 * macfns.c: #undef init_process before #define-ing it.
3776
3777 * s/darwin.h: Define MAC_OS, SYMS_SYSTEM, and OTHER_FILES only if
3778 HAVE_CARBON is defined.
3779
37802002-07-31 Richard M. Stallman <rms@gnu.org>
3781
3782 * xmenu.c (set_frame_menubar): First parse all submenus,
3783 then make widget_value trees from them.
3784 Don't allocate any widget_value objects
3785 until we are done with the parsing.
3786 (parse_single_submenu): New function.
3787 (digest_single_submenu): New function.
3788 (single_submenu): Function deleted, replaced by those two.
3789
37902002-07-30 Juanma Barranquero <lektu@terra.es>
3791
3792 * w32proc.c (syms_of_ntproc): Fix docstring of
3793 `w32-get-true-file-attributes'.
3794
37952002-07-28 Richard M. Stallman <rms@gnu.org>
3796
3797 * s/hpux8.h (HPUX8): Define this before including hpux.h.
3798 (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide.
3799
3800 * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8.
3801
3802 * keyboard.c (make_lispy_event):
3803 Use #ifdef to test USE_TOOLKIT_SCROLL_BARS.
3804 Explicitly clear up_modifier in event->modifiers.
3805
38062002-07-27 Richard M. Stallman <rms@gnu.org>
3807
3808 * xterm.h (FRAME_CURSOR_WIDTH): New macro.
3809
3810 * xterm.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
3811 for bar cursor.
3812
38132002-07-26 Kenichi Handa <handa@etl.go.jp>
3814
3815 * coding.c (detect_coding_iso2022): While checking a byte sequence
3816 for CODING_CATEGORY_MASK_ISO_8_2, if we read one extra byte, check
3817 it in the normal loop.
3818
38192002-07-24 Gerd Moellmann <gerd.moellmann@t-online.de>
3820
3821 * xterm.c (expose_overlaps): New function.
3822 (expose_window): Use it to fix the display of overlapping rows.
3823
3824 * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
3825
38262002-07-23 Ken Raeburn <raeburn@gnu.org>
3827
3828 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
3829 since it only depends on XUINT.
3830
3831 * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
3832 EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
3833 PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
3834 Macros deleted.
3947677c 3835
77d1daf2
AS
3836 * mem-limits.h (start_of_data): If DATA_START is defined, prefer
3837 its value over other approaches.
3838 * sysdep.c (start_of_data): Don't define the function if a macro
3839 form has been defined.
8a8e19a3 3840
048addec
JD
38412002-07-23 Gerd Moellmann <gerd.moellmann@t-online.de>
3842
3843 * xdisp.c (redisplay_updating_p): New variable.
3844 (init_iterator): Don't free realized faces when
3845 redisplay_updating_p is set.
3846 (redisplay_internal): Set redisplay_updating_p while updating
3847 the display.
3848
38492002-07-23 Richard M. Stallman <rms@gnu.org>
3850
3851 * editfns.c (Fmessage): Treat "" like nil.
3852
38532002-07-23 Kenichi Handa <handa@etl.go.jp>
3854
3855 * xdisp.c (face_before_or_after_it_pos):
3856 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
3857
38582002-07-22 Juanma Barranquero <lektu@terra.es>
3859
3860 * callproc.c (init_callproc) [DOS_NT]:
3861 Initialize Vshared_game_score_directory to nil.
3862 (syms_of_callproc) [DOS_NT]: Likewise.
3863
38642002-07-22 Gerd Moellmann <gerd.moellmann@t-online.de>
3865
3866 * xdisp.c (display_line): Replace an abort with xassert.
3867
38682002-07-21 Richard M. Stallman <rms@gnu.org>
3869
3870 * xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
3871 and END_UNCHANGED when setting buffer_unchanged_p.
3872 Use current_matrix_up_to_date_p to decide whether to use
3873 try_cursor_movement.
3874
3875 * config.in (HAVE_SHARED_GAME_DIR): Undef deleted.
3876
3877 * epaths.in (PATH_GAME): New macro, edited by ../Makefile.in.
3878
3879 * callproc.c (init_callproc): Set up Vshared_game_score_directory.
3880 Set to nil if dir does not exist.
3881 (syms_of_callproc): Init unconditionally and simply.
3882
3883 * buffer.c (Fbuffer_list): Doc fix.
3884
38852002-07-21 Ken Raeburn <raeburn@gnu.org>
3886
3887 * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
3888
3889 * buffer.c (mmap_realloc): When shrinking, make sure number of
3890 pages to unmap is rounded towards zero.
3891
3892 * m/mips-siemens.h (XSETUINT, XSETPNTR): Unused macros deleted.
3893 (XSETINT): Deleted.
3894
3895 * m/att3b.h (XINT): Don't define.
3896 (VALBITS, VALMASK, XTYPE): Deleted.
3897 (DATA_SEG_BITS): Define.
3898 * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET,
3899 ARRAY_MARK_FLAG): Deleted.
3900 (DATA_SEG_BITS): Define.
3901 * m/pfa50.h (VALBITS, VALMASK, XTYPE): Deleted.
3902 (DATA_SEG_BITS): Define.
3903
39042002-07-20 Richard M. Stallman <rms@gnu.org>
3905
3906 * print.c (print_error_message): New args CONTEXT and CALLER.
3907 Calls changed.
3908
3909 * lisp.h (print_error_message): Declare new args.
3910
3911 * keyboard.c (cmd_error_internal): Pass Vsignaling_function
3912 and CONTEXT to print_error_message, don't print them here.
3913 For a Quit, don't use Vsignaling_function.
3914 Call message_log_maybe_newline.
3915
3916 * Makefile.in (xsmfns.o): Don't depend on lisp.h.
3917
39182002-07-20 Kim F. Storm <storm@cua.dk>
3919
3920 * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p.
3921
39222002-07-19 Ken Raeburn <raeburn@gnu.org>
3923
3924 * bytecode.c (struct byte_stack): Pointers into byte string now
3925 point to const.
3926 * callproc.c (Fcall_process): Make NEW_ARGV array hold pointer to
3927 const.
3928 * charset.h (BCOPY_SHORT): Source pointer now points to const.
3929 * coding.c (encode_eol, detect_coding, detect_eol):
3930 (decode_coding, encode_coding, detect_coding_system):
3931 Source strings now treated as const.
3932 (decode_coding_string, encode_coding_string): Use STRING_COPYIN to
3933 modify Lisp string contents.
3934 * coding.h (decode_coding, encode_coding, detect_coding,
3935 detect_eol): Declarations updated.
3936 * composite.c (compose_chars_in_text): Treat Lisp string contents
3937 as const.
3938 * dispnew.c (safe_bcopy): Source pointer now points to const.
3939 * lisp.h (STRING_COPYIN): New macro.
3940 (detect_coding_system, safe_bcopy, temp_output_buffer_setup):
3941 (internal_with_output_to_temp_buffer): Declarations updated.
3942 * print.c (temp_output_buffer_setup):
3943 (internal_with_output_to_temp_buffer): Buffer name argument is now
3944 pointer to const.
3945 * sound.c (struct sound_device): Function pointer field "write"
3946 buffer argument now points to const.
3947 (vox_write): Buffer argument points to const.
3948 * syntax.c (Fstring_to_syntax, skip_chars): Treat Lisp string
3949 contents as const.
3950 * sysdep.c (emacs_write): Buffer pointer now const.
3951 * term.c (encode_terminal_code): Buffer pointer now const.
3952 * xfaces.c (may_use_scalable_font_p): Argument now points to const.
3953 (x_face_list_fonts, x_update_menu_appearance):
3954 (hash_string_case_insensitive): Treat Lisp string contents as const.
3955
39562002-07-19 Juanma Barranquero <lektu@terra.es>
3957
3958 * fileio.c (Ffile_name_as_directory): Fix argument name in docstring.
3959 (file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
3960
3961 * xdisp.c (syms_of_xdisp): Remove redundant deprecation info.
3962
3963 * fileio.c (syms_of_fileio): Likewise.
3964
39652002-07-18 Richard M. Stallman <rms@gnu.org>
3966
3967 * data.c (Fdefalias): Doc fix.
3968
39692002-07-17 Dave Love <fx@gnu.org>
3970
3971 * intervals.h (text_property_stickiness): Use P_.
3972
3973 * ccl.c: Remove `emacs' conditionals.
3974 (ccl_backtrace_table): Fix size spec.
3975 (ccl_driver): Fix type errors.
3976
39772002-07-16 Ken Raeburn <raeburn@gnu.org>
3978
3979 * alloc.c (xstrdup, make_string, make_unibyte_string)
3980 (make_multibyte_string, build_string): String pointer args now
3981 point to const.
3982 * charset.c (find_charset_in_text, c_string_width):
3983 (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
3984 * fileio.c (report_file_error):
3985 * insdel.c (copy_text, count_size_as_multibyte, insert_1):
3986 (count_combining_before, count_combining_after, insert_1_both):
3987 (insert, insert_and_inherit, insert_string):
3988 (insert_before_markers, insert_before_markers_and_inherit):
3989 * lread.c (intern, oblookup, hash_string):
3990 * minibuf.c (temp_echo_area_glyphs):
3991 * search.c (fast_c_string_match_ignore_case):
3992 * sysdep.c (emacs_open, set_file_times):
3993 * xfaces.c (xstricmp):
3994 * xdisp.c (store_frame_title, string_char_and_length):
3995 (message_dolog, message2, message2_nolog, set_message): Likewise.
3996 (set_message_1): Cast message string argument to const pointer.
3997 * editfns.c (general_insert_function): Insertion function now
3998 takes pointer to const for input data.
3999 * charset.h (find_charset_in_text, c_string_width):
4000 (parse_str_as_multibyte): Declarations updated.
4001 * dispextern.h (xstricmp): Declaration updated.
4002 * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text):
4003 (count_size_as_multibyte, count_combining_before):
4004 (count_combining_after, insert_1, insert_1_both, message_dolog):
4005 (insert, insert_and_inherit, insert_before_markers)
4006 (insert_before_markers_and_inherit, set_message, message2):
4007 (message2_dolog, build_string, make_string, make_unibyte_string):
4008 (make_multibyte_string, intern, oblookup, report_file_error):
4009 (fast_c_string_match_ignore_case, temp_echo_area_glyphs):
4010 (emacs_open, xstrdup): Declarations updated.
4011 * systime.h (set_file_times): Declaration updated.
4012
4013 * charset.c (find_charset_in_text, lisp_string_width): Use const
4014 for pointer to lisp string data.
4015 * charset.h (FETCH_STRING_CHAR_ADVANCE):
4016 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK):
4017 * coding.c (Ffind_coding_systems_region_interval):
4018 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory):
4019 (Fmake_directory_internal, Fdelete_directory):
4020 (Ffile_name_absolute_p, Fwrite_region, double_dollars):
4021 * fontset.c (font_family_registry, fs_query_fontset):
4022 (list_fontsets):
4023 * frame.c (Fframe_parameter):
4024 * keyboard.c (cmd_error_internal):
4025 * keymap.c (Fdescribe_buffer_bindings):
4026 * lread.c (complete_filename_p, openp):
4027 * minibuf.c (Fminibuffer_complete_word):
4028 * xdisp.c (string_pos_nchars_ahead, init_from_display_pos):
4029 (face_before_or_after_it_pos, next_element_from_string):
4030 (get_overlay_arrow_glyph_row, display_mode_element):
4031 (decode_mode_spec_coding):
4032 * xterm.c (same_x_server): Likewise.
4033
4034 * buffer.c (reset_buffer_local_variables): Delete "#if 0"
4035 settings of non-existent fields.
4036
4037 * editfns.c (Fstring_to_char): Don't use XSTRING/XSETSTRING to
4038 copy a lisp value.
4039
4040 * lread.c (Fintern_soft): Use string macros instead of
4041 Lisp_String fields.
4042 * keyboard.c (echo_char, parse_modifiers_uncached):
4043 (parse_solitary_modifier, Fexecute_extended_command): Likewise.
4044 * textprop.c (validate_interval_range, interval_of): Likewise.
4045
4046 * fontset.c (Fset_fontset_font): Use SDATA instead of XSTRING()->data.
4047
4048 * charset.h (FETCH_STRING_CHAR_ADVANCE)
4049 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SBYTES instead of
4050 XSTRING()->size_byte.
4051
4052 * lisp.h (SDATA, SREF): Produce rvalue.
4053 (SSET): New macro.
4054 * alloc.c (make_event_array): Use SSET for storing into a string.
4055 * buffer.c (Fother_buffer): Use SREF when retrieving a byte from
4056 a string.
4057 * casefiddle.c (casify_object): Use SSET.
4058 * charset.h (FETCH_STRING_CHAR_ADVANCE)
4059 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA when getting
4060 address of string contents.
4061 * data.c (Faref): Use SDATA.
4062 (Faset): Use SDATA, SSET.
4063 * dired.c (directory_files_internal): Use SSET.
4064 * fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
4065 (Fread_file_name): Use SREF, SSET.
4066 * fns.c (concat): Use SSET.
4067 (concat, Fdelete): Use SDATA.
4068 * insdel.c (insert_from_string_1): Use SDATA.
4069 * keyboard.c (Fevent_convert_list): Use SREF.
4070 * lread.c (Fload): Use SDATA, SSET.
4071 * macfns.c (validate_x_resource_name): Use SSET.
4072 * process.c (status_message): Use SSET.
4073 * search.c (wordify): Use SDATA.
4074 (Freplace_match): Use SREF.
4075 * w32fns.c (validate_x_resource_name): Use SSET.
4076 * xfns.c (validate_x_resource_name): Use SSET.
4077 * xterm.c (x_catch_errors, x_clear_errors): Use SSET.
4078
40792002-07-16 Richard M. Stallman <rms@gnu.org>
4080
4081 * s/hpux11.h (USG_SUBTTY_WORKS): Defined.
4082
4083 * xdisp.c (reconsider_clip_changes):
4084 Don't test prevent_redisplay_optimizations_p.
4085 (redisplay_internal): Test prevent_redisplay_optimizations_p
4086 along with clip_changed in some cases.
4087 (try_window_id): Likewise.
4088 (redisplay_window): New local var buffer_unchanged_p.
4089
4090 * keyboard.c (cmd_error) [HAVE_X_WINDOWS]: Maybe call cancel_houglass.
4091
4092 * process.c (create_process): Test USG_SUBTTY_WORKS.
4093 (process_send_signal): Clean up handling of GID.
4094 Detect errors in ioctls meant to set GID.
4095
4096 * window.c (temp_output_buffer_show):
4097 Don't set prevent_redisplay_optimizations_p.
4098
40992002-07-15 Juanma Barranquero <lektu@terra.es>
4100
4101 * eval.c (Fdefvaralias): Add docstring argument.
4102
41032002-07-15 Ken Raeburn <raeburn@gnu.org>
4104
4105 * lisp.h (STRING_INTERVALS): Produce rvalue.
4106 (STRING_SET_INTERVALS): New macro.
4107 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.
4108 * fns.c (Fstring_as_multibyte): Likewise.
4109 * intervals.c (balance_possible_root_interval, delete_interval)
4110 (create_root_interval, copy_intervals_to_string): Likewise.
4111 * textprop.c (set_text_properties): Likewise. Use NULL_INTERVAL
4112 instead of 0.
4113
41142002-07-14 Ken Raeburn <raeburn@gnu.org>
4115
4116 * lisp.h (STRING_SET_CHARS): New macro.
4117 (SCHARS, SBYTES): Produce rvalues.
4118 * dired.c (directory_files_internal): Use STRING_SET_CHARS.
4119 * fns.c (concat): Likewise.
4120 * lread.c (read_vector): Likewise.
4121
4122 * lisp.h (SMBP): Deleted. All uses changed to STRING_MULTIBYTE.
4123 (STRING_SET_UNIBYTE): New macro.
4124 (SET_STRING_BYTES): Deleted. Callers (all of which supplied a
4125 length of -1) changed to use STRING_SET_UNIBYTE.
4126 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
4127 casefiddle.c, category.c, ccl.c, charset.c, charset.h, coding.c,
4128 composite.c, data.c, dired.c, dispnew.c, disptab.h, doc.c,
4129 dosfns.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fn.c,
4130 fontset.c, frame.c, indent.c, insdel.c, intervals.c, keyboard.c,
4131 keymap.c, lread.c, mac.c, macfns.c, macmenu.c, macterm.c,
4132 minibuf.c, msdos.c, print.c, process.c, search.c, sound.c,
4133 sunfns.c, syntax.c, syntax.h, sysdep.c, textprop.c, undo.c,
4134 w16select.c, w32.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
4135 w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c,
4136 xselect.c, xsmfns.c, xterm.c: Most uses of XSTRING combined with
4137 STRING_BYTES or indirection changed to SCHARS, SBYTES,
4138 STRING_INTERVALS, SREF, SDATA; explicit size_byte references left
4139 unchanged for now.
4140
41412002-07-13 Kim F. Storm <storm@cua.dk>
4142
4143 * keyboard.c (command_loop_1): Invert check on Vmemory_full.
4144
41452002-07-12 Richard M. Stallman <rms@gnu.org>
4146
4147 * fileio.c (Fwrite_region): Doc fix.
4148
4149 * print.c (print_error_message): Don't handle Vsignaling_function here.
4150
4151 * keyboard.c (cmd_error_internal): Handle Vsignaling_function here.
4152 (command_loop_1): Avoid certain actions after memory-full error.
4153
4154 * eval.c (Fsignal): Don't call cancel_hourglass.
4155 For a memory-full error, don't call Vsignal_hook_function
4156 and don't set Vsignaling_function.
4157
4158 * process.c (process_send_signal): Add abort call.
4159
41602002-07-11 Markus Rost <rost@math.ohio-state.edu>
4161
4162 * keymap.c (Fkey_binding): Fix typo.
4163
41642002-07-11 Richard M. Stallman <rms@gnu.org>
4165
4166 * alloc.c (Vmemory_full): New variable.
4167 (Vmemory_signal_data): Renamed from memory_signal_data.
4168 Uses changed.
4169 (syms_of_alloc): Defvar them.
4170 (memory_full, buffer_memory_full): Set Vmemory_full.
4171
4172 * lisp.h (Vmemory_full): Add declaration.
4173 (current_column, indented_beyond_p): Change declaration.
4174
4175 * indent.c (last_known_column): Declare as double, not float.
4176 (current_column, current_column_1, string_display_width)
4177 (position_indentation): Return `double'.
4178 (indented_beyond_p): Arg `column' is `double'. Callers changed.
4179
4180 * xdisp.c (message_dolog): Do nothing if Vmemory_full is non-nil.
4181 (back_to_previous_visible_line_start)
4182 (reseat_at_next_visible_line_start, next_element_from_buffer):
4183 Use `double', not `float', when calling indented_beyond_p.
4184
4185 * s/hpux11.h (BROKEN_SA_RESTART): Defined.
4186
4187 * sysdep.c (sys_signal): Test BROKEN_SA_RESTART.
4188
41892002-07-11 Juanma Barranquero <lektu@terra.es>
4190
4191 * alloc.c, buffer.c, bytecode.c, callint.c, callproc.c, coding.c,
4192 * composite.c, dired.c, dispnew.c, editfns.c, emacs.c, eval.c,
4193 * fileio.c, fns.c, insdel.c, keyboard.c, keymap.c, lread.c, macfns.c,
4194 * macmenu.c, macros.c, minibuf.c, print.c, process.c, sound.c,
4195 * textprop.c, w32fns.c, w32menu.c, window.c, xfaces.c, xfns.c,
4196 * xmenu.c, xselect.c, xterm.c: Use SPECPDL_INDEX wherever makes sense.
4197
41982002-07-10 Juanma Barranquero <lektu@terra.es>
4199
4200 * lisp.h (SPECPDL_INDEX): Rename from BINDING_STACK_SIZE. All callers
4201 changed.
4202
42032002-07-09 Stefan Monnier <monnier@cs.yale.edu>
4204
4205 * data.c (Fdefalias): Add an optional `docstring' argument.
4206 (set_internal, Fsetq_default): Use XCAR/XCDR.
4207
4208 * composite.c (HASH_VALUE, HASH_KEY):
4209 * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
4210
42112002-07-09 Kenichi Handa <handa@etl.go.jp>
4212
4213 * callproc.c (Fcall_process): Fix previous change.
4214
42152002-07-07 Stefan Monnier <monnier@cs.yale.edu>
4216
4217 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
4218 Add support for hash-tables.
4219 (Ftry_completion): Return t even if the string appears multiple times.
4220
4221 * fns.c (Fnconc): Use XCDR.
4222 (Fprovide): Use CONSP and XCDR.
4223 (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
4224 (HASH_TABLE_SIZE): Delete: moved to lisp.h.
4225 (Fmake_hash_table): Accept `:size nil'.
4226 (Fmakehash): Delete: moved to subr.el.
4227 (syms_of_fns): Don't defsubr makehash.
4228
4229 * lisp.h (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
4230 (HASH_TABLE_SIZE): Move from fns.c.
4231
42322002-07-07 Richard M. Stallman <rms@gnu.org>
4233
4234 * xdisp.c (make_cursor_line_fully_visible): Don't try short scrolls.
4235 Instead just return 0 when there is something to be done.
4236 (try_scrolling): If make_cursor_line_fully_visible returns 0,
4237 retry scrolling as if cursor were off the bottom.
4238 (try_cursor_movement): If make_cursor_line_fully_visible returns 0,
4239 return CURSOR_MOVEMENT_MUST_SCROLL.
4240 (redisplay_window): If make_cursor_line_fully_visible returns 0,
4241 go to try_to_scroll.
4242
4243 * buffer.c (Fbuffer_local_value): Store current value into its binding
4244 so we get the up-to-date value for the binding that is loaded.
4245
4246 * eval.c (Fdefmacro): Doc fix.
4247
42482002-07-05 Dave Love <fx@gnu.org>
4249
4250 * keyboard.c (read_key_sequence): Set initial_idleness_start_time
4251 correctly.
4252
4253 * ccl.c (Vtranslation_hash_table_vector, GET_HASH_TABLE)
4254 (HASH_VALUE, CCL_LookupIntConstTbl, CCL_LookupCharConstTbl): New.
4255 (ccl_driver): Add cases for CCL_LookupIntConstTbl,
4256 CCL_LookupCharConstTbl.
4257 (syms_of_ccl): Defvar translation-hash-table-vector.
4258
42592002-07-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4260
4261 * xdisp.c: Remove unused variable `face'.
4262
42632002-07-04 Juanma Barranquero <lektu@terra.es>
4264
4265 * keyboard.c (post_command_idle_hook): Remove redundant (and inexact)
4266 obsolescence information.
4267
42682002-07-03 Andrew Choi <akochoi@shaw.ca>
4269
4270 * macterm.c (x_list_fonts): Fix comment. Cache fonts matching
4271 pattern. Search cache first.
4272 (init_font_name_table): Also add entry for jisx0201.1976-0 coding
4273 for Japanese font.
4274 (XLoadQueryFont): Use it.
4275
42762002-07-02 Richard M. Stallman <rms@gnu.org>
4277
4278 * keymap.c (Fdefine_key): Doc fix.
4279
4280 * xterm.c (x_term_init): Turn off polling around XtOpenDisplay.
4281
42822002-07-02 Juanma Barranquero <lektu@terra.es>
4283
4284 * keymap.c (syms_of_keymap): Fix typo.
4285
42862002-07-01 Andrew Choi <akochoi@shaw.ca>
4287
4288 * s/darwin.h: Define POSIX_SIGNALS.
4289
4290 * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef
4291 and FSRefMakePath to convert FSSpec returned with Apple Event to
4292 Posix pathname.
4293 (mac_initialize) [TARGET_API_MAC_CARBON]:
4294 Call init_required_apple_events and disable the `Quit' menu item
4295 provided automatically by the Carbon Toolbox.
4296
42972002-07-01 Dave Love <fx@gnu.org>
4298
4299 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
4300 for K&R.
4301
4302 * xterm.c: Fix prototype for K&R.
4303
4304 * term.c (costs_set): Declare static, non-initialized for pcc.
4305
43062002-07-01 Richard M. Stallman <rms@gnu.org>
4307
4308 * keyboard.c (timer_last_idleness_start_time): New variable.
4309 (timer_start_idle): Set that.
4310 (read_key_sequence): Use that to reset timer_idleness_start_time
4311 to previous value.
4312
4313 * window.c (Frecenter): With arg, set optional_new_start.
4314
4315 * xdisp.c (redisplay_internal): Make optional_new_start really work.
4316
4317 * minibuf.c (Fminibuffer_complete_and_exit): Move to end of
4318 buffer for completion.
4319
43202002-06-29 Ken Raeburn <raeburn@gnu.org>
4321
4322 * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
4323
43242002-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4325
4326 * keyboard.c (readable_filtered_events): New function that filters
4327 FOCUS_IN_EVENT depending on parameter.
4328 (readable_events): Calls readable_filtered_events, not filtering
4329 FOCUS_IN_EVENT.
4330 (get_filtered_input_pending): New function, filtering parameter passed
4331 to readable_filtered_events.
4332 (get_input_pending): Calls get_filtered_input_pending, not filtering
4333 FOCUS_IN_EVENT.
4334 (Finput_pending_p): Calls get_filtered_input_pending, DO filter
4335 FOCUS_IN_EVENT.
4336
4337 * xterm.h (struct x_output): Add focus_state.
4338
4339 * xterm.c (x_focus_changed): New function.
4340 (x_detect_focus_change): New function.
4341 (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
4342 EnterNotify and LeaveNotify to track X focus changes.
4343
43442002-06-28 Andreas Schwab <schwab@suse.de>
4345
4346 * lisp.h: Remove duplicate declaration of code_convert_string_norecord.
4347
43482002-06-27 Kim F. Storm <storm@cua.dk>
4349
4350 * xdisp.c: (mode_line_string_list, mode_line_string_face)
4351 (mode_line_string_face_prop): New variables.
4352 (store_mode_line_string): New function.
4353 (display_mode_element): Use store_mode_line_string to
4354 add mode-line string elements to mode_line_string_list
4355 when mode_line_string_list is non-nil.
4356 (Fformat_mode_line): Now returns propertized string by
4357 default. New arg NO-PROPS to ignore properties.
4358 (decode_mode_spec): Only add two dashes for %- in propertized
4359 mode-line string.
4360 (syms_of_xdisp): Init and staticpro mode_line_string_list.
4361
43622002-06-27 Stefan Monnier <monnier@cs.yale.edu>
4363
4364 * minibuf.c (minibuffer_completion_contents): Add return type.
4365
43662002-06-27 Juanma Barranquero <lektu@terra.es>
4367
4368 * charset.c (Fchar_bytes): Remove obsolescence info from docstring.
4369
43702002-06-26 Juanma Barranquero <lektu@terra.es>
4371
4372 * fileio.c (read_file_name_cleanup): Add missing return.
4373
43742002-06-26 Richard M. Stallman <rms@gnu.org>
4375
4376 * window.c (Frecenter): Don't set force_start flag.
4377
4378 * minibuf.c (do_completion, Fminibuffer_complete_word)
4379 (Fminibuffer_completion_help): Complete just the text before point.
4380 (minibuffer_completion_contents): New function.
4381
4382 * buffer.c (Fbury_buffer): Use frames_discard_buffer.
4383
4384 * frame.c (frames_bury_buffer): Function deleted.
4385
43862002-06-25 Miles Bader <miles@gnu.org>
4387
4388 * callint.c (Fcall_interactively): When checking to see if doprnt hit
4389 the end of callint_message, allow for a terminating '\0'.
4390
43912002-06-24 Juanma Barranquero <lektu@terra.es>
4392
4393 * w32select.c: Include composite.h
4394
4395 * w16select.c: Likewise.
4396
43972002-06-24 Kenichi Handa <handa@etl.go.jp>
4398
4399 * callproc.c (Fcall_process): If code detection is necessary,
4400 call detect_coding directly here.
4401
4402 * coding.c (detect_eol): Preserve coding->cmp_data.
4403
4404 * w16select.c (Fw16_get_clipboard_data):
4405 * w32fns.c (w32_to_x_font):
4406 * w32select.c (Fw32_get_clipboard_data):
4407 * xselect.c (selection_data_to_lisp_data):
4408 * xterm.c (XTread_socket): Disable composition handling.
4409
44102002-06-24 Stefan Monnier <monnier@cs.yale.edu>
4411
4412 * print.c (temp_output_buffer_setup): Kill all local variables.
4413
44142002-06-22 Stefan Monnier <monnier@cs.yale.edu>
4415
4416 * lread.c (Fread): Remove redundant and imprecise declaration.
4417
4418 * xfns.c (check_x_display_info): Use check_x_frame.
4419
4420 * .gdbinit (xprintsym): Use the new `xname' field.
4421 (xsymbol): Use it.
4422
44232002-06-22 Jason Rumney <jasonr@gnu.org>
4424
4425 * w32fns.c (file_dialog_callback): New function.
4426 (Fx_file_dialog): Allow selecting directories as well as files.
4427
44282002-06-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4429
4430 * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
4431 OpenBSD. Add support for mipseb-*-netbsd* machines.
4432
44332002-06-17 Andrew Choi <akochoi@shaw.ca>
4434
4435 * macterm.c (mac_scroll_area): Set foreground and backcolor to
4436 black and white before scrolling. Restore frame background and
4437 foreground color after scrolling.
4438 (do_window_update): Call XClearWindow before calling expose_frame.
4439 (make_mac_frame): Don't set FRAME_BACKGROUND_PIXEL and
4440 FRAME_FOREGROUND_PIXEL of frame.
4441
4442 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
4443 test Mac command key as <ALT> key.
4444
44452002-06-17 Stefan Monnier <monnier@cs.yale.edu>
4446
4447 * window.c (Fset_window_configuration): Lisp_Object/int mixup.
4448
4449 * keyboard.c (read_key_sequence): Be more careful with first_unbound.
4450 Lookup keys in function-key-map immediately so that key-translation-map
4451 can be applied earlier.
4452 Remove function_key_possible and key_translation_possible, replaced
4453 by checking `keytran_start < t'.
4454
4455 * .gdbinit (xsymbol): Use the new `xname' field.
4456
44572002-06-17 Andrew Choi <akochoi@shaw.ca>
4458
4459 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
4460 test Mac command key as <ALT> key.
4461
4462 * mac.c (do_applescript): Call initialize_applescript if necessary
4463 when first called. Dispose of result_desc only when there is no error.
4464 (Fdo_applescript): Use %d format specifier instead of %ld.
4465
44662002-06-16 Andrew Choi <akochoi@shaw.ca>
4467
4468 * macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
4469 of FrontWindow for cases keyDown and autoKey.
4470
4471 * fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
4472 Vdefault_fontset to Monaco with mac-roman coding.
4473
4474 * mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
4475 init_process before and after inclusion of Carbon/Carbon.h, resp.
4476
4477 * macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
4478 cursor_gc.
4479 (add_font_name_table_entry): New function.
4480 (init_font_name_table): Use add_font_name_table_entry; add italic,
4481 bold, and bold-italic entries for truetype fonts.
4482
4483 * xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
4484 for Mac too.
4485 (try_font_list) [MAC_OS]: If no font matches given registry, try
4486 fonts with any registry matching face_family.
4487 (realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font here.
4488
4489 * s/darwin.h: If autoconf detects the Ncurses library, define
4490 LIBS_TERMCAP to -lncurses to use it.
4491
44922002-06-16 Eli Zaretskii <eliz@is.elta.co.il>
4493
4494 * strftime.c [__hpux]: Include sys/_mbstate_t.h.
4495
44962002-06-15 Richard M. Stallman <rms@gnu.org>
4497
4498 * window.c (Fset_window_configuration): Explicitly preserve
4499 the point value that new_current_buffer had at the start.
4500
45012002-06-14 Juanma Barranquero <lektu@terra.es>
4502
4503 * composite.c (Fcompose_region_internal, Fcompose_string_internal):
4504 Fix typos.
4505
45062002-06-14 Kim F. Storm <storm@cua.dk>
4507
4508 * insdel.c (insert_1_both, insert_from_string_1)
4509 (insert_from_buffer_1): Recalculate END_UNCHANGED in case the
4510 insert happened in the end_unchanged region. Otherwise, the
4511 redisplay may be confused and duplicate the last line in the
4512 buffer [seen after save-buffer when require-final-newline==t].
4513
45142002-06-13 Jason Rumney <jasonr@gnu.org>
4515
4516 * w32.c (init_environment): Remove EMACSLOCKDIR.
4517 (stat): Swap _S_IFDIR and _S_IFREG.
4518
45192002-06-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4520
4521 * keyboard.c, macterm.c, macmenu.c, msdos.c, sysdep.c
4522 * termhooks.h, xmenu.c, xsmfns.c, xterm.h, xterm.c, w32term.c,
4523 * w32menu.c, w32inevt.c: Rename enum event_kind as follows:
4524 ascii_keystroke to ASCII_KEYSTROKE_EVENT, multibyte_char_keystroke
4525 to MULTIBYTE_CHAR_KEYSTROKE_EVENT, non_ascii_keystroke to
4526 NON_ASCII_KEYSTROKE_EVENT, timer_event to TIMER_EVENT, mouse_click
4527 to MOUSE_CLICK_EVENT, mouse_wheel to MOUSE_WHEEL_EVENT,
4528 language_change_event to LANGUAGE_CHANGE_EVENT, scroll_bar_click
4529 to SCROLL_BAR_CLICK_EVENT, w32_scroll_bar_click to
4530 W32_SCROLL_BAR_CLICK_EVENT, selection_request_event to
4531 SELECTION_REQUEST_EVENT, selection_clear_event to
4532 SELECTION_CLEAR_EVENT, buffer_switch_event to BUFFER_SWITCH_EVENT,
4533 delete_window_event to DELETE_WINDOW_EVENT, iconify_event to
4534 ICONIFY_EVENT, deiconify_event to DEICONIFY_EVENT,
4535 menu_bar_activate_event to MENU_BAR_ACTIVATE_EVENT, drag_n_drop to
4536 DRAG_N_DROP_EVENT, save_session_event to SAVE_SESSION_EVENT and
4537 no_event to NO_EVENT.
4538
45392002-06-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4540
4541 * macmenu.c: Remove declaration of Qmouse_click and Qevent_kind.
4542
45432002-06-12 Stefan Monnier <monnier@cs.yale.edu>
4544
4545 * intervals.c (textget): Don't forget to `return'.
4546 (lookup_char_property): Use XCAR/XCDR.
4547
45482002-06-12 Juanma Barranquero <lektu@terra.es>
4549
4550 * xdisp.c (Fformat_mode_line): Fix typo.
4551
45522002-06-12 Kim F. Storm <storm@cua.dk>
4553
4554 * xdisp.c (Fformat_mode_line): New function.
4555 (frame_title_buf, frame_title_buf_end, frame_title_ptr)
4556 (store_frame_title_char, store_frame_title): Use unconditionally.
4557 (init_xdisp): Defsubr Fformat_mode_line.
4558 Initialize frame_title_buf etc. unconditionally.
4559
45602002-06-11 Stefan Monnier <monnier@cs.yale.edu>
4561
4562 * keyboard.c (read_key_sequence):
4563 Remove prev_(fkey|keytran}_(map|start|end) since we don't want to pass
4564 things through those maps after downcasing events.
4565 Enforce that keytran_end <= fkey_start, i.e. that key-translation-map
4566 applies after function-key-map.
4567 Make sure that keytran can be done in the middle in the sequence.
4568 Be careful not to throw away events past the one we downcase.
4569
4570 * lread.c (read_integer): Remove unused var `tem'.
4571 (read1): Fix int/Lisp_Object mixup.
4572
4573 * xfaces.c (tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
4574
45752002-06-11 Richard M. Stallman <rms@gnu.org>
4576
4577 * keyboard.c (readable_events): Ignore any number of
4578 FOCUS_IN_EVENT events and return 0 if nothing else in buffer.
4579
45802002-06-09 Miles Bader <miles@gnu.org>
4581
4582 * xfaces.c (Ftty_supports_face_attributes_p): New function.
4583 (parse_rgb_list, tty_lookup_color): New functions.
4584 (tty_defined_color): Use `tty_lookup_color' to do all the work.
4585 (color_distance, Fcolor_distance): New functions.
4586 (TTY_SAME_COLOR_THRESHOLD): New macro.
4587 (Qtty_color_standard_values): New variable.
4588 (syms_of_xfaces): Initialize new vars & functions.
4589
45902002-06-08 Colin Walters <walters@verbum.org>
4591
4592 * textprop.c (Vchar_property_alias_alist): New variable.
4593 (syms_of_textprop) <Vchar_property_alias_alist>: DEFVAR_LISP.
4594
4595 * intervals.c (lookup_char_property): New function for looking up
4596 overlay and text properties, created from textget.
4597 (textget): Use it.
4598
4599 * intervals.h (lookup_char_property): Declare.
4600 (Vchar_property_alias_alist): Declare.
4601
4602 * buffer.c (Foverlay_get): Use lookup_char_property.
4603
46042002-06-07 Sam Steingold <sds@gnu.org>
4605
4606 * xselect.c (lisp_data_to_selection_data): Fix last change:
4607 *data_ret is not a Lisp string, while unibyte_string is.
4608
46092002-06-07 Eli Zaretskii <eliz@is.elta.co.il>
4610
4611 * xselect.c (lisp_data_to_selection_data): Fix last change:
4612 set size_ret.
4613
46142002-06-07 Andreas Schwab <schwab@suse.de>
4615
4616 * m/amdx86-64.h: New file.
4617
46182002-06-05 Eli Zaretskii <eliz@is.elta.co.il>
4619
4620 * fns.c (Fstring_make_unibyte): Doc fix.
4621
4622 * xselect.c (lisp_data_to_selection_data): If the requested type
4623 is STRING, call string_make_unibyte to encode the selected text
4624 as a string.
4625
4626 * window.c (Fset_window_hscroll): Doc fix.
4627
46282002-06-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4629
4630 * fileio.c (choose_write_coding_system):
4631 Call select-safe-coding-system properly.
4632
46332002-06-03 Richard M. Stallman <rms@gnu.org>
4634
4635 * xdisp.c (message_with_string): Error if STRING is not a string.
4636
4637 * fns.c (md5): Pass FILE arg to Vselect_safe_coding_system_function.
4638
4639 * fileio.c (choose_write_coding_system): Pass FILE arg to
4640 Vselect_safe_coding_system_function.
4641
46422002-06-03 Ken Raeburn <raeburn@gnu.org>
4643
4644 * buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
4645
46462002-06-02 Thien-Thi Nguyen <ttn@gnu.org>
4647
4648 * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
4649 * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
4650 * keymap.c (describe_command): Likewise.
4651 * minibuf.c (read_minibuf): Likewise.
4652
4653 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
4654 Cast `current_column' return value to int.
4655 (back_to_previous_visible_line_start)
4656 (reseat_at_next_visible_line_start, next_element_from_buffer):
4657 Cast `indented_beyond_p' 3rd arg to float.
4658
4659 * indent.c (last_known_column): Now a float.
4660 (current_column_1, position_indentation, current_column)
4661 (string_display_width): Return float.
4662 (Fcurrent_column): Cast `current_column' return value to int.
4663 (Fcurrent_indentation): Cast `position_indentation' retval to int.
4664 (indented_beyond_p): Third arg now a float.
4665 (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
4666
4667 * lisp.h (current_column): Now returns float.
4668 (indented_beyond_p): 3rd arg now a float.
4669
46702002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
4671
4672 * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
4673 is Qcompound_text_with_extensions.
4674
4675 * xselect.c (lisp_data_to_selection_data): Always set selection
4676 type as string if x_encode_text returns streingp non-NULL.
4677
4678 * s/netbsd.h: Include /usr/pkg in the run time shared library path.
4679
46802002-05-30 Richard M. Stallman <rms@gnu.org>
4681
4682 * window.c (Fset_window_configuration): Correct the handling
4683 of point in current buffer, to work with multiple windows.
4684
46852002-05-29 Colin Walters <walters@verbum.org>
4686
4687 * lread.c (Fread_from_string): Don't depend on order of evaluation
4688 for C function parameters.
4689
46902002-05-28 Richard M. Stallman <rms@gnu.org>
4691
4692 * xterm.c (x_display_and_set_cursor): Change the cursor in the same
4693 way for blinked-off state and for a nonselected window.
4694
4695 * window.c (window_scroll_pixel_based): Don't call Fbolp;
4696 instead, see if the new start pos is at beginning of line.
4697
4698 * fileio.c (Fwrite_region): If START is a string, don't
4699 make any annotations.
4700
4701 * eval.c (syms_of_eval): Doc fix.
4702
47032002-05-28 Colin Walters <walters@debian.org>
4704
4705 * emacs.c (USAGE1): Add --no-splash.
4706 (standard_args): Ditto.
4707
47082002-05-28 Colin Walters <walters@gnu.org>
4709
4710 * lread.c (readchar_count): New variable.
4711 (readchar): Increment it.
4712 (unreadchar): Decrement it.
4713 (read_multibyte): Decrement it.
4714 (Vread_with_symbol_positions): New variable.
4715 (Vread_symbol_positions_list): New variable.
4716 (read_internal_start): New function, created from Fread and
4717 Fread_from_string. Handle Vread_symbol_positions_list and
4718 Vread_with_symbol_positions.
4719 (readevalloop, Fread, Fread_from_string): Use it.
4720 (read1): Use readchar_count to add symbol positions to
4721 Vread_symbol_positions_list if Vread_with_symbol_positions is non-nil.
4722 (syms_of_lread): DEFVAR_LISP and initialize them.
4723
4724 * lread.c (read0, read1, read_list, read_vector, read_multibyte)
4725 (substitute_object_recurse, substitute_object_in_subtree)
4726 (substitute_in_interval): Prototype.
4727 (read_multibyte): Return c if it's less than zero.
4728
47292002-05-28 Kim F. Storm <storm@cua.dk>
4730
4731 * fileio.c (Fread_file_name_internal): Added brute-force
4732 speed up for using predicate file-directory-p.
4733
47342002-05-28 Kim F. Storm <storm@cua.dk>
4735
4736 * fileio.c (Vread_file_name_function, Vread_file_name_predicate):
4737 New variables.
4738 (syms_of_fileio): DEFVAR_LISP them.
4739 (read_file_name_cleanup): New unwind function.
4740 (Fread_file_name_internal): Only return completions satifying
4741 Vread_file_name_predicate. Temporarily unwind protect and rebind
4742 default-directory while checking completions against the predicate.
4743 (Fread_file_name): Added PREDICATE argument. Specbind it to
4744 Vread_file_name_predicate during completion.
4745 Call Vread_file_name_function to read the file name if non-nil.
4746
4747 * lisp.h (Fread_file_name): Now has 6 args.
4748
4749 * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
4750 predicate for Fread_file_name when reading directory name.
4751 Supply Qnil for predicate in other calls to Fread_file_name.
4752
47532002-05-26 Miles Bader <miles@gnu.org>
4754
4755 * term.c (tty_capable_p): New function.
4756 * dispextern.h (tty_capable_p): New function declaration.
4757 (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM)
4758 (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros.
4759
47602002-05-23 Stefan Monnier <monnier@cs.yale.edu>
4761
4762 * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
4763 (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
4764 (Vwrite_region_annotate_functions): Docstring fix.
4765
47662002-05-23 Kim F. Storm <storm@cua.dk>
4767
4768 * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
4769 phys_cursor's hpos is overwritten. This is still not completely
4770 correct, as it doesn't really make sense to use hpos at all to
4771 get the cursor glyph (as that is relative to the width of the
4772 characters on the line, which may have changed during the update).
4773
47742002-05-22 Jason Rumney <jasonr@gnu.org>
4775
4776 * w32fns.c (enumfont_t): Remove tail, make pattern a normal
4777 Lisp_Object.
4778 (enum_font_cb2, enum_font_maybe_add_to_list, w32_list_fonts):
4779 Use modified enumfont_t struct.
4780
4781 * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
4782
4783 * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
4784 Handle the `hbar' cursor type.
4785 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
4786
4787 * w32fns.c (Qhbar): New variable.
4788 (x_specified_cursor_type): Use it.
4789
47902002-05-21 Ken Raeburn <raeburn@gnu.org>
4791
4792 * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
4793 now, when the address is needed.
4794
47952002-05-21 Colin Walters <walters@gnu.org>
4796
4797 * Makefile.in (shortlisp): Add font-core.el.
4798
47992002-05-20 Richard M. Stallman <rms@gnu.org>
4800
4801 * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
4802
4803 * keyboard.c (read_char_minibuf_menu_prompt): Don't list
4804 equivalent key bindings here.
4805
48062002-05-20 Ken Raeburn <raeburn@gnu.org>
4807
4808 Change symbol structure to contain a lisp object for the symbol
4809 name:
4810 * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
4811 object field named "xname".
4812 (SYMBOL_NAME): New macro.
4813 * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
4814 name field.
4815 * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
4816 (mark_object, gc_sweep): Use symbol xname field and XSTRING
4817 instead of name field.
4818 * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
4819 SYMBOL_NAME instead of XSYMBOL and name field.
4820 * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
4821 instead of XSYMBOL and name field.
4822 * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
4823 and SYMBOL_NAME instead of XSYMBOL and name field.
4824 * coding.c (Fread_coding_system, code_convert_region1)
4825 (code_convert_string1, code_convert_string_norecord)
4826 (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
4827 XSYMBOL and name field.
4828 * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
4829 (Fmake_variable_buffer_local, Fmake_local_variable)
4830 (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
4831 of XSYMBOL and name field.
4832 * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
4833 XSYMBOL and name field.
4834 * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
4835 instead of XSYMBOL and name field.
4836 * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
4837 XSYMBOL and name field.
4838 * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
4839 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
4840 * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
4841 instead of XSYMBOL and name field.
4842 * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
4843 (parse_modifiers, apply_modifiers, Fevent_convert_list)
4844 (parse_solitary_modifier, Fexecute_extended_command):
4845 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
4846 * keymap.c (silly_event_symbol_error, Fsingle_key_description)
4847 (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
4848 of XSYMBOL and name field.
4849 (describe_command, describe_translation): Use SYMBOL_NAME and
4850 assignment instead of XSYMBOL and name field and XSETSTRING.
4851 * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
4852 instead of XSYMBOL and name field.
4853 (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
4854 name field and XSETSTRING.
4855 * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
4856 of XSYMBOL and name field.
4857 * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
4858 assignment instead of XSYMBOL and name field and XSETSTRING.
4859 * print.c (print_error_message, print_object): Use SYMBOL_NAME and
4860 XSTRING instead of XSYMBOL and name field.
4861 * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
4862 and XSTRING instead of XSYMBOL and name field.
4863 * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
4864 and XSTRING instead of XSYMBOL and name field.
4865 * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
4866 XSTRING instead of XSYMBOL and name field.
4867 * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
4868 of XSYMBOL and name field.
4869 * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
4870 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
4871
48722002-05-19 Ken Raeburn <raeburn@gnu.org>
4873
4874 * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
4875 and XCDR real rvalues in most configurations.
4876
4877 * buffer.c (fix_overlays_in_range, fix_overlays_before):
4878 Don't take the address of the cdr part of a cons cell; instead, track
4879 the parent cell and call XSETCDR, or set the variable for the head
4880 of the list if we haven't started down the list yet.
4881
48822002-05-19 Richard M. Stallman <rms@gnu.org>
4883
4884 * doc.c (reread_doc_file): Don't ask for confirmation.
4885
48862002-05-18 Jason Rumney <jasonr@gnu.org>
4887
4888 * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
4889 (xbm_load_image): Use it.
4890 (xbm_load): Ditto.
4891 (xbm_read_bitmap_data): Reverted to xfns.c version.
4892 From David Ponce <david@dponce.com>.
4893
48942002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
4895
4896 * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
4897 2.02 and later.
4898
48992002-05-16 Juanma Barranquero <lektu@terra.es>
4900
4901 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
4902
49032002-05-15 Stefan Monnier <monnier@cs.yale.edu>
4904
4905 * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
4906 meaningful test.
4907 (read_char_minibuf_menu_prompt): Fix typo.
4908
49092002-05-15 Eli Zaretskii <eliz@is.elta.co.il>
4910
4911 * eval.c (Fcommandp): Doc fix.
4912
49132002-05-13 Stefan Monnier <monnier@cs.yale.edu>
4914
4915 * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
4916 (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
4917 (Fset_keymap_parent): Gcpro a bit more.
4918 (access_keymap): Gcpro around meta_map call and around the main loop.
4919 (get_keyelt): Gcpro when following indirect references.
4920 (copy_keymap_item): New fun, extracted from Fcopy_keymap.
4921 (copy_keymap_1, Fcopy_keymap): Use it. Don't copy the parent map.
4922 (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
4923 Remove useless ad-hoc remap code.
4924
49252002-05-13 Richard M. Stallman <rms@gnu.org>
4926
4927 * search.c (search_buffer): Give up boyer moore search if inverse
4928 translation change charset_base.
4929
49302002-05-12 Eli Zaretskii <eliz@is.elta.co.il>
4931
4932 * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
4933 characters is carried over from the previous block of text, adjust
4934 coding->produced to account for the extra character.
4935
49362002-05-11 Andreas Schwab <schwab@suse.de>
4937
4938 * coding.c (intersection): Keep the elements of the returned list
4939 in the same order as in the first list.
4940
49412002-05-11 Kim F. Storm <storm@cua.dk>
4942
4943 * keymap.c (current_minor_maps): Fixed resizing of cmm_maps;
4944 only update cmm_size if realloc actually succeeds.
4945 Testing with initial size of 2 elements revealed that using
4946 realloc on GNU/Linux would cause a random trap in xmalloc
4947 later on, so I rewrote the code to use malloc/bcopy/free instead
4948 of realloc.
4949
49502002-05-10 Jason Rumney <jasonr@gnu.org>
4951
4952 * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
4953
49542002-05-10 Eli Zaretskii <eliz@is.elta.co.il>
4955
4956 * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
4957 parens, to ensure correct evaluation order.
4958
49592002-05-10 Kim F. Storm <storm@cua.dk>
4960
4961 * keymap.c (Vemulation_mode_map_alists): New variable.
4962 (syms_of_keymap): DEFVAR_LISP it.
4963 (current_minor_maps): Process keymap alists in that list before
4964 minor-mode-overriding-map-alist and minor-mode-map-alist.
4965
49662002-05-09 Richard M. Stallman <rms@gnu.org>
4967
4968 * search.c (Freplace_match): Doc fix.
4969
49702002-05-09 Kim F. Storm <storm@cua.dk>
4971
4972 * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
4973 Enlarge cursor rectangle drawn around image with non-zero relief.
4974
4975 * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
4976 Enlarge cursor rectangle drawn around image with non-zero relief.
4977
4978 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
4979 Enlarge cursor rectangle drawn around image with non-zero relief.
4980
49812002-05-07 Eli Zaretskii <eliz@is.elta.co.il>
4982
4983 * xselect.c (lisp_data_to_selection_data): Don't set selection
4984 type if comes from the Lisp object's car. If the selection
4985 contains a pure ASCII text, always return QSTRING as its type.
4986
49872002-05-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4988
4989 * mac.c (mac-cut-function): Doc fix.
4990
49912002-05-05 Richard M. Stallman <rms@gnu.org>
4992
4993 * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
4994
49952002-05-04 Jason Rumney <jasonr@gnu.org>
4996
4997 * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
4998 for event-click-count.
4999
5000 * process.c (init_process): Only add server subfeature if we can
5001 use non-blocking I/O.
5002
50032002-05-04 Andrew Choi <akochoi@shaw.ca>
5004
5005 * macterm.c (XTread_socket): Call WaitNextEvent once instead of
5006 repeatedly.
5007
50082002-05-03 Jason Rumney <jasonr@gnu.org>
5009
5010 * process.c (Fmake_network_process): Only support server sockets
5011 when we can make them non-blocking.
5012
5013 * s/ms-w32.h (HAVE_SELECT): Define.
5014
5015 * w32.h (FILE_NDELAY): New flag.
5016
5017 * w32.c (sys_getpeername, fcntl): New functions.
5018 (_sys_read_ahead): Temporarily block on non-blocking sockets.
5019
5020 * w32proc.c: include sys/file.h.
5021
50222002-05-03 Colin Walters <walters@verbum.org>
5023
5024 * callproc.c (Vgame_score_directory): Renamed to
5025 Vshared_game_score_directory.
5026
50272002-04-30 Richard M. Stallman <rms@gnu.org>
5028
5029 * s/gnu.h [emacs]: Include stdio.h.
5030 (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
5031
5032 * eval.c (do_autoload): Error if called while preparing to dump.
5033
5034 * fns.c (Frequire): Error if need to load while preparing to dump.
5035
50362002-04-28 Colin Walters <walters@verbum.org>
5037
5038 * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
5039 Default to "~/.emacs.d/games".
5040
50412002-04-29 Stefan Monnier <monnier@cs.yale.edu>
5042
5043 * lread.c (openp): Change arg exec_only to predicate.
5044 (build_load_history): Use XCAR/XCDR.
5045 (Flocate_file_internal): New fun.
5046 (syms_of_lread): Defsubr it.
5047 (Fload): Update call to openp.
5048
5049 * lisp.h (openp): Update prototype.
5050
5051 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
5052 * w32proc.c (sys_spawnve):
5053 * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
5054 * w32.c (check_windows_init_file):
5055 * sound.c (Fplay_sound_internal):
5056 * process.c (Fstart_process):
5057 * macfns.c (x_create_bitmap_from_file, x_find_image_file):
5058 * mac.c (run_mac_command):
5059 * emacs.c (init_cmdargs):
5060 * callproc.c (Fcall_process): Update call to openp.
5061
5062 * textprop.c (remove_properties): Don't use XCAR without CONSP.
5063
5064 * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
5065
50662002-04-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5067
5068 * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
5069 (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
5070
50712002-04-28 Richard M. Stallman <rms@gnu.org>
5072
5073 * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
5074
5075 * eval.c (Fcommandp): New arg for_call_interactively.
5076 * lisp.h (Fcommandp): Declare new arg.
5077
50782002-04-28 Jason Rumney <jasonr@gnu.org>
5079
5080 * w32proc.c (syms_of_w32proc): Get true file attributes by default.
5081
5082 * w32.c (stat, fstat): Use file index information to generate
5083 inodes for directories where available.
5084
50852002-04-26 Andrew Choi <akochoi@shaw.ca>
5086
5087 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
5088 [HAVE_CARBON]: Include Mac object files.
5089
5090 * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
5091 fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
5092 termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
5093 MAC_OSX, and MAC_OS instead of macintosh.
5094
5095 * editfns.c [MAC_OS8]: Include stdio.h.
5096
5097 * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
5098
5099 * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
5100 Apple Monaco.
5101
5102 * process.c: Declare QCfamily and QCfilter as extern.
5103 (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
5104 calling select.
5105
5106 * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
5107
5108 * tparam.c [MAC_OSX]: Don't define BC and UP.
5109
5110 * config.in [HAVE_CARBON]: Add.
5111
5112 * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
5113 Move here from mac/src and mac/inc.
5114
5115 * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
5116
51172002-04-26 Gerd Moellmann <gerd@gnu.org>
5118
5119 * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
5120 Compute phys_cursor_width from the x position returned
5121 by x_draw_glyhs, which is cheaper.
5122 (x_display_and_set_cursor): Compute the buffer-local value
5123 of `cursor-in-non-selected-windows' only when needed.
5124
51252002-04-25 Gerd Moellmann <gerd@gnu.org>
5126
5127 * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
5128 cursor on a stretch glyph has a width that depends on
5129 x_stretch_cursor_p.
5130
51312002-04-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5132
5133 * abbrev.c (abbrev-start-location): Doc fix.
5134
5135 * indent.c (Fvertical_motion): Fix last change.
5136
51372002-04-25 Gerd Moellmann <gerd@gnu.org>
5138
5139 * indent.c (Fvertical_motion): Move to the start of the line
5140 containing PT before moving up or down.
5141
51422002-04-24 Gerd Moellmann <gerd@gnu.org>
5143
5144 * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
5145 case of writing a whole row, more or less analogous to the case of
5146 writing only parts of a row.
5147
5148 * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
5149 0 for NO_CURSOR.
5150
5151 * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
5152
51532002-04-23 Colin Walters <walters@verbum.org>
5154
5155 * buffer.c (syms_of_buffer): Doc fix.
5156
51572002-04-23 Gerd Moellmann <gerd@gnu.org>
5158
5159 * xterm.c (notice_overwritten_cursor): Handle the special case
5160 of the cursor being in the first blank non-text line at the
5161 end of a window.
5162
5163 * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
5164 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
5165 (x_display_and_set_cursor): Don't set phys_cursor_width here, for
5166 bar cursors only, to make phys_cursor_width contain what its name
5167 suggests.
5168 (notice_overwritten_cursor): Consider the cursor image erased if
5169 the output area intersects the cursor image in y-direction.
5170
51712002-04-23 Simon Marshall <simon@gnu.org>
5172
5173 * xfns.c (x_set_mouse_color): Change default for cross_cursor
5174 to XC_hand2.
5175
51762002-04-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5177
5178 * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
5179
51802002-04-22 Kim F. Storm <storm@cua.dk>
5181
5182 * textprop.c (remove_properties): Fixed trap for malformed plist.
5183
51842002-04-22 Richard M. Stallman <rms@gnu.org>
5185
5186 * cmds.c (Fend_of_line): Handle intangible text in mid line.
5187
5188 * window.c (make_window): Initialize height_fixed_p,
5189 last_cursor_off_p, and p->cursor_off_p slots.
5190
51912002-04-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5192
5193 * fns.c (use-dialog-box): Doc fix.
5194
51952002-04-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5196
5197 * xterm.c (note_mode_line_or_margin_highlight): Remove unused
5198 variables `row', `i' and `area'.
5199 (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
5200 toolkit library.
5201
52022002-04-19 Stefan Monnier <monnier@cs.yale.edu>
5203
5204 * xfaces.c (clear_font_table): Don't free the default font of
5205 a frame even if it's on another display.
5206 (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
5207 that could be Qt.
5208
52092002-04-19 Juanma Barranquero <lektu@terra.es>
5210
5211 * indent.c (Fmove_to_column): Remove unused local variable
5212 `next_boundary_byte'.
5213 (current_column_1): Likewise.
5214
52152002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
5216
5217 * msdos.c (Qhbar): New variable.
5218 (syms_of_msdos): Intern and staticpro it.
5219 (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
5220 cursor type.
5221
52222002-04-19 Dave Lambert <dlambert@acm.org>
5223
5224 Theses change implement an underscore-like (`hbar') cursor.
5225
5226 * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
5227
5228 * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
5229 Handle the `hbar' cursor type.
5230 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
5231
5232 * xfns.c (Qhbar): New variable.
5233 (syms_of_xfns): Intern and staticpro it.
5234 (x_specified_cursor_type): Handle `hbar' cursor.
5235
5236 * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
5237 not defined.
5238
52392002-04-18 Richard M. Stallman <rms@gnu.org>
5240
5241 * textprop.c (remove_properties): New arg LIST allows scanning
5242 either a list or a plist.
5243 (interval_has_some_properties_list): New function, like
5244 interval_has_some_properties using list instead of plist.
5245 All callers changed.
5246 (Fremove_list_of_text_properties): New function.
5247 (syms_of_textprop): Defsubr it.
5248
52492002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
5250
5251 * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
5252
52532002-04-17 Juanma Barranquero <lektu@terra.es>
5254
5255 * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
5256
52572002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
5258
5259 * window.c (coordinates_in_window): Don't report on margin area
5260 if its width is zero.
5261
52622002-04-16 Jason Rumney <jasonr@gnu.org>
5263
5264 * w32fns.c (Fx_file_dialog): Decode file name before using.
5265
5266 * w32term.c (construct_drag_n_drop): Likewise.
5267
52682002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
5269
5270 * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
5271 store load-history in pure space.
5272
5273 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
5274
52752002-04-16 Stefan Monnier <monnier@cs.yale.edu>
5276
5277 * xterm.c (Qlatin_1, Qutf_8): New vars.
5278 (syms_of_xterm): Initialize them.
5279 (XTread_socket): Eliminate incorrect optimization that tried to avoid
5280 decoding the output of X*LookupString.
5281 Always use latin-1 to decode the output of XLookupString.
5282 Try Xutf8LookupString if XmbLookupString failed.
5283
5284 * region-cache.c (new_region_cache): Use BEG.
5285
52862002-04-16 Gerd Moellmann <gerd@gnu.org>
5287
5288 * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
5289 configuration files.
5290 (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
5291 returns 0.
5292
52932002-04-15 Andreas Schwab <schwab@suse.de>
5294
5295 * config.in: Regenerated using autoheader.
5296
5297 * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
5298 m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
5299 m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
5300 m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
5301 m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
5302 m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
5303 m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
5304 m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
5305 m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
5306 m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
5307 m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
5308 m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
5309 m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
5310 m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
5311 m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
5312 s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
5313 STACK_DIRECTION, now set by autoconf.
5314
53152002-04-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5316
5317 * dispnew.c (marginal_area_string): Sort arguments.
5318
5319 * dispextern.h (marginal_area_string): Add prototype.
5320
53212002-04-13 Richard M. Stallman <rms@gnu.org>
5322
5323 * fileio.c (Finsert_file_contents):
5324 Don't call temp_output_buffer_setup--do just part, by hand.
5325
5326 * coding.c (run_pre_post_conversion_on_str):
5327 Don't call temp_output_buffer_setup--do just part, by hand.
5328
5329 * keyboard.c (command_loop_1): Don't call start_hourglass
5330 or cancel_hourglass when executing a macro.
5331
5332 * marker.c (count_markers): New function.
5333
5334 * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
5335 grow without limit. Move recently used elements to the front.
5336
53372002-04-13 Eli Zaretskii <eliz@is.elta.co.il>
5338
5339 * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
5340
53412002-04-12 Gerd Moellmann <gerd@gnu.org>
5342
5343 * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
5344 rows marginal areas.
5345 (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
5346 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
5347
5348 * dispnew.c (marginal_area_string): Check that glyph row is enabled.
5349
53502002-04-12 Dave Love <fx@gnu.org>
5351
5352 * dispnew.c (marginal_area_string): New.
5353
5354 * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
5355 (Qleft_margin, Qright_margin): Declare.
5356 (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
5357
5358 * xterm.c (note_mode_line_or_margin_highlight): Renamed from
5359 note_mode_line_highlight and extended.
5360
5361 * keyboard.c (Qleft_margin, Qright_margin): Declare.
5362 (make_lispy_event): Deal with mouse events in margins.
5363
53642002-04-12 Stefan Monnier <monnier@cs.yale.edu>
5365
5366 * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
5367
5368 * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
5369 than deactivating the mark if tmm is set to `lambda'.
5370 (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
5371 Use a single event for HELP_EVENT.
5372 (Fexecute_extended_command): Save last_point_position.
5373
53742002-04-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5375
5376 * lisp.h (Fpropertize): Add prototype.
5377
5378 * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
5379
53802002-04-10 Colin Walters <walters@verbum.org>
5381
5382 * config.in: Add HAVE_SHARED_GAME_DIR.
5383
5384 * callproc.c: (Vgame_score_directory): New variable.
5385 (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
5386
53872002-04-10 Richard M. Stallman <rms@gnu.org>
5388
5389 * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
5390
53912002-04-09 Stefan Monnier <monnier@cs.yale.edu>
5392
5393 * minibuf.c (read_minibuf): Use empty_string.
5394 (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
5395 Short-circuit the search as soon as it "failed".
5396 (Fall_completions): Allow lambda forms and lists of strings for alist.
5397 (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
5398 when require_match is nil.
5399 (Ftest_completion): Rename from `test_completion' and export to elisp.
5400 Call the predicate also when alist is a list.
5401 Obey Vcompletion_regexp_list.
5402 (do_completion, Fminibuffer_complete_and_exit): Use it.
5403 (Fassoc_string): Rename from `assoc_for_completion'.
5404 Allow list of strings as well and export to elisp.
5405
54062002-04-08 Stefan Monnier <monnier@cs.yale.edu>
5407
5408 * puresize.h (BASE_PURESIZE): Increase to 900KB.
5409
54102002-04-08 Juanma Barranquero <lektu@terra.es>
5411
5412 * w32.c (sys_accept): Don't hide variable `s'.
5413
54142002-04-05 Gerd Moellmann <gerd@gnu.org>
5415
5416 * callint.c (Fcall_interactively): Use INTEGERP instead of
5417 NUMBERP for checking Vhistory_length.
5418
54192002-04-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5420
5421 * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
5422 Doc fix to reflect it.
5423
54242002-04-04 Richard M. Stallman <rms@gnu.org>
5425
5426 * xdisp.c (display_mode_element): New arg RISKY.
5427 Disregard text props found or specified within a variable
5428 that isn't marked risky-local-variable.
5429 (Qrisky_local_variable): New variable.
5430 (syms_of_xdisp): Init and staticpro it.
5431
54322002-04-04 Stefan Monnier <monnier@cs.yale.edu>
5433
5434 * undo.c (record_point): New fun.
5435 (record_delete, record_insert): Use it.
5436
54372002-04-03 Juanma Barranquero <lektu@terra.es>
5438
5439 * doc.c (Fdocumentation): Add missing parentheses.
5440 (Fdocumentation_property): Likewise.
5441
54422002-04-03 Stefan Monnier <monnier@cs.yale.edu>
5443
5444 * doc.c (Fdocumentation, Fdocumentation_property): When the doc
5445 data is 0, just return nil.
5446
54472002-04-03 Eli Zaretskii <eliz@is.elta.co.il>
5448
5449 * msdos.c (syms_of_msdos): Fix last change with
5450 mouse_autoselect_window.
5451
54522002-04-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5453
5454 * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
5455 mouse_autoselect_window.
5456
54572002-04-02 Stefan Monnier <monnier@cs.yale.edu>
5458
5459 * keyboard.c (make_lispy_event): Handle unknown keysyms together
5460 with system-specific keysyms. Use it also for unknown function keys.
5461
5462 * doc.c (reread_doc_file): Return whether reload was attempted.
5463 (Fdocumentation, Fdocumentation_property): Don't try to reload
5464 if the doc is 0 and only ask once.
5465
5466 * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
5467
54682002-04-02 Eli Zaretskii <eliz@is.elta.co.il>
5469
5470 * keyboard.c (read_char): If the event was Qselect_window,
5471 restore timer_idleness_start_time to its previous value.
5472
5473 * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
5474
54752002-04-01 Stefan Monnier <monnier@cs.yale.edu>
5476
5477 * region-cache.c (new_region_cache): Use BEG.
5478
5479 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
5480 Use BEG and BEG_BYTE.
5481
5482 * doc.c (get_doc_string): Return nil if the location is wrong.
5483 (reread_doc_file): New fun.
5484 (Fdocumentation, Fdocumentation_property):
5485 Call it if get_doc_string fails.
5486 (Fsnarf_documentation): Make it work for a dumped Emacs.
5487
5488 * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
5489 Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
5490
5491 * charset.c (Fstring): Allow 0 arguments.
5492
5493 * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
5494
5495 * process.c (DATAGRAM_CONN_P, list_processes_1)
5496 (Fprocess_datagram_address, Fset_process_datagram_address)
5497 (Fset_network_process_options, server_accept_connection):
5498 Fix some int/Lisp_Object confusions (thank you union types).
5499
55002002-04-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5501
5502 * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
5503
5504 * w32term.c: Likewise.
5505 (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
5506
5507 * keyboard.c (Qselect_window): New symbol.
5508 (head_table): Use it.
5509 (keys_of_keyboard): Bound select-window event to handle-select-window.
5510 (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
5511
5512 * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
5513 (last_window): New variable.
5514 (XTread_socket): Generate SELECT_WINDOW_EVENTs.
5515 (note_mouse_movement): Remove reimplemented code in #if 0.
5516 (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
5517 Emacs windows.
5518
5519 * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
5520
55212002-03-31 Gerd Moellmann <gerd@gnu.org>
5522
5523 * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
5524 Callers changed.
5525
55262002-03-30 Richard M. Stallman <rms@gnu.org>
5527
5528 * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
5529 loop whenever it stops making progress.
5530
5531 * widget.c (set_frame_size): Don't call change_frame_size.
5532
55332002-03-30 Gerd Moellmann <gerd@gnu.org>
5534
5535 * dispnew.c (direct_output_for_insert):
5536 Call mark_window_display_accurate.
5537
55382002-03-29 Jason Rumney <jasonr@gnu.org>
5539
5540 * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
5541
55422002-03-29 Eli Zaretskii <eliz@is.elta.co.il>
5543
5544 * Makefile.in (lread.o): Depend on coding.h.
5545
5546 * lread.c (openp, Fload): Encode the file name before passing it
5547 to `stat', `access', and `emacs_open'.
5548 (openp): GCPRO the encoded file name. Don't recompute Lisp
5549 strings unnecessarily.
5550
55512002-03-29 Kim F. Storm <storm@cua.dk>
5552
5553 * fns.c (Flax_plist_put): Doc fix.
5554
55552002-03-28 Miles Bader <miles@gnu.org>
5556
5557 * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
5558
55592002-03-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5560
5561 * process.c (set-network-process-options): Add usage.
5562 (make-network-process): Doc fix.
5563
55642002-03-26 Eli Zaretskii <eliz@is.elta.co.il>
5565
5566 * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
5567
55682002-03-26 Richard M. Stallman <rms@gnu.org>
5569
5570 * fns.c (Fsubstring_no_properties): New function.
5571 (Flax_plist_get, Flax_plist_put): New functions.
5572 (syms_of_fns): defsubr them.
5573
5574 * xdisp.c (update_menu_bar): Test only update_mode_lines;
5575 don't test or alter w->update_mode_line.
5576
5577 * window.c (Fdisplay_buffer): Doc fix.
5578
55792002-03-24 Richard M. Stallman <rms@gnu.org>
5580
5581 * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
5582
55832002-03-24 Gerd Moellmann <gerd@gnu.org>
5584
5585 * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
5586 (Fdefmacro): Handle `(declare ...)'.
5587 (syms_of_eval) <Qdeclare>: Initialize and staticpro.
5588 (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
5589
55902002-03-24 Jason Rumney <jasonr@gnu.org>
5591
5592 * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
5593 (xbm_file_p): Add prototypes.
5594 (xbm_format, xbm_image_p): Sync with xfns.c.
5595 (reflect_byte): New function.
5596 (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
5597 (xbm_load_image): Create bitmaps with a depth of 1.
5598 (init_xfns): Enable XBM images.
5599
56002002-03-23 Jason Rumney <jasonr@gnu.org>
5601
5602 * w32term.c (w32_handle_tool_bar_click): Detect up and down events
5603 correctly. Do not pass up_modifier to keyboard buffer.
5604
5605 * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
5606
56072002-03-22 Stefan Monnier <monnier@cs.yale.edu>
5608
5609 * Makefile.in (bootstrapclean): New target.
5610 (bootstrap-temacs, bootstrap-doc): Remove.
5611 (bootstrap-emacs): Use a bog-standard `temacs'.
5612 Don't bother to build a DOC file.
5613
5614 * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
5615
5616 * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
5617 in temacs even if !CANNOT_DUMP.
5618 (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
5619
5620 * alloc.c (check_pure_size): Only output a warning.
5621
56222002-03-22 Jason Rumney <jasonr@gnu.org>
5623
5624 * w32fns.c (Fx_create_frame): Enable tool-bar when images are
5625 supported.
5626
5627 * w32term.c (zv_bits): Declare as short, for word alignment.
5628 (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
5629 (syms_of_w32term): Define x-use-underline-position-properties.
5630
5631 * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
5632 (clear_image_cache): Block input, fix logic, clear matrices in
5633 all frames that share this cache.
5634
56352002-03-22 Eli Zaretskii <eliz@is.elta.co.il>
5636
5637 * emacs.c (main): Update the Copyright year in the blurb printed
5638 by "emacs --version".
5639
5640 * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
5641
5642 * xterm.c (XTread_socket): If XK_ISO_Lock and
5643 XK_ISO_Last_Group_Lock are defined, handle keysyms between
5644 XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
5645
56462002-03-21 Kim F. Storm <storm@cua.dk>
5647
5648 * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
5649 menu-bar bindings in keymap and local-map properties _are_ used.
5650 But try keymap property first in accordance with 2002-01-03 patch.
5651 Added comment describing why this is not always reliable.
5652 (tool_bar_items): Ditto for tool-bar.
5653
56542002-03-21 Jason Rumney <jasonr@gnu.org>
5655
5656 * w32fns.c (x_clear_image_1): Disable color table code.
5657
56582002-03-21 Kim F. Storm <storm@cua.dk>
5659
5660 * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
5661 removed the wrong version of the DEFUN macro; fixed it.
5662
5663 * fns.c (Ffeaturep): Allow subfeature to be a list (test using
5664 Fmember rather than Fmemq).
5665 (Fprovide): Check that subfeatures is a list.
5666
5667 * process.c (QCfeature, QCdatagram): Removed variables.
5668 (QCtype, Qdatagram): New variables.
5669 (network_process_featurep): Removed function.
5670 (Fmake_network_process): Removed :feature check.
5671 Use :type 'datagram instead of :datagram t to create a datagram
5672 socket. This allows us to add other connection types (e.g. raw
5673 sockets) later in a consistent manner.
5674 (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
5675 supported subfeatures for feature make-network-process.
5676 (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
5677 Intern and staticpro QCtype and Qdatagram.
5678 (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
5679
5680 * xfns.c: (QCtype): Remove duplicate declaration and
5681 initialization (is now declared in process.c).
5682
5683 * w32fns.c: (QCtype): Remove duplicate declaration and
5684 initialization (is now declared in process.c).
5685
56862002-03-21 Richard M. Stallman <rms@gnu.org>
5687
5688 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
5689 (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
5690 when jumping to `fail' to avoid undoing reg changes in the
5691 last iteration of the loop.
5692 (GET_UNSIGNED_NUMBER): Skip spaces around the number.
5693
5694 * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
5695 Depend on process.h.
5696
56972002-03-20 Jason Rumney <jasonr@gnu.org>
5698
5699 Most of the following changes are still conditional on HAVE_IMAGES
5700 which is not set by default on Windows.
5701
5702 * emacs.c (main) [WINDOWSNT]: Call init_xfns.
5703
5704 * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
5705 (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
5706 (four_corners_best, x_clear_image_1, x_clear_image)
5707 (x_alloc_image_color, postprocess_image)
5708 (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
5709 (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
5710 (init_xfns, syms_of_w32fns): Initialize image functions and constants.
5711
5712 * w32gui.h (struct XImage): Define.
5713
5714 * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
5715 extract mouse co-ordinates.
5716
57172002-03-20 Jason Rumney <jasonr@gnu.org>
5718
5719 * w32.c (init_winsock): Dynamically load new server and UDP
5720 socket functions.
5721 (socket_to_fd): New function.
5722 (sys_socket): Use it.
5723 (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
5724 (sys_recvfrom, sys_sendto): New wrapper functions.
5725
5726 * process.c (QCfamily, QCfilter): Remove duplicate declaration
5727 and initialization.
5728
5729 * makefile.w32-in (LIBS): Remove $(WSOCK32).
5730
57312002-03-20 Eli Zaretskii <eliz@is.elta.co.il>
5732
5733 * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr):
5734 Don't use "sun" as a variable, it's a predefined constant on Sun
5735 machines.
5736
57372002-03-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5738
5739 * bytecode.c (Fbyte_code): Revert last change.
5740
57412002-03-19 Kim F. Storm <storm@cua.dk>
5742
5743 * makefile.w32-in (LIBS): Add $(WSOCK32).
5744 From David Ponce <dponce@voila.fr>.
5745
57462002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5747
5748 * process.c (wait_reading_process_input): Move variables `pname'
5749 and `pnamelen' down where they are used.
5750
5751 * bytecode.c (Fbyte_code): Discard unused computed value to
5752 prevent gcc warning.
5753
5754 * lisp.h (Fplist_member): Add prototype.
5755
57562002-03-18 Kim F. Storm <storm@cua.dk>
5757
5758 * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
5759 HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and HAVE_SYS_UN_H.
5760
5761 * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
5762 Remove explicit GNU_LINUX settings for datagram support.
5763
57642002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5765
5766 * process.c (Fmake_network_process): Remove unused variable `sa'.
5767 Doc fix. Add usage:.
5768 (set_socket_options): Remove unused variables `optnum' and `opttype'.
5769
57702002-03-17 Richard M. Stallman <rms@gnu.org>
5771
5772 * xdisp.c (cursor_type_changed): New variable.
5773 (redisplay_internal): Redisplay all windows if cursor_type_changed.
5774 Clear it when clearing windows_or_buffers_changed.
5775 (try_cursor_movement, redisplay_window, try_window_id)
5776 (try_window_reusing_current_matrix): Test cursor_type_changed
5777 along with windows_or_buffers_changed.
5778
5779 * window.h (cursor_type_changed): New variable.
5780
5781 * xfns.c (x_set_cursor_type): Set cursor_type_changed,
5782 not update_mode_lines, and always set it to 1.
5783
5784 * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
5785 if no frames needed redrawing.
5786
57872002-03-17 Kim F. Storm <storm@cua.dk>
5788
5789 The following changes add support for network server processes,
5790 datagram connections, and local (unix) sockets.
5791
5792 * process.h (struct Lisp_Process): New member log.
5793 Doc fix: Member command used to indicate stopped network process.
5794 Doc fix: Member childp contains plist for network process.
5795 Doc fix: Member kill_without_query is inverse of query-on-exit flag.
5796
5797 * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
5798 (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop)
5799 (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature):
5800 New variables.
5801 (NETCONN1_P): New macro.
5802 (DATAGRAM_SOCKETS): New conditional symbol.
5803 (datagram_address): New array.
5804 (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
5805 (status_message): Use concat3.
5806 (Fprocess_status): Add `listen' status to doc string. Return `stop'
5807 for a stopped network process.
5808 (Fset_process_buffer): Update contact plist for network process.
5809 (Fset_process_filter): Ditto. Don't enable input for stopped
5810 network processes. Server must listen, even if filter is t.
5811 (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
5812 New functions.
5813 (Fprocess_kill_without_query): Removed. Now defined in simple.el.
5814 (Fprocess_contact): Added KEY argument. Handle datagrams.
5815 (list_processes_1): Optionally show only processes with the query
5816 on exit flag set. Dynamically adjust column widths. Omit tty
5817 column if not needed. Report stopped network processes.
5818 Identify server and datagram network processes.
5819 (Flist_processes): New optional arg `query-only'.
5820 (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
5821 (conv_lisp_to_sockaddr, set_socket_options)
5822 (network_process_featurep, unwind_request_sigio): New helper functions.
5823 (Fprocess_datagram_address, Fset_process_datagram_address):
5824 (Fset_network_process_options): New lisp functions.
5825 (Fopen_network_stream): Removed. Now defined in simple.el.
5826 (Fmake_network_process): New lisp function. Code is based on previous
5827 Fopen_network_stream, but heavily reworked with new property list based
5828 argument list, support for datagrams, server processes, and local
5829 sockets in addition to old client-only functionality.
5830 (server_accept_connection): New function.
5831 (wait_reading_process_input): Use it to handle incoming connects.
5832 Do not enable input on a new connection if process is stopped.
5833 (read_process_output): Handle datagram sockets. Use 2k buffer for them.
5834 (send_process): Handle datagram sockets.
5835 (Fstop_process, Fcontinue_process): Apply to network processes. A stopped
5836 network process is indicated by setting command field to t .
5837 (Fprocess_send_eof): No-op if datagram connection.
5838 (Fstatus_notify): Don't read input for a stream server socket or a
5839 stopped network process.
5840 (init_process): Initialize datagram_address array.
5841 (syms_of_process): Intern and staticpro new variables, defsubr new
5842 functions.
5843
58442002-03-16 Jason Rumney <jasonr@gnu.org>
5845
5846 * w32fns.c (w32_to_all_x_charsets): Return correct type in
5847 startup case.
5848
58492002-03-16 Richard M. Stallman <rms@gnu.org>
5850
5851 * xdisp.c (redisplay_internal, redisplay_windows):
5852 Use list_of_error to call internal_condition_case_1.
5853 (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
5854 so as to catch all errors with no possibility of debugger redisplay.
5855 (list_of_error): New variable.
5856 (syms_of_xdisp): Init and staticpro it.
5857
5858 * print.c (print_object): Delete `\ ' from printed rep of frame.
5859
58602002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
5861
5862 * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
5863 until its implementation is fixed.
5864
58652002-03-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5866
5867 * xfns.c (png_load): Remove unused variable `gamma_str'.
5868
58692002-03-14 Richard M. Stallman <rms@gnu.org>
5870
5871 * xfns.c (x_real_positions): Handle failure in XQueryTree.
5872
58732002-03-14 Miles Bader <miles@gnu.org>
5874
5875 * intervals.c (adjust_for_invis_intang): New function.
5876 (set_point_both): Use `adjust_for_invis_intang' to do most of the
5877 work for dealing with invisible+intangible regions. Do so before
5878 and after both forward and backward movements, to handle both
5879 front-sticky and rear-sticky cases.
5880 * textprop.c (text_property_stickiness): Function moved here from
5881 `editfns.c'.
5882 * intervals.h (text_property_stickiness): New declaration.
5883 * editfns.c (char_property_eq): Function removed.
5884 (text_property_stickiness): Function moved to `textprop.c'.
5885
58862002-03-13 Jason Rumney <jasonr@gnu.org>
5887
5888 * config.in: Add STRFTIME_NO_POSIX2.
5889
5890 * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
5891 and %OX when underlying strftime does not.
5892
58932002-03-13 Stefan Monnier <monnier@cs.yale.edu>
5894
5895 * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
5896 Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
5897 line) to avoid annoying flicker.
5898 (xm_scroll_callback): Get rid of the now unnecessary kludge.
5899 (XTread_socket): Mark it static.
5900
5901 * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
5902
59032002-03-13 Kim F. Storm <storm@cua.dk>
5904
5905 * puresize.h (BASE_PURESIZE): Increase to 775000.
5906
59072002-03-12 Juanma Barranquero <lektu@terra.es>
5908
5909 * editfns.c (syms_of_editfns): Fix typo.
5910
59112002-03-12 Gerd Moellmann <gerd@gnu.org>
5912
5913 * xsmfns.c: Include stdio.h because termhooks.h needs it.
5914 Include termopt.h for interrupt_input.
5915
59162002-03-11 Andreas Schwab <schwab@suse.de>
5917
5918 * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
5919
59202002-03-11 Gerd Moellmann <gerd@gnu.org>
5921
5922 * xterm.c (note_mouse_movement): Put code for
5923 x_autoselect_window_p in #if 0.
5924
5925 * lread.c (Fload): Don't assume that message_with_string uses the
5926 string it is given like a C string.
5927
59282002-03-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5929
5930 * xterm.h (x_session_check_input, x_session_initialize): Declared.
5931
5932 * xterm.c: (XTread_socket): Add call to x_session_check_input and
5933 x_session_have_connection.
5934 (x_initialize): Add call to x_session_initialize.
5935
5936 * termhooks.h (enum event_kind): Add save_session_event.
5937
5938 * keyboard.c: Add Emacs event save_session_event.
5939
5940 * emacs.c (main): Add call to syms_of_xsmfns.
5941
5942 * lisp.h: Declare syms_of_xsmfns as extern.
5943
5944 * config.in: Add HAVE_X_SM.
5945
5946 * Makefile.in (LIBXT): Add -lSM -lICE
5947 if HAVE_X_SM and not USE_X_TOOLKIT.
5948 (XOBJ): New file xsmfns.c added.
5949
5950 * xsmfns.c: New file for X session management.
5951
59522002-03-09 Jason Rumney <jasonr@gnu.org>
5953
5954 * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
5955 read-only when setting modified time.
5956
59572002-03-08 Gerd Moellmann <gerd@gnu.org>
5958
5959 * xdisp.c (move_it_vertically_backward): At the end of the function,
5960 when moving forward by lines, treat terminal frames specially.
5961
5962 * keyboard.c (echo_char): Make sure to add a separator between
5963 keys even if echo_dash hasn't been called.
5964
5965 * xdisp.c: Use new string macros.
5966 (update_echo_area): Pass number of bytes to message3 instead of
5967 number of chars.
5968 (set_message_1): Don't access a string's size_byte directly.
5969 (decode_mode_spec_coding): Use number of bytes of eoltype string
5970 instead number of chars.
5971
5972 * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
5973
59742002-03-08 Juanma Barranquero <lektu@terra.es>
5975
5976 * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
5977 24-bit.
5978
59792002-03-06 Jason Rumney <jasonr@gnu.org>
5980
5981 * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
5982
59832002-03-06 Gerd Moellmann <gerd@gnu.org>
5984
5985 * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
5986 (cancel_echoing, echo_length, echo_truncate): Changed to
5987 work with new kboard definition.
5988 (echo_now): Use message3_nolog instead of message2_nolog.
5989
5990 * alloc.c (mark_kboards): Mark echo_string.
5991
5992 * keyboard.h (ECHOBUFSIZE): Removed.
5993 (struct kboard): Member echoptr removed, member echobuf renamed
5994 to echo_string.
5995
5996 * xdisp.c (message_with_string): Use Fformat instead of doprnt and
5997 message3 instead of message2 to display the message using STRING's
5998 text properties.
5999
60002002-03-05 Andreas Schwab <schwab@suse.de>
6001
6002 * xdisp.c (hscroll_margin): Change to EMACS_INT.
6003
60042002-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
6005
6006 * frame.c (default-frame-alist): Explain that setting it doesn't
6007 affect existing frames.
6008
60092002-03-05 Stefan Monnier <monnier@cs.yale.edu>
6010
6011 * indent.c (skip_invisible): Fix my brain fart.
6012
6013 * dispnew.c (sit_for): Don't wait if executing a kbd macro.
6014
60152002-03-04 Stefan Monnier <monnier@cs.yale.edu>
6016
6017 * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
6018 * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
6019 * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
6020 * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
6021 and variables to use EMACS_INT instead of just int.
6022
6023 * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
6024
60252002-03-04 Eli Zaretskii <eliz@is.elta.co.il>
6026
6027 * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
6028 environment, pass it down with corrected value.
6029
60302002-03-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6031
6032 * lread.c (read_filtered_event): Do not call start_hourglass
6033 before returning.
6034
60352002-03-04 Juanma Barranquero <lektu@terra.es>
6036
6037 * w32term.c (x_display_and_set_cursor): Fix typo.
6038
60392002-03-03 Richard M. Stallman <rms@gnu.org>
6040
6041 * fileio.c (Fmake_temp_name): Doc fix.
6042
60432002-03-03 Gary Wong <gtw@gnu.org>
6044
6045 * termcap.c [!emacs]: Replace ospeed for building standalone
6046 libtermcap, for binary compatibility.
6047
6048 * tparam.c [!emacs]: Move #define of bcopy to after string.h.
6049
60502002-03-03 Richard M. Stallman <rms@gnu.org>
6051
6052 * xrdb.c (file_p): Rename arg `path' to `filename'.
6053
6054 * abbrev.c (Fexpand_abbrev): Increment plist as use count
6055 only if it is an integer.
6056
6057 * xfns.c (png_load): Set screen_gamma based on f->gamma.
6058 If png_get_sRGB gives an answer, call png_set_gamma
6059 using the default image gamma value.
6060
6061 * lread.c (read1): When reading from a file, default string to
6062 multibyte only if it has some multibyte characters.
6063
6064 * print.c (print_object): Output multibyte chars 128...255
6065 using \x even if ! print_escape_multibyte.
6066
6067 * xdisp.c (display_mode_element): Move the places where
6068 bytepos, charpos, this, and lisp_string are set.
6069 Use lisp_string to set bytepos.
6070
6071 * xdisp.c (redisplay_internal):
6072 Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
6073
6074 * xdisp.c (display_mode_element): Merge properties specified with
6075 :propertize onto those that come with the string.
6076
60772002-03-03 Eli Zaretskii <eliz@is.elta.co.il>
6078
6079 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
6080 automatic-hscrolling. Users changed.
6081 <hscroll-margin>: Renamed from automatic-hscroll-margin.
6082 Users changed.
6083 <hscroll-step>: Renamed from automatic-hscroll-step. Users changed.
6084
60852002-03-02 Eli Zaretskii <eliz@is.elta.co.il>
6086
6087 * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
6088
60892002-03-02 Kim F. Storm <storm@cua.dk>
6090
6091 * window.c (Fminibuffer_selected_window): New function.
6092 (syms_of_window): Defsubr it.
6093
60942002-03-01 Kim F. Storm <storm@cua.dk>
6095
6096 * window.h (struct window): New member phys_cursor_width.
6097
6098 * window.c (make_window, replace_window): Init phys_cursor_width.
6099
6100 * xterm.c (x_display_and_set_cursor): Blink box cursor using
6101 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
6102
6103 * w32term.c (x_display_and_set_cursor): Blink box cursor using
6104 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
6105
6106 * lisp.h (GCPRO6): New macro.
6107
6108 * process.c (Fopen_network_stream): Use GCPRO6.
6109
61102002-03-01 Kim F. Storm <storm@cua.dk>
6111
6112 * process.c (Qconnect, Qfailed): New variables.
6113 (syms_of_process): Intern and staticpro them.
6114 (Fprocess_status): Document connect and failed return values.
6115 [NON_BLOCKING_CONNECT]: New conditional.
6116 (connect_wait_mask, num_pending_connects): New variables.
6117 (status_message): Convert Qfailed status.
6118 (Fopen_network_stream): Added support for non-blocking connect.
6119 New optional args: filter, sentinel, non_blocking. Doc updated.
6120 [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]: Merged common code.
6121 (deactivate_process): Handle pending non-blocking connect.
6122 (wait_reading_process_input): Poll for status of non-blocking
6123 connects. Exec sentinel directly when connect succeeds.
6124 (status_notify): Don't read process output if not yet connected.
6125
61262002-02-28 Kim F. Storm <storm@cua.dk>
6127
6128 * window.c: (minibuf_selected_window): Renamed from
6129 Vminibuf_selected_window. Users changed.
6130 (syms_of_window): Staticpro it.
6131
61322002-02-26 Kim F. Storm <storm@cua.dk>
6133
6134 The following changes add a new Vminibuf_selected_window variable
6135 which is similar to Vminibuf_scroll_window, but which is only set
6136 on entry to the minibuffer (from a non-minibuffer window):
6137
6138 * window.c: (Vminibuf_selected_window): New variable.
6139 (struct save_window_data): New member minibuf_selected_window.
6140 (Fset_window_configuration): Restore Vminibuf_selected_window.
6141 (Fcurrent_window_configuration): Save Vminibuf_selected_window.
6142 Set minibuf_scroll_window member to nil if minibuf_level is 0.
6143 (compare_window_configurations): Compare minibuf_selected_window.
6144
6145 * window.h: (Vminibuf_selected_window): Declare extern.
6146
6147 * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
6148 entry to minibuffer or on entry from a non-minibuffer window.
6149
6150 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
6151 Vminibuf_selected_window instead of Vminibuf_scroll_window.
6152
6153 * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
6154 instead of Vminibuf_scroll_window when deciding in which window
6155 the region should be highlighted. Consequently, the region remains
6156 highlighteded even when a completion buffer is also displayed.
6157
61582002-02-26 Eli Zaretskii <eliz@is.elta.co.il>
6159
6160 * fileio.c (Fsubstitute_in_file_name): Fix the change from 2002-02-08.
6161
6162 * xselect.c (Qcompound_text_with_extensions): Renamed from
6163 Qcompound_text_no_extensions.
6164 (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
6165
61662002-02-26 Juanma Barranquero <lektu@terra.es>
6167
6168 * w32proc.c (syms_of_ntproc): Doc fix.
6169
61702002-02-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6171
6172 * intervals.h: Include "dispextern.h" unconditionally.
6173
61742002-02-24 Jason Rumney <jasonr@gnu.org>
6175
6176 * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
6177 and disp-table.elc.
6178 (lisp): Add emacs-lisp/backquote.elc.
6179
61802002-02-24 Kim F. Storm <storm@cua.dk>
6181
6182 * keymap.c (Flookup_key): Fixed problem in 2001-12-28 patch:
6183 The validation of the event type was too strict as it didn't
6184 allow string events; buffer names are used in bindings for
6185 menu-bar-select-buffer (see `menu-bar-update-buffers').
6186
61872002-02-23 Kim F. Storm <storm@cua.dk>
6188
6189 The following changes rework my patch of 2002-02-06 which
6190 added command remapping by entering the commands directly into
6191 the keymaps. Now, command remapping uses an explicit `remap'
6192 prefix in the keymaps, i.e. [remap COMMAND].
6193
6194 * keymap.c (Qremap, remap_command_vector): New variables.
6195 (is_command_symbol): Removed function.
6196 (Fdefine_key): No longer accept a symbol for KEY.
6197 Added validation of [remap COMMAND] argument for KEY.
6198 The DEF is no longer required to be a symbol when remapping a command.
6199 (Fremap_command): New function to remap command through keymaps.
6200 (Flookup_key): Perform command remapping initiated by
6201 Fremap_command directly for speed.
6202 (Fkey_binding): Use Fremap_command for command remapping.
6203 (where_is_internal): Handle new command remapping representation.
6204 (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
6205 staticpro them. Defsubr Fremap_command.
6206
6207 * keymap.h (Fremap_command): Declare extern.
6208 (is_command_symbol): Remove extern.
6209
6210 * keyboard.c (command_loop_1): Use Fremap_command for command
6211 remapping; now try command remapping for all symbols.
6212
62132002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
6214
6215 * coding.h (run_pre_post_conversion_on_str): Add prototype.
6216
62172002-02-23 Jason Rumney <jasonr@gnu.org>
6218
6219 * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
6220 on the string before encoding it.
6221 (Fw32_get_clipboard_data): Run post-read-conversion on the string
6222 after decoding it.
6223
6224 * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
6225
62262002-02-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6227
6228 * w32term.c (enter_timestamp): Remove unused static variable to
6229 prevent warning.
6230
6231 * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
6232
62332002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
6234
6235 * w16select.c (Fw16_get_clipboard_data): Fix last change.
6236
6237 * xselect.c (selection_data_to_lisp_data): Fix last change.
6238
62392002-02-22 Jason Rumney <jasonr@gnu.org>
6240
6241 * w32term.h (struct w32_output): New member menu_command_in_progress.
6242
6243 * w32menu.c (menubar_selection_callback): Free the menu and
6244 clear the menu_command_in_progress flag.
6245
6246 * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
6247 (menu_free_timer): New variable.
6248 (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
6249 (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
6250 <WM_EXITMENULOOP>: Delay before freeing menu. Do nothing if a
6251 menu command is in progress.
6252 <WM_COMMAND>: Set the menu_command_in_progress flag.
6253 Kill any menu_free_timer that is running.
6254
6255 * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
6256 Call ExtTextOutA rather than ExtTextOut.
6257
62582002-02-22 Eli Zaretskii <eliz@gnu.org>
6259
6260 * puresize.h (BASE_PURESIZE): Increase to 755000.
6261
62622002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
6263
6264 * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
6265 on the string before encoding it.
6266 (Fw16_get_clipboard_data): Run post-read-conversion on the string
6267 after decoding it.
6268
62692002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
6270
6271 Support for ICCCM Extended Segments in X selections:
6272
6273 * xselect.c <Qcompound_text_no_extensions>: New variable.
6274 (syms_of_xselect): Intern and staticpro it.
6275 (selection_data_to_lisp_data): Run post-read-conversion on decoded
6276 selection text.
6277 (lisp_data_to_selection_data): If next-selection-coding-system is
6278 compound-text-no-extensions, set the type of selection to be
6279 compound-text.
6280
6281 * xterm.h (x_encode_text): Update prototype.
6282
6283 * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
6284 callers changed. If SELECTIONP is non-zero, run the
6285 pre-write-conversion function before encoding the selection text.
6286
62872002-02-21 Kim F. Storm <storm@cua.dk>
6288
6289 * frame.c (syms_of_frame): Change mouse-highlight default to t.
6290
6291 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
6292 Correct composing of language-change event.
6293
62942002-02-20 Kim F. Storm <storm@cua.dk>
6295
6296 * keyboard.c (menu_bar_items): Don't include keymap or local-map
6297 bindings at PT when building menu (the menu is not updated often
6298 enough for this to work reliable).
6299 (tool_bar_items): Likewise.
6300 (current_active_maps): Removed unused (and buggy) function.
6301
63022002-02-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6303
6304 * xfns.c (gif_load): Use correct width and height for GIF images.
6305
63062002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
6307
6308 * floatfns.c (Fatan): Accept an optional second arg and call
6309 atan2 if passed 2 args.
6310
63112002-02-18 Jason Rumney <jasonr@gnu.org>
6312
6313 * w32term.c (glyph_rect): Determine the row and glyph more precisely.
6314
63152002-02-17 Jason Rumney <jasonr@gnu.org>
6316
6317 * w32term.c (x_autoselect_window_p): New variable.
6318 (syms_of_w32term): DEFVAR_BOOL and initialize it.
6319 (note_mouse_movement): Use it.
6320
6321 * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
6322
6323 * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
6324
6325 * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
6326 New variables.
6327 (syms_of_w32fns): Intern and staticpro them.
6328 (x_frame_parms) <"fullscreen">: New parameter.
6329 (x_fullscreen_move, x_set_fullscreen): New functions.
6330 (x_set_frame_parameters): Support Qfullscreen.
6331 (x_real_positions): Save x/y_pixels_diff frame params.
6332 (x_figure_window_size): Support full-screen frames.
6333 (Fx_create_frame): Default the fullscreen parameter.
6334
6335 * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
6336 (x_fullscreen_adjust): New functions.
6337 (w32_read_socket) <WM_WINDOWPOSCHANGED>: Don't resize to
6338 fullscreen. Call x_check_fullscreen_move, and set the
6339 want_fullscreen member of output_data.w32
6340 <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
6341
6342 * w32term.h: New enum for FULLSCREEN_* constants.
6343 (struct w32_output): New members want_fullscreen, x_pixels_diff,
6344 y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
6345 (x-fullscreen-adjust): New prototype.
6346
63472002-02-17 Kim F. Storm <storm@cua.dk>
6348
6349 * frame.c: (Vmouse_highlight): New variable.
6350 (syms_of_frame): DEFVAR_LISP it.
6351
6352 * frame.h: (Vmouse_highlight): Declare extern.
8a8e19a3 6353
048addec 6354 * xterm.h (struct x_display_info): Add mouse_face_hidden.
8a8e19a3 6355
048addec
JD
6356 * xterm.c (disable_mouse_highlight): Removed variable.
6357 (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
6358 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
6359 (XTread_socket): Turn mouse_face_hidden off after mouse movement,
6360 and on after keyboard input.
6361 (x_term_init): Initialize mouse_face_hidden.
8a8e19a3 6362
048addec 6363 * msdos.h (struct display_info): Add mouse_face_hidden.
8a8e19a3 6364
048addec
JD
6365 * msdos.c (disable_mouse_highlight): Removed variable.
6366 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
6367 (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
6368 (internal_terminal_init): Initialize mouse_face_hidden.
6369 (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
6370 and on after keyboard input.
4f1b1854 6371
048addec 6372 * w32term.h (struct w32_display_info): Add mouse_face_hidden.
4f1b1854 6373
048addec
JD
6374 * w32term.c (disable_mouse_highlight): Removed variable.
6375 (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
6376 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
6377 (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
6378 and on after keyboard input.
6379 (w32_initialize_display_info): Initialize mouse_face_hidden.
4f1b1854 6380
048addec 63812002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
4f1b1854 6382
048addec
JD
6383 * msdos.c (last_mouse_window): New variable.
6384 (dos_rawgetc): Fix last change--if the mouse is in the same window
6385 as recorded in last_mouse_window, don't select this window.
5cb6905d 6386
048addec 6387 * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
5cb6905d 6388
048addec
JD
6389 * msdos.c (x_autoselect_window_p): New variable.
6390 (syms_of_msdos): Defvar it.
6391 (dos_rawgetc): If x_autoselect_window_p is set, select the window in
6392 which the last mouse movement occured, unless it is already selected.
437dfb9f 6393
048addec
JD
6394 * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
6395 New variables.
6396 (syms_of_xdisp): DEVFAR them.
6397 (hscroll_window_tree): Use automatic_hscroll_margin and
6398 Vautomatic_hscroll_step to compute the amount of window scrolling.
437dfb9f 6399
048addec 64002002-02-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9f696a00 6401
048addec
JD
6402 * xterm.c (x-autoselect-window): New variable.
6403 (note_mouse_movement): Use it.
9f696a00 6404
048addec 6405 * keyboard.c: Do not include "systime.h" twice.
d57966d7 6406
048addec 64072002-02-15 Andreas Schwab <schwab@suse.de>
d57966d7 6408
048addec 6409 * puresize.h (BASE_PURESIZE): Increase to 9/5.
d57966d7 6410
048addec 6411 * alloc.c (NSTATICS): Increase to 1280.
74779f52 6412
048addec 64132002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
74779f52 6414
048addec 6415 * alloc.c (NSTATICS): Bump to 1026.
a474d59c 6416
048addec
JD
6417 * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
6418 (Vx_super_keysym): New variables.
6419 (syms_of_xterm): DEFVAR_LISP them.
6420 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
6421 variables to determine which keys to use for the various modifiers.
a474d59c 6422
048addec 64232002-02-13 Kim F. Storm <storm@cua.dk>
fbb70ad9 6424
048addec
JD
6425 * window.c: (Vmode_line_in_non_selected_windows): Removed.
6426 (mode_line_in_non_selected_windows): New variable.
6427 (syms_of_window): DEFVAR_BOOL it.
fbb70ad9 6428
048addec
JD
6429 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
6430 Use mode_line_in_non_selected_windows.
6431 (mode_line_in_non_selected_windows): Declare extern.
6432 (Vmode_line_in_non_selected_windows): Removed extern.
2d10309f 6433
048addec 64342002-02-13 Richard M. Stallman <rms@gnu.org>
2d10309f 6435
048addec
JD
6436 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
6437 (Fthis_single_command_keys, Fthis_single_command_raw_keys)
6438 (Fclear_this_command_keys): Doc fixes.
2d10309f 6439
048addec
JD
6440 * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
6441 (update_face_from_frame_parameter): Increment face_change_count
6442 and windows_or_buffers_changed to force redisplay using changed faces.
7f2cddf3 6443
048addec
JD
6444 * xdisp.c (QCpropertize): New variable.
6445 (mode_line_proptrans_alist): New variable.
6446 (display_mode_element): New arg PROPS; all calls changed.
6447 Implement this, for strings.
6448 Handle literal output of strings by sharing the
6449 main-line code for strings, using local var `literal'.
6450 Handle :propertize feature.
6451 (syms_of_xdisp): Initialze and staticpro QCpropertize and
6452 mode_line_proptrans_alist.
0b1e6b54 6453
048addec 64542002-02-11 Kim F. Storm <storm@cua.dk>
7f2cddf3 6455
048addec
JD
6456 * window.c: (Vmode_line_in_non_selected_windows): New variable.
6457 (syms_of_window): DEFVAR_LISP it.
7f2cddf3 6458
048addec
JD
6459 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
6460 (CURRENT_MODE_LINE_FACE_ID): Use it.
6461 (Vmode_line_in_non_selected_windows): Declare extern.
e17144de 6462
048addec
JD
6463 * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
6464 to get mode line face.
e17144de 6465
048addec 64662002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
6637c996 6467
048addec
JD
6468 * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
6469 variables; cus-start.el doesn't need them anymore.
44368f8f 6470
048addec 64712002-02-09 Kim F. Storm <storm@cua.dk>
f884b6f4 6472
048addec
JD
6473 * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
6474 reduction. This fixes a display problem where stray newlines were
6475 inserted in the window (corrected by C-l). Clarified code (IMHO).
6637c996 6476
048addec 64772002-02-09 Eli Zaretskii <eliz@is.elta.co.il>
6637c996 6478
048addec 6479 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
6637c996 6480
048addec 6481 * xdisp.c (display_mode_lines): Fix last change.
453c5510 6482
048addec 64832002-02-09 Jason Rumney <jasonr@gnu.org>
453c5510 6484
048addec
JD
6485 * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
6486 match each other.
6487 (w32_load_system_font): Prevent Cleartype fonts from loading.
6488 (Fx_show_tip): Ensure tip frames are above other topmost windows.
d1d070e3 6489
048addec 64902002-02-09 Kim F. Storm <storm@cua.dk>
d1d070e3 6491
048addec
JD
6492 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
6493 (CURRENT_MODE_LINE_HEIGHT): Use it.
6494 (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
9ec1bdb6 6495
048addec
JD
6496 * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
6497 (pos_visible_p, handle_face_prop): Likewise.
6498 (display_mode_lines): Likewise, but for the real selected window.
6499 (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
9ec1bdb6 6500
048addec
JD
6501 * xfaces.c (Qmode_line_inactive): New face variable for mode-line
6502 in non-selected windows.
6503 (realize_basic_faces): Realize it.
6504 (syms_of_term): Intern and staticpro it.
308dd672 6505
048addec 65062002-02-08 Kim F. Storm <storm@cua.dk>
edde72f6 6507
048addec
JD
6508 * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
6509 Changed mail addresses to emacs-devel@gnu.org.
308dd672 6510
048addec 65112002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
3c1e6b46 6512
048addec
JD
6513 * fileio.c (Fsubstitute_in_file_name): If the file name includes
6514 ~user, and there's no such user, don't discard everything before ~user.
03950b5b 6515
048addec 6516 * floatfns.c (Fround): Doc fix.
3c1e6b46 6517
048addec 65182002-02-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
c1e11810 6519
048addec 6520 * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
c1e11810 6521
048addec 65222002-02-07 Stefan Monnier <monnier@cs.yale.edu>
1996baee 6523
048addec 6524 * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
1996baee 6525
048addec 65262002-02-07 Kim F. Storm <storm@cua.dk>
0065bb74 6527
048addec
JD
6528 * keymap.c (where_is_internal): Only check whether definition is
6529 remapped if it fulfills is_command_symbol.
0065bb74 6530
048addec 65312002-02-07 Andreas Schwab <schwab@suse.de>
0065bb74 6532
048addec 6533 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
b5cb6072 6534
048addec 6535 * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
b5cb6072 6536
048addec 65372002-02-06 Kim F. Storm <storm@cua.dk>
15fff01d 6538
048addec
JD
6539 * keymap.c (Fdefine_key): Allow symbol as KEY argument for
6540 defining command remapping. Doc updated.
6541 (Flookup_key): Remap command through keymap if KEY is a symbol.
6542 (is_command_symbol): New function.
6543 (Fkey_binding): Use it. New optional argument NO-REMAP.
6544 Doc updated. Callers changed. Perform command remapping via
6545 recursive call unless that arg is non-nil.
6546 (where_is_internal): New argument no_remap. Callers changed.
6547 Call recursively to find original key bindings for a remapped
6548 comand unless that arg is non-nil.
6549 (Fwhere_is_internal): New optional argument NO-REMAP.
6550 Doc updated. Callers changed. Pass arg to where_is_internal.
0065bb74 6551
048addec
JD
6552 * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
6553 (is_command_symbol): Added prototype.
0d8466cc 6554
048addec
JD
6555 * keyboard.c (Vthis_original_command): New variable.
6556 (syms_of_keyboard): DEFVAR_LISP it.
6557 (command_loop_1): Set it, and perform command remapping.
15fff01d 6558
048addec 65592002-02-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2fae9111 6560
048addec 6561 * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
2d6c1fc0 6562
048addec 65632002-02-06 Jason Rumney <jasonr@gnu.org>
07025a55 6564
048addec 6565 * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
07025a55 6566
048addec 65672002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
07025a55 6568
048addec 6569 * charset.c (get_charset_id): Use if-else instead of ?:.
3a232704 6570
048addec 65712002-02-06 Richard M. Stallman <rms@gnu.org>
539e92ad 6572
048addec 6573 * filelock.c (S_ISLNK): Define if not defined.
3a232704 6574
048addec 65752002-02-03 Richard M. Stallman <rms@gnu.org>
0cb8bb48 6576
048addec 6577 * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
539e92ad 6578
048addec
JD
6579 * lread.c (read1): Redesign strategy for force_multibyte and
6580 force_singlebyte. Now is_multibyte records whether read_buffer
6581 is multibyte. Encountering any multibyte character makes it so.
4e02881b 6582
048addec 65832002-02-02 Stefan Monnier <monnier@cs.yale.edu>
4e02881b 6584
048addec
JD
6585 * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
6586 with the same sequence, map that sequence to f10 rather than f0.
1ab964d7 6587
048addec 65882002-02-03 Andreas Schwab <schwab@suse.de>
1ab964d7 6589
048addec
JD
6590 * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
6591 latter never being defined on GNU/Linux.
749f499f 6592
048addec 65932002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
749f499f 6594
048addec
JD
6595 * xfaces.c (realize_default_face): Don't set the weight and slant of
6596 the default face to Qnormal, unless these attributes are unspecified.
b5d9aaba 6597
048addec 65982002-02-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3a232704 6599
048addec
JD
6600 * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
6601 Call cancel_hourglass unconditionally.
d0fd26dd 6602
048addec
JD
6603 * eval.c (Fsignal): Remove duplicated declaration of
6604 the variable `display_hourglass_p'.
b4c45162 6605
048addec 66062002-01-31 Richard M. Stallman <rms@gnu.org>
d0fd26dd 6607
048addec 6608 * editfns.c (region_limit): Nicer error message.
c95eaa61 6609
048addec
JD
6610 * coding.c (decode_composition_emacs_mule):
6611 Give up if NCOMPONENT gets too large to index `component'.
c95eaa61 6612
048addec
JD
6613 * callint.c (check_mark): New arg to specify clearer error message.
6614 Callers changed.
c95eaa61 6615
048addec 66162002-01-27 Richard M. Stallman <rms@gnu.org>
c95eaa61 6617
048addec 6618 * minibuf.c (Fcompleting_read): Doc fix.
c95eaa61 6619
048addec 66202002-01-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
c95eaa61 6621
048addec
JD
6622 * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
6623 (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
6624 Fix doc-strings.
c95eaa61 6625
048addec 66262002-01-26 Richard M. Stallman <rms@gnu.org>
c95eaa61 6627
048addec 6628 * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
c95eaa61 6629
048addec
JD
6630 * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
6631 and scroll_up_aggressively.
c95eaa61 6632
048addec 66332002-01-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
31877e0a 6634
048addec 6635 * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
31877e0a 6636
048addec 66372002-01-25 Stefan Monnier <monnier@cs.yale.edu>
e2c3786a 6638
048addec
JD
6639 * textprop.c (Fnext_property_change, Fnext_single_property_change)
6640 (Fprevious_property_change, Fprevious_single_property_change):
6641 Stay within the narrowed-buffer boundaries.
e2c3786a 6642
048addec 66432002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
c513fc03 6644
048addec
JD
6645 * term.c (Ftty_display_color_cells): New function.
6646 (syms_of_term): Defsubr it.
6647 (Ftty_display_color_cells, Ftty_display_color_p): Change the
6648 argument name to DISPLAY. Doc fix.
bf794306 6649
048addec
JD
6650 * dispextern.h: Add prototype for set_tty_color_mode and
6651 tty_setup_colors.
bf794306 6652
048addec 66532002-01-24 Jason Rumney <jasonr@gnu.org>
bf794306 6654
048addec
JD
6655 * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
6656 If region left to draw is not what was expected, mark the frame as
6657 garbaged.
62582985 6658
048addec
JD
6659 * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
6660 Combine the regions returned by BeginPaint and GetUpdateRect.
c513fc03 6661
048addec 66622002-01-23 Jason Rumney <jasonr@gnu.org>
3509a04c 6663
048addec
JD
6664 * w32term.c (x_update_window_begin): Only hide caret if
6665 w32_use_visible_system_caret is set.
6666 (x_update_window_end): Only show caret if
6667 w32_use_visible_system_caret is set.
6668 (syms_of_w32term): Handle SystemParametersInfo call failing.
3509a04c 6669
048addec 6670 * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
3509a04c 6671
048addec 66722002-01-22 Richard M. Stallman <rms@gnu.org>
3509a04c 6673
048addec
JD
6674 * unexelf.c (unexec): Define n so as to cause compilation error
6675 for the code where people have often written n instead of nn.
1e9a6186 6676
048addec 6677 * .gdbinit (hookpost-run): Defined.
1e9a6186 6678
048addec 66792002-01-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
e4e34e31 6680
048addec 6681 * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
e4e34e31 6682
048addec 66832002-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4521d1fc 6684
048addec
JD
6685 * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
6686 if fullscreen is being set.
7c75be36 6687
048addec 66882002-01-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4521d1fc 6689
048addec
JD
6690 * minibuf.c (Fminibuffer_contents)
6691 (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
6692 (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
4521d1fc 6693
048addec 66942002-01-21 Richard M. Stallman <rms@gnu.org>
4521d1fc 6695
048addec 6696 * window.c (check_frame_size): Fix minimum height calculation.
93dec019 6697
048addec 66982002-01-20 Ken Raeburn <raeburn@gnu.org>
93dec019 6699
048addec
JD
6700 * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
6701 height before comparison.
6702 (WINDOW_WANTS_HEADER_LINE_P): Likewise.
905cc05a 6703
048addec 67042002-01-20 Jason Rumney <jasonr@gnu.org>
2ed06289 6705
048addec
JD
6706 * w32term.c (w32_system_caret_width): Remove.
6707 (w32_use_visible_system_caret): New user flag.
6708 (syms_of_w32term): DEFVAR_BOOL it. Initialize based on whether
6709 Windows reports a screen reader running.
6710 (x_update_window_begin): Hide the system caret.
6711 (x_update_window_end): Show the system caret.
6712 (x_display_and_set_cursor): Don't draw a cursor when
6713 w32_use_visible_system_caret is set. Do not adjust width.
0e79d667 6714
048addec
JD
6715 * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
6716 (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
6717 <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
6718 the user requests it. Use system default width when creating.
6719 <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
0e79d667 6720
048addec
JD
6721 * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
6722 New window messages.
905cc05a 6723
048addec 67242002-01-20 Richard M. Stallman <rms@gnu.org>
82a7ab23 6725
048addec 6726 * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
d75bec6a 6727
048addec 67282002-01-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
52dcb476 6729
048addec 6730 * doprnt.c (doprnt1): Fix typos in error call.
82a7ab23 6731
048addec 67322002-01-20 Eli Zaretskii <eliz@is.elta.co.il>
82a7ab23 6733
048addec 6734 * unexelf.c (unexec) [__sgi]: Support the .got sections.
82a7ab23 6735
048addec 67362002-01-20 Jason Rumney <jasonr@gnu.org>
4d0fa4f3 6737
048addec
JD
6738 * w32term.c (w32_native_per_char_metric): Don't trust the metrics
6739 that Windows returns. If a double check fails, try to guess how
6740 ExtTextOut is going to act.
4d0fa4f3 6741
048addec
JD
6742 * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
6743 in place of stricmp.
6744 (w32_list_synthesized_fonts): Removed.
6745 (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
6746 (struct enumfont_t): New element; list.
6747 (enum_font_cb2): List all style and charset variations of a font.
6748 (Fw32_select_font): New optional argument; include_proportional.
6749 Exclude vertical fonts. Exclude proportional fonts unless
6750 include_proportional is non-nil.
6751 (w32_enable_synthesized_fonts): Change to a boolean.
6752 (Fw32_send_sys_command): Doc fix.
493faf20 6753
048addec 67542002-01-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
493faf20 6755
048addec
JD
6756 * dispnew.c (update_frame): Move the variable `tem' to the block
6757 where it is used.
4971e491 6758
048addec 67592002-01-19 Jason Rumney <jasonr@gnu.org>
4971e491 6760
048addec
JD
6761 * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
6762 call to face-set-after-frame-default.
4971e491 6763
048addec 67642002-01-18 Richard M. Stallman <rms@gnu.org>
d911a0fa 6765
048addec
JD
6766 * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
6767 (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
d911a0fa 6768
048addec 67692002-01-17 Richard M. Stallman <rms@gnu.org>
d911a0fa 6770
048addec
JD
6771 * window.c (enlarge_window): When exceeding size of parent,
6772 directly delete all the siblings instead of trying to resize it.
201c831a 6773
048addec 67742002-01-17 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
201c831a 6775
048addec 6776 * term.c (set_tty_color_mode): Remove unused variable `tem'.
201c831a 6777
048addec 67782002-01-16 Henrik Enberg <henrik@enberg.org>
34e39c95 6779
048addec 6780 * lread.c (init_lread): Move the installed-lisp dirs later in the path.
34e39c95 6781
048addec 67822002-01-16 Kim F. Storm <storm@cua.dk>
d77fbc16 6783
048addec
JD
6784 * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
6785 is invisible. This can happen if cursor is on top line of a
6786 window, and we switch to a buffer with a header line.
d77fbc16 6787
048addec 6788 * w32term.c (x_erase_phys_cursor): Ditto.
61e3b944 6789
048addec 67902002-01-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
61e3b944 6791
048addec
JD
6792 * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
6793 `dont_resize' only when used.
61e3b944 6794
048addec 6795 * xdisp.c: Remove forgotten extern declaration of `Qimage'.
70da46c3 6796
048addec 67972002-01-15 Eli Zaretskii <eliz@is.elta.co.il>
70da46c3 6798
048addec
JD
6799 * xdisp.c (display_mode_element): When computing charpos, depend
6800 on multibyteness of elt, not the text in field.
8af01033 6801
048addec 68022002-01-15 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8af01033 6803
048addec
JD
6804 * buffer.c (Fkill_all_local_variables):
6805 Increment `update_mode_lines' only once.
7363986a 6806
048addec 68072002-01-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7363986a 6808
048addec
JD
6809 * lisp.h (adjust_after_replace_noundo)
6810 (Fupdate_coding_systems_internal): Add prototypes.
d9e6c4b1 6811
048addec 6812 * sound.c (Fplay_sound): Initialize header_size also for :data case.
d20fc48a 6813
048addec 68142002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
d9e6c4b1 6815
048addec
JD
6816 Support for the --color command-line argument and tty-color-mode
6817 frame parameter:
f1a85b89 6818
048addec
JD
6819 * term.c (tty_default_color_capabilities, tty_setup_colors)
6820 (set_tty_color_mode): New functions.
6821 (term_init): Call tty_default_color_capabilities.
6822 (Qtty_color_mode_alist): New variable.
6823 (syms_of_term): Intern and staticpro it.
f1a85b89 6824
048addec
JD
6825 * frame.c (store_frame_param): Call set_tty_color_mode for termcap
6826 frames.
6827 (do_switch_frame): For termcap frames, switch the tty
6828 color mode as specified by the frame's parameters.
6829 (Qtty_color_mode): New variable.
6830 (syms_of_frame): Intern and staticpro it.
3a62677f 6831
048addec
JD
6832 * emacs.c (USAGE2): Add the --color option.
6833 (standard_args): Ditto.
72244db2 6834
048addec
JD
68352002-01-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
6836
6837 * xterm.h (struct x_output): New members want_fullscreen,
6838 x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
6839 y_pixels_outer_diff.
6840 New enum for FULLSCREEN_* constants.
6841 (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
6842 is NULL.
6843 (x_fullscreen_adjust): Add prototype.
3a62677f 6844
048addec
JD
6845 * emacs.c (USAGE2): Add the new full-screen arguments.
6846 (standard_args): Ditto.
3a62677f 6847
048addec
JD
6848 * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
6849 New variables.
6850 (syms_of_xfns): Intern and staticpro them.
6851 (x_frame_parms) <"fullscreen">: New parameter.
6852 (x_fullscreen_move, x_set_fullscreen): New functions.
6853 (x_set_frame_parameters): Support for Qfullscreen.
6854 (x_real_positions): More accurate computation of the frame position.
6855 (x_figure_window_size): Support full-screen frames.
6856 (Fx_create_frame): Default the fullscreen parameter.
3a62677f 6857
048addec
JD
6858 * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
6859 (XTread_socket) <Expose>: Call x_check_fullscreen.
6860 <ConfigureNotify>: Don't resize to fullscreen.
6861 Call x_check_fullscreen_move, and set the want_fullscreen member of
6862 output_data.x.
3a62677f 6863
048addec 68642002-01-13 Jason Rumney <jasonr@gnu.org>
9d113d9d 6865
048addec
JD
6866 * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
6867 for mice with more than 3 buttons.
b8523839 6868
048addec
JD
6869 * w32term.c (parse_button): New parameter xbutton. Callers changed.
6870 (w32_read_socket): Handle new "XBUTTON" messages.
9464dea4 6871
048addec
JD
6872 * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
6873 (syms_of_w32fns): DEFVAR_BOOL it.
6874 (w32_wnd_proc): Handle new "XBUTTON" messages.
9d113d9d 6875
048addec 68762002-01-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
70ec1377 6877
048addec 6878 * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
70ec1377 6879
048addec 68802002-01-13 Andreas Schwab <schwab@suse.de>
92f7dd37 6881
048addec 6882 * xterm.c (x_load_font): Never set fonts_changed_p to zero.
92f7dd37 6883
048addec 68842002-01-12 Andreas Schwab <schwab@suse.de>
c93674bb 6885
048addec
JD
6886 * .gdbinit (xbuffer): Remove address operator since data is now a
6887 pointer.
c93674bb 6888
048addec 68892002-01-11 Richard M. Stallman <rms@gnu.org>
59b59892 6890
048addec 6891 * insdel.c (adjust_after_replace_noundo): New function.
59b59892 6892
048addec 6893 * coding.c (code_convert_region): Don't copy old text if undo disabled.
c6ea2775 6894
048addec 68952002-01-09 Jason Rumney <jasonr@gnu.org>
c6ea2775 6896
048addec
JD
6897 * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
6898 when checking for multiple frames.
91175673 6899
048addec 69002002-01-08 Richard M. Stallman <rms@gnu.org>
91175673 6901
048addec
JD
6902 * window.c (delete_window): Rewrite the code for changing the
6903 selected window to handle the case where WINDOW is not a leaf.
91175673 6904
048addec 69052002-01-07 Eli Zaretskii <eliz@is.elta.co.il>
e0fead5d 6906
048addec
JD
6907 * process.c (send_process): Set src_multibyte to 1 after the call
6908 top setup_coding_system, not before the call.
e0fead5d 6909
048addec 69102002-01-07 Jason Rumney <jasonr@gnu.org>
e0fead5d 6911
048addec
JD
6912 * xmenu.c (set_frame_menubar, xmenu_show):
6913 (xdialog_show): Initialize wv->help to Qnil.
c186cdb3 6914
048addec
JD
6915 * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
6916 (w32_dialog_show): Initialize wv->help to Qnil.
c186cdb3 6917
048addec 69182002-01-06 Jason Rumney <jasonr@gnu.org>
c186cdb3 6919
048addec 6920 * xmenu.c (single_submenu): Initialize wv->help to Qnil.
c186cdb3 6921
048addec 6922 * w32menu.c (w32_menu_display_help): Revert last change.
58cfce98 6923
048addec 6924 * xmenu.c (menu_highlight_callback): Revert last change.
58cfce98 6925
048addec 69262002-01-06 Andreas Schwab <schwab@suse.de>
62854fe2 6927
048addec
JD
6928 * insdel.c (make_gap_larger): Make sure buffer size does not
6929 overflow range of int.
62854fe2 6930
048addec 69312002-01-05 Jason Rumney <jasonr@gnu.org>
656f46bb 6932
048addec
JD
6933 * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
6934 OVERLAPS_P.
656f46bb 6935
048addec 6936 * w32menu.c (w32_menu_display_help): Hide any tooltip window.
656f46bb 6937
048addec
JD
6938 * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
6939 to the left or to the right of the pointer, put it against
6940 the left screen edge.
6941 (x_frame_parms): Add missing braces around initializer.
036e218d 6942
048addec
JD
6943 * w32term.c (x_setup_relief_colors): Don't compute an image's
6944 background color if it doesn't have a Pixmap.
6945 (notice_overwritten_cursor): Don't depend on
6946 output_cursor and updated_area. Compare pixel coordinates with
6947 window's cursor pixel coordinates.
6948 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
6949 Call notice_overwritten_cursor with new arg list.
6950 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
6951 unconditionally.
6952 (x_draw_image_relief): Use predefined macro instead of
6953 constant when the value of `tool_bar_button_relief' is negative.
036e218d 6954
048addec 6955 * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
7ddb2c16 6956
048addec 69572002-01-04 Richard M. Stallman <rms@gnu.org>
7ddb2c16 6958
048addec 6959 * xmenu.c (menu_highlight_callback): Hide any tooltip window.
ace9b298 6960
048addec 69612002-01-03 Richard M. Stallman <rms@gnu.org>
90647b07 6962
048addec
JD
6963 * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
6964 (Fkey_binding): Try the `keymap' property map first.
6965 (Fdescribe_buffer_bindings): Show `keymap' property bindings before
6966 minor mode bindings.
90647b07 6967
048addec 69682002-01-03 Kim F. Storm <storm@cua.dk>
ace9b298 6969
048addec 6970 * keyboard.c (read_key_sequence): Fixed cast of submaps arg to bcopy.
ace9b298 6971
048addec 69722002-01-02 Richard M. Stallman <rms@gnu.org>
ace9b298 6973
048addec
JD
6974 * keyboard.c (read_key_sequence): Handle the keymap property
6975 before minor mode maps.
9fbc32aa 6976
048addec
JD
6977 * editfns.c (Fformat): Update thissize from field_width
6978 based on the actual width, in the string case.
036e218d 6979
048addec 69802002-01-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9fbc32aa 6981
048addec
JD
6982 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
6983 when used as truth value to prevent gcc warnings.
9fbc32aa 6984
048addec
JD
6985 * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
6986 * w32proc.c: Include <config.h>.
9fbc32aa 6987
048addec 69882002-01-01 Andreas Schwab <schwab@suse.de>
9fbc32aa 6989
048addec
JD
6990 * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
6991 not EMACS_INT, to make them compatible with DEFVAR_INT.
6992 * lisp.h (max_specpdl_size): Adjust declaration.
9fbc32aa 6993
048addec 69942002-01-01 Richard M. Stallman <rms@gnu.org>
9fbc32aa 6995
048addec
JD
6996 * print.c (print_object): Test print_escape_nonascii only for
6997 unibyte strings.
6998 (PRINTPREPARE): Once again bind Qprint_escape_nonascii
6999 when outputting to a multibyte buffer.
9fbc32aa 7000
048addec 70012001-12-29 Richard M. Stallman <rms@gnu.org>
9fbc32aa 7002
048addec
JD
7003 * print.c (print_object): In multibyte string, use hex escapes.
7004 Use octal only for unibyte strings.
7005 (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
0142178a 7006
048addec
JD
7007 * lread.c (read_escape): New arg BYTEREP for reporting whether
7008 escape forces unibyte or multibyte.
7009 (read1): When reading a string, take note of that info.
0142178a 7010
048addec 70112001-12-29 Ken Raeburn <raeburn@gnu.org>
d4824a5d 7012
048addec
JD
7013 * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
7014 comparison to test lisp value returned by Fget.
d4824a5d 7015
048addec 70162001-12-29 Richard M. Stallman <rms@gnu.org>
b1356234 7017
048addec 7018 * lisp.h (max_specpdl_size): Add declaration.
b1356234 7019
048addec 7020 * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
3ce081f5 7021
048addec
JD
7022 * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
7023 Handle modifier bits. Correct typo in error message.
99e380ee 7024
048addec 70252001-12-28 Richard M. Stallman <rms@gnu.org>
3ce081f5 7026
048addec
JD
7027 * abbrev.c: Use the plist of an abbrev for multiple params if nec.
7028 (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
7029 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
7030 Update calls to Fdefine_abbrev.
7031 (write_abbrev): Update for changed data format.
7032 Don't list "system" abbrevs.
7033 (Fexpand_abbrev): Update use count with new data format.
7034 (describe_abbrev): Update for changed data format.
7035 (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
66458f32 7036
048addec 7037 * config.in (HAVE_MBSINIT): Add #undef.
66458f32 7038
048addec 7039 * strftime.c (mbsinit): Define as no-op if not available.
66458f32 7040
048addec
JD
7041 * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
7042 (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
59a86c99 7043
048addec
JD
7044 * keymap.c (Flookup_key): Error message if key has wrong data type.
7045 (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
7046 (exclude_key): New variable.
59a86c99 7047
048addec 70482001-12-28 Gerd Moellmann <gerd@gnu.org>
eb77a5f4 7049
048addec
JD
7050 * xterm.c (x_setup_relief_colors): Don't compute an image's
7051 background color if it doesn't have a Pixmap.
eb77a5f4 7052
048addec
JD
7053 * xterm.c (notice_overwritten_cursor): Don't depend on
7054 output_cursor and updated_area. Compare pixel coordinates with
7055 window's cursor pixel coordinates.
7056 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
7057 Call notice_overwritten_cursor with new arg list.
7058 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
7059 unconditionally.
eb77a5f4 7060
048addec
JD
7061 * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
7062 height of the cursor line to the amount to scroll.
eb77a5f4 7063
048addec 70642001-12-27 Richard M. Stallman <rms@gnu.org>
bb313871 7065
048addec
JD
7066 * intervals.c (set_point_both): The position after an invisible,
7067 intangible character is not an acceptable stopping point.
bb313871 7068
048addec 70692001-12-27 Ken Raeburn <raeburn@gnu.org>
55b43a63 7070
048addec
JD
7071 * window.c (enlarge_window): In new preserve_before code, convert
7072 CURBEG from lisp object to integer before doing arithmetic.
6052529b 7073
048addec 70742001-12-27 Richard M. Stallman <rms@gnu.org>
3ce081f5 7075
048addec 7076 * bytecode.c (Fbyte_code): Undo previous change.
3ce081f5 7077
048addec 70782001-12-26 Kim F. Storm <storm@cua.dk>
3ce081f5 7079
048addec
JD
7080 * keyboard.c (record_char): Ignore duplicate help-echo events only
7081 separated by mouse-movement. When tracking mouse, only record
7082 first and last mouse-movement event in same window.
7083 Don't record mouse-movement events in keyboard macros.
3ce081f5 7084
048addec 70852001-12-25 Richard M. Stallman <rms@gnu.org>
55b43a63 7086
048addec
JD
7087 * window.c (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
7088 (Fenlarge_window): New arg PRESERVE_BEFORE.
111ed14e 7089
048addec
JD
7090 * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
7091 instead of Fstring_as_unibyte.
9fabb2f5 7092
048addec 70932001-12-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9fabb2f5 7094
048addec 7095 The following changes remove mocklisp support:
9fabb2f5 7096
048addec 7097 * mocklisp.h, mocklisp.c: Files removed.
111ed14e 7098
048addec
JD
7099 * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
7100 `Qmocklisp' and `Qmocklisp_arguments'.
7101 Remove prototype of syms_of_mocklisp.
2fa0eedf 7102
048addec 7103 * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
d1420435 7104
048addec
JD
7105 * callint.c: Do not include mocklisp.h.
7106 (Fcall_interactively): Do not test for mocklisp case.
2fa0eedf 7107
048addec
JD
7108 * eval.c: Remove variables `Qmocklisp_arguments',
7109 `Vmocklisp_arguments' and `Qmocklisp'. Remove prototype of ml_apply.
7110 (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
7111 Do not test for mocklisp case.
7112 (Fwhile): Remove unused variable `tem'.
7113 (syms_of_eval): Remove variable `moclisp-arguments'.
ebcbef4e 7114
048addec 7115 * data.c (wrong_type_argument): Remove mocklisp case.
5c131048 7116
048addec 7117 * doc.c (Fdocumentation): Remove mocklisp case.
5c131048 7118
048addec 7119 * emacs.c (main): Do not call syms_of_mocklisp.
5c131048 7120
048addec 71212001-12-21 Richard M. Stallman <rms@gnu.org>
96d276c3 7122
048addec
JD
7123 * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
7124 to the left or to the right of the pointer, put it against
7125 the left screen edge.
6108b49c 7126
048addec 71272001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
96d276c3 7128
048addec
JD
7129 * Makefile.in (distclean): Remove .gdbinit if we are building
7130 outside the source tree.
5eea19a4 7131
048addec 71322001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
5eea19a4 7133
048addec 7134 * w32.c (emacs_root_dir): New function.
5eea19a4 7135
048addec 7136 * msdos.c (emacs_root_dir): New function.
5eea19a4 7137
048addec
JD
7138 * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
7139 of the current drive as the fallback for default_directory.
438e57dd 7140
048addec
JD
7141 * dired.c (file_name_completion): Run the elements of
7142 completion-ignored-extensions through ENCODE_FILE.
438e57dd 7143
048addec
JD
7144 * lisp.h (scmp): Remove prototype, since it's now a static
7145 function private to dired.c.
c88e5347 7146
048addec 71472001-12-18 Richard M. Stallman <rms@gnu.org>
c88e5347 7148
048addec
JD
7149 * dired.c (scmp): Function moved from minibuf.c.
7150 Delete multibyte handling--used only on encoded strings.
59ce1461 7151
048addec 7152 * minibuf.c (scmp): Function moved to dired.c.
59ce1461 7153
048addec 7154 * fns.c (merge): Add QUIT call.
59ce1461 7155
048addec 71562001-12-18 Dave Love <fx@gnu.org>
8727d588 7157
048addec
JD
7158 * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
7159 language/georgian.el.
8727d588 7160
048addec 71612001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
cc63037e 7162
048addec
JD
7163 * Makefile.in (lisp, shortlisp): Synchronize with changes to
7164 lisp/Makefile.in:DONTCOMPILE.
cc63037e 7165
048addec 71662001-12-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
cc63037e 7167
048addec
JD
7168 * xdisp.c (window_box_height): Do not return negative values.
7169 From Gerd Moellmann <gerd@gnu.org>.
cc63037e 7170
048addec 7171 * keyboard.c (head_table): Add missing braces around initializer.
cc63037e 7172
048addec 7173 * term.c (keys): Likewise.
deece6f5 7174
048addec 7175 * xfns.c (x_frame_parms, visual_classes): Likewise.
deece6f5 7176
048addec 71772001-12-17 Sam Steingold <sds@gnu.org>
1b944d9c 7178
048addec
JD
7179 * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
7180 patch (COMPOSING_P, not COMPOSING).
28ff4293 7181
048addec 71822001-12-17 Richard M. Stallman <rms@gnu.org>
a395ef6a 7183
048addec 7184 * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
a395ef6a 7185
048addec
JD
7186 * coding.c (code_convert_region): Update coding->cmp_data->char_offset
7187 before calling decode_coding.
9b46de40 7188
048addec 7189 * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
9b46de40 7190
048addec
JD
7191 * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
7192 instead of only for COMPOSITION_DISABLED.
9b46de40 7193
048addec 71942001-12-16 Richard M. Stallman <rms@gnu.org>
aff37336 7195
048addec 7196 * alloc.c (pure_alloc): After overflow, allocate just a small block.
aff37336 7197
048addec 7198 * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
b9937f07 7199
048addec
JD
7200 * buffer.h (struct buffer): New field `display_error_modiff'.
7201 * buffer.c (reset_buffer): Initialize `display_error_modiff'.
b9937f07 7202
048addec 7203 * window.c (Frecenter): Clear display_error_modiff field.
2cd23960 7204
048addec
JD
7205 * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
7206 Call redisplay_window, but not if display_error_modiff field says no.
7207 (redisplay_window_error): New function.
7208 (displayed_buffer): New variable.
7209 (redisplay_internal, redisplay_windows): Call the new functions
7210 instead of redisplay_window directly.
2cd23960 7211
048addec 72122001-12-15 Richard M. Stallman <rms@gnu.org>
2cd23960 7213
048addec 7214 * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
2cd23960 7215
048addec 72162001-12-14 Andrew Innes <andrewi@gnu.org>
a4184c1c 7217
048addec
JD
7218 * makefile.w32-in (EMACSLOADPATH): Define.
7219 ($(EMACS)): Run `list-load-path-shadows' after dumping emacs.
7220 (bootstrap-temacs): Remove dependency on bootstrap-clean.
a4184c1c 7221
048addec 72222001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
f6fa0866 7223
048addec
JD
7224 * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
7225 parameter have a numeric value all the time.
f6fa0866 7226
048addec 7227 * w32fns.c (x_report_frame_params): Likewise.
f4ca4b00 7228
048addec 72292001-12-12 Richard M. Stallman <rms@gnu.org>
f4ca4b00 7230
048addec 7231 * fileio.c (Fwrite_region): Doc fix.
f4e25f94 7232
048addec
JD
7233 * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
7234 (redisplay_internal): Call clear_image_cache only for window terminals.
f4e25f94 7235
048addec 72362001-12-12 Gerd Moellmann <gerd@gnu.org>
91c153e2 7237
048addec
JD
7238 * xdisp.c (move_it_vertically_backward): Change heuristic
7239 for the case that we didn't move far enough initially.
91c153e2 7240
048addec
JD
7241 * window.c (Frecenter): Simplify computation in the case of window
7242 system frames and ARG < 0; use window_box_height.
65b7d3e7 7243
048addec 72442001-12-11 Richard M. Stallman <rms@gnu.org>
65b7d3e7 7245
048addec
JD
7246 * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
7247 * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
6b5f6311 7248
048addec 72492001-12-11 Andrew Innes <andrewi@gnu.org>
6b5f6311 7250
048addec
JD
7251 * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
7252 arg is negative.
be676094 7253
048addec 72542001-12-11 Richard M. Stallman <rms@gnu.org>
be676094 7255
048addec
JD
7256 * m/hp800.h: Split the __hpux conditional into the parts
7257 that are right for GNU/Linux too and the parts that are not.
7258 Use the former if GNU_LINUX.
7259 (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
032a857d 7260
048addec 7261 * s/gnu-linux.h (GNU_LINUX): Defined.
032a857d 7262
048addec 72632001-12-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
032a857d 7264
048addec
JD
7265 * macros.c, msdos.c, w16select.c: Change doc-string comments to
7266 `new style' [w/`doc:' keyword].
032a857d 7267
048addec 72682001-12-10 Jason Rumney <jasonr@gnu.org>
b6270150 7269
048addec
JD
7270 * w32menu.c (w32_free_submenu_strings): Clear menu item struct
7271 before using.
b6270150 7272
048addec 72732001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
792e5cbd 7274
048addec
JD
7275 * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
7276 keyword].
98cbb9fa 7277
048addec 72782001-12-09 Eli Zaretskii <eliz@is.elta.co.il>
98cbb9fa 7279
048addec 7280 * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
98cbb9fa 7281
048addec 7282 * s/hpux10.h (srand48): Don't undefine.
98cbb9fa 7283
048addec 72842001-12-09 Jason Rumney <jasonr@gnu.org>
792e5cbd 7285
048addec
JD
7286 * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
7287 Add comment to explain where the struct came from.
7288 (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
7289 (add_menu_item): Process pop-up menus first to avoid memory leak.
7290 (add_menu_item, w32_menu_display_help): Use `help' field as
7291 Lisp_Object.
7292 (w32_free_submenu_strings): Only free owner-drawn strings.
fa336b91 7293
048addec 72942001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
fa336b91 7295
048addec 7296 * COPYING: Moved back.
fa336b91 7297
048addec
JD
7298 * charset.c (char_to_string_1, translate_char, Fdefine_charset):
7299 Add parentheses around && within ||.
077907d4 7300
048addec 7301 * indent.c (compute_motion): Likewise.
aa2af83a 7302
048addec 7303 * intervals.c (merge_properties_sticky): Likewise.
60a653f1 7304
048addec
JD
7305 * coding.c (setup_coding_system, shrink_encoding_region)
7306 (Fdecode_sjis_char): Likewise.
60a653f1 7307
048addec 73082001-12-07 Andreas Schwab <schwab@suse.de>
60a653f1 7309
048addec
JD
7310 * xdisp.c (display_mode_element): Don't read past end of string if
7311 it ends with '%'.
60a653f1 7312
048addec
JD
7313 * alloc.c (inhibit_garbage_collection): Don't exceed value an int
7314 can hold.
60a653f1 7315
048addec
JD
7316 * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum):
7317 Rename from most_positive_fixnum and most_negative_fixnum, resp., and
7318 type changed to Lisp_Object.
7319 (syms_of_data): DEFVAR_LISP them.
60a653f1 7320
048addec 73212001-12-07 Richard M. Stallman <rms@gnu.org>
60a653f1 7322
048addec
JD
7323 * callproc.c (init_callproc): Set Vdata_directory based on the source
7324 location whenever Emacs was run uninstalled.
60a653f1 7325
048addec 73262001-12-06 Paul Eggert <eggert@twinsun.com>
60a653f1 7327
048addec
JD
7328 * config.in (HAVE_WORKING_VFORK): New #undefs.
7329 * process.c (create_process):
7330 Use HAVE_WORKING_VFORK, not HAVE_VFORK.
7331 * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
7332 * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
7333 * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
7334 * m/intel386.h (HAVE_VFORK): Likewise.
7335 * m/mips-siemens.h (HAVE_VFORK): Likewise.
7336 * m/mips.h (HAVE_VFORK): Likewise.
7337 * s/freebsd.h (vfork): Remove #define.
7338 * s/lynxos.h (HAVE_VFORK): Remove #undef.
7339 * s/usg5-4-2.h: Fix comment about vfork.
60a653f1 7340
048addec 73412001-12-06 Richard M. Stallman <rms@gnu.org>
60a653f1 7342
048addec
JD
7343 * s/hpux10.h (random): Add undef.
7344 (HAVE_RANDOM): Define it just once.
60a653f1 7345
048addec 73462001-12-06 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7347
048addec 7348 * eval.c: Undo last change: the standard syntax is not wanted.
60a653f1 7349
048addec 73502001-12-06 Eli Zaretskii <eliz@is.elta.co.il>
60a653f1 7351
048addec
JD
7352 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
7353 scroll bars of the frame before deleting the frame itself. If the
7354 frame has a widget, delete the frame with XtDestroyWidget, and do
7355 not call XDestroyWindow before that.
60a653f1 7356
048addec 73572001-12-06 Kim F. Storm <storm@cua.dk>
60a653f1 7358
048addec 7359 * xfns.c (x_report_frame_params): Return actual fringe widths.
60a653f1 7360
048addec 7361 * w32fns.c (x_report_frame_params): Return actual fringe widths.
60a653f1 7362
048addec 73632001-12-05 Andrew Innes <andrewi@gnu.org>
60a653f1 7364
048addec
JD
7365 * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
7366 excessively large.
60a653f1 7367
048addec
JD
7368 * insdel.c (make_gap_larger): New function.
7369 (make_gap_smaller): New function.
7370 (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]:
7371 Call make_gap_smaller if arg is negative.
60a653f1 7372
048addec 73732001-12-04 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7374
048addec
JD
7375 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
7376 Pass a dummy argument when calling interrupt_signal.
7377 (parse_menu_item): Mark disabled items before checking for empty def.
7378 (read_char_minibuf_menu_prompt): Make safety more visible.
7379 (read_key_sequence): Add a `first_unbound' variable.
7380 Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
7381 unbound prefix as soon as we can detect it.
60a653f1 7382
048addec
JD
7383 * doc.c (Fsnarf_documentation): Add prototype.
7384 (get_doc_string): Handle negative arguments.
7385 (Fdocumentation): Use AREF and ASIZE.
7386 Move the calls to get_doc_string to a single place.
7387 Don't confuse an interactive-spec for a docstring reference.
7388 (Fdocumentation_property): Take advantage of the fact that
7389 get_doc_string now ignores the sign of the docstring position.
60a653f1 7390
048addec 7391 * eval.c: Use standard syntax for usage in docstrings.
60a653f1 7392
048addec 73932001-12-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 7394
048addec 7395 * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief` an option.
60a653f1 7396
048addec 73972001-12-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 7398
048addec
JD
7399 * xterm.c (x_draw_image_relief): Use predefined macro instead of
7400 constant when the value of `tool_bar_button_relief' is negative.
60a653f1 7401
048addec 74022001-12-02 Richard M. Stallman <rms@gnu.org>
60a653f1 7403
048addec
JD
7404 * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
7405 (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
60a653f1 7406
048addec 7407 * fileio.c (read_non_regular): Delete Fsignal call.
60a653f1 7408
048addec 74092001-12-01 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7410
048addec 7411 * lisp.h (run_hook_list_with_args): Undo last change.
60a653f1 7412
048addec 74132001-12-01 Gerd Moellmann <gerd@gnu.org>
60a653f1 7414
048addec 7415 * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
60a653f1 7416
048addec 74172001-12-01 Jason Rumney <jasonr@gnu.org>
60a653f1 7418
048addec 7419 * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
60a653f1 7420
048addec
JD
7421 * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
7422 [!WM_MOUSELEAVE]: Define.
60a653f1 7423
048addec
JD
7424 * w32menu.c (current_popup_menu, get_menu_item_info):
7425 (set_menu_item_info): New vars.
7426 (set_frame_menubar): Doc fix clarifying GC interaction with menus.
7427 (w32_menu_show): Set current_popup_menu.
7428 (add_menu_item): Allocate new strings for owner-drawn menu items
7429 and help strings.
7430 Use owner-draw for disabled menu items again.
7431 (w32_menu_display_help): Ignore owner-drawn items and popup menus.
7432 (w32_free_submenu_strings, w32_free_menu_strings): New functions.
60a653f1 7433
048addec
JD
7434 * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
7435 (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
7436 <WM_EXITMENULOOP>: Free menu strings.
7437 <WM_MOUSELEAVE>: Stop tracking mouse.
7438 (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
60a653f1 7439
048addec
JD
7440 * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
7441 and mouse face.
60a653f1 7442
048addec 74432001-12-01 Kim F. Storm <storm@cua.dk>
60a653f1 7444
048addec
JD
7445 The following changes add left-fringe and right-fringe
7446 frame parameters to adjust fringe widths, or remove one or
7447 both fringes.
60a653f1 7448
048addec
JD
7449 * frame.h (struct frame): Remove trunc_area_pixel_width and
7450 trunc_area_cols fields.
7451 (Qleft_fringe, Qright_fringe): Declare.
7452 (FRAME_RIGHT_FRINGE_WIDTH): New macro.
60a653f1 7453
048addec
JD
7454 * frame.c (Qleft_fringe, Qright_fringe): New vars.
7455 (syms_of_frame): Initialize them.
60a653f1 7456
048addec
JD
7457 * window.c (coordinates_in_window): Handle separate left and right
7458 fringe widths.
60a653f1 7459
048addec
JD
7460 * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
7461 and fringe_cols fields.
7462 (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
7463 (FRAME_X_FRINGE_COLS): Use fringe_cols field.
7464 (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
7465 (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
7466 (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
7467 (x_compute_fringe_widths): Add prototype.
60a653f1 7468
048addec
JD
7469 * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
7470 fill fringe evenly with small dashes.
7471 (x_draw_fringe_bitmap): Clear background if necessary. Align and
7472 clip the new ZV bitmap to avoid jitter between rows.
7473 (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
7474 background. Don't draw fringe bitmaps if fringe width is zero.
7475 (x_compute_fringe_widths): New function.
7476 (x_new_font, x_set_window_size_1): Use it.
60a653f1 7477
048addec
JD
7478 * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
7479 (x_set_frame_parameters): Process `font' parameter before other
7480 parameters as fringe widths depend on it.
7481 (x_set_fringe_width): New function.
7482 (x_figure_window_size): Use x_compute_fringe_widths.
7483 (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
7484 parameters.
60a653f1 7485
048addec
JD
7486 * widget.c (set_frame_size): Use x_compute_fringe_widths.
7487 (EmacsFrameSetCharSize): Ditto.
60a653f1 7488
048addec
JD
7489 * w32term.h: Merged changes from xterm.h.
7490 * w32term.c: Merged changes from xterm.c.
7491 * w32fns.c: Merged changes from xfns.c.
60a653f1 7492
048addec 74932001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 7494
048addec 7495 * COPYING: Removed.
60a653f1 7496
048addec 74972001-11-29 Dave Love <fx@gnu.org>
60a653f1 7498
048addec
JD
7499 * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
7500 extra extra slot.
7501 (detect_coding_mask): Fix call of detect_coding_iso2022.
60a653f1 7502
048addec 75032001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 7504
048addec
JD
7505 * fileio.c (file-name-coding-system)
7506 (default-file-name-coding-system): Doc fix (links to referenced
7507 variables added).
60a653f1 7508
048addec 75092001-11-28 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7510
048addec
JD
7511 * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
7512 Add dummy uses of gcproN variables.
60a653f1 7513
048addec
JD
7514 * category.c (describe_category, describe_category_1)
7515 (Fdescribe_categories): Remove. (Moved to lisp/help-fns.el.)
7516 (syms_of_category): Don't defsubr Sdescribe_categories.
60a653f1 7517
048addec 75182001-11-28 Richard M. Stallman <rms@gnu.org>
60a653f1 7519
048addec 7520 * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
60a653f1 7521
048addec
JD
7522 * Makefile.in (lispdir): New variable, referring to build dir.
7523 (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
60a653f1 7524
048addec 75252001-11-28 Andrew Innes <andrewi@gnu.org>
60a653f1 7526
048addec
JD
7527 * w32menu.c (w32_menu_display_help): Actually add the new argument
7528 OWNER.
60a653f1 7529
048addec 75302001-11-28 Jason Rumney <jasonr@gnu.org>
60a653f1 7531
048addec
JD
7532 * w32menu.c (add_menu_item): Do not use owner-draw for disabled
7533 menu items. From David Ponce <dponce@wanadoo.fr>.
7534 (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
7535 conditionally.
7536 (w32_menu_display_help): New argument OWNER. Rewritten to store a
7537 help event in the owner frame's keyboard buffer.
60a653f1 7538
048addec
JD
7539 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
7540 (Fx_show_tip): Don't subtract last width from row width.
7541
7542 * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
7543 (w32_read_socket): Use EQ to compare frames.
60a653f1 7544
048addec 75452001-11-28 Gerd Moellmann <gerd@gnu.org>
60a653f1 7546
048addec
JD
7547 * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
7548 OVERLAPS_P.
60a653f1 7549
048addec 75502001-11-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 7551
048addec
JD
7552 * xdisp.c (message_dolog): Remove unused variables `gcpro2',
7553 `gcpro3' and `gcpro4'.
60a653f1 7554
048addec 7555 * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
60a653f1 7556
048addec 75572001-11-28 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7558
048addec 7559 * ccl.c: Use AREF and ASIZE.
60a653f1 7560
048addec 75612001-11-27 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7562
048addec
JD
7563 * lisp.h (run_hook_list_with_args): Remove.
7564 (LIST_END_P): Fix call to wrong_type_argument.
7565 (make_fixnum_or_float): Use EMACS_INT rather than int.
60a653f1 7566
048addec 75672001-11-26 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7568
048addec
JD
7569 * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
7570 (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
60a653f1 7571
048addec
JD
7572 * eval.c: Use AREF and ASIZE.
7573 (Ffetch_bytecode): Add the file name to the error message.
60a653f1 7574
048addec
JD
7575 * fileio.c (Ffind_file_name_handler): Give precedence to handlers
7576 which match the end of the file-name.
7577 (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
7578 is not a valid env var, but leave it as is instead.
60a653f1 7579
048addec
JD
7580 * keymap.c (access_keymap): Handle t bindings like nil bindings.
7581 Make nil bindings in char-tables transparent.
7582 (store_in_keymap): Turn a nil binding into a t binding for char-tables.
60a653f1 7583
048addec 75842001-11-26 Richard M. Stallman <rms@gnu.org>
60a653f1 7585
048addec
JD
7586 * textprop.c (set_text_properties_1): Allow START, END in either order.
7587 Do nothing if range is empty.
60a653f1 7588
048addec 7589 * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
60a653f1 7590
048addec
JD
7591 * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
7592 (clean): Not here.
60a653f1 7593
048addec 75942001-11-25 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7595
048addec
JD
7596 * textprop.c (set_text_properties_1): Clearly mark that the
7597 interval should not be empty.
60a653f1 7598
048addec
JD
7599 * intervals.c (graft_intervals_into_buffer):
7600 Don't call set_text_properties_1 on an empty interval.
60a653f1 7601
048addec 76022001-11-25 Richard M. Stallman <rms@gnu.org>
60a653f1 7603
048addec 7604 * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
60a653f1 7605
048addec
JD
7606 * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
7607 don't lose the data in it.
60a653f1 7608
048addec 76092001-11-25 Juanma Barranquero <lektu@terra.es>
60a653f1 7610
048addec 7611 * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
60a653f1 7612
048addec 7613 * buffer.c (Fkill_buffer): Use Frun_hooks, not Vrun_hooks.
60a653f1 7614
048addec 7615 * print.c (temp_output_buffer_setup): Use Frun_hooks, not Vrun_hooks.
60a653f1 7616
048addec 76172001-11-25 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7618
048addec 7619 * xfaces.c (merge_face_heights): Coerce back to int explicitly.
60a653f1 7620
048addec 76212001-11-25 Eli Zaretskii <eliz@is.elta.co.il>
60a653f1 7622
048addec
JD
7623 * window.c (Fset_window_vscroll): Doc fix. From Kalle Olavi
7624 Niemitalo <kon@iki.fi>.
60a653f1 7625
048addec 76262001-11-25 Jason Rumney <jasonr@gnu.org>
60a653f1 7627
048addec 7628 * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
60a653f1 7629
048addec
JD
7630 * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
7631 (Fx_show_tip): Block input during frame creation.
7632 (Fx_show_tip, Fx_hide_tip): Enable.
60a653f1 7633
048addec 76342001-11-24 Richard M. Stallman <rms@gnu.org>
60a653f1 7635
048addec
JD
7636 * lread.c (Fload): Detect recursive load error for more than 3
7637 nestings of the same file.
7638 (Vrecursive_load_depth_limit): Variable deleted.
7639 (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
60a653f1 7640
048addec 76412001-11-24 Jason Rumney <jasonr@gnu.org>
60a653f1 7642
048addec
JD
7643 * xfns.c (compute_tip_xy): Initialize root_x and root_y from
7644 mouse position if either left or top is not specified.
60a653f1 7645
048addec
JD
7646 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
7647 <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
7648 (my_create_tip_window, Fx_show_tip): Adjust size for external border.
7649 (my_create_tip_window): Assign tip_window.
7650 (x_create_tip_frame): Use same defaults as X.
7651 (compute_tip_xy): Remove unused variable. Use full screen width.
7652 (Fx_show_tip): Do not double height. Call ShowWindow directly.
60a653f1 7653
048addec
JD
7654 * w32term.c (x_after_update_window_line): Doc fix.
7655 (w32_read_socket): Doc fix. Avoid SET_FRAME_GARBAGED for tip
7656 frames.
7657 <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
60a653f1 7658
048addec
JD
7659 * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
7660 for all Windowed systems.
60a653f1 7661
048addec 76622001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
60a653f1 7663
048addec
JD
7664 * msdos.c (IT_clear_screen): If the frame's faces are not yet
7665 realized, use the initial screen colors to clear the screen.
60a653f1 7666
048addec 76672001-11-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 7668
048addec
JD
7669 * textprop.c (Fset_text_properties): Remove unused variables
7670 `unchanged', `prev_changed', `s' and `len'.
60a653f1 7671
048addec
JD
7672 * search.c (Freplace_match): Remove unused variable `inslen'.
7673
7674 * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
7675
76762001-11-22 Jason Rumney <jasonr@gnu.org>
7677
7678 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
7679 (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
7680 (my_create_tip_window): New function.
7681 (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
7682 (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
7683
76842001-11-20 Jason Rumney <jasonr@gnu.org>
7685
7686 * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
7687 (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
7688
7689 * w32fns.c (Vw32_system_coding_system): Remove.
7690 (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
7691
76922001-11-19 Stefan Monnier <monnier@cs.yale.edu>
7693
7694 * fileio.c (Fwrite_region): Move choose_write_coding_system to
7695 after build_annotations.
7696
7697 * syntax.c (describe_syntax): Add dummy arg.
7698 (describe_syntax_1): Update call to describe_vector.
7699
7700 * category.c (describe_category): Add dummy arg.
7701 (describe_category_1): Update call to describe_vector.
7702
7703 * keymap.c (Fdescribe_vector): Add `describer' parameter.
7704 (describe_command, describe_translation): Add dummy second param.
7705 (describe_map): Call elt_describer with two arguments.
7706 (describe_vector_princ): Add `fun' parameter.
7707 Call it instead of the hardcoded `princ'.
7708 (describe_vector): Add arg `args'.
7709 Pass it as a new second argument to elt_describer.
60a653f1 7710
048addec 7711 * keymap.h (describe_vector): Update prototype.
60a653f1 7712
048addec
JD
7713 * frame.c: Don't include keymap.h any more.
7714 (keys_of_frame): Remove.
60a653f1 7715
048addec 7716 * lisp.h (keys_of_frame): Remove declaration.
60a653f1 7717
048addec 7718 * emacs.c (main): Don't call `keys_of_frame' any more.
60a653f1 7719
048addec 77202001-11-14 Andreas Schwab <schwab@suse.de>
60a653f1 7721
048addec
JD
7722 * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
7723 if defined, 0 otherwise.
7724 (MAP_FAILED): Define if not defined and use it to test mmap failure.
7725 (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
60a653f1 7726
048addec 77272001-11-19 Richard M. Stallman <rms@gnu.org>
60a653f1 7728
048addec 7729 * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
60a653f1 7730
048addec 77312001-11-18 Jason Rumney <jasonr@gnu.org>
60a653f1 7732
048addec
JD
7733 * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
7734 (x_draw_bar_cursor): If the background color of the glyph under
7735 the cursor equals the frame's cursor color, use the glyph's
7736 foreground color for drawing the bar cursor.
7737 (x_after_update_window_line): Clear internal border in different
7738 circumstances.
7739 (w32_set_vertical_scroll_bar): Check for width and height > 0.
7740 (w32_draw_relief_rect): Correct relief by 1 pixel.
7741 (x_set_glyph_string_background_width):
7742 Set extends_to_end_of_line_p if the row's fill_line_p is set and
7743 drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
7744 (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
7745 if cursor_in_non_selected_windows is false.
7746 (show_mouse_face): Clean up. Recognize overwritten cursor differently.
7747 (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
7748 Notice if cursor gets overwritten.
7749 (notice_overwritten_cursor): Renamed from
7750 note_overwritten_text_cursor. Rewritten to take glyph widths
7751 into account, and to take X positions as parameters.
7752 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
7753 around call to x_draw_glyphs.
7754 (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
7755 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
7756 color to use for image glyph reliefs.
7757 (x_draw_image_relief): Accept zero tool_bar_button_relief.
7758 (glyph_rect): Remove unused variable `area'.
60a653f1 7759
048addec
JD
7760 * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
7761 some items.
7762 (x_set_internal_border_width): Set frame garbaged when window
7763 doesn't exist yet.
7764 (Fx_create_frame): Accept zero tool_bar_button_relief.
7765 (x_clear_image_1, four_corners_best, image_background)
7766 (image_background_transparent): New functions.
7767 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
7768 (gs_format): Add `:background' entry.
7769 (lookup_image): Set IMG's background color if specified.
7770 (pbm_load, xbm_load_image, png_load): Set IMG's background field
7771 when appropriate.
7772 (x_clear_image_1): Reset `background_valid' and
7773 `background_transparent_valid' fields.
7774 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
7775 calculating it here. Set IMG's background_transparent field.
7776 (enum xpm_keyword_index): Add XPM_BACKGROUND.
7777 (enum png_keyword_index): Add PNG_BACKGROUND.
7778 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
7779 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
7780 (enum gif_keyword_index): Add GIF_BACKGROUND.
7781 (enum gs_keyword_index): Add GS_BACKGROUND.
7782 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
7783 Pre-calculate image background color where necessary.
7784 (x_create_x_image_and_pixmap, xbm_load, gs_load):
7785 Use display info's n_cbits entry for screen depth.
7786 (Fx_show_tip): Remove unused variables `buffer', `top',
7787 `left', `max_width' and `max_height'.
60a653f1 7788
048addec 7789 * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
60a653f1 7790
048addec 77912001-11-18 Gerd Moellmann <gerd@gnu.org>
60a653f1 7792
048addec 7793 * puresize.h (BASE_PURESIZE): Increase to 750000.
60a653f1 7794
048addec 77952001-11-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 7796
048addec 7797 * frame.c (Fframe_live_p): Doc fix.
60a653f1 7798
048addec 77992001-11-18 Richard M. Stallman <rms@gnu.org>
60a653f1 7800
048addec
JD
7801 * xdisp.c (message_dolog_marker1, message_dolog_marker2)
7802 (message_dolog_marker3): New static variables hold three markers.
7803 (syms_of_xdisp): Initialize and staticpro them.
7804 (message_dolog): Use message_dolog_marker1..3 instead of
7805 allocating markers each time. Unchain them when done.
60a653f1 7806
048addec 78072001-11-17 Richard M. Stallman <rms@gnu.org>
60a653f1 7808
048addec 7809 * doc.c (Fsnarf_documentation): Doc fix.
60a653f1 7810
048addec 78112001-11-17 Andreas Schwab <schwab@suse.de>
60a653f1 7812
048addec 7813 * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
60a653f1 7814
048addec 78152001-11-17 Richard M. Stallman <rms@gnu.org>
60a653f1 7816
048addec 7817 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
60a653f1 7818
048addec 78192001-11-17 Jason Rumney <jasonr@gnu.org>
60a653f1 7820
048addec 7821 * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
60a653f1 7822
048addec 78232001-11-17 Gerd Moellmann <gerd@gnu.org>
60a653f1 7824
048addec
JD
7825 * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
7826 with invalid position.
60a653f1 7827
048addec 78282001-11-16 Richard M. Stallman <rms@gnu.org>
60a653f1 7829
048addec 7830 * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
60a653f1 7831
048addec
JD
7832 * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
7833 * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
7834 * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
60a653f1 7835
048addec 7836 * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
60a653f1 7837
048addec 78382001-11-16 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 7839
048addec
JD
7840 * fileio.c (build_annotations): Split off the tail.
7841 (build_annotations_2): New fun. Extracted from build_annotations.
7842 (Fwrite_region): Split the call to build_annotations into two
7843 calls to build_annotations and build_annotations_2.
077907d4 7844
048addec 78452001-11-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1756e2fb 7846
048addec
JD
7847 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
7848 clear_waiting_for_input with argument.
1756e2fb 7849
048addec 7850 * xterm.h (x_update_cursor): Remove duplicated prototype.
06e8f738 7851
048addec 7852 * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
06e8f738 7853
048addec 7854 * xterm.c (waiting_for_input): Remove unnecessary declaration.
fa336b91 7855
048addec 7856 * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
fa336b91 7857
048addec 78582001-11-16 Stefan Monnier <monnier@cs.yale.edu>
fa336b91 7859
048addec
JD
7860 * fileio.c (choose_write_coding_system): New fun, extracted
7861 from Fwrite_region.
7862 (Fwrite_region): Use it.
fa336b91 7863
048addec
JD
7864 * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
7865 (funcall_lambda, run_hook_with_args): Make static and add prototype.
7866 (ml_apply, find_handler_clause): Add prototype.
fa336b91 7867
048addec 78682001-11-16 Eli Zaretskii <eliz@gnu.org>
fa336b91 7869
048addec 7870 * config.in: Add #undef HAVE_COFF_H.
fa336b91 7871
048addec
JD
7872 * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
7873 Required for ISC 4.1.
fa336b91 7874
048addec 78752001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
fa336b91 7876
048addec
JD
7877 * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
7878 Andrew Wiseman <a.wiseman@btclick.com>.
fa336b91 7879
048addec 78802001-11-16 Kim F. Storm <storm@cua.dk>
fa336b91 7881
048addec
JD
7882 The following changes are made to clean up the various internal
7883 references to the fringes to actually use the term `fringe' for
7884 them. Previously, they were called `flags areas', `bitmap areas',
7885 `left/right side of windows', or implicitly as `flags' or
7886 `bitmaps':
fa336b91 7887
048addec
JD
7888 * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
7889 Comments fixed. Use renamed symbols.
06e8f738 7890
048addec 7891 * dispnew.c: Comment fix. Use renamed symbols.
06e8f738 7892
048addec
JD
7893 * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
7894 (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
7895 (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
9ce647f4 7896
048addec 7897 * msdos.c: Comment fix.
9ce647f4 7898
048addec 7899 * w32fns.c: Use renamed symbols.
9b784ab8 7900
048addec
JD
7901 * w32term.c: Comment fixes. Use renamed symbols.
7902 (fringe_bitmap_type): Renamed from bitmap_type.
7903 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
7904 (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
7905 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
9f7e52b4 7906
048addec
JD
7907 * w32term.h: Comment fixes. Use renamed symbols.
7908 (fringes_extra): Renamed from flags_areas_extra.
7909 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
7910 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
7911 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
7912 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
7913 (FRAME_X_LEFT_FRINGE_WIDTH):
7914 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
7915 (FRAME_X_RIGHT_FRINGE_WIDTH):
7916 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
9f7e52b4 7917
048addec 7918 * widget.c: Use renamed symbols.
9f7e52b4 7919
048addec
JD
7920 * window.c: Comment fixes. Use renamed symbols.
7921 (coordinates-in-window-p): Doc fix.
fa336b91 7922
048addec 7923 * xdisp.c: Comment fixes. Use renamed symbols.
34e5d0af 7924
048addec 7925 * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
9b784ab8 7926
048addec 7927 * xfns.c: Use renamed symbols.
89512fcd 7928
048addec
JD
7929 * xterm.c: Comment fixes. Use renamed symbols.
7930 (fringe_bitmap_type): Renamed from bitmap_type.
7931 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
7932 (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
7933 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
89512fcd 7934
048addec
JD
7935 * xterm.h: Comment fixes. Use renamed symbols.
7936 (fringes_extra): Renamed from flags_areas_extra.
7937 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
7938 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
7939 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
7940 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
7941 (FRAME_X_LEFT_FRINGE_WIDTH):
7942 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
7943 (FRAME_X_RIGHT_FRINGE_WIDTH):
7944 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
7945
79462001-11-15 Jason Rumney <jasonr@gnu.org>
7947
7948 * w32menu.c (add-menu-item): Make help_echo and radio buttons
7949 work for most menu items. From David Ponce
7950 <david.ponce@wanadoo.fr>.
7951
79522001-11-15 Gerd Moellmann <gerd@gnu.org>
7953
7954 * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
7955 Some x_set_* function expect to be called even if old and new
7956 value are equal.
7957
7958 * xdisp.c (build_desired_tool_bar_string): Accept zero
7959 tool_bar_button_relief.
7960
7961 * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
7962
7963 * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
7964
7965 * xterm.c (x_draw_bar_cursor): If the background color of the
7966 glyph under the cursor equals the frame's cursor color, use
7967 the glyph's foreground color for drawing the bar cursor.
7968
7969 * dispnew.c (direct_output_forward_char): Fix character/byte
7970 position comparison.
7d18891d 7971
048addec 79722001-11-15 Miles Bader <miles@gnu.org>
d2936d21 7973
048addec
JD
7974 * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
7975 (Fdelete_field, Ffield_string, Ffield_string_no_properties):
7976 Update arguments to find_field.
7977 (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
7978 (Fconstrain_to_field): Use LIMIT arg to shorten search time.
7979 * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
7980 * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
7d18891d 7981
048addec 79822001-11-14 Richard M. Stallman <rms@gnu.org>
7d18891d 7983
048addec 7984 * editfns.c (Fpropertize): Allow call with 1 arg.
7d18891d 7985
048addec
JD
7986 * dispextern.h (image_background, image_background_transparent):
7987 Conditionalize on HAVE_X_WINDOWS.
7d18891d 7988
048addec 79892001-11-13 Richard M. Stallman <rms@gnu.org>
7d18891d 7990
048addec 7991 * print.c (Fprin1_to_string): Doc fix.
7d18891d 7992
048addec 7993 * sunfns.c (Fsun_change_cursor_icon): Doc fix.
7d18891d 7994
048addec 7995 * floatfns.c (Fceiling, Ffloor): Doc fixes.
7d18891d 7996
048addec 7997 * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
7d18891d 7998
048addec 7999 * fileio.c (Ffile_accessible_directory_p): Doc fix.
7d18891d 8000
048addec 8001 * eval.c (syms_of_eval): Doc fix.
7d18891d 8002
048addec 8003 * coding.c (syms_of_coding): Doc fix.
7d18891d 8004
048addec 8005 * doc.c (Fsnarf_documentation): Doc fix.
7d18891d 8006
048addec 8007 * dispnew.c (syms_of_display): Doc fix.
9474c847 8008
048addec 8009 * category.c (Fget_unused_category): Doc fix.
9474c847 8010
048addec 8011 * buffer.c (syms_of_buffer): Doc fixes.
e3059a5d 8012
048addec 80132001-11-14 Eli Zaretskii <eliz@is.elta.co.il>
e3059a5d 8014
048addec 8015 * print.c (prin1, print): Doc fix.
e3059a5d 8016
048addec 80172001-11-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
b3700ae7 8018
048addec
JD
8019 * fontset.h: Remove declarations of variables
8020 `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
b3700ae7 8021
048addec
JD
8022 * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
8023 `Vclip_large_size_font'.
eae936e2 8024
048addec 80252001-11-13 Jason Rumney <jasonr@gnu.org>
4bb962be 8026
048addec 8027 * w32fns.c: Doc fix.
ddb67bdc 8028
048addec 80292001-11-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3467c402 8030
048addec 8031 * xfaces.c (Fface_attributes_as_vector): Doc fix.
3467c402 8032
048addec 8033 * fns.c: Doc fix.
6e1b91d7 8034
048addec 8035 * emacs.c: Doc fix.
1c1d3d69 8036
048addec 8037 * coding.c: Doc fix.
1c1d3d69 8038
048addec
JD
8039 * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
8040 * fontset.c, insdel.c, keymap.c: Change doc-string comments to
8041 `new style' [w/`doc:' keyword].
b6f4c7ba 8042
048addec 80432001-11-12 Richard M. Stallman <rms@gnu.org>
b6f4c7ba 8044
048addec
JD
8045 * xterm.c (XTread_socket): Don't update focus for EnterNotify or
8046 LeaveNotify events. Only FocusIn and FocusOut do that now.
8047 (x_display_and_set_cursor): Do display hollow cursors in active
8048 minibuffer windows when they are not selected.
b6f4c7ba 8049
048addec 80502001-11-12 Jason Rumney <jasonr@gnu.org>
a89f435d 8051
048addec
JD
8052 * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
8053 * w32term.c: Change doc-string comments to `new style'.
8054 [w/`doc:' keyword]. Doc fixes.
a89f435d 8055
048addec
JD
8056 * w32fns.c: Don't define max.
8057 (Fx_open_connection): Only execute once.
a4cd0cd7 8058
048addec 80592001-11-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
eafb659a 8060
048addec
JD
8061 * ccl.c: Change macros to use do-while block instead of if-else.
8062 Use braces to follow GNU Coding Standards.
eafb659a 8063
048addec 80642001-11-11 Richard M. Stallman <rms@gnu.org>
a4cd0cd7 8065
048addec 8066 * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
a4cd0cd7 8067
048addec 8068 * lread.c (read_escape): Use end_of_file_error for reporting eof.
a4cd0cd7 8069
048addec
JD
8070 * insdel.c (replace_range): Use adjust_markers_for_replace
8071 instead of adjust_markers_for_delete and adjust_markers_for_insert.
a4cd0cd7 8072
048addec 8073 * intervals.h: Declare set_text_properties and set_text_properties_1.
a4cd0cd7 8074
048addec
JD
8075 * textprop.c (set_text_properties_1): New subroutine
8076 broken out of set_text_properties.
8077 (set_text_properties): Use set_text_properties_1.
91823618 8078
048addec
JD
8079 * intervals.c (graft_intervals_into_buffer):
8080 Use set_text_properties_1 to clear out properties.
91823618 8081
048addec
JD
8082 * search.c (Freplace_match): Use replace_range to insert
8083 and delete. Don't request property inheritance from
8084 surrounding text.
86928dfb 8085
048addec 80862001-11-10 Jason Rumney <jasonr@gnu.org>
86928dfb 8087
048addec
JD
8088 * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
8089 vertical fonts. Allow them if face name is explicitly specified.
8090 Do not give up if we find a font that cannot be converted to an xlfd.
40ef1eda 8091
048addec 80922001-11-10 Gerd Moellmann <gerd@gnu.org>
ab8469eb 8093
048addec
JD
8094 * unexelf.c (unexec): Use mmap/munmap to allocate buffers
8095 instead of malloc/free.
a78e0303 8096
048addec 80972001-11-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
40ef1eda 8098
048addec
JD
8099 * xfaces.c (merge_face_vectors): Use braces to follow GNU
8100 Coding Standards.
8101 (Finternal_set_lisp_face_attribute): Likewise.
fabf4a91 8102
048addec 8103 * buffer.c (Fbury_buffer): Likewise.
0c99b139 8104
048addec 8105 * indent.c (current_column_1): Remove unused variable `prev_col'.
0c99b139 8106
048addec
JD
8107 * coding.c (encode_coding): Use precomputed value of `src'.
8108 (encode_coding): Remove unused variable `src_end'.
8109 (code_convert_region): Remove unused variables `count'.
830ddd77 8110
048addec 81112001-11-07 Jason Rumney <jasonr@gnu.org>
830ddd77 8112
048addec
JD
8113 * w32term.c (x_display_and_set_cursor): Do not move system caret
8114 if cursor_glyph is NULL.
55c6d645 8115
048addec 81162001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
55c6d645 8117
048addec 8118 * keymap.c (access_keymap): Fix compilation error.
5de38842 8119
048addec 81202001-11-07 Miles Bader <miles@gnu.org>
7a4564a4 8121
048addec 8122 * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
5de38842 8123
048addec 81242001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4fa23df5 8125
048addec
JD
8126 * intervals.c (graft_intervals_into_buffer):
8127 Remove #ifdef'd-out code.
8128 (graft_intervals_into_buffer): Remove unused variable `middle'.
4fa23df5 8129
048addec
JD
8130 * lread.c (Feval_region): Remove obsolete #ifdef'd-out
8131 code (eval-current-buffer).
8132 Change doc-string comments to `new style' [w/`doc:' keyword].
7a6a97d7 8133
048addec 81342001-11-06 Richard M. Stallman <rms@gnu.org>
c191d13c 8135
048addec 8136 * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
7a6a97d7 8137
048addec 81382001-11-06 Stefan Monnier <monnier@cs.yale.edu>
44dc78e0 8139
048addec 8140 * lread.c (read1): Fix behavior with nested backquoting.
44dc78e0 8141
048addec
JD
8142 * keyboard.c (make_lispy_event): Check integerness and fix
8143 Lisp_Object/int mixup.
17893c65 8144
048addec 81452001-11-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4d994a79 8146
048addec 8147 * fns.c (copy_hash_table): Remove unused variable `v'.
d5360cc7 8148
048addec
JD
8149 * fontset.c (fontset_font_pattern): Remove unused variable
8150 `family_registry'.
d5360cc7 8151
048addec 8152 * indent.c (current_column_1): Remove unused variable `prev_col'.
d5360cc7 8153
048addec 81542001-11-05 Richard M. Stallman <rms@gnu.org>
96238a5a 8155
048addec 8156 * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
96238a5a 8157
048addec
JD
8158 * buffer.c (Fkill_buffer): Don't delete auto save file
8159 if buffer is modified.
d9d54213 8160
048addec 81612001-11-05 Andrew Innes <andrewi@gnu.org>
d9d54213 8162
048addec
JD
8163 * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
8164 CHECK_NUMBER_CDR.
b116830b 8165
048addec 81662001-11-05 Richard M. Stallman <rms@gnu.org>
b116830b 8167
048addec 8168 * unexelf.c (unexec): Minor changes; clean up comments.
3297e2a1 8169
048addec 81702001-11-05 Sam Steingold <sds@gnu.org>
3297e2a1 8171
048addec 8172 * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
6fb8339c 8173
048addec 81742001-11-05 Andreas Schwab <schwab@suse.de>
6fb8339c 8175
048addec 8176 * sound.c (sound_perror): Save errno from being clobbered.
7dd73b78 8177
048addec 81782001-11-05 Dale Hagglund <rdh@yottayotta.com>
7dd73b78 8179
048addec
JD
8180 * unexelf.c (unexec): Don't use `mmap'. Instead, read and write
8181 the program image directly.
982f6c7e 8182
048addec 81832001-11-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
d31053f9 8184
048addec 8185 * buffer.h (Fbuffer_local_value): Add prototype.
d31053f9 8186
048addec 81872001-11-04 Richard M. Stallman <rms@gnu.org>
d31053f9 8188
048addec
JD
8189 * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
8190 and CHECK_BUFFER.
d31053f9 8191
048addec
JD
8192 * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
8193 (record_char): Likewise.
d31053f9 8194
048addec
JD
8195 * keyboard.c (make_lispy_event): Don't insist a drag event must
8196 move to a different buffer position. Instead, check for moving at
8197 least double_click_fuzz.
982f6c7e 8198
048addec 8199 * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
830047fd 8200
048addec 8201 * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
b116830b 8202
048addec
JD
8203 * indent.c (current_column_1, Fmove_to_column): Separate the code
8204 for display-table glyphs from the code for buffer text, to fix
8205 bugs in the former.
830047fd 8206
048addec 82072001-11-04 Michael Welsh Duggan <md5i@cs.cmu.edu>
b116830b 8208
048addec
JD
8209 * buffer.c (Fbuffer_local_value): New function.
8210 (syms_of_buffer): Defsubr it.
2df5238c 8211
048addec
JD
8212 * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
8213 value of `cursor-in-non-selected-windows'.
4e397688 8214
048addec
JD
8215 * lisp.h (Qcursor_in_non_selected_windows): New declaration.
8216 * xdisp.c (Qcursor_in_non_selected_windows): New variable.
8217 (syms_of_xdisp): Initialize it.
48b0f3ae 8218
048addec 82192001-11-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2df5238c 8220
048addec 8221 * xfns.c (Fx_create_frame): Doc fix.
3ecaf7e5 8222
048addec
JD
8223 * coding.c: Change doc-string comments to `new style' [w/`doc:'
8224 keyword].
3ecaf7e5 8225
048addec
JD
8226 * eval.c (top_level_value, top_level_set): Remove commented and
8227 #ifdef'd-out code.
8228 (Fdefvar): Fix usage in doc-string.
3ecaf7e5 8229
048addec 82302001-11-03 Richard M. Stallman <rms@gnu.org>
3ecaf7e5 8231
048addec 8232 * xfns.c: Include unistd.h, if it exists.
8db2e33b 8233
048addec 8234 * editfns.c: Move the include of ctype.h after unistd.h.
8db2e33b 8235
048addec 8236 * gmalloc.c: Test BROKEN_PROTOTYPES.
aed29b97 8237
048addec 82382001-11-03 Ken Raeburn <raeburn@gnu.org>
aed29b97 8239
048addec
JD
8240 * lisp.h (CHECK_STRING_CAR): New macro.
8241 * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
8242 treating XCAR and XCDR as lvalues.
8243 (openp): Use CHECK_STRING_CAR.
8244 (read_list): Use XSETCDR instead of treating XCDR as lvalue.
aed29b97 8245
048addec 82462001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
6cb16f95 8247
048addec
JD
8248 * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
8249 (SIGMASKTYPE): Define.
1b1acc13 8250
048addec 8251 * syssignal.h (sigunblock): Don't define if already defined.
020f9b38 8252
048addec 82532001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
020f9b38 8254
048addec
JD
8255 * eval.c (debugger_may_continue, Vdebug_ignored_errors)
8256 (call_debugger, Fcondition_case, skip_debugger, unbind_to):
8257 Fix typos in comments.
6cb16f95 8258
048addec
JD
8259 * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
8260 and #ifdef'd-out code.
8261 Fix and reindent comments.
6cb16f95 8262
048addec 8263 * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
6cb16f95 8264
048addec
JD
8265 * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
8266 argument `i' in macros.
6cb16f95 8267
048addec
JD
8268 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
8269 `i' in macros.
7e9d3c2f 8270
048addec
JD
8271 * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
8272 (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
8273 (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
8274 (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
8275 (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
8276 (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
8277 (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
8278 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
8279 in macros.
7e9d3c2f 8280
048addec
JD
8281 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
8282 * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
8283 * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
8284 * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
8285 * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
8286 * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
8287 * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
8288 * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
8289 * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
8290 (remove unused second argument).
7e9d3c2f 8291
048addec 82922001-11-02 Stefan Monnier <monnier@cs.yale.edu>
e6bff182 8293
048addec
JD
8294 * syntax.c (describe_syntax): New wrapper.
8295 (Finternal_describe_syntax_value): Rename from describe_syntax.
8296 Don't insert space at front and \n at the end.
8297 (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
e6bff182 8298
048addec
JD
8299 * regex.c (re_wctype): Try to fix some warnings.
8300 (regcomp, regexec): Don't forget the __restrict.
9ba48103 8301
048addec 83022001-11-02 Richard M. Stallman <rms@gnu.org>
9ba48103 8303
048addec 8304 * textprop.c (Fget_char_property): Doc fix.
9ba48103 8305
048addec 83062001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9ba48103 8307
048addec 8308 * process.c (Fstart_process): Add usage to doc-string.
c22e59e1 8309
048addec 8310 * data.c (Fsetq_default): Ditto.
c22e59e1 8311
048addec 8312 * callint.c (Finteractive): Ditto.
9271ed2c 8313
048addec 83142001-11-01 Stefan Monnier <monnier@cs.yale.edu>
e6bff182 8315
048addec
JD
8316 * macros.c: Don't include keymap.h any more.
8317
83182001-11-01 Richard M. Stallman <rms@gnu.org>
8319
8320 * data.c (Fmake_local_variable): Doc fix.
8321
8322 * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
8323 (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
e6bff182 8324
048addec 8325 * keymap.c (Fdescribe_buffer_bindings): Print character property
9271ed2c
RS
8326 bindings along with or instead of the buffer local map.
8327 Make the overriding maps override what they should.
8328
f00691a3 83292001-11-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8b8bd9c6
PJ
8330
8331 * window.c (grow_mini_window): Fix typo in comment.
8332
27188d11
GM
83332001-11-01 Gerd Moellmann <gerd@gnu.org>
8334
7b49b9d2
GM
8335 * xterm.c (x_scroll_bar_create): Check for width and height > 0.
8336 (XTset_vertical_scroll_bar): Likewise.
8337
43f7c3ea
GM
8338 * xfns.c (x_build_heuristic_mask): Use four_corners_best
8339 instead of IMAGE_BACKGROUND.
c22e59e1 8340
b350c2e5
GM
8341 * xfns.c (four_corners_best): Reindent.
8342
c22e59e1 8343 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
27188d11
GM
8344 Handle :box so that it is possible to specify sexprs.
8345
bf00d461
EZ
83462001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
8347
8348 * s/hpux11.h: New file.
8349
f00691a3 83502001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4e10df59 8351
2b209b97
PJ
8352 * emacs.c (USAGE1): Show command line option --no-window-system
8353 instead of --no-windows in usage.
8354 (standard_args): Rename --no-windows to --no-window-system.
8355 (bug_reporting_address): Follow Emacs coding conventions.
8356
9dbc9081
PJ
8357 * eval.c (Fcommandp): Doc fix.
8358 Change doc-string comments to `new style' [w/`doc:' keyword].
8359
4e10df59
PJ
8360 * frame.c (Fframe_live_p): Doc fix.
8361
8362 * buffer.c (selective-display-ellipses): Doc fix.
8363
dd387b25
GM
83642001-10-31 Gerd Moellmann <gerd@gnu.org>
8365
fe957e65
GM
8366 * lread.c (to_multibyte): Fix computation of new read_buffer_size.
8367
dd387b25
GM
8368 * xfaces.c (realize_x_face): If C is not a single-byte character,
8369 set the face's colors_copied_bitwise_p instead of the defaulted_p
8370 members which have a different meaning.
8371 (free_face_colors): Do nothing for a face whose colors have been
8372 copied bitwise.
8373
c22e59e1 8374 * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
dd387b25 8375
f00691a3 83762001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2e1280f8 8377
687784e8
PJ
8378 * marker.c, mocklisp.c: Change doc-string comments to `new style'
8379 [w/`doc:' keyword].
2e1280f8 8380
b9d9a9b9
GM
83812001-10-31 Gerd Moellmann <gerd@gnu.org>
8382
8383 * fns.c (require_unwind): Return Lisp_Object.
8384
f00691a3 83852001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
48400103 8386
fa1361cb
PJ
8387 * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
8388 (last-input-char): Revert doc-string to be the same as the
8389 doc-string of `last-input-event'.
8390
6c465a15 8391 * xdisp.c: Fix typos in comments.
48400103 8392
eafa3196
GM
83932001-10-31 Gerd Moellmann <gerd@gnu.org>
8394
8395 * window.c (grow_mini_window): Handle case that the root
8396 window is already smaller than the nominal mininum height.
8397
747d3f2a
SM
83982001-10-30 Stefan Monnier <monnier@cs.yale.edu>
8399
bf9bb76f
SM
8400 * emacs.c (main): Don't call keys_of_macros any more.
8401
8402 * lisp.h (keys_of_macros): Remove.
8403
8404 * macros.c (keys_of_macros): Remove.
8405
747d3f2a
SM
8406 * xfaces.c (Fface_attribute_relative_p): Declare args.
8407
5e905a57
JR
84082001-10-30 Jason Rumney <jasonr@gnu.org>
8409
8410 * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
8411 (enum_font_cb2): Ignore fonts with vertical orientation.
8412
3a426197
RS
84132001-10-30 Richard M. Stallman <rms@gnu.org>
8414
8415 * keyboard.c (Finput_pending_p): Doc fix.
8416
a742d646
GM
84172001-10-30 Gerd Moellmann <gerd@gnu.org>
8418
259cf6bc
GM
8419 * xterm.c (x_after_update_window_line): Don't run the code
8420 clearing in borders for rows whose visible height is 0.
8421
3f99f948
GM
8422 * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
8423 resized_p flag is set. If not set, use the much less flickering
8424 method previously used.
8425
8426 * dispnew.c (change_frame_size_1): Set frame's resized_p.
8427
8428 * frame.h (struct frame) <resized_p>: New member.
8429
b4a3be43
GM
8430 * lread.c (to_multibyte): Ensure read_buffer is at least twice
8431 as large as the number of bytes to convert.
747d3f2a 8432
a742d646
GM
8433 * lread.c (to_multibyte): New function.
8434 (read1): Use it.
8435
cacbb9e9
EZ
84362001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
8437
8438 * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
8439
99cb6b2f
GM
84402001-10-30 Gerd Moellmann <gerd@gnu.org>
8441
327f42ee 8442 * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
747d3f2a
SM
8443 (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
8444 if the row's fill_line_p is set and drawing the last glyph with
8445 DRAW_IMAGE_{RAISED,SUNKEN}.
327f42ee 8446
99cb6b2f
GM
8447 * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
8448
8e8223e2
SM
84492001-10-29 Stefan Monnier <monnier@cs.yale.edu>
8450
8451 * xmenu.c: Include coding.h and charset.h.
8452 (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
8453 (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
8454 (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
8455 Explicitly set wv->help. Use `TRUE' rather than `True'.
8456 (menu_help_callback): Use empty_string.
8457
8458 * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
8459 (Fx_popup_dialog): Explicitly init f.
8460 (w32_menu_display_help): Use empty_string.
8461
4d083a8f
RS
84622001-10-29 Richard M. Stallman <rms@gnu.org>
8463
b2304472
RS
8464 * fns.c (Frequire): Detect recursive try to require the same
8465 feature 3 or more levels deep, and get error.
8466 (require_unwind): New subroutine.
8467 (require_nesting_list): New variable.
8468 (syms_of_fns): Init and staticpro it.
8469
4d083a8f
RS
8470 * print.c (print_object): Clarify indication of insertion type.
8471
2fe41216
EZ
84722001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
8473
90480000
EZ
8474 * coding.c (syms_of_coding): Document that locale-coding-system is
8475 used for decoding input on X.
8476
2fe41216
EZ
8477 * window.c (Fscroll_left, Fscroll_right): Doc fix.
8478
f00691a3 84792001-10-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
74e79967
PJ
8480
8481 * keyboard.c (Finput_pending_p): Fix typo in doc-string.
8482 (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
8483
60ebcfe8
GM
84842001-10-29 Gerd Moellmann <gerd@gnu.org>
8485
9a7bdceb
GM
8486 * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
8487 use NO_CURSOR if cursor_in_non_selected_windows is false.
8488
3f08fcd2
GM
8489 * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
8490 the slant attribute if FRAME is t.
8491
0ccfdad2
GM
8492 * xfns.c (x_set_internal_border_width): Set frame garbaged
8493 when X window doesn't exist yet.
8494
ef253080
GM
8495 * xterm.c (x_after_update_window_line): Clear internal border
8496 in different circumstances.
b116830b 8497
60ebcfe8
GM
8498 * xterm.c (XTread_socket) <KeyPress>: Don't use
8499 STRING_CHAR_AND_LENGTH if nchars == nbytes. From Kenichi Handa
8500 <handa@etl.go.jp>.
8501
73d25f9c
EZ
85022001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
8503
8504 * m/ibms390.h: New file. From Adam Thornton
8505 <athornton@sinenomine.net>.
8506
cac1daf0
GM
85072001-10-28 Gerd Moellmann <gerd@gnu.org>
8508
053b3256 8509 * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
b116830b 8510
cac1daf0
GM
8511 * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
8512 a loop counter.
8513
f00691a3 85142001-10-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13b1a09c 8515
186486eb
PJ
8516 * emacs.c: Use argv[0] instead of emacs when -t was specified.
8517
4707d2d0
PJ
8518 * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
8519 keyword].
8520 Fix typos in comments.
b116830b 8521
d883731c
PJ
8522 * emacs.c (bug_reporting_address): New function.
8523 Use it when displaying usage message.
8524
04012254
PJ
8525 * minibuf.c (read_minibuf): Remove unused external declaration of
8526 variable `Qread_only'.
8527
13b1a09c
PJ
8528 * keymap.c (access_keymap): Remove unused variable `charset'.
8529
5bbf4378
MB
85302001-10-28 Miles Bader <miles@gnu.org>
8531
8532 * xfaces.c (merge_face_heights): Handle TO being relative as well.
8533 Remove #ifdef'd-out code.
8534 (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
8535 (syms_of_xfaces): Initialize them.
8536
1ce1e4ee
JR
85372001-10-27 Jason Rumney <jasonr@gnu.org>
8538
8539 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
8540 <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
8541 position using the system caret.
8542
8543 * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
8544 (w32_system_caret_height, w32_system_caret_x)
8545 (w32_system_caret_y): New variables for tracking system caret.
8546 (w32_initialize): Initialize them.
c2d53558 8547 (x_display_and_set_cursor): Make system caret follow the active cursor.
1ce1e4ee 8548
c2d53558
SM
8549 * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
8550 New messages types.
1ce1e4ee
JR
8551
8552 * w32term.c (note_mouse_highlight): Clear old help_echo.
8553
f00691a3 85542001-10-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4e30ce42 8555
bb4600a4
PJ
8556 * xterm.c: Fix typo in a comment.
8557
7db35a48
PJ
8558 * emacs.c: Fix typos in comments.
8559 Remove unnecessary spaces.
8560 Change doc-string comments to `new style' [w/`doc:' keyword].
8561 (USAGE2): Fix typos in usage string.
8562
a7248e4f
PJ
8563 * xterm.c: Fix typo in a comment.
8564
4e30ce42
PJ
8565 * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
8566 emacs.c.
8567
62725a92
GM
85682001-10-27 Gerd Moellmann <gerd@gnu.org>
8569
798dbe1f 8570 * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
c2d53558 8571 instead of 1/2 line_height in the heuristic for skipping
798dbe1f
GM
8572 farther backward when target_y was not reached.
8573
62725a92
GM
8574 * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
8575 Display errno only if non-zero.
8576 (sound_warning): New function.
8577 (vox_configure): Don't treat failing to set sample rate as error.
8578 (various places): Improve error messages.
8579
d4e34d24
EZ
85802001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
8581
944e6f60
EZ
8582 * fileio.c (Faccess_file): Run the argument filename through
8583 Fexpand_file_name, before using it.
8584
d4e34d24
EZ
8585 * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
8586 ring-bell-function. Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
8587
38d2af0c
GM
85882001-10-26 Gerd Moellmann <gerd@gnu.org>
8589
da80a8d5
GM
8590 * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
8591
38d2af0c
GM
8592 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
8593 Fix clearing in the case of scroll bars on the right.
c2d53558 8594
45de4a6f 85952001-10-26 Juanma Barranquero <lektu@terra.es>
56f508dd
EZ
8596
8597 * w32gui.h (XImage): Add a dummy typedef.
8598
fbd5ceb2
GM
85992001-10-26 Gerd Moellmann <gerd@gnu.org>
8600
c2d53558 8601 * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
fbd5ceb2 8602
b23236fb
EZ
86032001-10-25 Eli Zaretskii <eliz@is.elta.co.il>
8604
8605 * frame.c (Fframe_parameter): Fix last change.
8606
5d991fc4
EZ
8607 * fileio.c: Revert last change (which removed old commented-out
8608 version of expand-file-name). Add a comment that explains why
8609 this old version should not be removed.
8610
879eadc3
GM
86112001-10-25 Gerd Moellmann <gerd@gnu.org>
8612
75700ff2
GM
8613 * frame.c (Fframe_parameter): Fix a bug whereby some
8614 ``artificial'' frame parameters, like `minibuffer' were not
8615 obtained by calling Fframe_parameters.
8616
dfe92a6a
GM
8617 * xterm.c (show_mouse_face): Clean up. Recognize overwritten
8618 cursor differently.
8619
879eadc3
GM
8620 * xdisp.c (move_it_vertically_backward): Compute line height
8621 differently. Add heuristic to try to be more compatible to 20.x.
8622
e1010ebe
SM
86232001-10-25 Stefan Monnier <monnier@cs.yale.edu>
8624
d73a471b
SM
8625 * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
8626
d6da5a06
GM
8627 * editfns.c (text_property_stickiness): Fix Lisp_Object used as
8628 boolean.
e1010ebe 8629
f66bd220
MB
86302001-10-25 Miles Bader <miles@gnu.org>
8631
8632 * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
8633 BG is a pointer to a structure, not a structure.
8634 (gif_format, png_format): Add missing commas.
8635
d436d538
RS
86362001-10-24 Richard M. Stallman <rms@gnu.org>
8637
8638 * xfaces.c (Fface_attributes_as_vector): New function.
c2d53558 8639 (syms_of_xfaces): Defsubr it.
d436d538 8640
f00691a3 86412001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
075c507b
PJ
8642
8643 * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
8644 variable `area'.
8645
f00691a3 86462001-10-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
d492b584 8647
c2d53558 8648 * search.c (scan_newline): Remove unused variable `selective_display'.
d492b584 8649
e2a57b34
MB
86502001-10-25 Miles Bader <miles@gnu.org>
8651
8652 * dispextern.h (struct image): Add `background',
8653 `background_valid', and `background_transparent' fields.
8654 (image_background, image_background_transparent): New declarations.
8655 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
8656 * xfns.c (image_background, image_background_transparent)
8657 (four_corners_best): New functions.
c2d53558 8658 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
e2a57b34
MB
8659 (gs_format): Add `:background' entry.
8660 (lookup_image): Set IMG's background color if specified.
8661 (pbm_load, xbm_load_image, png_load): Set IMG's background field
8662 when appropriate.
8663 (x_clear_image_1): Reset `background_valid' and
8664 `background_transparent_valid' fields.
8665 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
8666 calculating it here. Set IMG's background_transparent field.
8667 (enum xpm_keyword_index): Add XPM_BACKGROUND.
8668 (enum png_keyword_index): Add PNG_BACKGROUND.
8669 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
8670 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
8671 (enum gif_keyword_index): Add GIF_BACKGROUND.
8672 (enum gs_keyword_index): Add GS_BACKGROUND.
c2d53558 8673 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
e2a57b34
MB
8674 Pre-calculate image background color where necessary.
8675 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
8676 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
8677 color to use for image glyph reliefs.
8678
b547b6e8
GM
86792001-10-24 Gerd Moellmann <gerd@gnu.org>
8680
d9e3b8c6
GM
8681 * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
8682 in full-width rows.
c2d53558 8683
b547b6e8
GM
8684 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
8685 Fix clearing of area not covered by scroll bar.
8686
f00691a3 86872001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2beb36f9
PJ
8688
8689 * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
8690 and `real_start'.
c2d53558 8691 (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
2beb36f9
PJ
8692 (glyph_rect): Remove unused variable `area'.
8693
76cb5e06
GM
86942001-10-24 Gerd Moellmann <gerd@gnu.org>
8695
bdbdebff 8696 * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
c2d53558
SM
8697
8698 * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
8699 (row_containing_pos): Take additional argument DY.
8700 Treat rows ending in middle of char differently.
62e33982
GM
8701 (display_line): Handle tabs on window systems differently.
8702
8703 * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
8704 with additional argument.
8705
8706 * dispextern.h (row_containing_pos): Adjust prototype.
8707
76cb5e06
GM
8708 * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
8709 (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
8710 (try_window_id, try_window_reusing_current_matrix)
8711 (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
6c465a15 8712 (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
76cb5e06 8713
f00691a3 87142001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
996fee11 8715
c9e60620
PJ
8716 * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
8717 gnuemacs).
8718 (HAVE_BOXES): Fix typo in comment.
8719 (push_menu_pane): Fix typo in comment.
8720
3b552d56
PJ
8721 * xdisp.c: (display_prop_string_p): Remove unused local declaration
8722 of `Qwhen'.
8723 (single_display_prop_string_p): Remove unused local declarations
8724 of `Qwhen' and `Qmargin'.
8725 (string_buffer_position): Remove unused variable `around'.
8726 (store_frame_title): Remove unused variable `width'.
8727
15c565ac
PJ
8728 * window.c: Don't define max.
8729 (coordinates_in_window): Remove unused variable `uy'.
8730
a8818eb9
PJ
8731 * widget.c: Don't define max.
8732
996fee11
PJ
8733 * process.c: Don't define max.
8734 (create_process): Remove unused variable `buffer'.
8735
496e1a5b
GM
87362001-10-23 Gerd Moellmann <gerd@gnu.org>
8737
c2d53558 8738 * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
496e1a5b 8739
5905ae8b
EZ
87402001-10-23 Eli Zaretskii <eliz@is.elta.co.il>
8741
8742 * xfaces.c (Finternal_set_lisp_face_attribute)
8743 [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
8744 frame is on a windowed display.
8745
24db49fb
GM
87462001-10-23 Gerd Moellmann <gerd@gnu.org>
8747
c2d53558
SM
8748 * dispnew.c (sync_window_with_frame_matrix_rows):
8749 Fix handling of windows which aren't full-width, fix handling
c51488cd
GM
8750 of marginal areas.
8751
c2d53558 8752 * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
24db49fb 8753
f0487f05
EZ
87542001-10-23 Andreas Schwab <schwab@suse.de>
8755
8756 * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
8757 LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
8758
f0a48a01
GM
87592001-10-23 Gerd Moellmann <gerd@gnu.org>
8760
c2d53558 8761 * xterm.c (x_draw_glyphs): Remove parameters READ_START and
f0a48a01
GM
8762 REAL_END. Notice if cursor gets overwritten.
8763 (notice_overwritten_cursor): Take X positions as parameters.
8764 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
8765 around call to x_draw_glyphs.
8766
f00691a3 87672001-10-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
a50a10a0 8768
fc11dff0
PJ
8769 * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
8770 instead of C) and usage.
a50a10a0 8771
fc11dff0
PJ
8772 * editfns.c (char-to-string): Fix argument names (use CHAR instead
8773 of C) and usage.
a50a10a0
PJ
8774
8775 * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
8776 `left', `max_width' and `max_height'.
8777
8738febd
GM
87782001-10-23 Gerd Moellmann <gerd@gnu.org>
8779
8780 * xdisp.c (display_line): For a tab continued to the next line,
8781 set row's ends_in_middle_of_char_p.
8782
653c329b
GM
87832001-10-22 Gerd Moellmann <gerd@gnu.org>
8784
8785 * xdisp.c (display_line): Fix computation of continuation lines
8786 width for TABs.
8787
f00691a3 87882001-10-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
f958c5ac 8789
7ba51063
PJ
8790 * xdisp.c (build_desired_tool_bar_string): Remove unused variable
8791 `Qlaplace'.
8792
f958c5ac
PJ
8793 * fileio.c: Remove unused code.
8794
eb360291
MB
87952001-10-22 Miles Bader <miles@gnu.org>
8796
8797 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
8798 (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
8799 Remove `DOC_STRINGS_IN_COMMENTS' cases.
8800
98515cf0
JR
88012001-10-21 Jason Rumney <jasonr@gnu.org>
8802
8803 * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
8804
93026d88
EZ
88052001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
8806
8807 * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
8808 (Finsert_string): Avoid the multi-line string literals warning.
8809
c9a95b79
MB
88102001-10-22 Miles Bader <miles@gnu.org>
8811
8812 * doc.c (Vhelp_manyarg_func_alist): Variable removed.
8813 (Fdocumentation): Don't use it.
8814 (syms_of_doc): Don't initialize it.
8815
8816 * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
8817 * print.c (Fwith_output_to_temp_buffer): Likewise.
8818 * window.c (Fsave_window_excursion): Likewise.
c2d53558 8819 * editfns.c (Fsave_excursion, Fsave_current_buffer)
c9a95b79 8820 (Fsave_restriction): Likewise.
c2d53558
SM
8821 * eval.c (Frun_hooks, Frun_hook_with_args)
8822 (Frun_hook_with_args_until_failure)
8823 (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
8824 (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
8825 (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
c9a95b79
MB
8826 (Funwind_protect, Fcondition_case): Likewise.
8827 * coding.c (Ffind_operation_coding_system): Likewise.
8828 * keyboard.c (Ftrack_mouse): Likewise.
8829
a3b10252
MB
88302001-10-21 Miles Bader <miles@gnu.org>
8831
c2d53558 8832 * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
a3b10252
MB
8833 (Fmake_hash_table): Add usage: string to doc string.
8834 * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
c2d53558 8835 (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
a3b10252
MB
8836 (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
8837 * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
8838 (Fml_prefix_argument_loop): Likewise.
8839
f00691a3 88402001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
c6f73eec 8841
c2d53558 8842 * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
888ebd13 8843
c6f73eec
PJ
8844 * sysdep.c (init_sys_modes): Change doc-string comments to `new
8845 style' [w/`doc:' keyword].
8846
8847 * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
8848 * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
8849 comments to `new style' [w/`doc:' keyword].
8850
3cf3436e
JR
88512001-10-21 Jason Rumney <jasonr@gnu.org>
8852
8853 * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
8854
c169b8f1
JR
8855 * w32term.c (remember_mouse_glyph): New function.
8856 (w32_mouse_position): Use it.
8857 (note_mouse_movement): If the mouse moved off the glyph, remember
8858 its new position.
c2d53558 8859
4fdd691b
JR
8860 * w32term.h (struct w32_output): Correct spelling of x_compatible.
8861 (w32_display_info): Add mouse_face_overlay.
8862
c169b8f1
JR
8863 * w32term.c (notice_overwritten_cursor): Renamed from
8864 note_overwritten_text_cursor. Rewritten to take glyph widths into
8865 account.
8866 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
8867 (fast_find_string_pos): New function.
8868 (fast_find_position): Return the correct vpos. Add parameter
8869 STOP. In the final row, stop before glyphs having STOP as object.
8870 Don't consider glyphs that are not from a buffer.
8871 (fast_find_position) [0]: Add a presumably more correct version
8872 for after 21.1.
8873 (expose_window_tree, expose_frame): Don't compute intersections here.
8874 (expose_window): Do it here instead.
8875 (expose_window_tree, expose_window, expose_line): Return 1 when
8876 overwriting mouse-face.
8877 (expose_window): If W is the window currently being updated, mark
8878 the frame garbaged.
8879 (expose_frame): If mouse-face was overwritten, redo it.
8880 (x_use_underline_position_properties): New variable.
8881 (syms_of_xterm): DEFVAR_BOOL it.
8882 (x_draw_glyph_string): Add comment to use it in future.
8883 (x_draw_glyph_string): Restore clipping after drawing box.
8884 Fix a computation of the underline position.
8885 (w32_get_glyph_string_clip_rect): Minor cleanup.
8886 (x_fill_stretch_glyph_string): Remove an assertion.
8887 (x_produce_glyphs): Don't convert multibyte characters
8888 to unibyte characters in unibyte buffers.
8889 (cursor_in_mouse_face_p): New function.
8890 (x_draw_stretch_glyph_string): Use it to choose a different GC
8891 when drawing a cursor within highlighted text. Don't draw
8892 background again if it has already been drawn.
8893 (x_draw_glyph_string_box): Don't draw a full-width
8894 box just because the glyph row's full_width_p flag is set.
8895 (x_draw_glyphs): Fix computation of rightmost x for
8896 full-width rows.
8897 (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
8898 (w32_draw_relief_rect): Extend left shadow to the bottom and left;
8899 change bottom shadow accordingly. Some cleanup.
8900 (x_update_window_end): Handle overwritten mouse face
8901 also for tool bar windows.
8902 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
8903 DRAW is DRAW_IMAGE_RAISED.
8904 (clear_mouse_face): Return 1 if text with mouse face was
2c568af5
SM
8905 actually redrawn. Make the function static.
8906 Reset dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
c169b8f1
JR
8907 optimize away highlighting if we pass over that same overlay again.
8908 (note_mouse_highlight): Call mouse_face_overlay_overlaps
8909 to detect a case where we have to highlight a different region
8910 despite not having left the currently highlighted region.
8911 Set mouse_face_overlay in the x_display_info. Avoid changing the
8912 mouse pointer shape when show_mouse_face has already done it, or
8913 there is no need. Handle mouse-face and help-echo in strings.
8914 (glyph_rect): New function.
8915 (w32_mouse_position): Use it to raise the threshold for mouse
8916 movement event generation.
8917 (w32_initialize_display_info): Initialize the x_display_info's
8918 mouse_face_overlay.
8919 (w32_set_vertical_scroll_bar): Don't clear a zero height
8920 or width area.
8921 (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
8922 a widget to zero height.
8923
3cf3436e 8924 * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
4fdd691b 8925 Protect unibyte strings created by replacing their multibyte
3cf3436e
JR
8926 equivalents in menu_items.
8927 (w32_menu_show): Don't overwrite an item's name with its key
8928 description in case the description is a multibyte string.
8929 (single_submenu): Some cleanup.
8930
8931 * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
8932 (postprocess_image): New function.
8933 (lookup_image): Call it for all image types except PostScript.
8934 (x_kill_gs_process): Call postprocess_image.
8935 (tiff_error_handler, tiff_warning_handler): New functions.
8936 (tiff_load): Install them as handlers.
8937 (x_kill_gs_process): Recognize if someone has cleared the image
8938 cache under us.
8939 (valid_image_p): Protect better against invalid image
8940 specifications. Previous code could signal an error.
8941 (Fx_hide_tip, Fshow_tip): Doc fix.
8942 (Fv_max_tooltip_size): New variable.
8943 (syns_of_xfns): DEFVAR_LISP it.
8944 (Fx_show_tip): Add parameter TEXT. Set the tip frame's root
8945 window buffer to *tip* right after creating the frame. Set frame's
8946 window_width. Use a maximum tooltip size specified by
8947 Vx_max_tooltip_size, if that has valid contents.
8948 (compute_tip_xy): Add parameters WIDTH and HEIGHT.
8949 Make sure the tooltip is completely visible.
8950 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
8951 (Fx_create_frame): Adjust the frame's height for presence
8952 of the tool bar before calling x_figure_window_size.
8953 (x_set_tool_bar_lines): Clear the tool bar window's current matrix
8954 when the window gets smaller.
8955 (x_set_foreground_color): Set frame's cursor_pixel.
8956 (x_set_foreground_color, x_set_background_color): Cleaned up.
8957 (x_set_font): Handle case of x_new_fontset returning the same name
8958 as before, although there was a change in fontsets.
8959
386ca361
MB
89602001-10-21 Miles Bader <miles@gnu.org>
8961
c2d53558 8962 * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
386ca361
MB
8963 (Flogxor): Add usage: string to doc string.
8964 * charset.c (Fstring): Likewise.
8965 * callproc.c (Fcall_process_region, Fcall_process): Likewise.
8966 * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
8967
f00691a3 89682001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14ff1ee0 8969
03be2694
PJ
8970 * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
8971
8972 * alloc.c: Reindent DEFUNs with doc: keywords.
8973
8974 * abbrev.c (Finsert_abbrev_table_description): Reindent.
8975
14ff1ee0
PJ
8976 * frame.c: Change doc-string comments to `new style' [w/`doc:'
8977 keyword].
8978
2f147815 8979See ChangeLog.9 for earlier changes.
6922b018
KH
8980
8981;; Local Variables:
49b3bd82 8982;; coding: iso-2022-7bit
6922b018 8983;; End:
2a34a036 8984
2f147815 8985 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
2a34a036
GM
8986 Copying and distribution of this file, with or without modification,
8987 are permitted provided the copyright notice and this notice are preserved.