(copy_overlays): Use EMACS_INT for positions.
[bpt/emacs.git] / src / ChangeLog
CommitLineData
dde13196
PE
12003-07-13 Paul Eggert <eggert@twinsun.com>
2
3 GCC 3.3 (sparc) no longer puts "int foo = 0;" into data; it
4 puts it into BSS instead, at least on Solaris 8 and 9.
5 This is a valid optimization, and it may occur on other platforms,
6 so Emacs should not assume that initializing a static variable to
7 zero puts it into data.
8 * alloc.c (pure, staticvec):
9 Initialize these arrays to nonzero, so that they're not
10 put into BSS by that optimization.
11
a801bc34
SM
122003-07-13 Stefan Monnier <monnier@cs.yale.edu>
13
14 * alloc.c (BLOCK_PADDING): Rename from ABLOCKS_PADDING. Update users.
15 (lisp_align_malloc): Use posix_memalign is available.
16 (ABLOCKS_BASE): Use HAVE_POSIX_MEMALIGN as an optimization.
17 (STRING_BLOCK_SIZE): Rename from STRINGS_IN_STRING_BLOCK
18 for consistency. Update users.
19
0c8b2afa
RS
202003-07-13 Richard M. Stallman <rms@gnu.org>
21
22 * s/netbsd.h (START_FILES_1, END_FILES_1): Always define them.
23
668c2ab0
JB
242003-07-13 Terje Rosten <terjeros@phys.ntnu.no>
25
26 * xterm.c (x_bitmap_icon,x_wm_set_icon_pixmap): Modify to add mask,
27 and use the Gtk+ function gtk_window_icon_from_file if available.
28
29 * xfns.c (x_bitmap_mask, x_create_bitmap_mask): New functions to
30 handle mask of bitmaps.
31 (x_allocate_bitmap_record, x_destroy_bitmap): Modify to handle the
32 mask property.
33 (xg_set_icon): New function, wrapper for gtk_window_icon_from_file.
34
35 * xterm.h (xg_set_icon): New function.
36
800bebe3
RS
372003-07-12 Paul Eggert <eggert@twinsun.com>
38
39 * unexelf.c (unexec): Consider a section to precede the .bss
40 section if its addresses overlap that of .bss.
41
69e38995
RS
422003-07-12 Richard M. Stallman <rms@gnu.org>
43
44 * Makefile.in (CFLAGS) [!OPTIMIZE]: Set CFLAGS to -g.
45
46 * config.in (HAVE_CRTIN): Add #undef.
47 (INLINE): Really inline only if OPTIMIZE is defined.
48
49 * s/netbsd.h (START_FILES, LIB_STANDARD): Use START_FILES_1,
50 END_FILES_1.
51 (START_FILES_1, END_FILES_1): New macros (conditional).
a801bc34 52 (LD_SWITCH_SYSTEM_TEMACS): Define.
69e38995
RS
53
54 * s/openbsd.h: Don't include bsd4-3.h.
a801bc34
SM
55 (TERMINFO): Define.
56 (LIBS_TERMCAP): Define.
57 (LD_SWITCH_SYSTEM): Define (two definitions).
69e38995
RS
58
59 * xfns.c: Include libpng/png.h instead of png.h.
60
f1d0c238
AS
612003-07-11 Andreas Schwab <schwab@suse.de>
62
63 * buffer.c (modify_overlay): Update prototype.
64 * lisp.h (adjust_overlays_for_insert, adjust_overlays_for_delete):
65 Likewise.
66
5f6bf5fe
SM
672003-07-09 Stefan Monnier <monnier@cs.yale.edu>
68
69 * lisp.h (VALBITS): Define in terms of GCTYPEBITS.
70 (struct interval): Move to intervals.h.
71 (struct Lisp_Marker): Use EMACS_INT for position info.
72 (forward_point): Remove prototype of defunct function.
73 (Qmodification_hooks, Qrear_nonsticky, Fnext_property_change)
74 (Fget_text_property, Fset_text_properties, Ftext_propertes_not_all)
75 (syms_of_textprop, set_text_properties): Remove prototypes that are
76 already in intervals.h.
77
78 * intervals.h (struct interval): Move from lisp.h.
79 Use EMACS_INT for position and size info.
80
81 * coding.c: Include intervals.h for Fset_text_properties.
82
83 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
84 position and length information.
85
2765b457
SM
862003-07-09 Stefan Monnier <monnier@cs.yale.edu>
87
88 * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
89 position and length information.
90
2410d73a
SM
912003-07-09 Stefan Monnier <monnier@cs.yale.edu>
92
93 Change overlays_after and overlays_before so the overlays themselves
94 are linked into lists, rather than using cons cells. After all each
95 Lisp_Misc already occupies 5 words, so we can add a `next' field to
96 Lisp_Overlay for free and save up one cons cell per overlay (not
97 to mention one indirection when traversing the list of overlay).
98
99 * lisp.h (struct Lisp_Overlay): New field `next'.
100
101 * buffer.h (struct buffer): Change overlays_before and overlays_after
102 from Lisp lists of overlays to pointers to overlays.
103
104 * buffer.c (overlay_strings, recenter_overlay_lists):
105 Fix typo in eassert in last commit.
106 (unchain_overlay): New function.
107 (add_overlay_mod_hooklist): Use AREF.
108 (copy_overlays, reset_buffer, overlays_at, overlays_in)
109 (overlay_touches_p, overlay_strings, recenter_overlay_lists)
110 (fix_overlays_in_range, fix_overlays_before, Fmake_overlay)
111 (Fmove_overlay, Fdelete_overlay, Foverlay_lists)
112 (report_overlay_modification, evaporate_overlays, init_buffer_once):
113 Adjust to new type of overlays_(before|after).
114
115 * alloc.c (mark_object): Mark the new `next' field of overlays.
116 (mark_buffer): Manually mark the overlays_(after|before) fields.
117
118 * coding.c (run_pre_post_conversion_on_str):
119 * editfns.c (overlays_around):
120 * xdisp.c (load_overlay_strings):
121 * fileio.c (Finsert_file_contents):
122 * indent.c (current_column):
123 * insdel.c (signal_before_change, signal_after_change):
124 * intervals.c (set_point_both):
125 * print.c (temp_output_buffer_setup): Use new type for
126 overlays_(before|after).
127
04812929
SM
1282003-07-08 Stefan Monnier <monnier@cs.yale.edu>
129
130 * buffer.c (report_overlay_modification): Don't run hooks while
131 traversing the list of overlays.
132
133 * buffer.h (struct buffer): Use an int for overlay_center.
134 (overlays_at, evaporate_overlays, recenter_overlay_lists)
135 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
136
137 * buffer.c (reset_buffer, recenter_overlay_lists)
138 (adjust_overlays_for_insert, adjust_overlays_for_delete)
139 (fix_overlays_in_range, Fmake_overlay, Fmove_overlay)
140 (evaporate_overlays, init_buffer_once): Update use of overlay_center.
141 (overlays_at, evaporate_overlays, recenter_overlay_lists)
142 (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
143
144 * xdisp.c (fast_find_position): Remove unused var.
145
146 * cmds.c (Qexpand_abbrev): New sym.
147 (syms_of_cmds): Initialize it.
148 (internal_self_insert): Use it to call expand-abbrev.
149
2e7ecf15
KS
1502003-07-09 Kim F. Storm <storm@cua.dk>
151
152 * xterm.c (use_xim) [!USE_XIM]: Default to disable XIM if emacs
153 was configured with --without-xim.
42f81f64 154 (x_term_init) [!USE_XIM]: Use `useXIM' resource to turn on XIM.
2e7ecf15 155
c6de56a0
RS
1562003-07-07 Richard M. Stallman <rms@gnu.org>
157
158 * xdisp.c (reseat_1): Set it->area to TEXT_AREA.
159
160 * alloc.c (Fgarbage_collect): Doc fix.
161
b93fb365
KH
1622003-07-07 Nozomu Ando <nand@mac.com> (tiny change)
163
164 * buffer.c (Fkill_buffer): Clear charpos cache if necessary.
165
bfe1a3f7
SM
1662003-07-06 Stefan Monnier <monnier@cs.yale.edu>
167
04812929
SM
168 * minibuf.c (read_minibuf): UNGCPRO before returning.
169 (Ftry_completion, Fall_completions): Doc fix.
170
bfe1a3f7
SM
171 * alloc.c (live_float_p): Check that p is not past the `floats' array,
172 now that `floats' is not the last element of the struct any more.
173
ee79d1aa
JR
1742003-07-06 Jason Rumney <jasonr@gnu.org>
175
176 * w32term.h (ClipboardSequence_Proc): New type.
177
178 * w32fns.c (clipboard_sequence_fn): New variable.
179 (globals_of_w32fns): Initialize it.
180
181 * w32select.c (last_clipboard_sequence_number): New variable.
182 (Fw32_set_clipboard_data, Fw32_get_clipboard_data): Use sequence
183 number if possible.
184
49723c04
SM
1852003-07-06 Stefan Monnier <monnier@cs.yale.edu>
186
4698665f
SM
187 * m/amdx86-64.h (MARKBIT):
188 * m/ia64.h (MARKBIT): Remove definition since lisp.h does not compare
189 MARKBIT and ARRAY_MARK_FLAG any more.
190
191 * m/hp800.h (XSETMARKBIT):
192 * m/sr2k.h (XSETMARKBIT):
193 * lisp.h (XSETMARKBIT): Remove unused macro.
194
49723c04
SM
195 * lisp.h (mark_object): Change prototype.
196
197 * alloc.c (mark_object): Change arg *Lisp_Object -> Lisp_Object.
198 (last_marked): Change accordingly.
199 (mark_interval, mark_maybe_object, mark_maybe_pointer)
200 (Fgarbage_collect, mark_glyph_matrix, mark_face_cache, mark_image)
201 (mark_buffer): Update calls to mark_object.
202
203 * bytecode.c (mark_byte_stack):
204 * fns.c (sweep_weak_table):
205 * keyboard.c (mark_kboards): Update calls to mark_object.
206
1d660eca
JR
2072003-07-06 Jason Rumney <jasonr@gnu.org>
208
209 * alloc.c (struct ablock): Only include padding when there is some.
210
618b5ae4
SM
2112003-07-04 Stefan Monnier <monnier@cs.yale.edu>
212
213 * alloc.c (ALIGN): Add casts to simplify usage.
214 (BLOCK_ALIGN, BLOCK_BYTES, ABLOCKS_PADDING, ABLOCKS_SIZE)
215 (ABLOCKS_BYTES, ABLOCK_ABASE, ABLOCKS_BUSY, ABLOCKS_BASE): New macros.
216 (struct ablock, struct ablocks): New types.
217 (free_ablock): New global var.
218 (lisp_align_malloc, lisp_align_free): New functions.
219 (FLOAT_BLOCK_SIZE): Redefine in terms of BLOCK_BYTES.
220 (struct float_block): Reorder and add gcmarkbits.
221 (GETMARKBIT, SETMARKBIT, UNSETMARKBIT, FLOAT_BLOCK, FLOAT_INDEX)
222 (FLOAT_MARKED_P, FLOAT_MARK, FLOAT_UNMARK): New macros.
223 (init_float, make_float): Use lisp_align_malloc.
224 (free_float, live_float_p): Don't use `type' any more.
225 (make_float): Use FLOAT_UNMARK to access to mark bit.
226 (mark_maybe_object, mark_maybe_pointer, survives_gc_p):
227 Use FLOAT_MARKED_P to access the mark bit.
228 (pure_alloc): Simplify use of ALIGN.
229 (mark_object): Use FLOAT_MARK to access the mark bit.
230 (gc_sweep): Use new macros to access the float's mark bit.
231 (init_alloc_once): Init free_ablock.
232
233 * lisp.h (struct Lisp_Float): Remove unused field `type'.
234
3ef06d12
SM
2352003-06-27 Stefan Monnier <monnier@cs.yale.edu>
236
237 * alloc.c (VECTOR_MARK, VECTOR_UNMARK, VECTOR_MARKED_P): New macros.
238 (GC_STRING_BYTES): Don't mask markbit (it's only used on `size').
239 (allocate_buffer): Move.
240 (string_bytes): Don't mask markbit of `size_byte'.
241 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
242 (mark_object, mark_buffer, survives_gc_p, gc_sweep):
243 Use the `size' field of buffers (rather than the `name' field) for
244 the mark bit, as is done for all other vectorlike objects.
245 Use the new macros to access the mark bit of vectorlike objects.
246
e81043aa
RS
2472003-06-26 Richard M. Stallman <rms@gnu.org>
248
249 * puresize.h (BASE_PURESIZE): Increment base size.
250
251 * xdisp.c (fast_find_position): Enable Gerd's new definition.
252
253 * xterm.c (xim_initialize): Undo previous change.
254
2d0834cc
SM
2552003-06-26 Stefan Monnier <monnier@cs.yale.edu>
256
257 * alloc.c (survives_gc_p): Simplify.
258
259 * buffer.c (set_buffer_internal_1): Test CONSP for lists.
260
261 * window.c (Fset_window_dedicated_p): Simplify.
262 (display_buffer_1): Don't raise the win from which minibuf was entered.
263 (temp_output_buffer_show): Don't assume BEG == 1. Simplify.
264 (Fminibuffer_selected_window): Simplify.
265
266 * buffer.h (struct buffer_text): Lisp_Object `markers' => Lisp_Marker.
267
268 * lisp.h (unchain_marker): Lisp_Object arg => Lisp_Marker.
269 (struct Lisp_Marker): Lisp_Object `chain' => Lisp_Marker `next'.
270
271 * insdel.c (check_markers, adjust_markers_for_delete)
272 (adjust_markers_for_insert, adjust_markers_for_replace)
273 (prepare_to_modify_buffer, RESTORE_VALUE):
274 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos)
275 (Fset_marker, set_marker_restricted, set_marker_both, unchain_marker)
276 (set_marker_restricted_both, Fbuffer_has_markers_at, count_markers):
277 * alloc.c (Fmake_marker, free_marker, gc_sweep):
278 * buffer.c (Fget_buffer_create, Fkill_buffer, Fset_buffer_multibyte):
279 * editfns.c (save_excursion_restore, transpose_markers):
280 * window.c (delete_window):
281 * xdisp.c (message_dolog): Update for new types.
282
d54ae3d8
JD
2832003-06-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
284
a5f696ac
JD
285 * xfaces.c (set_font_frame_param): Set default_face_done_p to zero.
286 (realize_default_face): Use default_face_done_p for the force_p
2d0834cc 287 argument to set_lface_from_font_name. Set default_face_done_p to one.
a5f696ac
JD
288
289 * frame.c (make_frame): Initialize default_face_done_p.
290
291 * frame.h (struct frame): Add default_face_done_p.
292
d54ae3d8
JD
293 * config.in: Add XRegisterIMInstantiateCallback_arg6 so it
294 will be defined.
295
2336fe58
SM
2962003-06-25 Stefan Monnier <monnier@cs.yale.edu>
297
298 * alloc.c (make_interval, Fmake_symbol, allocate_misc):
299 Initialize the new field `gcmarkbit'.
300 (mark_interval, MARK_INTERVAL_TREE): Use the new `gcmarkbit' field.
301 (mark_interval_tree): Don't mark the tree separately from the nodes.
302 (UNMARK_BALANCE_INTERVALS): Don't unmark the tree.
303 (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
304 (mark_object, survives_gc_p, gc_sweep): Use new `gcmarkbit' fields.
305
306 * lisp.h (struct interval, struct Lisp_Symbol, struct Lisp_Free)
307 (struct Lisp_Marker, struct Lisp_Intfwd, struct Lisp_Boolfwd)
308 (struct Lisp_Kboard_Objfwd, struct Lisp_Save_Value)
309 (struct Lisp_Buffer_Local_Value, struct Lisp_Overlay)
310 (struct Lisp_Objfwd, struct Lisp_Buffer_Objfwd): Add `gcmarkbit' field.
311
bcea31c2
DL
3122003-06-24 Dave Love <fx@gnu.org>
313
314 * xterm.c (xim_initialize): Use XRegisterIMInstantiateCallback_arg6.
315
316 * strftime.c: Test HAVE_SYS__MBSTATE_H, not __hpux. Merge changes
317 from gnulib.
318
2601f59e
RS
3192003-06-21 Richard M. Stallman <rms@gnu.org>
320
321 * fileio.c (Fwrite_region): Alternate messages
322 for append and partial write.
323
324 * keyboard.c (read_key_sequence): When converting upcase fn key to
325 downcase, update fkey and keytran so `backspace' gets translated.
326
327 * keyboard.c (read_avail_input): Don't signal SIGHUP in batch mode.
328
329 * process.c (wait_reading_process_input): Don't signal SIGIO
330 in batch mode.
331
b5d2c621
KH
3322003-06-17 Kenichi Handa <handa@m17n.org>
333
334 * Makefile.in (xselect.o): Don't depend on charset.h, coding.h,
335 composite.h.
336
337 * xselect.c: Don't include charset.h, coding.h, composite.h.
338 (Qforeign_selection): New variable.
339 (syms_of_xselect): Intern and static it.
340 (selection_data_to_lisp_data): Return a unibyte string made from
341 data with `foreign-selection' text property.
342
6793bc63
SM
3432003-06-15 Stefan Monnier <monnier@cs.yale.edu>
344
345 * termhooks.h (EVENT_INIT): New macro.
346
347 * keyboard.c (mark_kboards): Move from alloc.c. Mark kbd_buffer.
348
349 * alloc.c (mark_kboards): Move to keyboard.c.
350
351 * keyboard.c (record_asynch_buffer_change, read_avail_input):
352 * xterm.c (x_dispatch_event):
353 * xmenu.c (find_and_call_menu_selection):
354 * xdisp.c (handle_tool_bar_click):
355 * w32menu.c (menubar_selection_callback):
356 * sysdep.c (kbd_input_ast, read_input_waiting):
357 * msdos.c (dos_rawgetc):
358 * macterm.c (mac_check_for_quit_char):
359 * macmenu.c (menubar_selection_callback):
360 * gtkutil.c (xg_tool_bar_callback): Don't pass uninitialized
361 data to kbd_buffer_store_event.
362
b3ea810c
KS
3632003-06-15 Kim F. Storm <storm@cua.dk>
364
365 * xdisp.c (x_fix_overlapping_area): Always use area relative X
6793bc63 366 to fix redisplay problem with tall characters (such as \e,AC\e(B).
b3ea810c 367
b8f75eda
KG
3682003-06-13 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
369
370 * fileio.c (Fcopy_file): Doc fix: copies file modes, too.
371
ba92ce48
KH
3722003-06-12 Kenichi Handa <handa@m17n.org>
373
374 * fileio.c (Fwrite_region): Save and restore restriction.
375
b80263be
DL
3762003-06-12 Dave Love <fx@gnu.org>
377
378 * alloca.c (alloca): Declare arg as size_t.
379
6793bc63
SM
380 * sysdep.c: Remove redundant include of unistd.h, stdlib.h.
381 Use HAVE_DECL_SYS_SIGLIST, not SYS_SIGLIST_DECLARED.
b80263be 382
b23c0a83
DL
3832003-06-11 Dave Love <fx@gnu.org>
384
385 * search.c (shrink_regexp_cache): Use xrealloc.
386 (syms_of_search): Use xmalloc.
387
700e47c2
KS
3882003-06-10 Kim F. Storm <storm@cua.dk>
389
390 * xdisp.c (phys_cursor_in_rect_p): Fix 2003-05-24 change.
391 Adjust phys_cursor.x to be relative to window box, rather than
392 text area before checking -- to ensure cursor is redrawn when
393 exposing window.
394 Note: This also fixes a similar (older) bug if display margins
395 are present.
396
f11aa0b2
KH
3972003-06-06 Kenichi Handa <handa@m17n.org>
398
399 * coding.c (encoding_buffer_size): If coding->type is
400 coding_type_ccl, double magnification on CRLF encoding.
401
3d143690
JR
4022003-06-06 Jason Rumney <jasonr@gnu.org>
403
404 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): New constant.
405 (w32_get_string_resource): Try SYSTEM_DEFAULT_RESOURCES last.
406
407 * xfaces.c (Finternal_face_x_get_resource): Do it on Windows and
408 Mac too.
409
f16205ca
DL
4102003-06-05 Dave Love <fx@gnu.org>
411
b23c0a83
DL
412 * strftime.c: Merge changes from gnulib.
413
f16205ca
DL
414 * mktime.c (__mktime_internal): Merge changes from gnulib
415 involving year 69 and dst2.
416
417 Changes to merge with gnulib version and be consistent with the
418 autoconf test:
419
6793bc63
SM
420 * getloadavg.c: Set NLIST_STRUCT from HAVE_NLIST_H.
421 Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not NLIST_NAME_UNION.
f16205ca
DL
422 [HAVE_LOCALE_H]: Include locale.h.
423 (getloadavg) [HAVE_SETLOCALE]: Run sscanf in C locale.
424
9b87a0bc
KS
4252003-06-05 Kim F. Storm <storm@cua.dk>
426
427 * window.c (coordinates_in_window): Convert X and Y to window
428 relative coordinates inside mode-line and header-line parts.
429 Convert X and Y to margin area relative coordinates inside left
430 and right display margin parts.
431
5a8a15ec
JR
4322003-06-05 Jason Rumney <jasonr@gnu.org>
433
434 * w32fns.c (add_system_logical_colors_to_map): New function.
435 (Fx_open_connection): Use it.
436
01ed8ff1
SM
4372003-06-04 Stefan Monnier <monnier@cs.yale.edu>
438
439 * process.c (allocate_pty): Revert part of the previous patch.
440 (Faccept_process_output): Simplify.
441
b427b65d
JR
4422003-06-04 Jason Rumney <jasonr@gnu.org>
443
444 * termhooks.h (enum event_kind): Remove MOUSE_WHEEL_EVENT.
445
446 * keyboard.c (Qmouse_wheel, mouse_wheel_syms)
447 (lispy_mouse_wheel_names): Remove.
448 (syms_of_keyboard): Remove Qmouse_wheel and mouse_wheel_syms.
449 Always define drag_and_drop_syms.
450
451 * macterm.c (XTread_socket): Map mouse wheel events to Emacs
452 WHEEL_EVENT events.
453
914a8c47
SM
4542003-06-03 Stefan Monnier <monnier@cs.yale.edu>
455
01ed8ff1
SM
456 * xdisp.c (update_tool_bar): Add missing UNGCPRO.
457
914a8c47
SM
458 * buffer.c (init_buffer_once): Make kill-buffer-hook permanent-local.
459
adcb132c
JD
4602003-06-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
461
462 * gtkutil.c (make_menu_item): Make sure we don't crash on a NULL
463 menu item label.
464
be781fa7
RS
4652003-06-03 Richard M. Stallman <rms@gnu.org>
466
467 * window.c (Fwindow_edges): Doc fix.
468 (Fwindow_pixel_edges, Fwindow_inside_edges)
469 (Fwindow_inside_pixel_edges): New functions.
470 (syms_of_window): defsubr them.
471
472 * window.h (WINDOW_LEFT_FRINGE_COLS, WINDOW_RIGHT_FRINGE_COLS)
473 (WINDOW_MODE_LINE_LINES, WINDOW_HEADER_LINE_LINES): New macros.
474
914a8c47
SM
4752003-06-02 Stefan Monnier <monnier@cs.yale.edu>
476
477 * dispnew.c (Fsit_for): Don't lie about the number of args.
478
5b07197a
DL
4792003-06-02 Dave Love <fx@gnu.org>
480
481 * callproc.c: Use HAVE_FCNTL_H, not USG5.
482 (syms_of_callproc) <process-environment>: Doc fix.
483
484 * doc.c: Use HAVE_FCNTL_H, not USG5.
485
486 * xfaces.c (font_rescale_ratio): Fix for K&R.
487
488 * termcap.c: Use HAVE_FCNTL_H, not _POSIX_VERSION.
489
490 * mem-limits.h: Use HAVE_SYS_RESOURCE_H, HAVE_SYS_VLIMIT_H.
491
492 * lread.c [HAVE_FCNTL_H]: Include fcntl.h.
493
494 * gtkutil.c: Include keyboard.h, charset.h, coding.h.
495 (xg_create_frame_widgets): Use ENCODE_UTF_8.
496
497 * xterm.c (Qutf_8): Moved to coding.c
498
499 * xmenu.c (ENCODE_MENU_STRING): New.
500 (list_of_panes, list_of_items, digest_single_submenu, xmenu_show):
501 Use it.
502
503 * coding.h (ENCODE_UTF_8): New.
504 (Qutf_8): Declare.
505
506 * coding.c (Qutf_8): New.
507 (syms_of_coding): Intern it.
508
509 * fns.c: Doc fixes.
510
7335b336
KH
5112003-06-02 Kenichi Handa <handa@m17n.org>
512
513 * buffer.c (Fset_buffer_multibyte): Fix previous change.
514
914a8c47
SM
5152003-06-01 Stefan Monnier <monnier@cs.yale.edu>
516
517 * lread.c (openp): Make sure STR is a string.
518
9862c135
JR
5192003-06-01 David Ponce <david@dponce.com>
520
521 * termhooks.h (enum event_kind): Added new WHEEL_EVENT event.
522 Declare MOUSE_WHEEL_EVENT only if MAC_OSX defined.
523
524 * keyboard.c (Qmouse_wheel): Declare only if MAC_OSX defined.
525 (mouse_wheel_syms, lispy_mouse_wheel_names): Likewise.
526 (discard_mouse_events): Discard WHEEL_EVENT events too.
527 (lispy_wheel_names, wheel_syms): New.
528 (syms_of_keyboard): Init and staticpro `wheel_syms'. Init and
529 staticpro `Qmouse_wheel' and `mouse_wheel_syms' only if MAC_OSX
530 defined.
914a8c47 531 (make_lispy_event): Add WHEEL_EVENT handler.
9862c135
JR
532
533 * w32term.c (construct_mouse_wheel): Construct WHEEL_EVENT.
534 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
535 WHEEL_EVENT events.
536
f984e73e
JPW
5372003-05-31 John Paul Wallington <jpw@gnu.org>
538
539 * Makefile.in (lisp, shortlisp): byte-run, float-sup, map-ynp, and
540 timer are in lisp/emacs-lisp.
541
1efcd78f
KH
5422003-05-31 Kenichi Handa <handa@m17n.org>
543
458c8af4
KH
544 * buffer.c (Fset_buffer_multibyte): Correctly recover a narrowed
545 region when a buffer is changed to unibyte.
546
1efcd78f
KH
547 * charset.h (VALID_LEADING_CODE_P): New macro.
548 (UNIBYTE_STR_AS_MULTIBYTE_P): Check more rigidly.
549
778e2804
KH
550 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): If coding->flags
551 is nonzero, accept multibyte form of eight-bit-control chars.
552 (decode_composition_emacs_mule): Likewise.
553 (decode_coding_emacs_mule): Likewise.
554 (encode_coding_emacs_mule): If coding->flags is nonzero, produce
555 multibyte form of eight-bit-control chars.
556
557 * fileio.c (Qauto_save_coding, auto_save_coding): New variables.
558 (Finsert_file_contents): If coding-system-for-read is bound to
559 Qauto_save_coding, use the coding system emacs-mule with special
560 setting for recovering a file.
561 (choose_write_coding_system): On auto saving, use the coding
562 system emacs-mule with special setting for auto saving.
563 (syms_of_fileio) <Qauto_save_coding>: Intern and staticpro it.
564
034060e4
KH
5652003-05-30 Kenichi Handa <handa@m17n.org>
566
567 * coding.c (ccl_coding_driver): Set ccl->eight_bit_control
568 properly before calling ccl_driver.
569
778e2804 570 * ccl.h (struct ccl_program) <eight_bit_control>: Comment fixed.
034060e4
KH
571
572 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when it is
573 nonzero.
574 (ccl_driver): Initialize extra_bytes to ccl->eight_bit_control.
575 (setup_ccl_program): Initialize ccl->eight_bit_control to zero.
576
595f5aa5
GM
5772003-05-29 Glenn Morris <gmorris@ast.cam.ac.uk>
578
579 * xfaces.c (realize_default_face): Do not abort if lface is
580 non-existent - reverts change from 2003-05-19.
581
103e0180
KH
5822003-05-29 Kenichi Handa <handa@m17n.org>
583
584 * coding.c (decode_coding_iso2022): Pay attention to the byte
585 sequence of CTEXT extended segment, and retain those bytes as is.
586
5872003-05-28 Kenichi Handa <handa@m17n.org>
588
589 * coding.c (ENCODE_UNSAFE_CHARACTER): Adjusted for the name change
590 of CODING_REPLACEMENT_CHARACTER.
591 (decode_coding_iso2022): If CODING_FLAG_ISO_SAFE, set
592 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in coding->mode, and
593 check this flag on encoding.
594 (encode_coding_sjis_big5): Check
595 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag of coding->mode.
596 (Fset_terminal_coding_system_internal): Set
597 CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in terminal_coding.mode
598 instead of setting CODING_FLAG_ISO_SAFE flag in
599 terminal_coding.flags.
600
601 * coding.h (CODING_REPLACEMENT_CHARACTER): Renamed from
602 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
603 (CODING_MODE_INHIBIT_UNENCODABLE_CHAR): New macro.
604
ff6a3bfb 6052003-05-28 Richard M. Stallman <rms@gnu.org>
45f266dc 606
ff6a3bfb
RS
607 * print.c (syms_of_print) <print-escape-nonascii>: Doc fix.
608
609 * eval.c (unbind_to): Move init of this_binding to separate statement.
45f266dc 610
1963c428
KS
6112003-05-28 Kim F. Storm <storm@cua.dk>
612
613 * xdisp.c (expose_window): Fix error in calculation of
614 window relative coordinates of area to redisplay.
615
2b5d4601
JR
6162003-05-27 Jason Rumney <jasonr@gnu.org>
617
618 * w32term.c (GET_WHEEL_DELTA_WPARAM): New macro.
619
1c64a4a2
JB
6202003-05-27 David Ponce <david@dponce.com>
621
622 Handle W32 mouse wheel events as mouse click events, like in X.
623
624 * keyboard.c (make_lispy_event) [WINDOWSNT]: Don't handle
625 MOUSE_WHEEL_EVENT anymore.
626
627 * w32term.c (construct_mouse_wheel): Result is a MOUSE_CLICK_EVENT.
628 Scrolling down/up the mouse wheel is respectively mapped to mouse
629 button 4 and 5.
630 (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
631 MOUSE_CLICK_EVENT events. Forward w32 MSH_MOUSEWHEEL events as
632 WM_MOUSEWHEEL events.
633
2d031b89
AS
6342003-05-27 Andreas Schwab <schwab@suse.de>
635
20464fdf
AS
636 * buffer.c (syms_of_buffer) <default-direction-reversed>: Doc fix.
637
2d031b89
AS
638 * xdisp.c (try_window_id): Avoid aborting if PT is inside a
639 partially visible line.
640
641 * alloc.c (Fgarbage_collect): Fix last change.
642
97bc76d4
JPW
6432003-05-26 John Paul Wallington <jpw@gnu.org>
644
645 * xfns.c (Fx_create_frame): Don't call Qface_set_after_frame_default.
646
56613f06
SM
6472003-05-25 Stefan Monnier <monnier@cs.yale.edu>
648
649 * window.c (Fset_window_buffer): Add type of `keep_margins'.
650 (Fset_window_fringes, Fset_window_scroll_bars): Declare before use.
651
652 * window.h (window_box_text_cols): Declare.
653
654 * xdisp.c (window_text_bottom_y, draw_row_fringe_bitmaps)
655 (x_draw_vertical_border): Remove unused var `f'.
656
657 * xfaces.c (build_scalable_font_name): Remove `unused var
658 pixel_size' warning.
659
660 * xfns.c (png_load): Remove `unused vars intent, image_gamma' warning.
661
662 * unexelf.c (unexec): Remove `unused var n' warning.
663
664 * strftime.c (my_strftime_localtime_r): Remove `defined but
665 unused' warning.
666
667 * process.c (allocate_pty): Remove `unused var stb' and
668 `cp might be used uninitialized' warnings.
669
670 * dispnew.c (mode_line_string): Remove unused var `f'.
671
672 * coding.c (find_safe_codings): Remove unused var `i'.
673
674 * bytecode.c (Fbyte_code): Remove `unused val' warning.
675
676 * buffer.c (Fkill_buffer): Remove unused var `list'.
677
678 * alloc.c (Fgarbage_collect): Remove `unused var tail' warning.
679
93421a1f
JD
6802003-05-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
681
682 * frame.c (make_frame): Condition want_fullscreen with
683 HAVE_WINDOW_SYSTEM.
684
c4b8aebc
JB
6852003-05-25 Juanma Barranquero <lektu@terra.es>
686
687 * window.c (Fset_window_scroll_bars): Fix typo in argument name.
688 (Fwindow_scroll_bars): Fix typo in docstring.
689
0416870b
KS
6902003-05-24 Kim F. Storm <storm@cua.dk>
691
692 The following changes serve several purposes:
693
694 1) Swap the position of fringes and display margins in windows, i.e.
695 the fringes are now displayed between the margins and the text area
696 (by default).
697
698 2) Allow fringe and scroll bar parameters to be set per-buffer and
699 per-window (like display margins). Such settings are now stored
700 in window configurations, preserved when frames are resized, and
9018a88e 701 copied when windows are split vertically or horizontally.
0416870b
KS
702 Several bugs related to display margins have been fixed.
703
704 3) Consistently use FRAME_FONT and FRAME_FONTSET macros.
9018a88e 705
0416870b
KS
706 4) Use FRAME_COLUMN_WIDTH (f) consistently throughout the code
707 rather than FRAME_WIDTH (FRAME_FONT (f)).
708
709 5) Introduce a consistent naming of variables, members and macros
710 depending on whether their value is measured in pixels or in
711 canonical columns/lines. Pixel dimensions are named *_width and
712 *_height, while canonical columns/lines are named *_cols and
713 *_lines. Pixel positions are named *_x and *_y, while column/line
714 positions are named *_col and *_line.
715
716 6) Consolidate more of the X, W32, and MAC gui code by moving
717 common data into struct frame, and generalize it for the non-gui
718 case by using suitable defaults.
719
720 7) Cleanup and consolidate the macros controlling frame and window
721 layout into frame.h and window.h, and generalize the use of the
722 various window_box_* functions (enhanced to handle the new fringe
723 position and the per-window fringe and scroll bar settings).
724
725 * frame.h (struct frame): Rename members height to text_lines,
726 width to text_cols, window_height to total_lines, window_width to
727 total_cols, new_height to new_text_lines, new_width to
728 new_text_cols. All uses changed.
729 (struct frame): New members which consolidate common members of
730 x_output, w32_output, and mac_output structures: left_pos,
731 top_pos, pixel_height, pixel_width, x_pixels_diff, y_pixels_diff,
732 win_gravity, size_hint_flags, border_width, internal_border_width,
733 line_height, fringe_cols, left_fringe_width, right_fringe_width,
734 want_fullscreen. All uses changed.
735 (struct frame): New member column_width contaning the canonical
736 column width, analogue to line_height. All uses changed.
737 (struct frame): Rename members scroll_bar_pixel_width to
738 config_scroll_bar_width, and scroll_bar_cols to
739 config_scroll_bar_cols. All uses changed.
740 (struct frame): New member scroll_bar_actual_width which
741 consolidates and renames the vertical_scroll_bar_extra member of
742 x_output, w32_output, and mac_output structures. All uses changed.
743 (FRAME_PIXEL_HEIGHT): Renamed from PIXEL_HEIGHT and moved
744 from x/w32/macterm.h files. All uses changed. Also change code
745 which referred to f->output_data...->pixel_height.
746 (FRAME_PIXEL_WIDTH): Renamed from PIXEL_WIDTH and moved
747 from x/w32/macterm.h files. All uses changed. Also change code
748 which referred to f->output_data...->pixel_width.
749 (FRAME_LINES): Renamed from FRAME_HEIGHT. All uses changed.
750 Also change code which referred to f->height.
751 (FRAME_COLS): Renamed from FRAME_WIDTH. All uses changed.
752 Also change code which referred to f->width.
753 (FRAME_NEW_HEIGHT, FRAME_NEW_WIDTH): Remove macros; change uses
754 to update new_text_lines and new_text_cols members directly.
755 (FRAME_CONFIG_SCROLL_BAR_WIDTH): Renamed from
756 FRAME_SCROLL_BAR_PIXEL_WIDTH. All uses changed.
757 (FRAME_CONFIG_SCROLL_BAR_COLS): Renamed from
758 FRAME_SCROLL_BAR_COLS. All uses changed.
759 (FRAME_LEFT_SCROLL_BAR_COLS, FRAME_RIGHT_SCROLL_BAR_COLS):
760 Renamed from FRAME_LEFT_SCROLL_BAR_WIDTH and
761 FRAME_RIGHT_SCROLL_BAR_WIDTH, resp. All uses changed.
762 (FRAME_SCROLL_BAR_AREA_WIDTH, FRAME_LEFT_SCROLL_BAR_AREA_WIDTH)
763 (FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH): New macros.
764 (FRAME_TOTAL_COLS): Renamed from FRAME_WINDOW_WIDTH.
765 (SET_FRAME_COLS): Renamed from SET_FRAME_WIDTH.
766 (FRAME_TOTAL_COLS_ARG): Renamed from FRAME_WINDOW_WIDTH_ARG.
767 (WINDOW_VERTICAL_SCROLL_BAR_COLUMN): Remove unused macro.
768 (WINDOW_VERTICAL_SCROLL_BAR_HEIGHT): Remove unused macro.
769 (FRAME_LINE_HEIGHT): Renamed from CANON_Y_UNIT. Unconditionally
770 return line_height member (it now has proper value also for
771 non-window frames).
772 (FRAME_COLUMN_WIDTH): Renamed from CANON_X_UNIT. Unconditionally
773 return new column_width member (rather than the default font width).
774 (FRAME_FRINGE_COLS, FRAME_LEFT_FRINGE_WIDTH)
775 (FRAME_RIGHT_FRINGE_WIDTH): Renamed from FRAME_X_... and moved
776 from x/w32/macterm.h files. Unconditionally return corresponding
777 member of frame structure (they now have proper values also for
778 non-window frames).
779 (FRAME_TOTAL_FRINGE_WIDTH): Renamed from FRAME_FRINGE_WIDTH.
780 Calculate return value from left and right widths.
781 (FRAME_INTERNAL_BORDER_WIDTH): Unconditionally return
782 internal_border_width member (has proper value for non-window frame).
783 (FRAME_PIXEL_X_FROM_CANON_X): Renamed from PIXEL_X_FROM_CANON_X.
784 (FRAME_PIXEL_Y_FROM_CANON_Y): Renamed from PIXEL_Y_FROM_CANON_Y.
785 (FRAME_CANON_X_FROM_PIXEL_X): Renamed from CANON_X_FROM_PIXEL_X.
786 (FRAME_CANON_Y_FROM_PIXEL_Y): Renamed from CANON_Y_FROM_PIXEL_Y.
787 (FRAME_LINE_TO_PIXEL_Y): Renamed from CHAR_TO_PIXEL_ROW,
788 consolidated from xterm.h, macterm.h, and w32term.h.
789 (FRAME_COL_TO_PIXEL_X): Renamed from CHAR_TO_PIXEL_COL,
790 consolidated from xterm.h, macterm.h, and w32term.h.
791 (FRAME_TEXT_COLS_TO_PIXEL_WIDTH): Renamed from
792 CHAR_TO_PIXEL_WIDTH consolidated from x/mac/w32term.h.
793 (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Renamed from
794 CHAR_TO_PIXEL_HEIGHT consolidated from x/mac/w32term.h.
795 (FRAME_PIXEL_Y_TO_LINE): Renamed from PIXEL_TO_CHAR_ROW
796 consolidated from x/mac/w32term.h.
797 (FRAME_PIXEL_X_TO_COL): Renamed from PIXEL_TO_CHAR_COL
798 consolidated from x/mac/w32term.h.
799 (FRAME_PIXEL_WIDTH_TO_TEXT_COLS): Renamed from
800 PIXEL_TO_CHAR_WIDTH consolidated from x/mac/w32term.h.
801 (FRAME_PIXEL_HEIGHT_TO_TEXT_LINES): Renamed from
802 PIXEL_TO_CHAR_HEIGHT consolidated from x/mac/w32term.h.
803
804 * window.h (struct window): Rename members left to left_col,
805 top to top_line, height to total_lines, width to total_cols,
806 left_margin_width to left_margin_cols, right_margin_width to
807 right_margin_cols, orig_height to orig_total_lines, orig_top to
808 orig_top_line. All uses changed.
809 (struct window): New members left_fringe_width, right_fringe_width,
810 fringes_outside_margins, scroll_bar_width, vertical_scroll_bar_type.
811 (WINDOW_XFRAME, WINDOW_FRAME_COLUMN_WIDTH, WINDOW_FRAME_LINE_HEIGHT):
812 New macros primarily used to simplify other macros.
813 (WINDOW_TOTAL_COLS): New macro. Change relevant code that
814 referred to XINT (w->width).
815 (WINDOW_TOTAL_LINES): New macro. Change relevant code that
816 referred to XINT (w->height).
817 (WINDOW_TOTAL_WIDTH): New macro. Change relevant code that
818 referred to XINT (w->width) * canon_x_unit.
819 (WINDOW_TOTAL_HEIGHT): New macro. Change relevant code that
820 referred to XINT (w->height) * canon_y_unit.
821 (WINDOW_LEFT_EDGE_COL): New macro. Change relevant code that
822 referred to XINT (w->left).
823 (WINDOW_RIGHT_EDGE_COL): Renamed from WINDOW_RIGHT_EDGE. Change
824 all uses and code that referred to XINT (w->left) + XINT (w->width).
825 (WINDOW_TOP_EDGE_LINE): New macro. Change relevant code that
826 referred to XINT (w->top).
827 (WINDOW_BOTTOM_EDGE_LINE): New macro. Change relevant code that
828 referred to XINT (w->top) + XINT (w->height).
829 (WINDOW_LEFT_EDGE_X): New macro. Change relevant code that
830 referred to XINT (w->left) * canon_x_unit.
831 (WINDOW_RIGHT_EDGE_X): New macro. Change relevant code that
832 referred to (XINT (w->left) + XINT (w->width)) * canon_x_unit.
833 (WINDOW_TOP_EDGE_Y): New macro. Change relevant code that
834 referred to XINT (w->top) * canon_y_unit.
835 (WINDOW_BOTTOM_EDGE_Y): New macro. Change relevant code that
836 referred to (XINT (w->top) + XINT (w->height)) * canon_y_unit.
837 (WINDOW_LEFTMOST_P): New macro.
838 (WINDOW_BOX_LEFT_EDGE_COL): Renamed from WINDOW_LEFT_MARGIN.
839 All uses changed.
840 (WINDOW_BOX_RIGHT_EDGE_COL): Renamed from WINDOW_RIGHT_MARGIN.
841 All uses changed.
842 (WINDOW_BOX_LEFT_EDGE_X): Renamed from
843 WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, moved from dispextern.h.
844 Do not exclude left fringe width.
845 (WINDOW_BOX_RIGHT_EDGE_X): Renamed from
846 WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X, moved from dispextern.h.
847 Do not exclude fringe widths.
848 (WINDOW_LEFT_FRINGE_WIDTH, WINDOW_RIGHT_FRINGE_WIDTH)
849 (WINDOW_FRINGE_COLS, WINDOW_TOTAL_FRINGE_WIDTH): New macros.
850 Change relevant code that referred to FRAME_LEFT_FRINGE_WIDTH,
851 FRAME_RIGHT_FRINGE_WIDTH, FRAME_FRINGE_COLS, and
852 FRAME_TOTAL_FRINGE_WIDTH to allow per-window fringe settings.
853 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS): New macro.
854 (WINDOW_VERTICAL_SCROLL_BAR_TYPE, WINDOW_HAS_VERTICAL_SCROLL_BAR)
855 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT)
856 (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT)
857 (WINDOW_CONFIG_SCROLL_BAR_WIDTH, WINDOW_CONFIG_SCROLL_BAR_COLS):
858 New macros. Change code which referenced corresponding
859 FRAME_VERTICAL_SCROLL_BAR_TYPE, FRAME_HAS_VERTICAL_SCROLL_BARS,
860 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT,
861 FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT,
862 FRAME_SCROLL_BAR_PIXEL_WIDTH, and FRAME_SCROLL_BAR_COLS macros to
863 allow per-window scroll-bar settings.
864 (WINDOW_LEFT_SCROLL_BAR_COLS, WINDOW_RIGHT_SCROLL_BAR_COLS): New macros.
865 (WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH): New macro. Change code that
866 referred to FRAME_LEFT_SCROLL_BAR_WIDTH.
867 (WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH): New macro. Change code
868 that referred to FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT and
869 FRAME_SCROLL_BAR_WIDTH.
870 (WINDOW_SCROLL_BAR_COLS, WINDOW_SCROLL_BAR_AREA_WIDTH)
9018a88e 871 (WINDOW_SCROLL_BAR_AREA_X): New macros.
0416870b
KS
872 (WINDOW_HEADER_LINE_HEIGHT): Renamed from
873 WINDOW_DISPLAY_HEADER_LINE_HEIGHT, moved from dispextern.h.
874 (WINDOW_BOX_HEIGHT_NO_MODE_LINE): Renamed from
875 WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, moved from dispextern.h.
876 (WINDOW_BOX_TEXT_HEIGHT): Renamed from
877 WINDOW_DISPLAY_PIXEL_WIDTH, moved from dispextern.h.
878 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
879 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
880 (WINDOW_TEXT_TO_FRAME_PIXEL_X): Moved here from dispextern.h.
881 (WINDOW_LEFT_MARGIN_WIDTH): Renamed from
882 WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH, moved from dispextern.h.
883 (WINDOW_RIGHT_MARGIN_WIDTH): Renamed from
884 WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, moved from dispextern.h.
885 (window_from_coordinates): Update prototype.
886 (Fset_window_buffer): Update EXFUN.
887 (set_window_buffer): Update prototype.
9018a88e 888
0416870b 889 * dispextern.h (struct glyph_matrix): Rename members window_left_x
9018a88e 890 to window_left_col, window_top_y to window_top_line. All uses
0416870b
KS
891 changed.
892 (FRAME_INTERNAL_BORDER_WIDTH_SAFE): Remove macro; can now safely
893 use FRAME_INTERNAL_BORDER_WIDTH macro instead as
894 internal_border_width is now set to 0 for non-window frames.
895 (WINDOW_DISPLAY_PIXEL_WIDTH, WINDOW_DISPLAY_PIXEL_HEIGHT)
896 (WINDOW_DISPLAY_MODE_LINE_HEIGHT, WINDOW_DISPLAY_HEADER_LINE_HEIGHT)
897 (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, WINDOW_DISPLAY_TEXT_HEIGHT)
898 (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X)
899 (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y, WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y)
900 (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
901 (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
902 (WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH)
903 (WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, WINDOW_WANTS_MODELINE_P):
9018a88e 904 Move to window.h and renamed [see window.h changes].
0416870b
KS
905 (WINDOW_AREA_TO_FRAME_PIXEL_X, WINDOW_AREA_PIXEL_WIDTH)
906 (WINDOW_DISPLAY_TEXT_AREA_PIXEL_WIDTH): Remove macros.
9018a88e
SM
907 (WINDOW_WANTS_MODELINE_P, WINDOW_WANTS_HEADER_LINE_P):
908 Use WINDOW_TOTAL_LINES.
0416870b
KS
909 (frame_update_line_height): Remove prototype.
910
911 * buffer.h (struct buffer): Rename members measured in columns:
912 left_margin_width to left_margin_cols, right_margin_width to
913 right_margin_cols. All uses changed.
914 New members left_fringe_width, right_fringe_width,
915 fringes_outside_margins for per-buffer fringe settings.
916 New members scroll_bar_width and vertical_scroll_bar_type for
917 per-buffer scroll bar settings.
918
919 * buffer.c (init_buffer_once): Set buffer_defaults and
920 buffer_local_flags for new buffer-local variables
921 left_fringe_width, right_fringe_width, fringes_outside_margins,
922 scroll_bar_width, and vertical_scroll_bar_type.
923 (syms_of_buffer): Defvar_per_buffer them, and defvar_lisp_nopro
924 default-* variables for them.
925
926 * dispnew.c: Make (many) trivial substitutions for renamed and
927 new macros in dispextern.h, frame.h and window.h.
928 (mode_line_string): No need to adjust width for mode lines, as it
929 is already adjusted by the caller.
930 (marginal_area_string): Handle fringes inside/outside margins.
9018a88e 931
0416870b
KS
932 * frame.c: Make (many) trivial substitutions for renamed and
933 new macros in dispextern.h, frame.h and window.h.
934 (make_frame): Initialize left_fringe_width, right_fringe_width,
935 fringe_cols, scroll_bar_actual_width, border_width,
936 internal_border_width, column_width, line_height, x_pixels_diff,
937 y_pixels_diff, want_fullscreen, size_hint_flags, and win_gravity
938 members with values suitable for a non-window frames.
939
940 * gtkutil.c: Make (many) trivial substitutions for renamed and
941 new macros in dispextern.h, frame.h and window.h.
9018a88e 942
0416870b
KS
943 * indent.c: Make (few) trivial substitutions for renamed and
944 new macros in dispextern.h, frame.h and window.h.
945
946 * keyboard.c: Make (many) trivial substitutions for renamed and
947 new macros in dispextern.h, frame.h and window.h.
948 (make_lispy_event): Use window positions returned from
949 window_from_coordinates when constructing the lisp event for
950 MOUSE_CLICK_EVENT and DRAG_N_DROP_EVENT, rather than calculating
951 (incorrect) values locally.
952 (make_lispy_movement): Use window positions returned from
953 window_from_coordinates when constructing the lisp event, rather
954 than calculating (incorrect) values locally.
955
956 * scroll.c: Make (some) trivial substitutions for renamed and
957 new macros in dispextern.h, frame.h and window.h.
958
959 * sunfns.c (Fsun_menu_internal): Adapt to per-window fringes and
960 scroll-bars.
961
962 * sysdep.c: Make (few) trivial substitutions for renamed and
963 new macros in dispextern.h, frame.h and window.h.
964
965 * term.c: Make (some) trivial substitutions for renamed and
966 new macros in dispextern.h, frame.h and window.h.
967
968 * widget.c: Make (few) trivial substitutions for renamed and
969 new macros in dispextern.h, frame.h and window.h.
970
971 * window.c: Make (many) trivial substitutions for renamed and
972 new macros in dispextern.h, frame.h and window.h.
973 (make_window): Initialize new members
974 left_margin_cols, right_margin_cols, left_fringe_width,
975 right_fringe_width, fringes_outside_margins, scroll_bar_width,
976 and vertical_scroll_bar_type.
977 (coordinates_in_window): Adapted to new fringe/margin positions
9018a88e 978 and per-window fringes and scroll-bars.
0416870b 979 Fix bug related to incorrectly adjusting coordinates by
9018a88e 980 frame's internal_border_width (the effect normally negible since
0416870b
KS
981 the internal_border_width is typically 0 or 1 pixel, but very
982 noticeable for an internal_border_width of e.g. 25 pixels).
983 Upon successful return (other than ON_NOTHING), the coordinates
984 are now always properly converted to window relative for the
985 given display element.
986 (window_from_coordinates): Add new parameters wx and wy to
987 return the window relative x and y position in the returned
988 window and part. A null arg means, don't return the position.
989 All callers changed.
990 (adjust_window_margins): New function which may reduce the width
991 of the display margins if a window's text area is too small after
992 resizing or splitting windows.
993 (size_window): Fix bug that did not account for display margin
994 widths when checking the minimum width of a window; use
995 adjust_window_margins.
996 (set_window_buffer): Call Fset_window_fringes and
997 Fset_window_scroll_bars to setup per-window elements.
998 Add new arg KEEP_MARGINS_P. Non-nil means to keep window's
999 existing display margin, fringe widths, and scroll bar settings
9018a88e
SM
1000 (e.g. after splitting a window or resizing the frame).
1001 All callers changed.
0416870b
KS
1002 (Fset_window_buffer): New arg KEEP_MARGINS. All callers changed.
1003 (Fsplit_window): Duplicate original window's display margin,
1004 fringe, and scroll-bar settings; then call Fset_window_buffer with
1005 KEEP_MARGINS non-nil. This fixes a bug which caused a split
1006 window to only preserve the display margins in one of the windows.
c4b8aebc 1007 When splitting horizontally, call adjust_window_margins on both
0416870b
KS
1008 windows to ensure that the text area of the new windows is non too
1009 narrow. This fixes a bug which could cause emacs to trap if the
1010 width of the split window was less than the width of the display
1011 margins.
9018a88e
SM
1012 (window_box_text_cols): Renamed from window_internal_width.
1013 All uses changed. Adapt to per-window fringes and scroll bars.
0416870b
KS
1014 Fix bug that caused vertical separator to be subtracted also on
1015 window frames. Fix another bug that did not reduce the returned
1016 value by the columns used for display margins.
1017 (window_scroll_line_based): Fix bug related to scrolling too much
1018 when display margins are present (implicitly fixed by the fix to
1019 window_box_text_cols).
1020 (scroll_left, scroll_right): Fix bug related to scrolling too far
1021 by default when display margins are present (implicitly fixed by
1022 the fix to window_box_text_cols).
1023 (struct saved_window): Rename members left to left_col, top to
1024 top_line, width to total_cols, height to total_lines, orig_top to
1025 orig_top_line, orig_height to orig_total_lines. All uses changed.
1026 New members left_margin_cols, right_margin_cols,
1027 left_fringe_width, right_fringe_width, fringes_outside_margins,
1028 scroll_bar_width, and vertical_scroll_bar_type for saving
1029 per-window display elements.
1030 (Fset_window_configuration): Restore display margins, fringes,
1031 and scroll bar settings. This fixes a bug which caused display
1032 margins to be discarded when saving and restoring a window
1033 configuration.
1034 (save_window_save): Save display margins, fringes, and scroll bar
1035 settings. This fixes a bug which caused display margins to be
1036 discarded when saving and restoring a window configuration.
1037 (Fset_window_margins): Do nothing if display margins are not
1038 really changed. Otherwise, call adjust_window_margins to ensure
1039 the text area doesn't get too narrow. This fixes a bug which
1040 could cause emacs to trap if setting display margins wider than
1041 the width of the window.
1042 (Fset_window_fringes): New defun to allow user to specifically set
1043 this window's fringe widths and position vs. display margins.
1044 (Fwindow_fringes): New defun to return window's actual fringe
1045 settings.
1046 (Fset_window_scroll_bars): New defun to allow user to specifically
1047 set this window's scroll bar width and position.
1048 (Fwindow_scroll_bars): New defun to return window's actual scroll
1049 bar settings.
1050 (compare_window_configurations): Also compare display margins,
1051 fringes, and scroll bar settings.
1052 (syms_of_window): Defsubr new defuns for fringe and scroll bars.
1053
1054 * xdisp.c: Make (many) trivial substitutions for renamed and
1055 new macros in dispextern.h, frame.h and window.h.
1056 (window_box_width): Adapt to per-window fringes and scroll bars,
1057 and new fringe vs. display margin position. Note that returned
1058 value is no longer guaranteed to be a whole multiple of the frame
1059 column width, since per-window fringes may now be any width.
1060 (window_box_left_offset): New function like window_box_left, but
1061 value is relative to left border of window (rather than frame).
1062 (window_box_right_offset): New function like window_box_right,
1063 but value is relative to left border of window.
1064 (window_box_left): Adapt to per-window fringes and scroll bars,
1065 and new fringe vs. display margin position. Simplify by using
1066 WINDOW_LEFT_EDGE_X and window_box_left_offset.
1067 (window_box): Allow null args for unnecessary return values;
1068 change/simplify relevant callers.
1069 (x_y_to_hpos_vpos): Adapt to per-window fringes and scroll bars,
9018a88e
SM
1070 and new fringe vs. display margin position.
1071 Use window_box_left_offset and window_box_right_offset
0416870b 1072 (get_glyph_string_clip_rect): Adapt to per-window fringes and
9018a88e
SM
1073 scroll bars, and new fringe vs. display margin position.
1074 Use WINDOW_LEFT_EDGE_X and WINDOW_TOTAL_WIDTH.
0416870b
KS
1075 (draw_fringe_bitmap): Rework to handle per-window fringes and new
1076 fringe vs. display margin position.
1077 (hscroll_window_tree): Use window_box_width instead of window_box.
1078 (redisplay_window): Adapt to per-window scroll bars.
1079 (draw_glyphs): Rework to handle per-window fringes and scroll
9018a88e
SM
1080 bars, and new fringe vs. display margin position.
1081 Use WINDOW_LEFT_EDGE_X, WINDOW_TOTAL_WIDTH, and window_box_left.
0416870b
KS
1082 (x_clear_end_of_line): Adapt to per-window fringes and scroll
1083 bars, and new fringe vs. display margin position. Fix bug which
1084 increased total width of full_width rows by width of scroll bars
1085 although window's total width already includes that.
1086 (x_fix_overlapping_area): Simplify using window_box_left_offset.
1087 (expose_area): Simplify using window_box_left_offset.
1088 (x_draw_vertical_border): Handle per-window scroll bar settings,
1089 mixing windows with left, right and no scroll bars.
1090
1091 * xfaces.c [WINDOWSNT]: Move redefinition of FONT_WIDTH macro to
1092 where it's used in x_list_fonts (for clarity).
1093 (frame_update_line_height): Remove unused function; functionality
1094 is now done directly when setting the default font in x_set_font.
1095
1096 * xfns.c: Make (many) trivial substitutions for renamed and
1097 new macros in dispextern.h, frame.h and window.h.
1098
1099 * xmenu.c: Make (some) trivial substitutions for renamed and
1100 new macros in dispextern.h, frame.h and window.h.
1101
1102 * xterm.h (struct x_output): Move members left_pos, top_pos,
1103 border_width, pixel_height, pixel_width, line_height,
1104 internal_border_width, vertical_scroll_bar_extra,
1105 left_fringe_width, right_fringe_width, fringe_cols,
1106 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
1107 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
1108 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
1109 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
1110 (PIXEL_WIDTH, PIXEL_HEIGHT)
1111 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
1112 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Moved to
1113 frame.h and renamed [see frame.h changes].
1114 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
1115 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
1116 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Moved to frame.h
1117 and renamed [see frame.h changes].
9018a88e 1118
0416870b
KS
1119 * xterm.c: Make (several) trivial substitutions for renamed and
1120 new macros in dispextern.h, frame.h and window.h.
1121 (x_draw_glyph_string_box): Adapt to per-window fringes and
1122 scroll-bars.
1123 (scroll_run): Adapt to new fringe position.
1124 (glyph_rect): Use window coordinates returned from
1125 window_from_coordinates rather than frame_to_window_pixel_xy.
1126 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
1127 scroll-bars.
1128 (handle_one_xevent): Simplify a USE_GTK conditional.
1129 (x_clip_to_row): Remove superfluous whole_line_p arg and code
1130 (fringes are now inside margins, i.e. always in the clipping area).
1131 All callers changed.
1132 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
1133 directly, then call compute_fringe_widths. Don't call
1134 frame_update_line_height.
1135
1136 * w32term.h (struct w32_output): Move members left_pos, top_pos,
1137 border_width, pixel_height, pixel_width, line_height,
1138 internal_border_width, vertical_scroll_bar_extra,
1139 left_fringe_width, right_fringe_width, fringe_cols,
1140 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
1141 x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
1142 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
1143 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
1144 (PIXEL_WIDTH, PIXEL_HEIGHT)
1145 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
1146 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Moved to
1147 frame.h and renamed [see frame.h changes].
1148 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
1149 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
1150 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Moved to frame.h
1151 and renamed [see frame.h changes].
9018a88e 1152
0416870b
KS
1153 * w32term.c: Make (several) trivial substitutions for renamed and
1154 new macros in dispextern.h, frame.h and window.h.
1155 (x_draw_glyph_string_box): Adapt to per-window fringes and
1156 scroll-bars.
1157 (glyph_rect): Use window coordinates returned from
1158 window_from_coordinates rather than frame_to_window_pixel_xy.
1159 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
1160 scroll-bars.
1161 (w32_clip_to_row): Remove superfluous whole_line_p arg and code
1162 (fringes are now inside margins, i.e. always in the clipping area).
1163 All callers changed.
1164 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
1165 directly, then call compute_fringe_widths. Don't call
1166 frame_update_line_height.
1167
1168 * w32console.c: Make (few) trivial substitutions for renamed and
1169 new macros in dispextern.h, frame.h and window.h.
1170
1171 * w32fns.c: Make (many) trivial substitutions for renamed and
1172 new macros in dispextern.h, frame.h and window.h.
1173
1174 * w32menu.c: Make (few) trivial substitutions for renamed and
1175 new macros in dispextern.h, frame.h and window.h.
1176
1177 * macterm.h (struct mac_output): Move members left_pos, top_pos,
1178 border_width, pixel_height, pixel_width, line_height,
1179 internal_border_width, vertical_scroll_bar_extra,
1180 left_fringe_width, right_fringe_width, fringe_cols,
1181 fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
1182 x_pixels_diff, y_pixels_diff to struct frame (frame.h).
1183 (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
1184 (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
1185 (PIXEL_WIDTH, PIXEL_HEIGHT)
1186 (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
1187 (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Moved to
1188 frame.h and renamed [see frame.h changes].
1189 (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
1190 (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
1191 (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Moved to frame.h
1192 and renamed [see frame.h changes].
9018a88e 1193
0416870b
KS
1194 * macterm.c: Make (several) trivial substitutions for renamed and
1195 new macros in dispextern.h, frame.h and window.h.
1196 (x_draw_glyph_string_box): Adapt to per-window fringes and
1197 scroll-bars.
1198 (glyph_rect): Use window coordinates returned from
1199 window_from_coordinates rather than frame_to_window_pixel_xy.
1200 (XTset_vertical_scroll_bar): Adapt to per-window fringes and
1201 scroll-bars.
1202 (x_clip_to_row): Remove superfluous whole_line_p arg and code
1203 (fringes are now inside margins, i.e. always in the clipping area).
1204 All callers changed.
1205 (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
1206 directly, then call compute_fringe_widths. Don't call
1207 frame_update_line_height.
1208
1209 * macfns.c: Make (several) trivial substitutions for renamed and
1210 new macros in dispextern.h, frame.h and window.h.
9018a88e 1211 (x_real_positions): Set f->x_pixels_diff and f->y_pixels_diff to 0.
0416870b
KS
1212
1213 * macmenu.c: Make (few) trivial substitutions for renamed and
1214 new macros in dispextern.h, frame.h and window.h.
1215
1216 * msdos.h (struct x_output): Remove members left_pos, top_pos,
1217 and line_height, and use corresponding new members in struct
1218 frame. All uses changed.
1219 (FRAME_LINE_HEIGHT, FRAME_INTERNAL_BORDER_WIDTH): Remove macros;
1220 superseeded by corresponding macros in frame.h.
1221
1222 * msdos.c: Make (several) trivial substitutions for renamed and
1223 new macros in dispextern.h, frame.h and window.h.
1224 (IT_note_mouse_highlight): Use updated window coordinates returned
9018a88e 1225 by window_from_coordinates, rather than adjusting them locally.
0416870b
KS
1226 (internal_terminal_init): No need to initialize line_height here;
1227 it now defaults to 1.
1228
9018a88e
SM
12292003-05-24 Stefan Monnier <monnier@cs.yale.edu>
1230
1231 * keyboard.c (read_key_sequence): Adjust fkey and keytran when
1232 dropping `down' events.
1233
016bd3c0
AS
12342003-05-24 Andreas Schwab <schwab@suse.de>
1235
1236 * coding.c (find_safe_codings): Fix last change.
1237
4dacadcc
TTN
12382003-05-24 Istvan Marko <mi@imarko.dhs.org> (tiny change)
1239
1240 * xfns.c (x_window): Fix typo from 2003-05-21 change.
1241
319830ce
SM
12422003-05-23 Stefan Monnier <monnier@cs.yale.edu>
1243
9018a88e
SM
1244 * xdisp.c (display_mode_element): Increase max depth.
1245 Simplify the error handling code. Use a different error string
1246 for the case where we hit the depth limit.
1247
319830ce
SM
1248 * lisp.h (Vfundamental_mode_abbrev_table): Don't declare.
1249
1250 * buffer.c (reset_buffer_local_variables): Remove redundant setting.
1251
12522003-05-21 Stefan Monnier <monnier@cs.yale.edu>
1253
1254 * intervals.c (get_local_map): Don't get char-property of previous
1255 point any more: get_pos_property already does it and better.
1256
c67de8ba
DL
12572003-05-21 Dave Love <fx@gnu.org>
1258
1259 [Merged from unicode branch.]
1260
1261 * xfns.c (x_window, x_window): Use use_xim.
1262
1263 * xterm.c (use_xim): Initialize.
1264 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
1265 (x_term_init): Maybe set use_xim.
1266
1267 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
1268
edd3ff1d
JR
12692003-05-21 Jason Rumney <jasonr@gnu.org>
1270
1271 * unexw32.c (_start): Remove _fmode initialization.
1272
1273 * emacs.c (main) [WINDOWSNT]: Move it here.
1274
463f55ee
DL
12752003-05-20 Dave Love <fx@gnu.org>
1276
1277 * s/gnu-linux.h (MAIL_USE_FLOCK): Make it conditional.
1278
af253914
RS
12792003-05-19 Richard M. Stallman <rms@gnu.org>
1280
1281 * xfaces.c (Finternal_set_lisp_face_attribute): Handle Qunspecified
1282 as value for QCfont attribute.
1283 (realize_default_face): lface should already exist; crash if not.
1284 Specify 0 for FORCE_P when calling set_lface_from_font_name.
1285
1286 * frame.c (Fignore_event): Doc fix.
1287
1d211019
KH
12882003-05-19 Kenichi Handa <handa@m17n.org>
1289
1290 * coding.c (decode_coding_string): Handle post-read-conversion
1291 even if the coding doesn't require decoding.
1292
4dd68254
RS
12932003-05-18 Richard M. Stallman <rms@gnu.org>
1294
1295 * callproc.c (Fcall_process_region): Doc fix.
1296
14d87dc9
SM
12972003-05-17 Stefan Monnier <monnier@cs.yale.edu>
1298
deca5d96
SM
1299 * lread.c (Fload): Print a message if package is obsolete.
1300
14d87dc9
SM
1301 * window.c (Fselect_window): Add optional `norecord' arg.
1302 (select_window_1): Fold into Fselect_window.
1303 (select_window_norecord): New function.
1304 (temp_output_buffer_show): Use it. Preserve current buffer.
1305
1306 * window.h (Fselect_window): Update declaration.
1307
1308 * window.c (delete_window, Fother_window, Fset_window_configuration):
1309 * minibuf.c (read_minibuf):
1310 * macterm.c (x_new_focus_frame):
1311 * frame.c (do_switch_frame, Fset_frame_selected_window, Fdelete_frame):
1312 * callint.c (Fcall_interactively):
1313 * xterm.c (x_new_focus_frame): Pass nil as new arg to Fselect_window.
1314
1315 * buffer.c (Fpop_to_buffer): Pass norecord to Fselect_window.
1316
78f52183
DK
13172003-05-17 David Kastrup <dak@gnu.org>
1318
1319 * process.c (read_process_output): Back out change from 2003-03-09.
1320
14d87dc9
SM
13212003-05-17 Stefan Monnier <monnier@cs.yale.edu>
1322
1323 * editfns.c (get_pos_property): Don't assume that `object' = nil.
1324
1325 * textprop.c (text_property_stickiness): New arg `buffer'.
1326
1327 * intervals.h (text_property_stickiness): New arg `buffer'.
1328 (get_pos_property): Declare.
1329
1330 * intervals.c (get_local_map): Use get_pos_property, to obey
1331 stickiness and empty overlays.
1332 (create_root_interval, graft_intervals_into_buffer): Use BEG.
1333 (merge_properties, intervals_equal, merge_properties_sticky):
1334 Use XCAR, XCDR.
1335 (adjust_for_invis_intang): Pass new arg to text_property_stickiness.
1336
1fd1cc2f
RS
13372003-05-17 Richard M. Stallman <rms@gnu.org>
1338
4f9f637a
RS
1339 * minibuf.c (read_minibuf): If buffer is empty, record the default
1340 in the history.
1341 (Fminibuffer_complete_word): When deleting the overlap, take account
1342 of its real position.
1343
1344 * fns.c (map_char_table): Fix previous change.
1345
1fd1cc2f
RS
1346 * syntax.c (find_defun_start):
1347 When open_paren_in_column_0_is_defun_start,
1348 return beginning of buffer.
1349
1350 * lisp.h (map_char_table): Declare added arg.
1351
1352 * fns.c (map_char_table): New arg TABLE gets the master table.
1353 All calls changed.
1354 Process default and inheritance, resorting to Faref if necessary.
1355
1356 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
1357 (Faccessible_keymaps): Pass new arg to map_char_table.
1358
1359 * fontset.c (Ffontset_info): Pass new arg to map_char_table.
1360
1361 * casetab.c (set_case_table): Pass new arg to map_char_table.
1362
1363 * data.c (let_shadows_buffer_binding_p): Make target of p volatile.
1364
1365 * lisp.h (specbinding_func): New typedef.
1366 (struct specbinding): Use specbinding_func, to put the `volatile'
1367 in the right place.
1368
1369 * alloc.c (Fgarbage_collect): Cast pointers into specpdl
1370 to avoid GCC warning.
14d87dc9 1371
b4bd27c5
RS
13722003-05-16 Ralph Schleicher <rs@nunatak.allgaeu.org> (tiny change)
1373
14d87dc9 1374 * fileio.c (Fdelete_file): Handle symlinks pointing to directories.
b4bd27c5 1375
35fb885d
SM
13762003-05-15 Stefan Monnier <monnier@cs.yale.edu>
1377
1378 * keyboard.c (apply_modifiers): Don't fill the other cache.
1379
9a274fbd
SM
13802003-05-14 Stefan Monnier <monnier@cs.yale.edu>
1381
c55b5fad
SM
1382 * .gdbinit-union: New file, for USE_LISP_UNION_TYPE users.
1383
9a274fbd
SM
1384 * window.h (Qwindowp, Qwindow_live_p, Vwindow_list)
1385 (Fwindow_end, Fselected_window, Fdelete_window, Fwindow_buffer)
1386 (Fget_buffer_window, Fsave_window_excursion, Fsplit_window)
1387 (Fset_window_configuration, Fcurrent_window_configuration)
1388 (compare_window_configurations, Fcoordinates_in_window_p, Fwindow_at)
1389 (Fpos_visible_in_window_p, mark_window_cursors_off)
1390 (window_internal_height, window_internal_width, Frecenter)
1391 (Fscroll_other_window, Fset_window_start, temp_output_buffer_show)
1392 (replace_buffer_in_all_windows, init_window_once, init_window)
1393 (syms_of_window, keys_of_window): Move from lisp.h.
1394 * lisp.h: Move window.c declarations to window.h.
1395
1396 * bytecode.c: Include window.h.
1397 * emacs.c: Include window.h.
1398
14d87dc9 1399 * keyboard.c (make_lispy_event): Apply modifiers to multibyte-char key.
9a274fbd
SM
1400 (keyremap): Add `parent' field.
1401 (keyremap_step): Use it. Remove `parent' argument.
1402 (read_key_sequence): Setup and use the new `parent' field.
1403
fd93e331
SM
14042003-05-11 Stefan Monnier <monnier@cs.yale.edu>
1405
1406 * keyboard.c (adjust_point_for_property): Ensure termination.
1407
1c4001a1
SM
14082003-05-10 Stefan Monnier <monnier@cs.yale.edu>
1409
1410 * keyboard.c (follow_key): Remove dead variable `did_meta'.
1411 (access_keymap_keyremap, keyremap_step): New funs, extracted from the
1412 duplicated handling of function-key-map and key-translation-map
1413 in read_key_sequence.
1414 (read_key_sequence): Use them.
1415
1416 * keyboard.c (adjust_point_for_property): Try harder to move point
1417 to the non-sticky end of an invisible property.
1418
1419 * xdisp.c (single_display_prop_intangible_p): Make `space' display
1420 property intangible as well.
1421
780379b1
AS
14222003-05-10 Andreas Schwab <schwab@suse.de>
1423
1424 * xmenu.c (single_menu_item): Change last parameter to void* to
1425 avoid warning.
1426
ca2de342
RS
14272003-05-09 Richard M. Stallman <rms@gnu.org>
1428
1429 * print.c (Fprin1_to_string): Instead of gcpro, set abort_on_gc.
1430 Bind Qinhibit_modification_hooks to t so there will be no GC.
1431 Rename local `tem' to `save_deactivate_mark'.
1432
1433 * eval.c (specpdl_ptr): Declare volatile.
1434 (unbind_to): Copy the whole binding and decrement specpdl_ptr
1435 before doing the work of unbinding it.
1436
1437 * lisp.h (struct specbinding): Declare elements volatile.
1438 (specpdl_ptr): Declare volatile.
1439
1440 * Makefile.in (alloca.o): Specify -DDO_BLOCK_INPUT in compiling.
1441
1442 * alloca.c: Test DO_BLOCK_INPUT rather than `emacs'
1443 for use of BLOCK_INPUT and inclusion of lisp.h and blockinput.h.
1444
347003be
DL
14452003-05-08 Dave Love <fx@gnu.org>
1446
1447 * coding.c (Vlast_coding_system_used): Doc fix.
1448
5adcec23
JR
14492003-05-07 Jason Rumney <jasonr@gnu.org>
1450
1451 * fileio.c (Ffile_symlink_p): Let handlers handle symlinks even
1452 when system does not support them.
1453
5fe3b8a4
SM
14542003-05-05 Stefan Monnier <monnier@cs.yale.edu>
1455
1456 * fileio.c (Qwrite_region_annotate_functions): New var.
1457 (build_annotations): Use it to process the global part of the hook.
1458 (syms_of_fileio): Init and staticpro it.
1459
1460 * keyboard.c (safe_run_hooks_error): Display a message instead of
1461 silently ignoring the error.
1462
14632003-05-03 Stefan Monnier <monnier@cs.yale.edu>
1464
1465 * keyboard.c (input_available_signal): Mark static.
1466 (menu_bar_items): Use map_keymap.
1467 (menu_bar_one_keymap): Remove.
1468 (menu_bar_item): Adjust arglist (for use in map_keymap).
1469 Properly hide a second binding when not both are keymaps.
1470
1471 * xmenu.c (struct skp): New struct, to pass args through map_keymap.
1472 (single_keymap_panes): Use it and map_keymap.
1473 (single_menu_item): Use skp as well.
1474
1475 * keymap.h (map_keymap_function_t): New type.
1476 (map_keymap): Declare.
1477
1478 * keymap.c (map_keymap_item, map_keymap_char_table_item, map_keymap)
1479 (map_keymap_call, Fmap_keymap): New functions.
1480 (syms_of_keymap): Defsubr map-keymap.
1481
4b1b4443
JD
14822003-05-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1483
1484 * gtkutil.c (create_dialog, make_widget_for_menu_item)
1485 (make_menu_item, create_menus, xg_update_menu_item): Don't call
1486 ..._with_mnemonic functions for menu items.
1487
1f816871
KH
14882003-05-01 Kenichi Handa <handa@m17n.org>
1489
1490 * coding.c (coding_system_accept_latin_extra_p): Delete this
1491 function.
1492 (find_safe_codings): Pay attention to
1493 the property tranlsation-table-for-encode of each codings.
1494 (syms_of_coding): Give Qtranslation_table the extra slot number 2.
1495
5ed6ba5b
SM
14962003-05-01 Stefan Monnier <monnier@cs.yale.edu>
1497
1498 * eval.c (Funwind_protect): Use func=Fprogn rather than symbol=Qnil.
1499
32c06229
SM
15002003-04-30 Stefan Monnier <monnier@cs.yale.edu>
1501
1502 * eval.c (unbind_to): Don't handle symbol = Qnil any more.
1503
1504 * lisp.h (CHECK): Wrap args in parenthesis.
1505 (specbind): Fix doc: symbol = Qnil is not supported any more.
1506
1507 * bytecode.c (Fbyte_code) <unwind-protect>:
1508 Use Fprogn rather than 0 and Qnil.
1509
1510 * keyboard.c (parse_modifiers_uncached): Parse `down', `drag',
1511 `double', and `triple' modifiers as well.
1512
ed3c3314
RS
15132003-04-30 Richard M. Stallman <rms@gnu.org>
1514
1515 * keyboard.c (echo_char): Don't clear out a dash that follows a space.
1516
1517 * alloc.c (abort_on_gc): New variable.
1518 (Fgarbage_collect): Abort if abort_on_gc is set.
1519
1520 * lisp.h (abort_on_gc): Add decl.
1521
1522 * eval.c (Fsignal): Clear abort_on_gc.
1523
1524 * editfns.c (Fformat): Set abort_on_gc during first scan of format.
32c06229 1525 Reinit FORMAT_START and END before second scan.
ed3c3314
RS
1526
1527 * xdisp.c (move_it_vertically_backward): Do the final big else
1528 even if nlines is 0.
1529
1530 * xdisp.c (redisplay_internal): Finish the per-frame loop
1531 even if redisplay is suspended by input.
1532
0b325c12
AC
15332003-04-24 Andrew Choi <akochoi@shaw.ca>
1534
1535 * macterm.c (x_list_fonts): Return all fonts that match if
1536 maxnames = -1.
1537
4e837cd0
KH
15382003-04-25 Kenichi Handa <handa@m17n.org>
1539
1540 * syntax.c (skip_chars): Fix previous change.
1541
9af7511a
KH
15422003-04-24 Kenichi Handa <handa@m17n.org>
1543
1544 * syntax.c (skip_chars): Make the code faster by using the common
1545 technique of *p, *stop, and *endp.
1546
e3b2c21f
JD
15472003-04-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1548
1549 * xdisp.c (update_tool_bar): BLOCK_INPUT before calling
32c06229 1550 tool_bar_items so GTK tool bar expose callback does not access items
e3b2c21f
JD
1551 being updated.
1552
32c06229
SM
15532003-04-19 Stefan Monnier <monnier@cs.yale.edu>
1554
1555 * eval.c (Fapply): Undo last change and add a comment about why.
1556
c6464167
MB
15572003-04-18 Miles Bader <miles@gnu.org>
1558
1559 * data.c (Faset): Calculate nbytes earlier, to satisfy the now
1560 pickier PARSE_MULTIBYTE_SEQ.
1561
e509f168
SM
15622003-04-17 Stefan Monnier <monnier@cs.yale.edu>
1563
1564 * eval.c (For, Fand, Fprogn, un_autoload, do_autoload):
1565 Use XCDR, XCAR, CONSP.
1566 (Fdefmacro): Fix docstring. Use XCAR, XCDR.
1567 (Fapply): Remove unnecessary GCPRO.
1568
1569 * doc.c (Fsubstitute_command_keys): Remove spurious casts.
1570
1571 * charset.h (PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
1572
1573 * buffer.h: Don't hardcode BEG==1.
1574
1575 * abbrev.c (Fdefine_abbrev_table): Use XCAR, XCDR.
1576
5ceea398
RS
15772003-04-16 Richard M. Stallman <rms@gnu.org>
1578
1579 * xdisp.c (try_window, try_window_reusing_current_matrix):
1580 When at end of window, set window_end_pos to Z-ZV.
1581
1582 * buffer.c (Foverlay_recenter): Doc fix.
1583
e509f168
SM
15842003-04-14 Stefan Monnier <monnier@cs.yale.edu>
1585
1586 * dispnew.c (Fsit_For): Support XEmacs-style arg list.
1587
d243e605
AC
15882003-04-14 Andrew Choi <akochoi@shaw.ca>
1589
1590 * macterm.c (mac_check_for_quit_char): Don't check more often than
1591 once a second.
1592
6901b111
SM
15932003-04-11 Stefan Monnier <monnier@cs.yale.edu>
1594
1595 * keyboard.c (kbd_buffer_get_event): Don't handle SELECT_WINDOW_EVENT
1596 specially, so that they can't hide an implicit switch-frame event.
1597 (make_lispy_event): Handle SELECT_WINDOW_EVENT.
1598 (head_table): Use switch-frame as event_kind for select-window.
1599 (keys_of_keyboard): Don't bind [select-window] in special-event-map.
1600
1601 * editfns.c (Fformat): Lisp_Object/int mixup.
1602 (format2): Remove unused var numargs.
1603
e301806f 16042003-04-11 Kenichi Handa <handa@m17n.org>
aa95b710 1605
6901b111 1606 * fileio.c (Vafter_insert_file_adjust_coding_function): Delete.
aa95b710
KH
1607 (Qafter_insert_file_set_coding): New variable.
1608 (syms_of_fileio): Initialize and staticpro it. Delete declaration
1609 for after-insert-file-adjust-coding-function.
1610 (Finsert_file_contents): Call Qafter_insert_file_set_coding
1611 instead of Vafter_insert_file_adjust_coding_function.
1612
38914424
KH
16132003-04-11 Kenichi Handa <handa@m17n.org>
1614
1615 * lisp.h (temp_echo_area_glyphs): Adjust prototype.
1616
1617 * minibuf.c (temp_echo_area_glyphs): Change the arg to Lisp
1618 string. Callers changed.
1619
16202003-04-10 Kenichi Handa <handa@m17n.org>
a288d979 1621
6901b111 1622 * fileio.c (Vafter_insert_file_adjust_coding_function): New variable.
a288d979 1623 (syms_of_fileio): Declare it as a lisp variable.
6901b111
SM
1624 (Finsert_file_contents):
1625 Call Vafter_insert_file_adjust_coding_function before calling
a288d979
KH
1626 decode-format.
1627
f979dc05
JD
16282003-04-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1629
1630 * xterm.c (xg_scroll_callback): Call gtk_range_get_adjustment to
1631 get GtkAdjustment as widget now is a GtkRange.
1632
1633 * gtkutil.c (xg_create_scroll_bar): Connect to value-changed on
1634 GtkRange to avoid memory leak.
1635
f8c6b4c2 16362003-04-09 Kenichi Handa <handa@m17n.org>
cb98871c 1637
50ebc53d
KH
1638 * xfaces.c (Vface_font_rescale_alist): New variable.
1639 (struct font_name): New member rescale_ratio.
1640 (font_rescale_ratio): New function.
6901b111 1641 (split_font_name): If NUMERIC_P is nonzero, set font->rescale_ratio.
50ebc53d
KH
1642 (better_font_p): On comparing point sized, pay attention to
1643 recale_ratio member of fonts.
1644 (build_scalable_font_name): Reflect font->rescale_ratio in the
1645 font name.
6901b111 1646 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
50ebc53d 1647
cb98871c
KH
1648 * lread.c (read1): Before calling index, check if the 2nd
1649 arguemnt is in ASCII range.
1650
4773b8ca
RS
16512003-04-08 Richard M. Stallman <rms@gnu.org>
1652
b0ada147
RS
1653 * fileio.c (Ffile_symlink_p): Doc fix.
1654
1655 * editfns.c (Fformat): Translate positions of text properties
1656 in the format string to apply them to the result.
1657
4773b8ca
RS
1658 * fileio.c (Finsert_file_contents): Doc fix.
1659 (syms_of_fileio) <after-insert-file-functions>: Doc fix.
1660
16612003-04-08 Ivan Zakharyaschev <imz@altlinux.org> (tiny change)
6901b111 1662
4773b8ca
RS
1663 * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN.
1664
e8f25745 16652003-04-08 Steven Tamm <steventamm@mac.com>
b0ada147 1666
e8f25745
ST
1667 * mac.c (init_mac_osx_environment): Switch libexec and bin so
1668 that self-contained application finds libexec files.
1669
f8c6b4c2 16702003-04-08 Kenichi Handa <handa@m17n.org>
2310d84c 1671
6901b111
SM
1672 * coding.c (code_convert_region_unwind):
1673 Set Vlast_coding_system_used to the argument.
2310d84c
KH
1674 (code_convert_region): If post-read-conversion function changed
1675 the value of last-coding-sytem, keep the new value in
1676 coding->symbol so that it won't be overridden.
1677 (run_pre_post_conversion_on_str): Likewise.
7c086845
KH
1678 (coding_system_accept_latin_extra_p): New function.
1679 (find_safe_codings): Pay attention to characters registered in
1680 latin-extra-code-table.
2310d84c 1681
39c9a034
TTN
16822003-04-07 Thien-Thi Nguyen <ttn@gnu.org>
1683
1684 * Makefile.in (md5.o): Add missing dependency info.
1685
eb67c5d6
RS
16862003-04-06 Richard M. Stallman <rms@gnu.org>
1687
1688 * xselect.c (x_handle_selection_request): Move UNGCPRO to very end.
1689
1690 * marker.c (verify_bytepos): New function.
1691
1692 * intervals.c (set_intervals_multibyte_1): When becoming
1693 multibyte, adjust right and left child sizes to a whole set of
1694 characters. If an interval gets zero total-length, delete it.
1695 If an interval consists of just its children, delete one of them.
1696
1697 * intervals.h (CHECK_TOTAL_LENGTH): New macro.
1698 * intervals.c: Add many calls to CHECK_TOTAL_LENGTH.
39c9a034 1699
eb67c5d6
RS
1700 * alloc.c: (VALIDATE_LISP_STORAGE): Macro deleted.
1701 All calls deleted.
1702 (lisp_malloc): Do the work here directly.
1703
b1f81fc5
JB
17042003-04-06 Gareth Jones <emacs@referential.org.uk> (tiny change)
1705
1706 * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub
1707 char tables.
1708
17092003-04-04 Kenichi Handa <handa@m17n.org>
aa8b70ae
KH
1710
1711 * editfns.c (Fformat): Use a copy of FORMAT string so that we can
1712 destructively change "%S" to "%s".
1713
774666fb
MB
17142003-04-03 Miles Bader <miles@gnu.org>
1715
1716 * xfaces.c (choose_face_font): Make sure *NEEDS_OVERSTRIKE is
1717 always set.
1718
19c37f01
DL
17192003-04-01 Dave Love <fx@gnu.org>
1720
1721 * xfns.c (xpm_lookup_color): Grok "opaque".
1722
2f4b24c3
AC
17232003-03-31 Andrew Choi <akochoi@shaw.ca>
1724
1725 * frame.c (x_report_frame_params) [HAVE_CARBON]: Do not report
1726 parent window ID.
1727
1728 * macfns.c (syms_of_macfns): Remove call to init_x_parm_symbols.
1729
1730 * macterm.h (struct mac_output): Define x_pixels_diff and
1731 y_pixels_diff.
b1f81fc5 1732
9443fcf6
JB
17332003-03-31 Juanma Barranquero <lektu@terra.es>
1734
1735 * makefile.w32-in ($(BLD)/frame.$(O)): Add dependency on
1736 blockinput.h and files included from it.
1737
e072891b
KS
17382003-03-31 Kim F. Storm <storm@cua.dk>
1739
1740 The following changes consolidates the common code related to
1741 frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
1742 files into frame.c.
9443fcf6 1743
e072891b
KS
1744 * frame.c: Include blockinput.h.
1745 (Vx_resource_name, Vx_resource_class, Qx_frame_parameter)
1746 (Qx_resource_name, Qface_set_after_frame_default): Define vars here.
1747 (Qauto_raise, Qauto_lower, ...): Define all frame parameter
1748 related vars here.
1749 (struct frame_parm_table, frame_parms): New table for describing
1750 frame parameters and their associated Q-variable.
1751 The order of the parameters corresponds to the sequence of the
1752 frame_parm_handlers table in redisplay_interface.
1753 (x_fullscreen_move, x_set_frame_parameters)
1754 (x_report_frame_params, x_set_fullscreen, x_set_line_spacing)
1755 (x_set_screen_gamma, x_set_font, x_set_fringe_width)
1756 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
1757 (x_set_autoraise, x_set_autolower, x_set_unsplittable)
1758 (x_set_vertical_scroll_bars, x_set_scroll_bar_width, x_icon_type):
1759 Generic functions for processing of frame parameters.
1760 (validate_x_resource_name, xrdb_get_resource, Fx_get_resource)
1761 (display_x_get_resource, x_get_resource_string): Functions for
1762 generic access to X resources.
1763 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
1764 (x_default_parameter, Fx_parse_geometry): Functions for generic
1765 access to frame parameters.
6901b111
SM
1766 (x_figure_window_size): Generic calculation of frame size.
1767 Fixed to add space needed for tool bar. Also setup size_hint_flags.
e072891b
KS
1768 (syms_of_frame): Intern and staticpro frame parameter variables.
1769 Defvar_lisp Vx_resource_class and Vx_resource_name here.
1770 Defsubr Sx_get_resource and Sx_parse_geometry.
9443fcf6 1771
e072891b
KS
1772 * frame.h (Qauto_raise, Qauto_lower, ...): Declare extern all frame
1773 parameter related vars defined in frame.c.
1774 (EMACS_CLASS): Define here.
1775 (enum FULLSCREEN_*): Define here.
1776 (x_set_scroll_bar_default_width, x_wm_set_icon_position)
1777 (x_set_offset, x_new_font, x_new_fontset): Add prototypes.
1778 (x_fullscreen_adjust, x_set_frame_parameters, x_report_frame_params)
1779 (x_set_fullscreen, x_set_line_spacing, x_set_screen_gamma, x_set_font)
1780 (x_set_fringe_width, x_set_border_width, x_set_internal_border_width)
1781 (x_set_visibility, x_set_autoraise, x_set_autolower)
1782 (x_set_unsplittable, x_set_vertical_scroll_bars)
1783 (x_set_scroll_bar_width, x_icon_type, validate_x_resource_name)
1784 (x_figure_window_size): Add prototypes.
1785
1786 * dispextern.h (frame_parm_handler): New typedef.
1787 (struct redisplay_interface): New member frame_parm_handlers.
1788 (enum resource_types): Move declaration here.
1789 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
1790 (x_default_parameter): Add prototypes.
1791
1792 * window.c: Remove extern decl for frame parameter vars.
1793 (change_window_heights): New generic function;
1794 replaces x_change_window_heights. All users changed.
1795
1796 * window.h (change_window_heights): Add prototype.
1797
1798 * xfaces.c: Remove extern decl for frame parameter vars.
1799
1800 * xterm.h (EMACS_CLASS): Remove. Use generic define.
1801 (struct w32_display_info): Fix type of xrdb member.
1802 (enum FULLSCREEN_*): Remove.
1803 Remove prototypes for generic functions (in frame.h).
1804
1805 * xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
1806 parameters now defined in frame.h and frame.c.
1807 (Vx_resource_name): Remove. Use generic var.
1808 (enum x_frame_parms): Remove (bogus, unused enum).
1809 (check_x_display_info): Make non-static (for frame.c).
1810 (struct x_frame_parm_table, x_frame_parms): Remove.
1811 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
1812 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
1813 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
1814 (x_change_window_heights, x_set_autoraise, x_set_autolower)
1815 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
1816 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
1817 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
1818 Remove. Use generic functions instead.
1819 (enum resource_types): Remove.
1820 (x_set_scroll_bar_default_width): New global function (for frame.c).
1821 (Fx_create_frame): Depend on x_figure_window_size to add space for
1822 toolbar and setup size_hint_flags.
1823 (x_frame_parm_handlers): New table for redisplay_interface.
1824 (syms_of_xfns): Don't intern/staticpro removed vars.
9443fcf6 1825
e072891b
KS
1826 * xterm.c: Remove unnecessary extern declarations.
1827 (x_fullscreen_adjust): Remove. Use generic instead.
1828 (x_redisplay_interface): Add x_frame_parm_handlers member.
1829
1830 * w32gui.h (XrmDatabase): New (dummy) typedef.
1831
1832 * w32term.h (EMACS_CLASS): Remove. Use generic define.
1833 (struct w32_display_info): Fix type of xrdb member.
1834 (enum FULLSCREEN_*): Remove.
1835 (x_fullscreen_adjust): Remove prototype.
1836
1837 * w32fns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
1838 parameters now defined in frame.h and frame.c.
1839 (Vx_resource_name): Remove. Use generic var.
1840 (enum x_frame_parms): Remove (bogus, unused enum).
1841 (check_x_display_info): Make non-static (for frame.c).
1842 (struct x_frame_parm_table, x_frame_parms): Remove.
1843 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
1844 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
1845 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
1846 (x_change_window_heights, x_set_autoraise, x_set_autolower)
1847 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
1848 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
1849 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
1850 Remove. Use generic functions instead.
1851 (enum resource_types): Remove.
1852 (x_set_scroll_bar_default_width): New global function (for frame.c).
1853 (Fx_create_frame): Depend on x_figure_window_size to add space for
1854 toolbar and setup size_hint_flags.
1855 (w32_frame_parm_handlers): New table for redisplay_interface.
1856 (syms_of_w32fns): Don't intern/staticpro removed vars.
9443fcf6 1857
e072891b
KS
1858 * w32term.c: Remove unnecessary extern declarations.
1859 (x_fullscreen_adjust): Remove. Use generic instead.
1860 (x_redisplay_interface): Add w32_frame_parm_handlers member.
1861
1862 * w32reg.c (x_get_string_resource): Use XrmDatabase.
1863
1864 * macgui.h (XrmDatabase): New (dummy) typedef.
1865
1866 * macterm.h (EMACS_CLASS): Remove.
1867 (struct mac_display_info): Add xrdb member.
1868 (struct mac_output): Add want_fullscreen member.
1869
1870 * macfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
1871 parameters now defined in frame.h and frame.c.
1872 (Vx_resource_name): Remove. Use generic var.
1873 (check_x_display_info): Make non-static (for frame.c).
1874 (struct x_frame_parm_table, x_frame_parms): Remove.
1875 (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
1876 (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
1877 (x_set_border_width, x_set_internal_border_width, x_set_visibility)
1878 (x_change_window_heights, x_set_autoraise, x_set_autolower)
1879 (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
1880 (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
1881 (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
1882 Remove. Use generic functions instead.
1883 (enum resource_types): Remove.
1884 (x_set_scroll_bar_default_width): New global function (for frame.c).
1885 (mac_frame_parm_handlers): New table for redisplay_interface.
1886 (syms_of_macfns): Don't intern/staticpro removed vars.
9443fcf6 1887
e072891b
KS
1888 * macterm.c: Remove unnecessary extern declarations.
1889 (x_redisplay_interface): Add mac_frame_parm_handlers member.
1890
3e6a560b
KS
1891 * Makefile.in (frame.o): Add dependency on blockinput.h and files
1892 included from it (atimer.h and systime.h).
1893
7b7b454e
AS
18942003-03-30 Andreas Schwab <schwab@suse.de>
1895
1896 * xdisp.c (x_insert_glyphs): Fix swapped width and height
1897 parameters for shift_glyphs_for_insert.
1898
1899 * macterm.c (x_redisplay_interface): Add missing entry for
1900 draw_vertical_window_border.
1901
beb402de
KG
19022003-03-29 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@gmx.net>
1903
1904 * fileio.c (Fexpand_file_name): In the no-handler case, after
1905 expanding, look again for a handler and invoke it. This is needed
1906 for filenames like "/foo/../user@host:/bar/../baz" -- the first
1907 expansion produces "/user@host:/bar/../baz" which needs to be
1908 expanded again for the finame result "/user@host:/baz".
1909
b676f356
JD
19102003-03-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1911
1912 * gtkutil.c (xg_tool_bar_item_expose_callback): Reduce size
1913 of area to be redrawn for better performance.
1914
3c671a56
SM
19152003-03-28 Stefan Monnier <monnier@cs.yale.edu>
1916
1917 * xterm.c (take_vertical_position_into_account): Remove.
1918 (xt_action_hook): Call set_vertical_scroll_bar if needed.
1919 (XM_SB_MIN, XM_SB_RANGE): Remove (min is now set to 0).
1920 (xm_scroll_callback, x_create_toolkit_scroll_bar)
1921 (x_set_toolkit_scroll_bar_thumb): Simplify.
1922 (x_scroll_bar_expose): Only compile if !USE_TOOLKIT_SCROLL_BARS.
1923 (XTread_socket): Remove unused var.
1924 (x_make_frame_invisible): Replace goto with else.
1925
1926 * xdisp.c (set_vertical_scroll_bar): New fun.
1927 (redisplay_window): Use it.
1928
84f2e615
RS
19292003-03-26 Richard M. Stallman <rms@gnu.org>
1930
1931 * xdisp.c (update_tool_bar): Recompute tool bar if
1932 update_mode_lines is set. Set w->update_mode_line
1933 only if the tool bar contents actually change.
1934 (update_menu_bar): Undo previous change.
1935
70b6104c
JD
19362003-03-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1937
5fd6f727
JD
1938 * gtkutil.c (xg_resize_widgets): Don't call xg_frame_cleared.
1939 (xg_frame_set_char_size): Calculate scroll bar width before frame
1940 width. Call SET_FRAME_GARBAGED and cancel_mouse_face.
1941 (xg_separator_p): Check for all documented separator types.
1942 (xg_update_scrollbar_pos): Variable gheight not needed, use height.
1943 (update_frame_tool_bar): Don't call gdk_window_process_all_updates.
1944
70b6104c
JD
1945 * xdisp.c (update_menu_bar): Set w->update_mode_line to Qt
1946 so tool bar gets updated.
1947
d9b36d19
SM
19482003-03-26 Stefan Monnier <monnier@cs.yale.edu>
1949
1950 * data.c (store_symval_forwarding): Re-instate part of the code
1951 that was deleted with too much enthusiasm.
1952
19532003-03-25 Stefan Monnier <monnier@cs.yale.edu>
1954
1955 * data.c (store_symval_forwarding): Delete special read-only
1956 hack for type == -1, since we now use ->constant instead.
1957 (Fkill_local_variable): Don't use XBUFFER if it can be nil.
1958
1959 * buffer.c (overlays_in): Declare static.
1960 (syms_of_buffer) <enable-multibyte-characters>: Use the symbol's
1961 `constant' field rather than the variable's `type' field.
1962
365fa1b3
AC
19632003-03-24 Andrew Choi <akochoi@shaw.ca>
1964
1965 * config.in [MAC_OSX]: Do not redefine bcopy, bzero, and bcmp.
1966
1967 * dispextern.h [HAVE_CARBON]: Include Carbon.h.
1968
1969 * fns.c [MAC_OSX]: Do not redefine vector.
1970
1971 * keyboard.c [MAC_OSX]: Handle SIGINT with interrupt_signal.
1972
1973 * macgui.h: Remove definition of No_Cursor.
1974
d9b36d19 1975 * macterm.h: Include Carbon.h. Replace (struct Cursor *) by Cursor.
365fa1b3
AC
1976
1977 * xdisp.c: Define No_Cursor.
1978 (x_write_glyphs, notice_overwritten_cursor)
1979 (draw_phys_cursor_glyph, note_mode_line_or_margin_highlight)
1980 (note_mouse_highlight): Remove Mac-specific code.
1981 (note_mouse_highlight): Use bcmp instead of == to compare Cursors.
d9b36d19 1982
c0bcce6f
JPW
19832003-03-24 John Paul Wallington <jpw@gnu.org>
1984
1985 * xdisp.c (redisplay_window): If mini window's buffer is not
1986 empty, then redisplay it like other windows.
1987
a526b96c
KS
19882003-03-23 Kim F. Storm <storm@cua.dk>
1989
1990 * w32term.c (w32_draw_window_cursor): Fix last change.
1991
37ab321e
KH
19922003-03-23 Kenichi Handa <handa@m17n.org>
1993
a526b96c
KS
1994 * alloc.c (make_string_from_bytes, make_specified_string):
1995 Add `const' for the arg CONTENTS.
37ab321e
KH
1996
1997 * lisp.h (make_string_from_bytes, make_specified_string):
1998 Prototypes adjusted.
1999
7863d625
JD
20002003-03-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2001
a526b96c 2002 * xdisp.c (get_glyph_string_clip_rect): Remove ; at end of #endif
fd4c9408 2003
7863d625
JD
2004 * gtkutil.h: Take two more arguments to xg_update_scrollbar_pos.
2005 (XG_SB_RANGE): New define.
2006
2007 * gtkutil.c (xg_fixed_handle_expose): New function.
2008 (xg_create_frame_widgets): Call xg_fixed_handle_expose for
2009 expose events.
2010 (xg_update_scrollbar_pos): Take two more arguments, left and width
2011 of scroll bar including borders.
2012 Clear left and right part outside scroll bar separately as some
2013 themes have bars that are not an even number of pixels.
d9b36d19 2014 Don't set reallocate_redraws, don't call
7863d625
JD
2015 gdk_window_process_all_updates.
2016 (xg_set_toolkit_scroll_bar_thumb): Upper value is fixed,
2017 so no need to change it. Calculate size and value with XG_SB_RANGE.
2018
d9b36d19
SM
2019 * xterm.c (x_scroll_bar_create, XTset_vertical_scroll_bar):
2020 Pass left and width of scroll bar including borders to
7863d625
JD
2021 xg_update_scrollbar_pos.
2022
af0ad939
TTN
20232003-03-22 Thien-Thi Nguyen <ttn@gnu.org>
2024
2025 * Makefile.in: Make sure space precedes end-of-line backslashes.
2026
b22139fd
KS
20272003-03-22 Kim F. Storm <storm@cua.dk>
2028
2029 * xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
2030 Add generic versions here. Remove system specific versions
2031 defined elsewhere.
2032
2033 * dispextern.h (pixel_to_glyph_coords, glyph_to_pixel_coords):
2034 Add prototypes.
2035
6e6410cf
KS
2036 * xterm.h (STORE_NATIVE_RECT): New macro.
2037
5c9cc435
KS
20382003-03-21 Kim F. Storm <storm@cua.dk>
2039
00c64fab
SM
2040 * xdisp.c (get_glyph_string_clip_rect):
2041 Use FRAME_INTERNAL_BORDER_WIDTH.
5c9cc435
KS
2042
2043 * dispextern.h (struct redisplay_interface): Add active_p
2044 argument to draw_window_cursor member. All uses changed.
2045
acd37560
KS
20462003-03-21 Kim F. Storm <storm@cua.dk>
2047
2048 The following changes consolidate code related to writing and
2049 inserting glyphs, exposing frame, the tool bar, the mouse face,
2050 the output cursor, and help echo from xterm.c, w32term.c and
2051 macterm.c into xdisp.c. It also generalizes the use of the
2052 window_part enum instead of using numeric values throughout.
af0ad939 2053
acd37560
KS
2054 * xdisp.c: Consolidate gui-independent code here.
2055 Include keymap.h.
2056 (Qhelp_echo): Import.
2057 (mouse_autoselect_window, x_stretch_cursor_p): Declare here.
2058 (help_echo_string, help_echo_window, help_echo_object)
2059 (previous_help_echo_string, help_echo_pos): Declare here.
2060 (output_cursor, last_mouse_frame, last_tool_bar_item): Declare here.
2061 (estimate_mode_line_height): Define here. Handle windowing
2062 systems directly (without using estimate_mode_line_height_hook).
2063 (x_y_to_hpos_vpos, get_tool_bar_item, note_tool_bar_highlight):
2064 (update_window_cursor, update_cursor_in_window_tree)
2065 (fast_find_position, fast_find_string_pos)
2066 (note_mode_line_highlight, note_mode_line_or_margin_highlight)
2067 (expose_area, expose_line, expose_overlaps, expose_window)
2068 (expose_window_tree, phys_cursor_in_rect_p): New generic versions;
2069 declared static as they are only used locally in xdisp.c.
2070 (draw_glyphs): Rename from x_draw_glyphs and make static.
2071 (tool_bar_item_info, notice_overwritten_cursor): Make static.
2072 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
2073 (set_output_cursor, x_cursor_to, handle_tool_bar_click)
af0ad939 2074 (x_write_glyphs, x_insert_glyphs, x_clear_end_of_line):
acd37560
KS
2075 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
2076 (display_and_set_cursor, x_update_cursor, x_clear_cursor)
2077 (show_mouse_face, clear_mouse_face, cursor_in_mouse_face_p)
2078 (note_mouse_highlight, x_clear_window_mouse_face)
2079 (cancel_mouse_face, x_draw_vertical_border, expose_frame)
2080 (x_intersect_rectangles): New generic functions for use by xdisp.c
2081 and GUI front-ends.
2082 (syms_of_xdisp): Initialize and staticpro help_echo* variables.
2083 Defvar_bool "x-streach-cursor" and "mouse-autoselect-window" here.
2084
2085 * dispextern.h (Display_Info): Generic typedef for *_display_info.
2086 (NativeRectangle): Generic typedef for rectangle type.
2087 (enum window_part): Move here from window.c.
2088 (struct redisplay_interface): New members flush_display_optional,
2089 define_frame_cursor, clear_frame_area, draw_window_cursor,
2090 draw_vertical_window_border, shift_glyphs_for_insert.
2091 Rename member clear_mouse_face to clear_window_mouse_face.
2092 (estimate_mode_line_height_hook): Remove hook.
2093 (auto_raise_tool_bar_buttons_p): Don't declare extern.
2094 (tool_bar_item_info): Remove prototype.
2095 (help_echo_string, help_echo_window, help_echo_object)
2096 (previous_help_echo_string, help_echo_pos)
2097 (last_mouse_frame, last_tool_bar_item, mouse_autoselect_window):
2098 (x_stretch_cursor_p, output_cursor): Declare extern.
2099 (x_draw_glyphs, notice_overwritten_cursor): Remove prototypes.
2100 (x_write_glyphs), x_insert_glyphs, x_clear_end_of_line)
2101 (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
2102 (display_and_set_cursor, set_output_cursor, x_cursor_to)
2103 (x_update_cursor, x_clear_cursor, x_draw_vertical_border)
2104 (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
2105 (note_mouse_highlight, x_clear_window_mouse_face, cancel_mouse_face)
2106 (handle_tool_bar_click, clear_mouse_face, show_mouse_face)
2107 (cursor_in_mouse_face_p, expose_frame, x_intersect_rectangles):
2108 Add prototypes.
2109 (mode_line_string, marginal_area_string): Fix prototypes.
2110
2111 * window.c (enum window_part): Move to dispextern.h.
2112 (coordinates_in_window): Use enum window_part member names
2113 instead of numbers to describe return value.
2114 (struct check_window_data): Change part member to window_part.
2115 (check_window_containing): Return window_part unaltered.
2116 (window_from_coordinates): Change part arg from int to enum
2117 window_part. Allow part arg to be null. All users changed.
2118
2119 * window.h (window_from_coordinates): Fix prototype.
2120
2121 * term.c (estimate_mode_line_height): Move to xdisp.c.
2122
2123 * keyboard.c (make_lispy_event): Use enum window_part.
2124
2125 * dispnew.c (mode_line_string, marginal_area_string): Use enum
2126 window_part instead of int in arg list. Users changed.
2127
2128 * xterm.h (No_Cursor): Declare as None for X.
2129 (struct mac_output): Replace member cross_cursor by hand_cursor.
af0ad939 2130
acd37560
KS
2131 * xterm.c: Remove consolidated defines and code.
2132 (BETWEEN): Remove unused macro.
2133 (x_draw_vertical_window_border, x_shift_glyphs_for_insert)
2134 (x_define_frame_cursor, x_clear_frame_area)
2135 (x_draw_window_cursor): New X-specific functions for RIF.
2136 (x_redisplay_interface): Add new members.
2137
2138 * xfns.c: Setup and use hand_cursor instead of cross_cursor.
2139
2140 * w32term.h (struct w32_output): Remove cross_cursor member.
2141
2142 * w32term.c: Remove consolidated defines and code.
2143 (BETWEEN): Remove unused macro.
2144 (w32_draw_vertical_window_border, w32_shift_glyphs_for_insert)
2145 (w32_define_frame_cursor, w32_clear_frame_area)
2146 (w32_draw_window_cursor): New W32-specific functions for RIF.
2147 (w32_redisplay_interface): Add new members.
2148
2149 * w32gui.h (No_Cursor): Define as 0 for W32.
2150 (XRectangle): Add X compatible rectangle type.
2151 (NativeRectangle): Declare as RECT for W32.
2152 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
2153
2154 * w32fns.c: Remove setup of cross_cursor (already has hand_cursor).
2155
2156 * w32console.c: Remove consolidated defines and code.
af0ad939 2157
acd37560
KS
2158 * msdos.h (Display_Info): Add generic typedef.
2159
2160 * msdos.c: Remove consolidated defines and code.
2161 (IT_note_mouse_highlight, dos_rawgetc): Use enum window_part.
2162
2163 * macterm.h (struct mac_output): Replace member cross_cursor by
2164 hand_cursor.
2165 (activate_scroll_bars, deactivate_scroll_bars): Add prototypes.
2166
2167 * macterm.c: Remove consolidated defines and code.
2168 (BETWEEN): Remove unused macro.
2169 (mac_draw_vertical_window_border, mac_shift_glyphs_for_insert)
2170 (mac_define_frame_cursor, mac_clear_frame_area)
2171 (mac_draw_window_cursor): New Mac-specific functions for RIF.
2172 (x_redisplay_interface): Add new members.
2173
2174 * macgui.h (No_Cursor): Define as 0 for Mac.
2175 (XRectangle): Add X compatible rectangle type.
2176 (NativeRectangle): Declare as Rect for Mac.
2177 (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
2178
204ccab1
KS
2179 * macfns.c (x_set_mouse_color): Setup hand_cursor.
2180 (x_set_cursor_color): Use x_display_and_set_cursor.
acd37560 2181
9443fcf6 2182 * Makefile.in (xdisp.o): Add dependency on blockinput.h and files
acd37560
KS
2183 included from it. Add dependency on keymap.h.
2184
2185 * makefile.w32-in (xdisp.o): Add dependency on keymap.h.
2186
8ba01a70 21872003-03-21 Kenichi Handa <handa@m17n.org>
3f817c73
KH
2188
2189 * fileio.c (Fexpand_file_name): Fix previous change.
2190
8ba01a70 21912003-03-19 Kenichi Handa <handa@m17n.org>
4f497b0a
KH
2192
2193 * fileio.c (Ffile_name_directory): Reconstruct file name by
2194 make_specified_string.
2195 (Ffile_name_nondirectory, Ffile_name_as_directory)
2196 (Fdirectory_file_name, Fexpand_file_name)
2197 (Fsubstitute_in_file_name): Likewise.
2198 (Fread_file_name): Compare decoded homedir with DIR and
2199 DEFAULT_FILENAME.
2200
2201 * alloc.c (make_specified_string): If NCHARS is negative, count
2202 the number of characters.
2203
19536747
JD
22042003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2205
de38ae5a
JD
2206 * gtkutil.c (xg_frame_cleared): Call gtk_widget_queue_draw for
2207 all widgets.
2208
19536747
JD
2209 * gtkutil.h: Removed xg_ignore_next_thumb.
2210
37ab321e 22112003-03-18 Kenichi Handa <handa@m17n.org>
cb0d4562
KH
2212
2213 * coding.c (Vchar_coding_system_table): Remove this variable.
2214 (Vcoding_system_safe_chars): New variable.
2215 (intersection): Remove this function.
2216 (find_safe_codings): Don't use Vchar_coding_system_table, but try
2217 all codings in SAFE_CODINGS.
00c64fab 2218 (Ffind_coding_systems_region_internal): Adjust for the change of
cb0d4562
KH
2219 find_safe_codings. Get generic coding systems from
2220 Vcoding_system_safe_chars.
2221 (Fdefine_coding_system_internal): New function.
2222 (syms_of_coding): Defsubr Sdefine_coding_system_internal.
2223 Initialize and staticpro Vcoding_system_safe_chars.
2224
17097258
JD
22252003-03-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2226
2a2071c3
JD
2227 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb): Check if new values
2228 equal old values before updating.
2229
17097258
JD
2230 * xterm.c (xg_scroll_callback): Remove xg_ignore_next_thumb.
2231
2232 * gtkutil.c (xg_initialize): Remove xg_ignore_next_thumb.
2233
22342003-03-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2235
2236 * gtkutil.c: Removed handle_fixed_child, struct xg_last_sb_pos.
2237 (xg_resize_widgets): Don't call foreach(handle_fixed_child).
2238 (xg_gtk_scroll_destroy): Remove free of struct xg_last_sb_pos.
2239 (scroll_bar_button_cb): Set bar->dragging to NIL on button release.
2240 (xg_create_scroll_bar): Pass bar to button event callback.
2241 (xg_find_top_left_in_fixed): New function.
2242 (xg_update_scrollbar_pos): Don't call gdk_window_clear on
2243 whole scroll bar area. Get old position with
2244 xg_find_top_left_in_fixed, calculate and only clear needed areas.
2245 (xg_set_toolkit_scroll_bar_thumb): Do not adjust scroll bar if
2246 dragging is in progress. Calculate whole as for Motif.
2247 Remove code that saved last values. Call gtk_range functions to
2248 set scroll bar sizes.
2249
2250 * gtkutil.h: Removed xg_ignore_next_thumb.
2251
8cb9dfbf
JB
22522003-03-17 Juanma Barranquero <lektu@terra.es>
2253
2254 * makefile.w32-in ($(BLD)/xdisp.$(O)): Add dependency on blockinput.h
2255 and files included from it.
2256
00c64fab
SM
22572003-03-18 Stefan Monnier <monnier@cs.yale.edu>
2258
2259 * keymap.c (accessible_keymaps_1): Break cycles but without preventing
2260 multiple occurrences of the same keymap under different prefixes.
2261 (Faccessible_keymaps): Remove code redundant since 1994-08-03T07:39:00Z!rms@gnu.org.
2262
c45bb3b2
JR
22632003-03-16 Jason Rumney <jasonr@gnu.org>
2264
2265 * w32gui.h: Use HDC for Display.
2266
2267 * w32term.c (w32_encode_char): Prevent double-byte chars from
2268 crashing Emacs.
2269
2270 * w32fns.c (jpeg_load, png_load, slurp_file): Read image files
2271 as binary.
2272
2a6d0874
JB
22732003-03-16 Juanma Barranquero <lektu@terra.es>
2274
2275 * xdisp.c (x_produce_glyphs): Use FRAME_BASELINE_OFFSET.
2276
03eb5fab
KS
22772003-03-16 Kim F. Storm <storm@cua.dk>
2278
2279 The following changes consolidate some of the gui-independent
2280 parts of the processing and drawing of "glyph strings" from
2281 xterm.c, w32term.c, and macterm.c into xdisp.c.
2a6d0874 2282
03eb5fab
KS
2283 * dispextern.h (struct glyph): Reduce face_id member from 22 to
2284 21 bits (this reduces number of faces from 4M to 2M).
2285 Replace W32 specific w32_font_type member (2 bits) by generic
2286 font_type member (3 bits) for portability.
2287 (FONT_TYPE_UNKNOWN): New define, default for font_type member.
2288 (enum draw_glyphs_face): Define here.
2289 (struct glyph_string): Define here. Merge W32 and X versions.
2290 (struct redisplay_interface): New members per_char_metric,
2291 encode_char, compute_glyph_string_overhangs, draw_glyph_string.
2292 (VCENTER_BASELINE_OFFSET): Define here.
2293 (dump_glyph_string, x_get_glyph_overhangs, x_produce_glyphs)
2294 (x_draw_glyphs, notice_overwritten_cursor): Declare prototypes here.
2295
2296 * xdisp.c: Consolidate gui-independent "glyph string" code here.
2297 (dump_glyph_string): Moved here.
2298 (init_glyph_string, append_glyph_string_lists, append_glyph_string)
2299 (prepend_glyph_string_lists, get_glyph_face_and_encoding)
2300 (fill_composite_glyph_string, fill_glyph_string)
2301 (fill_image_glyph_string, fill_stretch_glyph_string)
2302 (left_overwritten, left_overwriting, right_overwritten)
2303 (right_overwriting, get_char_face_and_encoding)
2304 (set_glyph_string_background_width, compute_overhangs_and_x)
2305 (append_glyph, append_composite_glyph, produce_image_glyph)
2306 (take_vertical_position_into_account, append_stretch_glyph)
2307 (produce_stretch_glyph): New generic functions (based on X version).
2308 Call platform specific functions through rif.
2309 (INIT_GLYPH_STRING): New macro, hides W32 details.
2310 (BUILD_STRETCH_GLYPH_STRING, BUILD_IMAGE_GLYPH_STRING)
2311 (BUILD_CHAR_GLYPH_STRINGS, BUILD_COMPOSITE_GLYPH_STRING)
2312 (BUILD_GLYPH_STRINGS): Generic macros (based on X version).
2313 (x_draw_glyphs, x_get_glyph_overhangs, x_produce_glyphs)
2314 (notice_overwritten_cursor):
2315 Generic functions exported to platform modules. Users changed.
2316
2317 * xterm.h (FONT_DESCENT, FRAME_X_OUTPUT, FRAME_BASELINE_OFFSET)
2318 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE)
2319 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
fad49844 2320 New macros for consolidated code.
2a6d0874 2321
03eb5fab
KS
2322 * xterm.c: Remove consolidated defines and code.
2323 (x_per_char_metric, x_encode_char)
2324 (x_compute_glyph_string_overhangs): Adapt to RIF requirements.
2325 (x_redisplay_interface): Add new members.
2326
2327 * w32gui.h (Display): Add dummy typedef for consolidation.
2328 (XChar2b): Define alias for wchar_t for consolidation.
2329 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
2330
2331 * w32term.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY)
2a6d0874 2332 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE):
03eb5fab
KS
2333 New macros for consolidation.
2334
fad49844 2335 * w32term.c: Remove consolidated defines and code.
03eb5fab
KS
2336 (BUILD_WCHAR_T, BYTE1, BYTE2): Macros removed; callers changed
2337 to use STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2 instead.
2338 (w32_per_char_metric): Change font_type arg to int for RIF.
2339 (w32_encode_char): Return int according to RIF requirements.
2340 (w32_compute_glyph_string_overhangs): Adapt to RIF.
2341 (w32_get_glyph_overhangs): New function for RIF. Uses generic
2342 x_get_glyph_overhangs.
2343 (w32_redisplay_interface): Add new members.
2344
2345 * macgui.h (XChar2b): Move typedef here for consolidation.
2346 (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
2347
2348 * macterm.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY):
2349 (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): New macros for
2350 consolidation.
2351
2352 * macterm.c: Remove consolidated defines and code.
2353 (mac_per_char_metric): New function for RIF.
00c64fab 2354 (mac_encode_char): Adapt to new RIF requirements.
03eb5fab
KS
2355 (mac_compute_glyph_string_overhangs): Adapt for RIF.
2356 (x_redisplay_interface): Add new members.
2357
00c64fab
SM
23582003-03-15 Stefan Monnier <monnier@cs.yale.edu>
2359
2360 * keymap.c (Vmenu_events): New var.
2361 (syms_of_keymap): Initialize it.
2362 (where_is_internal): Check more carefully what is a menu event.
2363
225c7a07
RS
23642003-03-14 Richard M. Stallman <rms@gnu.org>
2365
2366 * lread.c (read1): After #!, exit loop on eof.
2367
cea9be54
JD
23682003-03-14 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2369
9ea0e54d
JD
2370 * gtkutil.h: Add declaration for xg_frame_cleared.
2371
0cb35f4e
JD
2372 * xterm.c (x_clear_frame): Call xg_frame_cleared for GTK.
2373
cea9be54
JD
2374 * gtkutil.c (struct xg_last_sb_pos): New structure.
2375 (handle_fixed_child): New function.
2376 (xg_resize_widgets): Call handle_fixed_child on all scroll bar widgets
2377 and force a redraw on them.
2378 (xg_gtk_scroll_destroy): Free struct xg_last_sb_pos also.
2379 (xg_create_scroll_bar): Add struct xg_last_sb_pos to scroll bar
2380 so we can avoid unneeded redraws.
2381 (xg_update_scrollbar_pos): Invalidate data in xg_last_sb_pos
2382 and force a redraw on the scroll bar.
2383 (xg_set_toolkit_scroll_bar_thumb): Do not change/redraw scroll bar
2384 if xg_last_sb_pos shows the positions are up to date.
0cb35f4e 2385 (xg_frame_cleared): New function.
cea9be54 2386
20b853f3
KH
23872003-03-13 Kenichi Handa <handa@m17n.org>
2388
2389 * coding.c (Fdetect_coding_region): Fix docstring.
2390 (Fdetect_coding_string): Fix docstring.
2391
7a555aff
AS
23922003-03-13 Andreas Schwab <schwab@suse.de>
2393
25cc0080
AS
2394 * gtkutil.c: Add prototype for create_menus.
2395
30225431
AS
2396 * data.c (long_to_cons): Fix type of top.
2397
2398 * xselect.c (selection_data_to_lisp_data): Use int instead of
2399 long for an integer of size 4.
2400
7a555aff 2401 * gtkutil.c (xg_update_frame_menubar): Add missing return value.
30225431 2402 (xg_tool_bar_help_callback): Likewise.
7a555aff 2403
a3e4741f
AS
24042003-03-12 Andreas Schwab <schwab@suse.de>
2405
2406 * xterm.c (x_term_init) [USE_GTK]: Fix typo.
2407
9668be7c
KS
24082003-03-12 Kim F. Storm <storm@cua.dk>
2409
03eb5fab 2410 The following changes consolidate the fringe handling from
9668be7c 2411 xterm.c, w32term.c, and macterm.c into xdisp.c.
00a88f32 2412
9668be7c
KS
2413 * xdisp.c: Consolidate fringe handling code here.
2414 (left_bits, right_bits, continued_bits, continuation_bits)
2415 (ov_bits, zv_bits): Define fringe bitmaps.
2416 (fringe_bitmaps): New array holding fringe bitmaps.
2417 (draw_fringe_bitmap): Draw a specific bitmap; call display
2418 specific drawing routine via rif->draw_fringe_bitmap.
2419 (draw_row_fringe_bitmaps): Generic replacement for
2420 x_draw_row_fringe_bitmaps; all callers changed.
2421 (compute_fringe_widths): Generic replacement for
2422 x_compute_fringe_widths; all callers changed.
2423
2424 * dispextern.h (enum fringe_bitmap_type): Define here.
2425 (struct fringe_bitmap, struct draw_fringe_bitmap_params): New.
2426 (fringe_bitmaps): Declare extern.
2427 (struct redisplay_interface): New member draw_fringe_bitmap.
2428 (draw_row_fringe_bitmaps, compute_fringe_widths): Declare extern.
2429
2430 * xterm.c: Remove generic fringe code.
2431 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
2432 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
2433
2434 * w32term.c: Remove generic fringe code.
2435 (w32_draw_fringe_bitmap): Only perform actual fringe drawing.
2436 (w32_redisplay_interface): Add w32_draw_fringe_bitmap member.
00a88f32 2437
9668be7c
KS
2438 * macterm.c: Remove generic fringe code.
2439 (x_draw_fringe_bitmap): Only perform actual fringe drawing.
2440 (x_redisplay_interface): Add x_draw_fringe_bitmap member.
2441
00a88f32
SM
24422003-03-11 Stefan Monnier <monnier@cs.yale.edu>
2443
2444 * print.c (Fprin1_to_string): Return unibyte string if possible.
2445
1d1de695
DK
24462003-03-09 David Kastrup <dak@gnu.org>
2447
2448 * process.c (read_process_output): We have allocated enough space
2449 for readmax and carryover, so actually use the alloted space.
2450
257f40f2
JD
24512003-03-09 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2452
2453 * keyboard.c (make_lispy_event): Extend mouse_syms if needed for
2454 toolkit scrollbar click.
2455
2456 * xterm.c (x_window_to_scroll_bar): Call xg_get_scroll_id_for_window
2457 for USE_GTK.
2458 (x_scroll_bar_handle_click): Use this function for toolkit scrollbars
2459 also.
2460 (handle_one_xevent): ButtonPress/Release: If event is for a toolkit
2461 scrollbar and control is pressed, call x_scroll_bar_handle_click.
00a88f32 2462
257f40f2
JD
2463 * gtkutil.h: Declare xg_get_scroll_id_for_window.
2464
2465 * gtkutil.c (xg_get_scroll_id_for_window): New function.
2466 (xg_tool_bar_item_expose_callback): New function.
2467 (xg_tool_bar_expose_callback): Call update_frame_tool_bar.
2468 (xg_create_tool_bar): Connect xg_tool_bar_expose_callback to expose
2469 on the tool bar widget.
2470 (update_frame_tool_bar): Connect xg_tool_bar_item_expose_callback
2471 to expose on the tool bar item widgets.
2472
15213141
JD
24732003-03-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2474
26b74a0b 2475 * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of
00a88f32 2476 struct image* when deciding to update (struct image* may have been
26b74a0b
JD
2477 deleted from the image cache).
2478
15213141
JD
2479 * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if
2480 the event isn't for a frame (i.e. for dialogs).
2481
20b853f3 24822003-03-07 Kenichi Handa <handa@m17n.org>
cb681b34
KH
2483
2484 * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of
2485 composition components reaches the limit, terminate composing.
2486 (COMPOSITION_OK): New macro.
00a88f32 2487 (detect_coding_iso2022): Use it if an escape sequence for
cb681b34
KH
2488 composition is found.
2489 (coding_restore_composition): Adjust the number of composition
2490 components if it is not sane.
2491
c9029fe5
JB
24922003-03-06 Juanma Barranquero <lektu@terra.es>
2493
2494 * w32term.h (struct w32_display_info): Add xrdb member to support
2495 passing resources via -xrm on Windows.
2496
2497 * w32term.c (w32_make_rdb): New function.
2498 (w32_term_init): Use it to initialize xrdb member of w32_display_info
2499 struct. Delete leftover code.
2500
2501 * w32fns.c (Fx_get_resource, x_get_resource_string): Pass xrdb to check
2502 for resources passed on the command line.
2503
2504 * w32reg.c (w32_get_rdb_resource): New function.
2505 (x_get_string_resource): Use it, so resources passed with -xrm
2506 supercede the ones in the registry.
2507
9d00001f
JD
25082003-03-04 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2509
2510 * xterm.c (x_detect_focus_change): Call x_any_window_to_frame
2511 instead of x_top_window_to_frame.
2512
ca2417b9
JD
25132003-03-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2514
2515 * xsmfns.c (smc_save_yourself_CB): Add --no-splash to options
2516 when restarting Emacs.
2517
5b20caf0
RS
25182003-03-03 Richard M. Stallman <rms@gnu.org>
2519
2520 * buffer.c (Fkill_buffer): Use Frun_hook_with_args_until_failure
2521 to run kill-buffer-query-functions.
2522 (Qkill_buffer_query_functions): New var.
2523 (syms_of_buffer): Init and staticpro it.
2524
58e91b77
JD
25252003-03-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2526
2527 * xterm.h (XSync): Define as gdk_window_process_all_updates for GTK.
2528
932357b4
KS
25292003-02-25 Kim F. Storm <storm@cua.dk>
2530
2531 * xdisp.c (redisplay_window): Fix infinite loop in redisplay.
2532 If centering point failed to make whole line visible and vscroll
2533 is non-zero, disable vscroll and try centering point again.
2534
2535 * lread.c (read1): Accept `single space' syntax like (? x).
2536
bb8db7e1
JD
25372003-02-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2538
2539 * keyboard.c (cancel_hourglass_unwind): Surround with
2540 #ifdef HAVE_X_WINDOWS
2541
47d77aab
KH
25422003-02-25 Kenichi Handa <handa@m17n.org>
2543
2544 * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer
2545 process only when "subprocesses" is defined.
2546
6a097c0c
SM
25472003-02-24 Stefan Monnier <monnier@cs.yale.edu>
2548
2549 * syntax.c (back_comment): Only check nestedness of 2nd char if needed.
2550
0b063c27
JB
25512003-02-24 Juanma Barranquero <lektu@terra.es>
2552
d1135afc
JB
2553 * callint.c (fix_command): Declare as static void and move before
2554 Fcall_interactively.
2555
0b063c27
JB
2556 * xdisp.c (Qwhen): Declare external; it's now defined in callint.c.
2557 (syms_of_xdisp): Don't initialize Qwhen.
2558
0af912f0
JD
25592003-02-23 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2560
2561 * keyboard.c (cancel_hourglass_unwind): New function.
2562 (command_loop_1): Cancel hourglass with unwind-protect.
2563
120d0a23
RS
25642003-02-23 Richard M. Stallman <rms@gnu.org>
2565
2566 * callint.c (fix_command): New subroutine, from Fcall_interactively.
2567 Detect (when ... (region-beginning)) etc.
2568 (Fcall_interactively): Call fix_command.
2569 (Qif, Qwhen): New variables.
2570 (syms_of_callint): Init and staticpro them.
0b063c27 2571
120d0a23
RS
2572 * regex.c (print_partial_compiled_pattern): Output to stderr.
2573
4ece81a6
KG
25742003-02-23 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
2575
2576 * dired.c (directory_files_internal): Don't expand directory.
2577 (Fdirectory_files, Fdirectory_files_and_attributes): Do it here
2578 instead. From Lars Hansen <larsh@math.ku.dk>.
2579
e52bd6b7
SM
25802003-02-22 Stefan Monnier <monnier@cs.yale.edu>
2581
2582 * fns.c (string_to_multibyte): Remove unused var i.
2583 (Flanginfo): Fix int/Lisp_Object mixup.
2584 (void_call2): New fun.
2585 (Fmap_char_table): Use it in place of call2.
2586
2587 * xfaces.c (x_face_list_fonts): Fix int/Lisp_Object mixup.
2588
2589 * macros.c (Fstart_kbd_macro): Remove redundant assignment.
2590
2591 * keymap.c (copy_keymap_1): Make it static.
2592
2593 * alloc.c (Fgarbage_collect): Don't use XSETFLOAT.
2594
c33ef7c4
JB
25952003-02-22 David Ponce <david@dponce.com>
2596
2597 * lread.c (Fload): Don't check STRING_MULTIBYTE.
2598
16782258
JD
25992003-02-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2600
2601 * process.h: Removed subtty field from struct Lisp_Process.
2602
2603 * process.c (create_process): Remove setting of subtty.
2604 (emacs_get_tty_pgrp): New function.
e52bd6b7
SM
2605 (Fprocess_running_child_p, process_send_signal):
2606 Call emacs_get_tty_pgrp instead of ioctl.
16782258
JD
2607 (process_send_signal): Call EMACS_KILLPG if ioctl TIOCSIGSEND fails.
2608
3abeca61
KG
26092003-02-21 Kai Gro\e,A_\e(Bjohann <kai.grossjohann@uni-duisburg.de>
2610
2611 * keymap.c (Fdefine_key): Doc fix.
2612
92a8ce63
JB
26132003-02-21 Juanma Barranquero <lektu@terra.es>
2614
2615 Port of patch for RC by Klaus Zeitler <kzeitler@lucent.com>.
2616
2617 * s/hpux10.h: Define POLL_INTERRUPTED_SYS_CALL, not
2618 POLLING_PROBLEM_IN_SELECT.
2619
2620 * s/hpux11.h: Include hpux10-20.h instead of hpux10.h.
2621 Delete #undef of POLLING_PROBLEM_IN_SELECT.
2622
2623 * s/hpux10-20.h: New file.
2624
e52bd6b7
SM
2625 * process.c (wait_reading_process_input):
2626 Use POLL_INTERRUPTED_SYS_CALL, not POLLING_PROBLEM_IN_SELECT.
92a8ce63 2627
20f1ef2e
KH
26282003-02-20 Kenichi Handa <handa@m17n.org>
2629
32d0a9dc
KH
2630 * fontset.c (check_fontset_name): If NAME is nil, return the
2631 default fontset.
2632 (override_font_info): New function.
e52bd6b7 2633 (Fset_fontset_font): Document that NAME nil means the default fontset.
32d0a9dc
KH
2634 (Ffontset_info): If FONTSET is not the default fontset, merge
2635 FONTSET onto the copy of the default fontset, and work on that
2636 copy. Document that NAME nil means the default fontset.
2637 (Ffontset_font): Document that NAME nil means the default fontset.
2638
20f1ef2e
KH
2639 * process.c (setup_process_coding_systems): If the process's
2640 in/out descriptor is -1, do nothing.
2641
77d1daf2
AS
26422003-02-19 Andreas Schwab <schwab@suse.de>
2643
e52bd6b7
SM
2644 * lisp.h (Fcancel_kbd_macro_events, Fstring_to_multibyte):
2645 Add prototypes.
77d1daf2 2646
f9a45bb3
KH
26472003-02-19 Kenichi Handa <handa@m17n.org>
2648
2649 * xfaces.c (try_alternative_families): Try all scalable fonts if
2650 Vscalable_fonts_allowed is not Qt.
2651
72ecb43c
JD
26522003-02-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2653
2654 * xfaces.c (x_face_list_fonts): Set *pfonts to 0 if no fonts found.
2655
ee5be7c3
JD
26562003-02-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2657
2658 * xterm.c (x_list_fonts): If maxnames is less than 0, get all font
2659 names.
2660
2661 * xfaces.c (x_face_list_fonts): Allocate struct font_name here.
e52bd6b7 2662 (sorted_font_list): Move allocation of struct font_name to
ee5be7c3
JD
2663 x_face_list_fonts.
2664 (Fx_font_family_list): Set font-list-limit to -1 to get all font names.
2665 (Fx_list_fonts): Set maxnames to -1 to get all font names.
2666
4cd519a7
KS
26672003-02-18 Kim F. Storm <storm@cua.dk>
2668
068f9882
KS
2669 * lread.c (read1): Fix last change.
2670 "`" is not always special. Allow "?" after a character constant.
4cd519a7 2671
7290a344
AC
26722003-02-18 Andrew Choi <akochoi@shaw.ca>
2673
2674 * unexmacosx.c (copy_data_segment): Also copy __cfstring section.
2675
1f7fa69b
AS
26762003-02-18 Andreas Schwab <schwab@suse.de>
2677
2678 * window.c (window_scroll_pixel_based): Move outside a
2679 multi-glyph character before setting new window start.
2680
2681 * xdisp.c (in_display_vector_p): New function.
2682 * dispextern.h (in_display_vector_p): Declare.
2683
23e21195
KS
26842003-02-18 Kim F. Storm <storm@cua.dk>
2685
2686 * lread.c (read1): Fix and relax read syntax.
2687 Recognize "[", ";", "#", and "?" after a dotted-pair dot.
2688 Only recognize "," after dotted-pair dot if inside backquote.
2689 Never include "`" or "," (inside backquote) in a symbol.
2690 Allow dotted-pair dot after a character constant.
2691 Allow "`" and "," (inside backquote) after a character constant.
92a8ce63 2692
f098b121
JD
26932003-02-17 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2694
2695 * gtkutil.c (xg_tool_bar_expose_callback): New function.
2696 (xg_create_tool_bar): Force style of tool bar to be horizontal with
2697 icons. Set name of tool bar to emacs-toolbar.
2698 (update_frame_tool_bar): Connect expose event to
2699 xg_tool_bar_expose_callback.
2700
63020c46
RS
27012003-02-17 Richard M. Stallman <rms@gnu.org>
2702
2703 * keyboard.c (this_command_key_count_reset): New variable.
2704 Initiatize to 0 where this_command_key_count is set.
2705 (read_char): Save and restore this_command_key_count_reset
2706 around input method code.
2707 (read_char): If this_command_key_count_reset, echo reread commands.
2708 (Freset_this_command_lengths): Set this_command_key_count_reset to 1.
2709
fb4452cc
KH
27102003-02-17 Kenichi Handa <handa@m17n.org>
2711
2712 * fns.c (string_to_multibyte): Always return a multibyte string.
2713
bd11cc09
JR
27142003-02-16 Jason Rumney <jasonr@gnu.org>
2715
e52bd6b7
SM
2716 * w32fns.c (w32_list_bdf_fonts, w32_list_fonts):
2717 Negative max_fonts parameter means list all.
bd11cc09 2718
4cdf4bde
DL
27192003-02-14 Dave Love <fx@gnu.org>
2720
2721 * fns.c (Flanginfo): Doc fix.
2722
023b93f6
KS
27232003-02-13 Kim F. Storm <storm@cua.dk>
2724
37cd4238
KS
2725 * lread.c (read_escape): Interpret \s as a SPACE character, except
2726 for \s-X in a character constant which still is the super modifier.
2727 (read1): Signal an `invalid read syntax' error if a character
2728 constant is immediately followed by a digit or symbol character.
2729
140a6b7e
KS
2730 * search.c (Fmatch_data): Doc fix. Explicitly state that
2731 match-data is undefined if last search failed.
2732
023b93f6
KS
2733 * keymap.c (Fcommand_remapping): Renamed from Fremap_command.
2734 All uses changed.
2735
7d5c86e5
JB
27362003-02-12 Juanma Barranquero <lektu@terra.es>
2737
2738 * eval.c (Fdefmacro): Fix typo.
2739
295fff2c
KS
27402003-02-12 Kim F. Storm <storm@cua.dk>
2741
2742 * macros.c (Fstart_kbd_macro): If appending, and last keyboard
2743 macro is a string, convert meta modifiers in string when copying
2744 the string into a vector.
2745
60f3202d
KS
27462003-02-11 Kim F. Storm <storm@cua.dk>
2747
2748 * keymap.c (Fremap_command): Return nil if arg is not a symbol.
2749
61cb0b53
KH
27502003-02-11 Kenichi Handa <handa@m17n.org>
2751
2752 * Makefile.in (lisp, shortlisp): Add malayalam.el and tamil.el.
2753
7392e23c
KS
27542003-02-10 Kim F. Storm <storm@cua.dk>
2755
2756 * process.c: Doc fixes.
2757 (syms_of_process): Add `:' prefix to QCfilter_multibyte.
2758
ce4254bd
KH
27592003-02-10 Kenichi Handa <handa@m17n.org>
2760
9c7a329a
KH
2761 * fns.c (Fstring_to_multibyte): Fix typo in the docstring.
2762
ce4254bd
KH
2763 * process.c (QCfilter_multibyte): New variable.
2764 (setup_process_coding_systems): New function.
e52bd6b7
SM
2765 (Fset_process_buffer, Fset_process_filter):
2766 Call setup_process_coding_systems.
ce4254bd
KH
2767 (Fstart_process): Initialize the member `filter_multibyte' of
2768 struct Lisp_Process.
2769 (create_process): Call setup_process_coding_systems.
2770 (Fmake_network_process): New keyward `:filter-multibyte'.
2771 Initialize the member `filter_multibyte' of struct Lisp_Process.
2772 Call setup_process_coding_systems.
2773 (server_accept_connection): Call setup_process_coding_systems.
2774 (read_process_output): If the process has a filter, decide the
2775 multibyteness of a string to given to the filter by
2776 `filter_multibyte' member of the process. If the process doesn't
2777 have a filter and the result of conversion is unibyte, use
2778 Fstring_to_multibyte (not Fstring_make_multibyte) to get the
2779 multibyte form.
2780 (Fset_process_coding_system): Call setup_process_coding_systems.
2781 (Fset_process_filter_multibyte): New function.
2782 (Fprocess_filter_multibyte_p): New function.
2783 (syms_of_process): Intern and staticpro QCfilter_multibyte.
2784 Defsubr Sset_process_filter_multibyte and
2785 Sprocess_filter_multibyte_p.
2786
2787 * process.h (struct Lisp_Process): New member filter_multibyte.
2788
2789 * lisp.h (setup_process_coding_systems): Add prototype.
2790
2791 * buffer.c (Fset_buffer_multibyte): If the current buffer has a
2792 process, update coding systems for the process.
2793
b08d5f59
KH
27942003-02-09 Kenichi Handa <handa@m17n.org>
2795
2796 * fns.c (string_to_multibyte): New function.
2797 (Fstring_to_multibyte): New function.
2798 (syms_of_fns): Defsubr it.
2799
0dfd93c0
AS
28002003-02-08 Andreas Schwab <schwab@suse.de>
2801
2802 * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
2803 instead of the substitution.
2804
7b76ca1c
JD
28052003-02-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2806
2807 * xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
2808
2809 * xmenu.c (menu_position_func): Adjust menu popup position so that
2810 the menu is fully visible.
7b76ca1c 2811
2436a4e4
JD
28122003-02-07 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2813
2814 * xterm.c (x_text_icon, x_raise_frame, x_lower_frame)
e52bd6b7
SM
2815 (x_make_frame_invisible, x_wm_set_icon_position):
2816 Use FRAME_OUTER_WINDOW instead of ifdef X_TOOLKIT/else/endif.
2436a4e4
JD
2817
2818 * xfns.c (x_set_name, x_set_title): Ditto.
2819
37d1e680
RS
28202003-02-04 Richard M. Stallman <rms@gnu.org>
2821
2822 * keyboard.c (echo_now): Update before_command_echo_length.
2823 (Freset_this_command_lengths): Reset this_command_key_count etc.
2824 immediately rather than arranging to do it later.
2825 (before_command_key_count_1, before_command_echo_length_1)
2826 (before_command_restore_flag): Vars deleted.
2827 (add_command_key): Don't handle before_command_restore_flag.
2828 (read_char, record_menu_key): Don't update before_command_key_count or
2829 before_command_echo_length.
2830 (read_char): Don't handle before_command_restore_flag.
2831
2832 * keyboard.c (command_loop_1): Don't call adjust_point_for_property
2833 in direct-output clauses if it wouldn't be called in the ordinary case.
2834
578846a3
KS
28352003-02-04 Kim F. Storm <storm@cua.dk>
2836
2837 * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix.
2838
49853a4d
JD
28392003-02-02 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2840
2841 * gtkutil.c (remove_from_container): Copying list is not needed.
2842 (xg_update_menubar, xg_update_menu_item, xg_update_submenu)
2843 (xg_modify_menubar_widgets, update_frame_tool_bar): Call g_list_free
2844 on list returned from gtk_container_get_children to avoid memory leak.
2845
8b53dc06
JR
28462003-02-01 Jason Rumney <jasonr@gnu.org>
2847
5d54d177
JR
2848 * w32fns.c (w32_create_pixmap_from_bitmap_data): Use alloca for
2849 local malloc.
2850 [HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
2851 definitions in xpm.h.
2852 (init_xpm_functions): New function.
2853 (xpm_load): Sync with xfns.c. Adapt for Windows version of libXpm.
2854 (init_external_image_libraries): Try to load libXpm.dll.
2855
8b53dc06
JR
2856 * fileio.c (Fcopy_file) [WINDOWSNT]: Reverse logic for setting
2857 timestamp.
2858
b222e415
DL
28592003-01-31 Dave Love <fx@gnu.org>
2860
2861 * syntax.c (Fskip_chars_forward)
2862 (open-paren-in-column-0-is-defun-start): Doc fix.
2863
c60ee5e7
JB
28642003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
2865
2866 * fileio.c: Support // at start of name for Cygwin (just added proper
2867 preprocessor tests).
2868
2869 * keyboard.c: Port to Cygwin (just added proper preprocessor tests).
2870
2871 * Makefile.in: Use @EXEEXT@ for Cygwin.
2872
2873 * mem-limits.h: Added ifdef to define BSD4_2 for Cygwin.
2874
2875 * s/cygwin.h: Added for Cygwin port.
2876
53b37591
JB
28772003-01-31 Juanma Barranquero <lektu@terra.es>
2878
2879 * w32fns.c (DrawText): Kludge to avoid a redefinition on Windows
2880 when including gif_lib.h.
fe929957
JB
2881 (init_gif_functions, init_tiff_functions): New functions.
2882 (gif_load, tiff_load): Sync with xfns.c version. Adjust colors for
2883 Windows. Disable color table lookups. Call library functions
53b37591 2884 through pointers determined at runtime.
fe929957
JB
2885 (init_external_image_libraries): Try to load libungif.dll and
2886 libtiff.dll.
53b37591 2887
45415a8f
KH
28882003-01-31 Kenichi Handa <handa@m17n.org>
2889
2890 * xdisp.c (SKIP_GLYPHS): New macro.
e52bd6b7 2891 (set_cursor_from_row): Skip all glyphs that comes from overlay string.
45415a8f 2892
a97e4138
JD
28932003-01-30 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2894
e52bd6b7 2895 * gtkutil.c (free_frame_tool_bar): Remove debug printf.
a97e4138 2896
6eed9bed
DL
28972003-01-30 Dave Love <fx@gnu.org>
2898
2899 * alloc.c (Vgc_elapsed, gcs_done): New variables.
2900 (Fgarbage_collect): Use them.
2901 (init_alloc, syms_of_alloc): Set them up.
2902
100dcd40
JB
29032003-01-30 Juanma Barranquero <lektu@terra.es>
2904
2905 * w32fns.c (init_external_image_libraries): Add missing operator.
2906
fbd852af
JR
29072003-01-29 Jason Rumney <jasonr@gnu.org>
2908
2909 * w32fns.c (init_external_image_libraries): Allow jpeg-62.dll as
2910 an alternative name for jpeg.dll.
2911
8a2d8020
KH
29122003-01-29 Kenichi Handa <handa@m17n.org>
2913
2914 * xdisp.c (set_cursor_from_row): Pay attention to string display
2915 properties.
2916
058c18c7
AC
29172003-01-28 Benjamin Riefenstahl <Benjamin.Riefenstahl@epost.de>
2918
2919 * macterm.c (keycode_to_xkeysym_table): Add <tab>, <backspace>,
2920 <escape>.
2921 (keycode_to_xkeysym_table): Reformat and add more comments.
2922 (XTread_socket): Drop special case for backspace.
2923
385f11cf
AC
29242003-01-28 Andrew Choi <akochoi@shaw.ca>
2925
2926 * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
2927 values in old-style RGB specs.
2928
c922a224
JB
29292003-01-27 Juanma Barranquero <lektu@terra.es>
2930
2931 * w32fns.c (init_external_image_libraries): Try alternate names for the
2932 jpeg dll.
2933
0a1d6de0
JD
29342003-01-27 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
2935
2936 * gtkutil.c (create_dialog, xg_separator_p)
2937 (xg_item_label_same_p, xg_update_menu_item): Check for NULL string
2938 before calling strcmp or strlen.
2939
a97e4138 29402003-01-26 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1d1885fc
JD
2941
2942 * gtkutil.c (update_frame_tool_bar): Call prepare_image_for_display
2943 and handle image load failure.
2944
28908312
JR
29452003-01-26 Jason Rumney <jasonr@gnu.org>
2946
2947 * w32fns.c (init_jpeg_functions, jpeg_resync_to_restart_wrapper):
2948 New functions.
2949 (jpeg_load): Sync with xfns.c version. Adjust colors for Windows.
2950 Disable color table lookups. Call jpeg library functions
2951 through pointers determined at runtime.
2952 (init_external_image_libraries): Try to load jpeg.dll.
2953
84e47416
RS
29542003-01-25 Richard M. Stallman <rms@gnu.org>
2955
2956 * lisp.h: Declare format2 instead of format1.
2957
2958 * fileio.c (barf_or_query_if_file_exists):
2959 Call format2 instead of format1.
2960
2961 * editfns.c (format2): New function, replaces format1
2962 but takes exactly two Lisp Objects as format args.
2963
2964 * buffer.c (Fkill_buffer): Call format2 instead of format1.
2965
a97e4138 29662003-01-25 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
1fcfb866
JD
2967
2968 * xterm.h: Change to return value of x_dispatch_event to int.
2969
2970 * xterm.c (x_filter_event): New function.
2971 (event_handler_gdk, XTread_socket): Call x_filter_event.
2972 (x_dispatch_event): Change to return value of finish.
2973 (event_handler_gdk): Use return value from x_dispatch_event.
2974
2975 * xfns.c (x_window): Call create_frame_xic for GTK version to
2976 initialize input methods.
2977
2978 * gtkutil.h: Add (void) prototypes.
2979
2980 * gtkutil.c (create_menus): Remove code that puts the help menu to
2981 the right.
2982
54eefef1
JR
29832003-01-25 Jason Rumney <jasonr@gnu.org>
2984
2985 * w32fns.c (XPutPixel): Handle monochrome images; used for masks.
2986 [HAVE_PNG]: Sync with xfns.c version.
2987 (png_load): Adjust colors for Windows. Use Windows
2988 bitmaps. Disable color table lookups.
c262430d
JR
2989 (DEF_IMGLIB_FN, LOAD_IMGLIB_FN): New macros.
2990 (init_png_functions): New function.
2991 (png_read_from_memory, png_load): Call png library functions
2992 through pointers determined at runtime.
2993 (QCloader, QCbounding_box, QCpt_width, QCpt_height): Declare.
2994 (init_external_image_libraries): New function.
2995 (init_xfns): Call it.
54eefef1 2996
1a9e275b
AS
29972003-01-24 Andreas Schwab <schwab@suse.de>
2998
2999 * minibuf.c (Fminibuffer_message): Verify type of parameter.
3000
a97e4138 30012003-01-24 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
81e302ef
JD
3002
3003 * gtkutil.c (xg_initialize): Initialize id_to_widget here instead
3004 of static initializer.
3005
422eec7e
DL
30062003-01-24 Dave Love <fx@gnu.org>
3007
3008 * s/gnu-linux.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define for more
3009 architectures.
3010
3011 * alloc.c (mark_stack) [!GC_LISP_OBJECT_ALIGNMENT && __GNUC__]:
3012 Use __alignof__.
3013
2a026b04
KH
30142003-01-24 Kenichi Handa <handa@m17n.org>
3015
3016 * keyboard.c (adjust_point_for_property): New second arg MODIFIED.
e52bd6b7 3017 It it is nonzero, don't pretend that an invisible area doesn't exist.
2a026b04
KH
3018 (command_loop_1): Call adjust_point_for_property with proper
3019 second arg.
3020
a18bb28d
JR
30212003-01-22 Jason Rumney <jasonr@gnu.org>
3022
3023 Sync changes with xterm.c and xfns.c.
3024
3025 * w32term.c (x_draw_glyph_string_foreground)
3026 (x_draw_composite_glyph_string_foreground): Implement overstriking.
3027
3028 * w32term.c (x_write_glyphs): Clear phys_cursor_on_p if current
3029 phys_cursor's hpos is overwritten. This is still not completely
3030 correct, as it doesn't really make sense to use hpos at all to
3031 get the cursor glyph (as that is relative to the width of the
3032 characters on the line, which may have changed during the update).
3033
3034 * w32term.c (notice_overwritten_cursor): Handle the special case
3035 of the cursor being in the first blank non-text line at the
3036 end of a window.
3037
3038 * w32term.c (x_draw_hollow_cursor, x_draw_bar_cursor)
3039 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
3040 Compute from the x position returned by x_draw_glyphs.
3041
3042 (x_display_and_set_cursor): Don't set phys_cursor_width here,
3043 except for NO_CURSOR and system caret, to make phys_cursor_width
3044 contain what its name suggests.
3045 (notice_overwritten_cursor): Consider the cursor image erased if
3046 the output area intersects the cursor image in y-direction.
3047
6a097c0c
SM
3048 * w32term.c (note_mode_line_or_margin_highlight): Rename from
3049 note_mode_line_highlight and extend.
a18bb28d
JR
3050
3051 * w32term.c (last_window): New variable.
3052 (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs.
3053 (note_mouse_movement): Remove reimplemented code in #if 0.
3054
3055 * w32fns.c (x_set_cursor_type): Set cursor_type_changed,
3056 not update_mode_lines, and always set it to 1.
3057
ac6e47ef
JR
30582003-01-21 Jason Rumney <jasonr@gnu.org>
3059
3060 * w32fns.c (IDC_HAND): Define it if system headers don't.
3061
30622003-01-21 KOBAYASHI Yasuhiro <kobayays@otsukakj.co.jp>
3063
3064 * w32term.h (struct w32_output): New member hand_cursor.
3065 (WM_EMACS_SETCURSOR): New message definition.
3066
3067 * w32term.c (note_mode_line_highlight): Delete #if 0 to enable
3068 function w32_define_cursor.
3069 (note_mouse_highlight): Initialize, setup cursor accoding to mouse
3070 position, change member name output_data.x to output_data.w32 and
3071 add function w32_define_cursor.
3072 (show_mouse_face): Delete #if 0 to enable function w32_define_cursor
3073 and change member name output_data.x to output_data.w32.
e52bd6b7
SM
3074 (w32_initialize_display_info):
3075 Setup dpyinfo->vertical_scroll_bar_cursor.
ac6e47ef
JR
3076
3077 * w32fns.c (Vx_hand_shape): New variable.
3078 (w32_wnd_proc): Add message entries for WM_SETCURSOR and
3079 WM_EMACS_SETCURSOR.
3080 (x-create-frame): Setup Cursor types.
3081
ceb39a17
JB
30822003-01-21 David Ponce <david@dponce.com>
3083
ac6e47ef
JR
3084 * w32term.c (w32_encode_char): For DIM=1 charset, set
3085 ccl->reg[2] to -1 before calling ccl_driver. (Sync. with xterm.c
3086 x_encode_char change by Kenichi Handa <handa@m17n.org> on
ceb39a17 3087 2002-09-30.)
ac6e47ef
JR
3088 (w32_draw_relief_rect): Declare all args.
3089 (w32_define_cursor): New.
3090
3091 * w32fns.c (w32_load_cursor): New function.
3092 (w32_init_class): Use it.
3093 (x_put_x_image): Declare all args.
3094
46cf0bed
JB
30952003-01-21 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change)
3096
3097 * Makefile.in (ALL_CFLAGS): Include MYCPPFLAGS, not MYCPPFLAG.
3098
a97e4138 30992003-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
e8794476
JD
3100
3101 * gtkutil.c: Must include stdio.h before termhooks.h
3102
83fc9c63
DL
31032003-01-21 Dave Love <fx@gnu.org>
3104
3105 * alloc.c (Fgc_status): Print zombie list.
3106 (mark_maybe_object) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
3107 Fix assignment of zombies.
3108 (Fgarbage_collect) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
3109 Don't take car of non-cons.
3110
3111 * s/sol2-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
3112
3113 * s/sunos4-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
3114
fe04b8c8
JR
31152003-01-20 David Ponce <david@dponce.com>
3116
3117 * w32menu.c (digest_single_submenu): Declare all args.
3118
3119 Sync with 2002-12-23 Richard M. Stallman <rms@gnu.org>
3120 changes in xmenu.c:
3121
3122 (parse_single_submenu): Use individual keymap's prompt
3123 string as pane name, if there is one.
3124 (set_frame_menubar): Save menu_items_n_panes from each call to
3125 parse_single_submenu and use it when calling digest_single_submenu.
3126
539e69a9
ST
31272003-01-20 Steven Tamm <steventamm@mac.com>
3128
3129 * macterm.c (XTread_socket): Checks for valid, visible window
3130 before sending a scroll-wheel event.
3131
675d000f
RS
31322003-01-20 Richard M. Stallman <rms@gnu.org>
3133
3134 * xdisp.c (redisplay_window): If mini window's buffer is not
3135 a minibuffer, then redisplay it like other windows.
3136
a97e4138 31372003-01-20 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
22174d10
JD
3138
3139 * gtkutil.c (xg_create_frame_widgets): Check if there is an
3140 external tool bar before setting tool bar height.
3141
048addec
JD
31422003-01-19 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3143
3144 * xterm.c (handle_one_xevent): Surround popup_activated
3145 with #ifdef:s for non-toolkit version.
3146
3147 * Makefile.in (XOBJ): Add gtkutil.o if USE_GTK
3148 (gtkutil.o): New file.
3149 (TOOLKIT_DEFINES): Set to -DUSE_GTK if HAVE_GTK.
3150 (LIBW): Set to @GTK_LIBS@ if USE_GTK.
3151
3152 * gtkutil.c: New file for GTK version.
3153
3154 * gtkutil.h: New file for GTK version.
3155
3156 * xterm.h: Add xt_or_gtk_widget.
3157 Include gtk files for USE_GTK.
3158 (struct x_output): Add toolbar_height.
3159 (struct x_output): Add GTK widgets and Gdk size_hints.
3160 (GTK_WIDGET_TO_X_WIN, FRAME_GTK_OUTER_WIDGET, FRAME_GTK_WIDGET)
3161 (FRAME_OUTER_WINDOW): New macros for USE_GTK.
3162 (FRAME_OUTER_TO_INNER_DIFF_Y): Add FRAME_TOOLBAR_HEIGHT to calculation.
3163
3164 * xterm.c: Include gtkutil.h for USE_GTK.
3165 Declare extern void free_frame_menubar for USE_GTK.
3166 (note_mouse_highlight): Check popup_activated for USE_GTK.
3167 (xt_action_hook): Don't compile if USE_GTK.
3168 (x_scroll_bar_to_input_event): Use CurrentTime for USE_GTK.
3169 (xg_scroll_callback): New function.
3170 (x_create_toolkit_scroll_bar): Call xg_create_scroll_bar for USE_GTK.
3171 (x_set_toolkit_scroll_bar_thumb): Call xg_set_toolkit_scroll_bar_thumb
3172 for USE_GTK.
3173 (x_scroll_bar_create): Call xg_update_scrollbar_pos and
3174 xg_show_scroll_bar for USE_GTK.
3175 (x_scroll_bar_remove): Call xg_remove_scroll_bar for USE_GTK.
3176 (XTset_vertical_scroll_bar): Call xg_update_scrollbar_pos for USE_GTK.
3177 (event_handler_gdk): New function for USE_GTK.
3178 (handle_one_xevent): Call xg_resize_widgets for USE_GTK.
3179 (handle_one_xevent): Make sure widget is mapped before
3180 calling x_real_positions for USE_GTK.
3181 (XTread_socket): Add GTK event loop for USE_GTK.
3182 (x_set_window_size): Call xg_frame_set_char_size for USE_GTK.
3183 (x_make_frame_visible): Call gtk_widget_show_all for USE_GTK.
3184 (x_make_frame_invisible): Call gtk_widget_hide for USE_GTK.
3185 (x_iconify_frame): Add code for USE_GTK.
3186 (x_free_frame_resources): Call gtk_widget_destroy for USE_GTK.
3187 (x_wm_set_size_hint): Only compile if not USE_GTK. GTK version
3188 is in gtkutil.c.
3189 (x_term_init): Add initialization for GTK.
3190 (syms_of_xterm): Set Vx_toolkit_scroll_bars for USE_GTK.
3191
3192 * xmenu.c: Include gtkutil.h for USE_GTK.
3193 (Fx_popup_menu): Use current position if x and y is NIL.
6bdb309a
SM
3194 (single_menu_item, single_menu_item, Fx_popup_dialog):
3195 Check for USE_GTK.
048addec
JD
3196 (popup_widget_loop): New function for USE_GTK.
3197 (x_activate_menubar): Add code for USE_GTK.
3198 (popup_activate_callback, popup_deactivate_callback)
6bdb309a
SM
3199 (menu_highlight_callback, menubar_selection_callback):
3200 Add USE_GTK versions.
048addec
JD
3201 (update_frame_menubar): Call xg_update_frame_menubar for USE_GTK.
3202 (set_frame_menubar): Call xg_modify_menubar_widgets for USE_GTK.
3203 (free_frame_menubar): Only compile if not USE_GTK. GTK version
3204 is in gtkutil.c.
3205 (popup_selection_callback): New version for USE_GTK.
3206 (create_and_show_popup_menu): New fuction, one USE_GTK version and
6bdb309a 3207 one USE_X_TOOLKIT version.
048addec
JD
3208 (xmenu_show): Call create_and_show_popup_menu.
3209 (dialog_selection_callback): New version for USE_GTK.
3210 (create_and_show_dialog): New fuction, one USE_GTK version and
6bdb309a 3211 one USE_X_TOOLKIT version.
048addec
JD
3212 (xdialog_show): Call create_and_show_dialog.
3213
3214 * xfns.c: Include gtkutil for USE_GTK.
3215 (x_window_to_frame, x_any_window_to_frame)
3216 (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
3217 (x_top_window_to_frame): Add code for USE_GTK.
3218 (x_set_background_color): Call xg_set_background_color for GTK.
3219 (x_set_menu_bar_lines): Check for USE_GTK.
3220 (x_set_tool_bar_lines): Call update_frame_tool_bar for USE_GTK.
3221 (x_set_name, x_set_title): Call gtk_window_set_title for USE_GTK.
3222 (x_window): Call xg_create_frame_widgets for USE_GTK.
3223 (Fx_create_frame): Check for USE_GTK
3224 (Fx_file_dialog): New implementation for USE_GTK.
3225
3226 * xdisp.c: Add check for USE_GTK for extern void set_frame_menubar.
3227 (update_menu_bar): Add check for USE_GTK.
3228 (update_tool_bar): Add check for USE_GTK and external tool bar.
3229 (redisplay_tool_bar): Add check for USE_GTK and external tool bar.
3230 (redisplay_internal): Add check for USE_GTK and popup_activated.
3231 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_MENU_BAR.
3232 (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_TOOL_BAR.
3233 (display_menu_bar): Add check for USE_GTK
3234
3235 * lisp.h: Declare Vx_resource_name extern.
3236
3237 * keyboard.c (kbd_buffer_get_event): Check MENU_BAR_ACTIVATE_EVENT
3238 for USE_GTK.
3239 (make_lispy_event): Check MENU_BAR_EVENT for USE_GTK.
3240
3241 * frame.h (struct frame): Add external_tool_bar. Check for USE_GTK.
3242 (FRAME_EXTERNAL_TOOL_BAR): New macro.
3243 (FRAME_EXTERNAL_MENU_BAR): Check for USE_GTK.
3244
3245 * fileio.c (Fread_file_name): Add check for USE_GTK.
3246
6bdb309a
SM
3247 * dispnew.c (adjust_frame_glyphs_for_window_redisplay):
3248 Add check for USE_GTK.
048addec
JD
3249
3250 * config.in: Added HAVE_GTK
3251
3252 * alloc.c (Fgarbage_collect): Call xg_mark_data for GTK.
3253
32542003-01-18 Stefan Monnier <monnier@cs.yale.edu>
3255
3256 * charset.h (Funibyte_char_to_multibyte): Export.
3257
32582003-01-18 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
3259
3260 * xmenu.c (mouse_position_for_popup): New function.
3261 (Fx_popup_menu): Call mouse_position_for_popup for X and
3262 mouse_position_hook for others.
3263
32642003-01-17 Kim F. Storm <storm@cua.dk>
3265
3266 * editfns.c (Finsert): Mention `string-make-multibyte' and
3267 `string-as-multibyte' in doc string.
3268
32692003-01-17 Kenichi Handa <handa@m17n.org>
3270
3271 * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here.
3c02a6f5 3272
048addec
JD
3273 * editfns.c (Fformat): Convert an unibyte char argument that is
3274 formatted by "%c" to multibyte if the total result must be a
3275 multibyte string.
cd7df9c0 3276
048addec 32772003-01-16 Kim F. Storm <storm@cua.dk>
cd7df9c0 3278
048addec
JD
3279 * process.c (set-process-filter): Document unibyte/multibyte-ness
3280 of string argument.
56210ecd 3281
048addec 32822003-01-16 Kenichi Handa <handa@m17n.org>
56210ecd 3283
048addec 3284 * charset.h (NEXT_CHAR_BOUNDARY, PREV_CHAR_BOUNDARY): New macros.
56210ecd 3285
048addec
JD
3286 * regex.c (GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
3287 (re_search_2): Likewise.
6df8b9fe 3288
048addec 32892003-01-15 Kenichi Handa <handa@m17n.org>
6df8b9fe 3290
048addec
JD
3291 * xdisp.c (message_dolog): Fix bug of the case that *Message*
3292 buffer is unibyte.
292ddc31 3293
048addec 32942003-01-15 Francesco Potort\e,Al\e(B <pot@gnu.org>
292ddc31 3295
048addec 3296 * fns.c (Fsubstring): Clarify doc string.
292ddc31 3297
048addec
JD
3298 * textprop.c (Ftext_properties_at, Fnext_char_property_change)
3299 (Fprevious_char_property_change)
3300 (Fnext_single_char_property_change)
3301 (Fprevious_single_char_property_change, Fnext_property_change)
3302 (Fnext_single_property_change, Fprevious_property_change)
3303 (Fprevious_single_property_change, Fadd_text_properties)
3304 (Fput_text_property, Fset_text_properties)
3305 (Fremove_text_properties, Fremove_list_of_text_properties)
3306 (Ftext_property_any, Ftext_property_not_all): Clarify doc strings.
63e4e4c6 3307
048addec 33082003-01-14 Kim F. Storm <storm@cua.dk>
63e4e4c6 3309
048addec
JD
3310 * process.h (struct Lisp_Process): New member plist replaces old
3311 member private_vars. All uses changed.
63e4e4c6 3312
048addec 3313 * process.c: Reworked 2003-01-12 change -- call a plist a plist!
6bdb309a 3314 (QCplist): Rename from QCvars. Change all uses.
048addec 3315 (Fprocess_plist): Replaces Fprocess_variable. Simplified.
6bdb309a 3316 (Fset_process_plist): Replaces Fset_process_variable. Simplify.
048addec 3317 (syms_of_process): Intern, staticpro, defsubr these.
6bdb309a 3318 (Fmake_network_process): Describe :plist arg. Remove :vars arg.
7ed16567 3319
048addec 33202003-01-14 Francesco Potort\e,Al\e(B <pot@gnu.org>
7ed16567 3321
6bdb309a 3322 * m/delta.h: Remove (obsolete).
e833850f 3323
048addec 33242003-01-13 Francesco Potort\e,Al\e(B <pot@gnu.org>
e833850f 3325
048addec
JD
3326 * fileio.c (Fdelete_directory, Fdelete_file): Document the
3327 behaviour in front of symlinks.
3328 (Fdelete_file): Raise an error on directories.
817cb127 3329
048addec 33302003-01-13 Dave Love <fx@gnu.org>
817cb127 3331
048addec 3332 * fns.c (Freverse): Use QUIT.
3e8cf2ea 3333
048addec 33342003-01-13 Richard M. Stallman <rms@gnu.org>
3e8cf2ea 3335
048addec
JD
3336 * minibuf.c (minibuffer_completion_contents):
3337 Error if point is inside prompt.
3e8cf2ea 3338
048addec
JD
3339 * keyboard.c (command_loop_1): Don't redisplay directly
3340 if there's a post-command-hook.
3e8cf2ea 3341
048addec
JD
3342 * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix.
3343 (Fdo_auto_save): Add gcpros around Ffile_name_directory.
2c10f029 3344
048addec 33452003-01-12 Kim F. Storm <storm@cua.dk>
94e8ffca 3346
048addec 3347 * process.h (struct Lisp_Process): New member private_vars.
94e8ffca 3348
048addec
JD
3349 * process.c (QCvars): New variable.
3350 (syms_of_process): Intern and staticpro it.
3351 (Fset_process_contact): Removed function.
3352 (Fprocess_variable, Fset_process_variable): New functions.
3353 (syms_of_process): Defsubr them.
3354 (Fstart_process): Initialize private_vars plist to nil.
3355 (Fmake_network_process): New arg :vars to setup the private
3356 variables for new network process.
3357 (server_accept_connection): Copy server's private variables to
3358 client process.
2c10f029 3359
048addec
JD
3360 * alloc.c (pure_alloc): Fixed 2003-01-10 changed (caused spurious
3361 crashes). Code rewritten and simplified. Now directly aligns the
3362 pointer and recalculates pure_bytes_used, rather than aligning the
3363 size and adjusting the pointer.
b8a76c6c 3364
048addec 33652003-01-11 Kim F. Storm <storm@cua.dk>
b8a76c6c 3366
048addec
JD
3367 * process.c (Fset_process_contact): New function.
3368 (syms_of_process): defsubr it.
3369 (make-network-process): Update doc.
3a8d0899 3370
048addec 33712003-01-10 Andreas Schwab <schwab@suse.de>
3a8d0899 3372
048addec
JD
3373 * alloc.c (pure_alloc): Correct alignment for Lisp_Floats.
3374 Reported by Berthold Gunreben <b.gunreben@web.de>.
4abc7470 3375
048addec 33762003-01-10 Dave Love <fx@gnu.org>
4abc7470 3377
048addec 3378 * composite.c (syms_of_composite): Make composition_hash_table weak.
b809d662 3379
048addec 33802003-01-09 Kim F. Storm <storm@cua.dk>
b809d662 3381
048addec
JD
3382 * process.c (Fmake_network_process): Convert new port number
3383 to host byte order for `:service t' case. From Mario Lang.
bf338245 3384
048addec 33852003-01-08 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
bf338245 3386
048addec
JD
3387 * xfns.c (Fx_file_dialog): Call XtAppNextEvent and x_dispatch_event
3388 instead of XtAppProcessEvent.
bf338245 3389
048addec
JD
3390 * xterm.c (handle_one_xevent): New function.
3391 (x_dispatch_event): New function.
3392 (XTread_socket): Call handle_one_xevent.
bf338245 3393
048addec 3394 * xterm.h (FRAME_OUTER_TO_INNER_DIFF_X/Y): New.
e833850f 3395
048addec
JD
3396 * xmenu.c (Fx_popup_menu): If popping up at mouse position,
3397 call XQueryPointer to get coordinates.
3398 (popup_get_selection): Do not set popup_activated_flag to zero,
3399 let popup_deactivate_callback do that. Needed for Motif.
3400 Call x_dispatch_event instead of XtDispatchEvent.
3401 (xmenu_show): Calculate root coordinate from frame top/left position.
c4af2bce 3402
048addec 34032003-01-08 Kim F. Storm <storm@cua.dk>
c4af2bce 3404
6bdb309a 3405 * process.c (server_accept_connection): Fix recording of new
048addec
JD
3406 connection's local address in :local property of contact info.
3407 (Fmake_network_process): Record local network address for new
3408 client processes in :local property of contact info.
6bdb309a 3409 (format-network-address): Add arg OMIT-PORT. Change callers.
00e3ab56 3410
048addec 34112003-01-07 Dave Love <fx@gnu.org>
00e3ab56 3412
048addec 3413 * Makefile.in (fns.o): Depend on coding.h.
f387e1fd 3414
048addec 34152003-01-07 Markus Rost <rost@math.ohio-state.edu>
f387e1fd 3416
048addec 3417 * minibuf.c (Fread_variable): Doc fix.
f387e1fd 3418
048addec
JD
3419 * eval.c (Fuser_variable_p): Doc change. For custom variables,
3420 use the same test as for custom-variable-p.
8c6d74c6 3421
048addec 34222003-01-05 Richard M. Stallman <rms@gnu.org>
e833850f 3423
048addec
JD
3424 * xdisp.c (try_scrolling): New arg LAST_LINE_MISFIT.
3425 Count LAST_LINE_MISFIT in scroll margin for end of window.
3426 Move label too_near_end before setting SCROLL_MARGIN_POS.
3427 Set LAST_LINE_MISFIT before jumping there.
8c6d74c6 3428
048addec
JD
3429 * xdisp.c (try_scrolling): Calculate amount_to_scroll better in
3430 scroll_conservatively case. If scrolling that much doesn't change
3431 STARTP, move it down one line.
e833850f 3432
048addec
JD
3433 * xdisp.c (redisplay_window): Pass last_line_misfit arg to
3434 try_scrolling. Make it 1 after make_cursor_line_fully_visible fails.
8c6d74c6 3435
048addec
JD
3436 * xdisp.c (setup_echo_area_for_printing): Kill Emacs if no
3437 selected frame.
8c6d74c6 3438
048addec
JD
3439 * keymap.c (apropos_predicate, apropos_accumulate): Make them static.
3440 (syms_of_keymap): staticpro them.
3441 (Fapropos_internal): Initialize them and clear them out.
3442 Don't GCPRO them.
8c6d74c6 3443
048addec
JD
3444 * buffer.c (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>:
3445 Doc fixes.
8c6d74c6 3446
048addec
JD
3447 * lisp.h: New misc type Lisp_Save_Value.
3448 (enum Lisp_Misc_Type): Add Lisp_Misc_Save_Value.
3449 (XSAVE_VALUE): New macro.
3450 (struct Lisp_Save_Value): New data type.
3451 (union Lisp_Misc): Add u_save_value alternative.
3452 (make_save_value): Declared.
8c6d74c6 3453
048addec 3454 * alloc.c (make_save_value): New function.
8c6d74c6 3455
048addec
JD
3456 * xterm.c (x_catch_errors): Save dpy using make_save_value.
3457 (x_catch_errors_unwind): Call XSync.
8c6d74c6 3458
048addec 34592003-01-01 Richard M. Stallman <rms@gnu.org>
8c6d74c6 3460
048addec 3461 * window.c (window_scroll_pixel_based): Partially undo last change.
8c6d74c6 3462
048addec
JD
3463 * keyboard.c (command_loop_1): Call adjust_point_for_property
3464 in direct action cases for Qforward_char and Qbackward_char.
3465 Set already_adjusted so it won't be done twice.
8c6d74c6 3466
048addec 34672002-12-30 Richard Dawe <rich@phekda.freeserve.co.uk> (tiny change)
8c6d74c6 3468
048addec
JD
3469 * src/config.in (!HAVE_SIZE_T): Fix order of arguments in
3470 type definition of size_t.
8c609cff 3471
048addec 34722003-01-02 Steven Tamm <steventamm@mac.com>
8c609cff 3473
048addec
JD
3474 * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to
3475 distinguish Carbon GUI builds from X11 builds on darwin.
b37113a1 3476
048addec 34772002-12-30 Steven Tamm <steventamm@mac.com>
b37113a1 3478
048addec
JD
3479 * macterm.c (syms_of_macterm): Set mac-wheel-button-is-mouse-2
3480 to default to t.
fa634a5e 3481
048addec 34822002-12-29 Francesco Potort\e,Al\e(B <pot@gnu.org>
fa634a5e 3483
048addec 3484 * data.c (Fstring_to_number, Fminus): Better English in doc strings.
ce0669d4 3485
048addec 34862002-12-28 Steven Tamm <steventamm@mac.com>
ce0669d4 3487
048addec
JD
3488 * Makefile.in (macosx-bundle): Fixes to Mac OS X/Carbon port to
3489 allow building in a different directory than source. Uses some
3490 GNU Make extensions, but there is no other make on Mac OS X.
2308af15 3491
048addec 34922002-12-26 Francesco Potort\e,Al\e(B <pot@gnu.org>
2308af15 3493
048addec
JD
3494 * data.c (Fmakunbound, Ffmakunbound, Fmake_variable_buffer_local)
3495 (Fsetq_default, Fmake_local_variable, Fkill_local_variable)
3496 (Fmake_variable_frame_local, Faset, Fnumber_to_string, Fminus)
3497 (Fstring_to_number): Mention the returned value in the doc strings.
2155ecf3 3498
048addec 34992002-12-23 Richard M. Stallman <rms@gnu.org>
2155ecf3 3500
048addec
JD
3501 * buffer.c (syms_of_buffer) <scroll-up-aggressively>
3502 <scroll-down-aggressively>: Doc fix.
2155ecf3 3503
048addec
JD
3504 * xmenu.c (parse_single_submenu): Use individual keymap's prompt
3505 string as pane name, if there is one.
3506 (set_frame_menubar): Save menu_items_n_panes from each call to
3507 parse_single_submenu and use it when calling digest_single_submenu.
2155ecf3 3508
048addec
JD
3509 * window.c (window_scroll_pixel_based): Fix check for reaching BEGV.
3510 Don't try to make last line fully visible if it is past end of window.
61f1d295 3511
048addec 35122002-12-22 Steven Tamm <steventamm@mac.com>
61f1d295 3513
048addec
JD
3514 * macmenu.c (MIN_POPUP_SUBMENU_ID): Add.
3515 (mac_menu_show): Add support for hierarchical popup menus.
3516 (add_menu_item): Remove indentation support.
3517 (fill_submenu, fill_menu): Create hierarchical menus
3518 instead of using indentation.
0b17a217 3519
048addec 35202002-12-22 Richard M. Stallman <rms@gnu.org>
0b17a217 3521
048addec
JD
3522 * xdisp.c (try_cursor_movement): Don't call try_window here.
3523 (redisplay_window): Never redisplay minibuffer when inactive.
0b17a217 3524
048addec 3525 * window.c (select_window_1): Undo 9/21 change.
402e4f8b 3526
048addec 35272002-12-22 Steven Tamm <steventamm@mac.com>
402e4f8b 3528
048addec
JD
3529 * macterm.c (XTread_socket): Call KeyTranslate for control and
3530 meta to deal correctly shifted non-alpha characters, like C-S-5
3531 being treated like C-%. Does not look for shift key to deal
3532 with masking off control-key with mac-reverse-ctrl-meta.
f02cac82 3533
048addec 35342002-12-21 Richard M. Stallman <rms@gnu.org>
f02cac82 3535
048addec
JD
3536 * xmenu.c (popup_get_selection): Now static. New arg DO_TIMERS.
3537 If it is non-nil, run timers. Use an unwind-protect to requeue
3538 the events that were read ahead.
3539 (popup_get_selection_unwind): New subroutine.
3540 (popup_get_selection_queue): File-scope variable now holds that queue.
3541 (xmenu_show): Pass 0 for DO_TIMERS to popup_get_selection.
3542 (xdialog_show): Pass 1 for DO_TIMERS to popup_get_selection.
3543 Use an unwind-protect to pop down the dialog box.
3544 (xdialog_show_unwind): New subroutine implements that.
f02cac82 3545
048addec
JD
3546 * xdisp.c (row_containing_pos): Change exit test using last_y.
3547 (try_window_id): Abort if row_containing_pos returns null.
f02cac82 3548
048addec
JD
3549 * lread.c (load_error_handler): New function.
3550 (Fload): Handle errors in Fsubstitute_in_file_name.
3551 Don't expect Fsignal to return.
f02cac82 3552
048addec
JD
3553 * eval.c: Errors and throws work right with interrupt blocking.
3554 (struct catchtag): New elt interrupt_input_blocked.
3555 (unwind_to_catch): Restore interrupt_input_blocked from saved value.
3556 (internal_catch, Fcondition_case, internal_condition_case)
3557 (internal_condition_case_1, internal_condition_case_2): Save it.
3558 (Fsignal): Don't do TOTALLY_UNBLOCK_INPUT.
f02cac82 3559
048addec 3560 * editfns.c (Fformat): Add parens.
f02cac82 3561
048addec
JD
3562 * dired.c (file_name_completion): Fix that change.
3563 Delete special quit-handling code; just use QUIT.
f02cac82 3564
048addec 35652002-12-21 Tak Ota <Takaaki.Ota@am.sony.com> (tiny change)
f02cac82 3566
048addec
JD
3567 * dired.c (file_name_completion): Close directory on error
3568 just as in directory_files_internal.
1a590729 3569
048addec 35702002-12-19 David Kastrup <David.Kastrup@t-online.de>
1a590729 3571
048addec
JD
3572 * window.c (Fset_window_configuration): Set old_point to correct
3573 value when new_current_buffer == current_buffer.
f02cac82 3574
048addec 35752002-12-17 Ben Key <bkey1@tampabay.rr.com>
2308af15 3576
048addec
JD
3577 Revisited my earlier fix for the following entry in etc/PROBLEMS:
3578 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
3579 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
9785d95b 3580
048addec
JD
3581 These changes were in part based upon suggestions made by Peter
3582 'Luna' Runestig [peter@runestig.com].
9785d95b 3583
048addec
JD
3584 * w32.c (g_b_init_is_windows_9x, g_b_init_open_process_token,
3585 g_b_init_get_token_information, g_b_init_lookup_account_sid,
6bdb309a 3586 g_b_init_get_sid_identifier_authority ): Add several static
048addec 3587 global variables.
9785d95b 3588
048addec
JD
3589 * w32.c (globals_of_w32): New function. Used to initialize those
3590 global variables that must always be initialized on startup even
3591 when the global variable initialized is non zero. Its primary
3592 purpose at this time is to set the global variables
3593 g_b_init_is_windows_9x, g_b_init_open_process_token,
3594 g_b_init_get_token_information, g_b_init_lookup_account_sid, and
3595 g_b_init_get_sid_identifier_authority to 0 on startup.
3596 Called from main.
9785d95b 3597
048addec
JD
3598 * w32.c (is_windows_9x): Perform initialization only if
3599 g_b_init_is_windows_9x is equal to 0. On initialization set
3600 g_b_init_is_windows_9x equal to 1.
2308af15 3601
048addec
JD
3602 * w32.c (open_process_token): Perform initialization only if
3603 g_b_init_open_process_token is equal to 0. On initialization set
3604 g_b_init_open_process_token equal to 1.
2308af15 3605
048addec
JD
3606 * w32.c (get_token_information): Perform initialization only if
3607 g_b_init_get_token_information is equal to 0. On initialization
3608 set g_b_init_get_token_information equal to 1.
9785d95b 3609
048addec
JD
3610 * w32.c (lookup_account_sid): Perform initialization only if
3611 g_b_init_lookup_account_sid is equal to 0. On initialization
3612 set g_b_init_lookup_account_sid equal to 1.
9785d95b 3613
048addec
JD
3614 * w32.c (get_sid_identifier_authority): Perform initialization
3615 only if g_b_init_get_sid_identifier_authority is equal to 0.
3616 On initialization set g_b_init_get_sid_identifier_authority equal to 1.
9785d95b 3617
048addec
JD
3618 * w32fns.c (globals_of_w32fns): New function. Used to initialize
3619 those global variables that must always be initialized on startup
3620 even when the global variable initialized is non zero.
3621 Its primary purpose at this time is to initialize the global variable
3622 track_mouse_event_fn.
9785d95b 3623
048addec
JD
3624 * w32fns.c (w32_wnd_proc): Remove initialization of
3625 track_mouse_event_fn from the handler for the WM_SETFOCUS message.
9785d95b 3626
048addec 3627 * w32fns.c (syms_of_w32fns): Call globals_of_w32fns.
9785d95b 3628
048addec
JD
3629 * w32menu.c (globals_of_w32menu): New function. Used to
3630 initialize those global variables that must always be initialized
3631 on startup even when the global variable initialized is non zero.
3632 Its primary purpose at this time is to initialize the global
3633 variables get_menu_item_info and set_menu_item_info.
9785d95b 3634
048addec
JD
3635 * w32menu.c (initialize_frame_menubar): Remove initialization of
3636 get_menu_item_info and set_menu_item_info.
9785d95b 3637
048addec 3638 * w32menu.c (syms_of_w32menu): Call globals_of_w32menu.
9785d95b 3639
048addec
JD
3640 * w32.h (globals_of_w32, globals_of_w32fns, globals_of_w32menu):
3641 Declare them.
9785d95b 3642
048addec
JD
3643 * emacs.c (main): Call globals_of_w32 prior to calling
3644 init_environment if WINDOWSNT is defined. Call globals_of_w32fns
3645 and globals_of_w32menu if initialized is non zero and HAVE_NTGUI
3646 is defined.
9785d95b 3647
048addec
JD
3648 * w32term.c (x_update_window_begin): Fix Windows API error
3649 detected by BoundsChecker. Test to determine if
3650 w32_system_caret_hwnd is NULL prior to attempting to use
3651 SendMessage to send the WM_EMACS_HIDE_CARET message to it.
2308af15 3652
048addec
JD
3653 * w32term.c (x_update_window_end): Fix Windows API error
3654 detected by BoundsChecker. Test to determine if
3655 w32_system_caret_hwnd is NULL prior to attempting to use
3656 SendMessage to send the WM_EMACS_SHOW_CARET message to it.
b6da19ef 3657
048addec 36582002-12-17 Kenichi Handa <handa@m17n.org>
b6da19ef 3659
048addec
JD
3660 * coding.c (coding_system_require_warning): New variable.
3661 (syms_of_coding): DEFVAR it.
b6da19ef 3662
048addec 3663 * coding.h (coding_system_require_warning): Extern it.
b6da19ef 3664
048addec
JD
3665 * fileio.c (choose_write_coding_system): Even if
3666 Vcoding_system_for_write is non-nil, if
3667 coding_system_require_warning is nonzero, call
3668 Vselect_safe_coding_system_function.
bfcf6dbe 3669
048addec 36702002-12-17 Markus Rost <rost@math.ohio-state.edu>
bfcf6dbe 3671
048addec
JD
3672 * Makefile.in (lisp, shortlisp): Add cus-face and timer.
3673 (lisp): Add font-core.
2c568af5 3674
048addec 36752002-12-13 Stefan Monnier <monnier@cs.yale.edu>
2c568af5 3676
048addec
JD
3677 * textprop.c (text_read_only): New arg `propval'.
3678 (get_char_property_and_overlay): Remove unused var `next_overlay'.
3679 (verify_interval_modification): Use text_read_only's new arg.
b8c6225c 3680
048addec 36812002-12-13 Kenichi Handa <handa@m17n.org>
b8c6225c 3682
048addec 3683 * coding.c (Funencodable_char_position): Set pend correctly.
706ddb8f 3684
048addec 36852002-12-12 Jason Rumney <jasonr@gnu.org>
706ddb8f 3686
048addec
JD
3687 * w32term.c (last_mousemove_x, last_mousemove_y): New variables.
3688 (w32_read_socket) <WM_MOUSEMOVE>: Use them to detect non-movement.
3689 Be more careful about when help_events are generated.
96720f09 3690
048addec 36912002-12-12 Steven Tamm <steventamm@mac.com>
96720f09 3692
048addec
JD
3693 * macterm.c (mac_check_for_quit_char): Correctly set the
3694 modifiers of the event to 0.
3695 * mac.c (sys_select): Duplicate rfds before calling select to
3696 ensure that rfds survive the while loop.
e5ae1c49 3697
048addec 36982002-12-11 Kim F. Storm <storm@cua.dk>
e5ae1c49 3699
048addec
JD
3700 * xdisp.c (try_window_id): Don't call set_cursor_from_row if
3701 row_containing_pos returned NULL.
2eb46b2d 3702
048addec 37032002-12-10 Steven Tamm <steventamm@mac.com>
2eb46b2d 3704
6bdb309a 3705 * mac.c (sys_read): Fix sys_read to not call select if IO is
048addec 3706 non-blocking.
6bdb309a 3707 (sys_select): Fix sys_select to not use a timeout larger than
048addec 3708 the one given.
b11f1d8a 3709
048addec 37102002-12-10 Juanma Barranquero <lektu@terra.es>
b11f1d8a 3711
048addec 3712 * editfns.c (Fformat): Use alloca, not _alloca.
d8528226 3713
048addec 37142002-12-09 Richard M. Stallman <rms@gnu.org>
d8528226 3715
048addec
JD
3716 * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input
3717 as the last thing.
a4ac5b17 3718
048addec 37192002-12-09 Dave Love <fx@gnu.org>
a4ac5b17 3720
048addec 3721 * s/sol2-8.h: Removed. (Not necessary.)
ac42d7b9 3722
048addec 37232002-12-09 Matthew Swift <swift@alum.mit.edu>
ac42d7b9 3724
048addec
JD
3725 * editfns.c (Fformat): Handle precision in string conversion
3726 specifiers like libc functions do (ie, print at most that many
3727 characters).
85cce843 3728
048addec 37292002-12-08 Richard M. Stallman <rms@gnu.org>
85cce843 3730
048addec
JD
3731 * xdisp.c (row_containing_pos): Check more carefully
3732 whether charpos is really in the row before returning it.
0d4d26a7 3733
048addec 37342002-12-07 Steven Tamm <steventamm@mac.com>
0d4d26a7 3735
048addec 3736 * sysdep.c (emacs_read) [HAVE_CARBON]: Have emacs_read use sys_read.
b11f1d8a 3737
048addec
JD
3738 * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at
3739 each stack frame. This may change as it could be time consuming.
0d4d26a7 3740
048addec
JD
3741 * macterm.c (mac_check_for_quit_char, quit_char_comp)
3742 (init_quit_char_handler, mac_determine_quit_char_modifiers)
6bdb309a 3743 (mac_initialize): Add code to check for pressing of quit_char
048addec 3744 in the OS event queue.
b11f1d8a 3745
048addec
JD
3746 * mac.c (sys_select): Call mac_check_for_quit_char every second
3747 while blocking on select.
0d4d26a7 3748
048addec
JD
3749 * mac.c (sys_read): Use sys_select to test for input first
3750 before calling read, to allow C-g to break.
9252f7bc 3751
048addec 37522002-12-07 Richard M. Stallman <rms@gnu.org>
9252f7bc 3753
048addec 3754 * minibuf.c (Fcompleting_read): Doc fix.
9252f7bc 3755
048addec 3756 * lread.c (syms_of_lread) <load-history>: Doc fix.
9252f7bc 3757
048addec 3758 * fileio.c (Fcopy_file): Set immediate_quit around emacs_open call.
9252f7bc 3759
048addec
JD
3760 * eval.c (Fdefun, Fdefmacro): Record in load-history redefining an
3761 autoload.
9252f7bc 3762
048addec 3763 * data.c (Fdefalias): Record in load-history redefining an autoload.
9252f7bc 3764
048addec 3765 * alloca.c: Undo ifdef change accidentally made on 12-04.
bfa261c0 3766
048addec 37672002-12-06 Francesco Potorti` <pot@gnu.org>
bfa261c0 3768
048addec 3769 * xfns.c (png_load): Avoid double gamma correction for PNG images.
c5992177 3770
048addec 37712002-12-04 Richard M. Stallman <rms@gnu.org>
c5992177 3772
048addec 3773 * sysdep.c (fcntl.h): Test only HAVE_FCNTL_H.
c5992177 3774
048addec 3775 * fileio.c (fcntl.h): Test only HAVE_FCNTL_H.
c5992177 3776
048addec 3777 * alloca.c: Don't use #error.
02d588e2 3778
048addec 37792002-12-03 Dave Love <fx@gnu.org>
02d588e2 3780
048addec
JD
3781 * buffer.c (Qucs_set_table_for_input): New.
3782 (Fget_buffer_create): Use it.
3783 (Qset_buffer_major_mode_hook): Deleted.
3784 (Fset_buffer_major_mode): Revert previous change.
3785 (init_buffer_once): Intern ucs-set-table-for-input.
3786 (syms_of_buffer): Delete Qset_buffer_major_mode_hook.
3787 Add &Qucs_set_table_for_input.
451e2697 3788
048addec 37892002-12-03 Andreas Schwab <schwab@suse.de>
451e2697 3790
048addec
JD
3791 * callint.c (Fcall_interactively): Use next_event only if less
3792 than key_count.
72742a99 3793
048addec 37942002-12-02 Andrew Choi <akochoi@shaw.ca>
72742a99 3795
048addec
JD
3796 * macmenu.c (add_menu_item, fill_menubar): Truncate menu item
3797 names to 255 characters.
72742a99 3798
048addec
JD
3799 * macterm.c (XTread_socket): If all frames have been collapsed,
3800 expand the first one before handling drag-and-drop events.
72742a99 3801
048addec
JD
3802 * s/darwin.h (GETPGRP_NO_ARG): Delete. Replaced by GETPGRP_VOID,
3803 which is detected by autoconf.
40e6ff95 3804
048addec 38052002-12-01 Steven Tamm <steventamm@mac.com>
40e6ff95 3806
048addec
JD
3807 * unexmacosx.c (copy_twolevelhints, dump_it): Now corrects the
3808 offset in two hints table to allow prebinding to be redone and
3809 allow the executable to be stripped.
c02138c6 3810
048addec 38112002-11-29 Dave Love <fx@gnu.org>
c02138c6 3812
048addec
JD
3813 * fns.c (Frequire): Don't call LOADHIST_ATTACH if feature was
3814 already provided.
0e47bbf7 3815
048addec 38162002-11-29 Richard M. Stallman <rms@gnu.org>
0e47bbf7 3817
048addec
JD
3818 * xdisp.c (start_display): Check more intelligently for
3819 whether the line is continued.
3820 (move_it_vertically_backward): Clear it->continuation_lines_width.
44129dcb 3821
048addec 38222002-11-28 Dave Love <fx@gnu.org>
44129dcb 3823
048addec
JD
3824 * s/amdahl.h, s/unipl5-0.h, m/sgi3000.h, s/3700.h, s/alliant-2800.h:
3825 * s/alliant.h, s/altos.h: Deleted. (Unused/empty.)
f707342d 3826
048addec 38272002-11-27 Steven Tamm <steventamm@mac.com>
f707342d 3828
048addec
JD
3829 * fns.c (Frequire): Change nesting allowance from 2 to 3 to cause
3830 more descriptive error output from lread.c:Fload upon most require
3831 cycles during boostrapping.
1637fd2c 3832
048addec 38332002-11-27 Jason Rumney <jasonr@gnu.org>
1637fd2c 3834
048addec
JD
3835 * fileio.c (Finsert_file_contents): Give a more appropriate error
3836 for files bigger than 2Gb when off_t is 32 bit.
1637fd2c 3837
048addec
JD
3838 * dired.c (Ffile_attributes): Don't return negative file sizes for
3839 files bigger than 2Gb when off_t is 32 bit.
540c2788 3840
048addec 38412002-11-27 Dave Love <fx@gnu.org>
6b2fd6ea 3842
048addec 3843 * s/irix6-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
6b2fd6ea 3844
048addec
JD
3845 * systty.h: Don't conditionally define GETPGRP_NO_ARG.
3846 Test GETPGRP_VOID instead.
3847 [BSD_TERMIOS]: Remove definitions (never used).
6b2fd6ea 3848
048addec
JD
3849 * s/osf5-0.h (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist):
3850 Don't define.
3851 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
540c2788 3852
048addec 3853 * m/mips.h (WORDS_BIG_ENDIAN): Define conditionally.
8cc03716 3854
048addec 38552002-11-25 Jason Rumney <jasonr@gnu.org>
8cc03716 3856
048addec
JD
3857 * w32.c (sys_write): Avoid non-blocking mode, which is not fully
3858 supported.
4042a81a 3859
048addec 38602002-11-25 Dave Love <fx@gnu.org>
4042a81a 3861
048addec 3862 * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec.
4042a81a 3863
048addec 3864 * Makefile.in (TEMACS_LDFLAGS): Update last change.
be4ee72f 3865
048addec 38662002-11-25 Andreas Schwab <schwab@suse.de>
be4ee72f 3867
048addec 3868 * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change.
82122254 3869
048addec 38702002-11-24 Steven Tamm <steventamm@mac.com>
82122254 3871
048addec
JD
3872 * unexmacosx.c (unexec_realloc): Use malloc_default_zone to
3873 determine the size of pointers alloced in unexed space instead
3874 of using possibly invalid emacs_zone pointers. This fixes the
3875 binary incompatibility problems caused by updates to libSystem.B.
c1ee53bc 3876
048addec 38772002-11-24 Richard M. Stallman <rms@gnu.org>
c1ee53bc 3878
048addec 3879 * search.c (Fstring_match): Doc fix.
c1ee53bc 3880
048addec
JD
3881 * callint.c (Fcall_interactively): If a command fails because
3882 `*' detects a read-only buffer, but RECORD_FLAG is set,
3883 record it anyway if the args don't actually do tty input.
5598c32e 3884
048addec 38852002-11-22 Dave Love <fx@gnu.org>
5598c32e 3886
048addec 3887 * sysdep.c (stuff_char) [PROTOTYPES]: Provide ISO C arglist.
5598c32e 3888
048addec
JD
3889 * keyboard.c (interrupt_signal): Provide forward declaration.
3890 (kbd_buffer_store_event): Don't declare interrupt_signal.
5598c32e 3891
048addec 3892 * xdisp.c (store_frame_title_char) [PROTOTYPES]: Provide ISO C arglist.
97b14e22 3893
048addec 38942002-11-21 Richard M. Stallman <rms@gnu.org>
97b14e22 3895
048addec
JD
3896 * eval.c (interactive_p): Skip any number of bytecode
3897 and special form frames, in any order.
516eea8e 3898
048addec 38992002-11-20 Jason Rumney <jasonr@gnu.org>
516eea8e 3900
048addec
JD
3901 * w32fns.c (convert_mono_to_color_image): New function.
3902 (xbm_load, xbm_load_image): Use it when foreground or background
3903 is explicitly set.
04dbfa08 3904
048addec 39052002-11-19 Dave Love <fx@gnu.org>
04dbfa08 3906
048addec 3907 * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
b4aebae3 3908
048addec 39092002-11-18 Jason Rumney <jasonr@gnu.org>
b4aebae3 3910
048addec
JD
3911 * w32fns.c (x_build_heuristic_mask): Filter palette info from color.
3912 (XPutPixel): Swap blue and red.
3913 (xpm_format, pbm_format, png_format, jpeg_format, tiff_format)
3914 (gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
3915 (xpm_image_p, pbm_image_p, png_image_p, jpeg_image_p)
3916 (tiff_image_p, gif_image_p, gs_image_p): Don't check ascent.
1998560a 3917
048addec 39182002-11-18 Dave Love <fx@gnu.org>
d824beee 3919
048addec 3920 * m/orion105.h (HAVE_ALLOCA): Don't define.
d824beee 3921
048addec 3922 * m/m68k.h, m/arm.h, mtekxd88.h, m/tower32v3.h: Don't define alloca.
d824beee 3923
048addec 3924 * m/intel386.h: Don't include alloca.h or define alloca.
d824beee 3925
048addec
JD
3926 * m/ia64.h: Don't include alloca.h, stdlib.h. Don't declare
3927 malloc, realloc, calloc.
d824beee 3928
048addec
JD
3929 * m/hp800.h, m/sr2k.h, m/ns16000.h, m/wicat.h (bcopy, bzero)
3930 (bcmp): Don't define.
d824beee 3931
048addec 3932 * m/delta.h (bcopy, bzero, bcmp, alloca): Don't define.
d824beee 3933
048addec 3934 * m/amdahl.h: Don't define LIB_STANDARD.
d824beee 3935
048addec 3936 * m/alpha.h: Move OSF1 stuff from here to s/osf1.h.
d824beee 3937
048addec 3938 * s/osf1.h: Move OSF1 stuff from m/alpha.h to here.
d824beee 3939
048addec
JD
3940 * s/irix4-0.h, s/irix5-0.h, m/powerpcle.h, m/sparc.h:
3941 Don't include alloca.h.
d824beee 3942
048addec 3943 * s/aix3-2.h (HAVE_FSYNC): Don't define.
1998560a 3944
048addec 3945 * regex.c (_GNU_SOURCE): Don't define.
1998560a 3946
048addec 3947 * process.c (_GNU_SOURCE): Don't define.
1998560a 3948
048addec 3949 * fileio.c (_GNU_SOURCE, HAVE_FSYNC): Don't define.
8704a6ab 3950
048addec 39512002-11-18 Markus Rost <rost@math.ohio-state.edu>
8704a6ab 3952
048addec 3953 * s/sol2-8.h: Include sol2-6.h.
6ae2cd57 3954
048addec 39552002-11-18 Miles Bader <miles@gnu.org>
6ae2cd57 3956
048addec
JD
3957 * dispextern.h (struct face): Add `overstrike' field.
3958 * xterm.c (x_draw_glyph_string_foreground)
3959 (x_draw_composite_glyph_string_foreground): Implement overstriking.
3960 * xfaces.c (load_face_font): Set `face->overstrike' based on
3961 result from choose_face_font.
3962 (best_matching_font, choose_face_font): Add `needs_overstrike'
3963 argument, and use it to return whether overstriking is desirable
3964 for this face/font combo.
3965 (set_font_frame_param: Pass new argument to choose_face_font.
6ae2cd57 3966
048addec 39672002-11-17 Ben Key <BKey1@tampabay.rr.com>
3582b6a3 3968
048addec
JD
3969 This change is my fix for the following entry in etc/PROBLEMS:
3970 "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
3971 or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
f60ae425 3972
048addec
JD
3973 * w32.c: Added wrapper functions around the win32 API functions
3974 OpenProcessToken, GetTokenInformation, LookupAccountSid, and
3975 GetSidIdentifierAuthority. These wrapper functions serve two
3976 purposes:
3977 1. They ensure that the wrapped function can never be called
3978 when Emacs is running on an operating system on which they are
3979 not supported (Microsoft Windows 95 / 98 / ME).
3980 2. They call the wrapped functions via function pointers rather
3981 than calling them directly. This avoids taking advantage of the
3982 undocumented fact that although these functions are not supported
3983 in the 9x branch of Microsoft Windows, the functions do exist in
3984 the version of advapi32.dll that is found in the 9x branch of
3985 Microsoft Windows.
f60ae425 3986
6bdb309a 3987 * w32.c (init_user_info): Replace the calls to the win32 API
048addec
JD
3988 functions OpenProcessToken, GetTokenInformation, LookupAccountSid,
3989 and GetSidIdentifierAuthority with calls to the newly added
3990 wrapper functions.
f60ae425 3991
048addec
JD
3992 * w32.h: Added extern declarations for the following functions:
3993 syms_of_w32term, syms_of_w32fns, syms_of_w32select,
3994 syms_of_w32menu, and void syms_of_fontset.
f60ae425 3995
6bdb309a 3996 * w32fns.c (w32_wnd_proc): Add code to reinitialize the
048addec
JD
3997 function pointer track_mouse_event_fn in the handler for the
3998 WM_SETFOCUS message.
3582b6a3 3999
6bdb309a 4000 * w32menu.c (initialize_frame_menubar): Add code to
048addec
JD
4001 reinitialize the function pointers set_menu_item_info and
4002 get_menu_item_info.
f60ae425 4003
048addec 40042002-11-17 Ben Key <BKey1@tampabay.rr.com>
f60ae425 4005
048addec
JD
4006 * sound.c: Added a partial implementation of play-sound-internal
4007 for Microsoft Windows. Added various #ifdef / #else / #endif
4008 code blocks to separate the code that will compile under
4009 Microsoft Windows from the code that is specific to Gnu/Linux.
4010 Moved several blocks of code around to make this separation of code
4011 into Windows compatible and Gnu/Linux compatible code blocks easier.
f60ae425 4012
048addec 4013 * makefile.w32-in: Include sound.c and link with WinMM.lib.
a0f0878d 4014
048addec
JD
4015 * s/ms-w32.h: Defined the symbol HAVE_SOUND so that the newly
4016 added support for play-sound-internal under Windows would be
4017 included in the build of Emacs.
517f42a0 4018
048addec 40192002-11-16 Jason Rumney <jasonr@gnu.org>
517f42a0 4020
048addec 4021 * w32fns.c (w32_load_system_font): Don't disable Cleartype.
517f42a0 4022
048addec 4023 * w32term.c (w32_get_glyph_string_clip_rect): Clip cursor tightly.
a0f0878d 4024
048addec 40252002-11-15 Stefan Monnier <monnier@cs.yale.edu>
a0f0878d 4026
048addec
JD
4027 * keyboard.c (command_loop_1): Fix int/Lisp_Object mixup.
4028 (adjust_point_for_property): Move out of display and invisible even if
4029 we were already inside before (in case a property was added while
4030 we weren't looking). Be more careful when handling invisible props.
4031 Skip invisible text as if it really wasn't there at all.
aab83f91 4032
048addec 40332002-11-15 Jason Rumney <jasonr@gnu.org>
aab83f91 4034
048addec
JD
4035 * w32term.c (x_draw_image_foreground)
4036 (w32_draw_image_foreground_1): Use standard copy and invert
4037 operations to draw images.
aab83f91 4038
048addec
JD
4039 * w32fns.c (x_create_x_image_and_pixmap): Fill in palette for
4040 depth of 1.
4041 (xbm_read_bitmap_data): Invert bits as xbm is read in.
4042 (XPutPixel): Don't invert bits here.
a4478a76 4043
048addec 40442002-11-15 Jason Rumney <jasonr@gnu.org>
a4478a76 4045
048addec
JD
4046 * w32term.c (x_draw_image_foreground, x_draw_image_glyph_string)
4047 (w32_draw_image_foreground_1): Handle image masks.
4048 (x_draw_image_glyph_string): Don't BitBlt transparently.
a4478a76 4049
048addec
JD
4050 * w32fns.c (w32_defined_color): Adjust RGB values for Emacs.
4051 (x_from_xcolors): Adjust RGB values for W32.
4052 (image_background, image_background_transparent)
4053 (postprocess_image, x_to_xcolors, x_disable_image)
4054 (x_build_heuristic_mask): Adapt for W32 and enable.
4055 (x_create_x_image_and_pixmap): Mark images with palettes as such.
4056 (xbm_load): Remove unused variable.
03670a65 4057
048addec 40582002-11-14 Richard M. Stallman <rms@gnu.org>
03670a65 4059
048addec 4060 * buffer.c (syms_of_buffer): Doc fix.
59daa29a 4061
048addec 40622002-11-14 Dave Love <fx@gnu.org>
59daa29a 4063
048addec 4064 * alloc.c (SETJMP_WILL_NOT_WORK): Add note.
59daa29a 4065
048addec
JD
4066 * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
4067 * xmenu.c (unuse_menu_items, digest_single_submenu):
4068 * xfns.c (x_put_x_image):
4069 * xdisp.c (message2_nolog, set_message):
4070 * undo.c (record_point):
4071 * terminfo.c (tparam):
4072 * syntax.c (scan_sexps_forward):
4073 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
4074 * composite.c (update_compositions):
4075 * cm.c (calccost, cmgoto):
4076 * charset.c (c_string_width): Declare all args (per C99).
59daa29a 4077
048addec 4078 * frame.h (get_specified_cursor_type, get_window_cursor_type): Declare.
59daa29a 4079
048addec
JD
4080 * lisp.h (get_specified_cursor_type, get_window_cursor_type):
4081 Don't declare.
59daa29a 4082
048addec 4083 * emacs.c (main) [!VMS]: Avoid third arg.
59daa29a 4084
048addec
JD
4085 * fns.c (Fcopy_sequence): Doc fix.
4086 (Fmap_char_table): Cast `call2'.
3947677c 4087
048addec
JD
40882002-11-14 Francesco Potorti` <pot@gnu.org>
4089
4090 * s/sol2-8.h: New file.
4091
40922002-11-14 Kim F. Storm <storm@cua.dk>
4093
4094 * buffer.c (syms_of_buffer) <mode-line-format>: Document symbol
4095 dependency on `risky-local-variable' and the :propertize form.
4096
40972002-11-12 Stefan Monnier <monnier@cs.yale.edu>
4098
4099 * fns.c (Fmap_char_table): Don't use map_char_table's function arg.
4100
4101 * syntax.c (scan_sexps_forward): Undo last patch.
4102 Use a more obvious fix: check eob before updating the syntax table.
4103
41042002-11-09 Stefan Monnier <monnier@cs.yale.edu>
4105
4106 * syntax.c (scan_sexps_forward): Update syntax table before reading
4107 a char rather than after so we don't update the table past eob.
4108
41092002-11-09 Dave Love <fx@gnu.org>
4110
4111 * buffer.c (Fset_buffer_major_mode): Fix last change.
4112
4113 * regex.c (regexec): Fix pmatch declaration.
4114
4115 * cmds.c (Fself_insert_command): Apply Vtranslation_table_for_input.
4116
4117 * keyboard.c (command_loop_1): Apply Vtranslation_table_for_input
4118 to self-inserting characters.
4119 (syms_of_keyboard) <keyboard-translate-table>: Doc fix.
4120
4121 * coding.c (Vtranslation_table_for_input): New.
4122 (syms_of_coding): DEFVAR it.
4123
41242002-11-08 Juanma Barranquero <lektu@terra.es>
4125
4126 * w32term.c (w32_draw_fringe_bitmap): Remove unused local variable
4127 window.
4128
41292002-11-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4130
6bdb309a 4131 * process.c (Fformat_network_address): Remove unused locals p,
048addec
JD
4132 cp, and i.
4133
41342002-11-06 Dave Love <fx@gnu.org>
4135
4136 * buffer.c (Qset_buffer_major_mode_hook): New.
4137 (Fset_buffer_major_mode): Use it.
4138
41392002-11-06 Richard M. Stallman <rms@gnu.org>
4140
4141 * xterm.c (x_term_init): Use turn_on_atimers, not start_polling
4142 and stop_polling.
4143
4144 * process.c (wait_reading_process_input):
4145 Test POLLING_PROBLEM_IN_SELECT, not hpux.
4146 Avoid initialization for auto Lisp_Object var.
4147
4148 * s/hpux11.h (POLLING_PROBLEM_IN_SELECT): Add #undef.
4149
4150 * s/hpux10.h (POLLING_PROBLEM_IN_SELECT): Defined.
4151
41522002-11-05 Richard M. Stallman <rms@gnu.org>
4153
4154 * s/sol2-5.h (BROKEN_SIGIO): Turn off the #undef.
4155
4156 * callint.c (Fcall_interactively): New local filter_specs.
4157 (Fcall_interactively): Check for progn as well as let.
4158 Add a gcpro.
4159 (Qprogn): New variable.
4160 (syms_of_callint): Staticpro and init Qprogn.
4161
41622002-11-04 John Paul Wallington <jpw@shootybangbang.com>
4163
4164 * lread.c (Feval_buffer): Doc fix.
4165
41662002-11-04 Dave Love <fx@gnu.org>
4167
4168 * keyboard.c (read_char): Always translate iff
4169 Vkeyboard_translate_table is a char table and c is valid.
4170
4171 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
4172 and fix C types.
4173
41742002-11-03 Stefan Monnier <monnier@cs.yale.edu>
4175
4176 * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
4177
4178 * editfns.c (get_pos_property): Don't hardcode Qfield.
4179
4180 * keyboard.c (adjust_point_for_property): Handle `display' prop on
4181 overlays. Also handle `invisible' prop.
4182
41832002-11-02 Stefan Monnier <monnier@cs.yale.edu>
4184
4185 * coding.c (decode_coding_emacs_mule, decode_coding_iso2022)
4186 (decode_coding_sjis_big5, decode_eol): Allow lone \r in DOS EOL.
4187
41882002-11-01 Andreas Schwab <schwab@suse.de>
4189
4190 * editfns.c (Fmessage): Revert last change to properly handle %%.
4191
41922002-11-01 Stefan Monnier <monnier@cs.yale.edu>
4193
4194 * xmenu.c (unuse_menu_items): New fun.
4195 (menu_items_inuse): New var.
4196 (syms_of_xmenu): Initialize it.
4197 (init_menu_items): Use it to detect re-entrance.
4198 (Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset when done.
4199 (Fx_popup_menu): Remove spurious XSETFRAME.
4200
4201 * editfns.c (find_field): Make an exception for nil fields.
4202
42032002-11-01 Dave Love <fx@gnu.org>
4204
4205 * m/gec63.h: Deleted.
4206
42072002-10-31 Dave Love <fx@gnu.org>
4208
4209 * xterm.c (XTread_socket): Fix last change.
4210 (xaw_scroll_callback): Cast call_data to long to avoid warning.
4211
42122002-10-31 Stefan Monnier <monnier@cs.yale.edu>
4213
4214 * process.c (Fformat_network_address): Fix int/Lisp_Object mixup.
4215
42162002-10-30 Stefan Monnier <monnier@cs.yale.edu>
4217
4218 * editfns.c (overlays_around, get_pos_property): New funs.
4219 (find_field): Use them.
4220 Also be careful not to modify POS before its last use.
4221 (Fmessage): Don't Fformat if there's nothing to format.
4222
42232002-10-30 Dave Love <fx@gnu.org>
4224
4225 * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
4226 [HAVE_PTY_H]; Include pty.h.
4227
4228 * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
4229
4230 * xterm.c (Qeql): Declare.
4231 (Vx_keysym_table): New.
4232 (syms_of_xterm): Initialize it.
4233 (XTread_socket): Use it. Deal with ASCII keysyms.
4234 (XSetIMValues) [HAVE_X11R6]: Prototype.
4235
4236 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
4237 (lispy_kana_keys): Comment out.
4238 (make_lispy_event) [XK_kana_A]: Comment out.
4239 (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>:
4240 Fix sprintf call.
4241
4242 * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
4243 regexp.h change).
4244 (TERMINFO, LIBS_TERMCAP): Define.
4245
4246 * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
4247 (bcmp): Define conditional on HAVE_BCMP.
4248 (NO_SIOCTL_H): Don't define.
4249 (TIOCSIGSEND): Don't make conditional on IRIX6.
4250
4251 * s/sol2-5.h: Don't include strings.h.
4252 (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
4253
4254 * s/irix6-0.h (IRIX6): Don't define.
4255 (bcopy, bcmp, bzero): Don't undef.
4256
4257 * s/irix6-5.h: Don't include strings.h.
4258 (IRIX6): Don't define.
4259 (bcopy, bcmp, bzero): Don't undef.
4260
4261 * syntax.c (Fforward_comment): Doc fix.
4262
42632002-10-29 Kim F. Storm <storm@cua.dk>
4264
4265 * process.c (Fsignal_process): Allow PROCESS to be specified by
4266 name in addition to pid (as integer or string).
4267
42682002-10-28 Harald Maier <Harald.Maier.BW@t-online.de> (tiny change)
4269
4270 * w32heap.c: Don't redefine _heap_init and _heap_term on MSVC 7 build
4271 environments.
4272
42732002-10-27 Kim F. Storm <storm@cua.dk>
4274
4275 * xterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
4276
4277 * w32term.c (note_mouse_highlight): Don't use mouse-face if hidden.
4278
4279 * msdos.c (IT_note_mouse_highlight): Don't use mouse-face if hidden.
4280
4281 * macterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
4282
42832002-10-26 Richard M. Stallman <rms@gnu.org>
4284
4285 * editfns.c (Fformat): Detect invalid format letters for floats.
4286
42872002-10-25 Kenichi Handa <handa@m17n.org>
4288
4289 * xfns.c (x_set_name): Encode by Qcompound_text unconditionally.
4290 (x_set_title): Likewise.
4291
42922002-10-25 Juanma Barranquero <lektu@terra.es>
4293
4294 * macgui.h:
4295 * w32gui.h: Remove definition of XColor.
4296
4297 * dispextern.h [!HAVE_X_WINDOWS]: Define XColor.
4298
42992002-10-24 Kim F. Storm <storm@cua.dk>
4300
4301 * xdisp.c (get_window_cursor_type): New arg ACTIVE_CURSOR.
4302 Callers changed (supply dummy arg).
4303
4304 * lisp.h (get_window_cursor_type): Update prototype.
4305
4306 * w32term.c (x_display_and_set_cursor): Get active_cursor from
4307 get_window_cursor_type to track system caret.
4308
43092002-10-24 Kim F. Storm <storm@cua.dk>
4310
4311 * process.c (Fformat_network_address): New function.
4312 (syms_of_process): Defsubr it.
4313 (list_processes_1): Use it to format :local/:remote address if
4314 service/host is not set; before emacs would crash in that case.
4315 (Fmake_network_process): Don't use Ffind_operation_coding_system
4316 to setup coding system if host or service is not set.
4317
43182002-10-23 Juanma Barranquero <lektu@terra.es>
4319
4320 Patch suggested by Jay Finger <jay_finger@hotmail.com>.
4321
4322 * w32term.c (w32_term_init): Pass XColor to w32_define_color, not
4323 COLORREF.
4324
4325 * macgui.h:
4326 * w32gui.h: Add definition of XColor.
4327
4328 * macfns.c:
4329 * w32fns.c:
4330 * xfaces.c: Remove definition of XColor.
4331
43322002-10-22 Stefan Monnier <monnier@cs.yale.edu>
4333
4334 * xfns.c (x_set_name, x_set_title): `icon.value' has unsigned char.
4335
4336 * window.c (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
4337 Only ignore truly dedicated windows. For UNSHOW_BUFFER, delete the
4338 window if it is dedicated.
4339 (Fshrink_window): Add preserve_before as was done for enlarge_window.
4340 (Vspecial_display_function): Update docstring.
4341
4342 * buffer.c (assoc_ignore_text_properties, Fother_buffer, Fkill_buffer)
4343 (call_overlay_mod_hooks): Use CONSP and XCAR/XCDR.
4344 (Fget_buffer_create, advance_to_char_boundary): Use BEG and BEG_BYTE;
4345
43462002-10-21 Stefan Monnier <monnier@cs.yale.edu>
4347
4348 * casefiddle.c (casify_region): Don't treat a prefix char as part
4349 of a word when at the beginning.
4350
43512002-10-17 Juanma Barranquero <lektu@terra.es>
4352
4353 * lread.c (syms_of_lread): Fix typos.
4354
43552002-10-17 Dave Love <fx@gnu.org>
4356
4357 * Makefile.in (TEMACS_LDFLAGS): Add trailing comment.
4358
43592002-10-16 Richard M. Stallman <rms@gnu.org>
4360
4361 * fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
4362
43632002-10-14 Juanma Barranquero <lektu@terra.es>
4364
4365 * w16select.c (syms_of_win16select): Fix docstring for
4366 `selection-coding-system'.
4367
4368 * w32select.c (syms_of_w32select): Likewise.
4369
43702002-10-14 Stefan Monnier <monnier@cs.yale.edu>
4371
4372 * syntax.c (scan_lists): Don't get fooled by a symbol ending with
4373 a backslash-quoted char.
4374 (scan_lists, scan_sexps_forward): Pacify the compiler.
4375
43762002-10-13 Richard M. Stallman <rms@gnu.org>
4377
4378 * window.c (window_scroll): Set immediate_quit.
4379
4380 * print.c (print): When backquote form is the car of a list,
4381 output in old style. Use old_backquote_output to output all
4382 comma forms inside it in old style too.
4383
4384 * buffer.h (struct buffer): Move `undo_list' down below `name'.
4385
43862002-10-11 Markus Rost <rost@math.ohio-state.edu>
4387
4388 * emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in
4389 batch mode).
4390
4391 * lread.c (Fload): Doc fix (load-suffixes).
4392
43932002-10-10 Steven Tamm <steventamm@mac.com>
4394
4395 * macterm.c (syms_of_macterm, mac_get_mouse_btn):
4396 Reverse functionality of mac-wheel-button-is-mouse-2 to be correct.
4397 Also switch the default to Qnil from Qt.
4398
43992002-10-08 Kenichi Handa <handa@m17n.org>
4400
4401 * coding.c (code_convert_region): When we need more GAP for
4402 conversion, pay attention to the case that coding->produced is not
4403 greater than coding->consumed.
4404
44052002-10-07 Richard M. Stallman <rms@gnu.org>
4406
4407 * unexelf.c (unexec): Redo 9/16 change, but only if IRIX6_5.
4408
44092002-10-06 Andrew Choi <akochoi@shaw.ca>
4410
4411 * macmenu.c (mac_menu_show): Add j to count menu items; match
4412 menu_item_selection to it to find selected item.
4413
44142002-10-06 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4415
4416 * xterm.c (XTread_socket): Fix from 2002-10-03 didn't cover all
4417 cases. The correct fix is to pass ReparentNotify to Xt.
4418 The shell widget interprets ConfigureNotify differently depending
4419 on if it has been reparented or not.
4420
44212002-10-05 Markus Rost <rost@math.ohio-state.edu>
4422
4423 * editfns.c (Fformat_time_string): Doc fix.
4424
44252002-10-05 John Paul Wallington <jpw@shootybangbang.com>
4426
4427 * fns.c (Flength): Doc fix.
4428
44292002-10-04 Stefan Monnier <monnier@cs.yale.edu>
4430
4431 * keyboard.c (keyremap): New struct.
4432 (read_key_sequence): Use it: globally replace keytran_foo with
4433 keytran.foo and fkey_foo with fkey.foo. Rename temp vars
4434 keytran_next and fkey_next to just `next'.
4435
44362002-10-04 Steven Tamm <steventamm@mac.com>
4437
4438 * macterm.c (keycode_to_xkeysym_table): Change return to be
4439 treated like an X keysym.
4440
44412002-10-03 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4442
4443 * xterm.c (XTread_socket): For ConfigureNotify, with x and y == 0,
4444 and USE_MOTIF, call XTranslateCoordinates to get the real x and y.
4445 This is to also handle x/y changes that occur because of a resize.
4446
44472002-10-02 John Paul Wallington <jpw@shootybangbang.com>
4448
4449 * frame.c (Vdelete_frame_functions): New variable.
4450 (syms_of_frame): Initialize and defvar it.
4451 (Fdelete_frame): Use it instead of delete-frame-hook. Don't run
4452 it when frame's `tooltip' parameter is non-nil.
4453
4454 * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t.
4455
4456 * w32fns.c (x_create_tip_frame): Likewise.
4457
4458 * macfns.c (x_create_tip_frame): Likewise.
4459
44602002-09-30 Kenichi Handa <handa@m17n.org>
4461
4462 * xterm.c (x_encode_char): For DIM=1 charset, set ccl->reg[2] to
4463 -1 before calling ccl_driver.
4464
4465 * coding.c (decode_coding_emacs_mule): Check coding->cmp_data.
4466 Only when it is non-nil, handle composition sequence.
4467 (setup_coding_system) <0>: Don't force composition handling.
4468
4469 * Makefile.in (lisp, shortlisp): Add utf-16.elc
4470
44712002-09-29 Richard M. Stallman <rms@gnu.org>
4472
4473 * search.c (Freplace_match): Adjust match data for the substitution
4474 just made in the buffer.
4475
4476 * xdisp.c (STOP_POLLING, RESUME_POLLING): New macros.
4477 (redisplay_internal): Use them. Do RESUME_POLLING at end of function.
4478
44792002-09-27 Richard M. Stallman <rms@gnu.org>
4480
4481 * keyboard.c (STOP_POLLING, RESUME_POLLING): New macros.
4482 (read_char): Use them. Do all exits thru the end of the function.
4483
44842002-09-27 Kenichi Handa <handa@etl.go.jp>
4485
4486 * xfaces.c (try_font_list): Pay attention to the case that FAMILY
4487 is nil.
4488
44892002-09-26 Richard M. Stallman <rms@gnu.org>
4490
4491 * regex.h (__restrict_arr): Don't define if already defined.
4492
4493 * coding.c (run_pre_post_conversion_on_str):
4494 Save and restore Vdeactivate_mark.
4495
44962002-09-26 John Paul Wallington <jpw@shootybangbang.com>
4497
4498 * minibuf.c (Fminibufferp): Add an optional `buffer' argument.
4499
45002002-09-26 Kenichi Handa <handa@etl.go.jp>
4501
4502 * xfaces.c (try_font_list): New arg PREFER_FACE_FAMILY. If it is
4503 nonzero, try face's family at first. Otherwise try FAMILY at first.
4504 (choose_face_font): If C is a single byte char or latin-1, call
4505 try_font_list with PREFER_FACE_FAMILY 1.
4506
45072002-09-21 Richard M. Stallman <rms@gnu.org>
4508
4509 * window.c (select_window_1): Don't select frame.
4510 Set frame's selected window only when frame itself is selected.
4511 (Fselect_window): Doc fix.
4512
45132002-09-18 Kim F. Storm <storm@cua.dk>
4514
4515 * process.c (make-network-process): Doc fix (there is no
4516 network-server-log-function hook).
4517
45182002-09-18 Richard M. Stallman <rms@gnu.org>
4519
4520 * print.c (print): Clear out the unused parts of Vprint_number_table.
4521 (syms_of_print): Doc fix for `print-number-table'.
4522
4523 * unexelf.c (unexec): Undo previous change.
4524
45252002-09-17 Andreas Schwab <schwab@suse.de>
4526
4527 * m/alpha.h [LINUX]: Don't define DATA_START.
4528
45292002-09-16 Dave Love <fx@gnu.org>
4530
4531 * unexelf.c (unexec): Deal with .got, reinstating change from
4532 25-08-1999.
4533
45342002-09-13 Richard M. Stallman <rms@gnu.org>
4535
4536 * s/sol2-6.h (UNEXEC): Comment out definition.
4537
4538 * unexsol.c (unexec): Don't downcase first letter of error msg.
4539
4540 * xfaces.c (Fcolor_supported_p): Just one arg is required.
4541
45422002-09-12 Markus Rost <rost@math.ohio-state.edu>
4543
4544 * unexsol.c: Include buffer.h, charset.h, coding.h.
4545
45462002-09-11 Richard M. Stallman <rms@gnu.org>
4547
4548 * unexsol.c: Don't use report_file_error; do it by hand
4549 using dlerror.
4550
4551 * process.c (wait_reading_process_input, both versions):
4552 Before calling turn_on_atimers, call stop_polling.
4553
4554 * emacs.c (syms_of_emacs) <command-line-args>: Doc fix.
4555
4556 * xdisp.c (try_scrolling): If after make_cursor_line_fully_visible
4557 we go to too_near_end, call clear_glyph_matrix.
4558 (redisplay_window): After make_cursor_line_fully_visible,
4559 call clear_glyph_matrix and bypass `goto done'.
4560
4561 * xfns.c (x_report_frame_params): If FRAME_SCROLL_BAR_PIXEL_WIDTH is 0
4562 and we have non-toolkit scroll bars, return nil for scroll-bar-width.
4563
45642002-09-10 Richard M. Stallman <rms@gnu.org>
4565
4566 * fileio.c (Fdo_auto_save): Catch error making directory.
4567 Only call push_message if we need to.
4568 At the same time, make an unwind-protect to pop it.
4569 Rename local message_p to old_message_p.
4570 (do_auto_save_make_dir, do_auto_save_eh): New functions.
4571 (do_auto_save_unwind): Don't call pop_message.
4572
4573 * lisp.h (pop_message_unwind): Renamed from push_message_unwind.
4574
4575 * keyboard.c (Fexecute_extended_command): Use pop_message_unwind.
4576
4577 * alloc.c (Fgarbage_collect): Use pop_message_unwind.
4578
4579 * xdisp.c (pop_message_unwind): Renamed from push_message_unwind.
4580
45812002-09-10 Stefan Monnier <monnier@cs.yale.edu>
4582
4583 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete.
4584 (CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1.
4585 (re_match_2_internal): Be more careful with infinite loops.
4586
45872002-09-10 Kim F. Storm <storm@cua.dk>
4588
4589 * macros.c (end_kbd_macro): New function.
4590 (Fend_kbd_macro): Use it.
4591
4592 * macros.h (end_kbd_macro): Declare extern.
4593
4594 * keyboard.c (Fdiscard_input): If defining keyboard macro,
4595 end and save it instead of discarding it.
4596
45972002-09-09 Markus Rost <rost@math.ohio-state.edu>
4598
4599 * s/sol2-6.h: Fix typo. Add comment.
4600
46012002-09-09 Richard M. Stallman <rms@gnu.org>
4602
4603 * regex.c (regnum_t): Use signed int, not unsigned int.
4604
4605 * s/sol2-6.h: New file.
4606
4607 * s/sol2-5.h (UNEXEC): Definition deleted.
4608
46092002-09-08 Kim F. Storm <storm@cua.dk>
4610
4611 * macros.c (executing_macro_index): Change type to EMACS_INT.
4612 (syms_of_macros): DEFVAR_INT it (needed by kmacro).
4613
4614 * macros.h (executing_macro_index): Change type to EMACS_INT.
4615
46162002-09-06 Richard M. Stallman <rms@gnu.org>
4617
4618 * casetab.c (set_case_table): Make canon table point to eqv table.
4619
46202002-09-06 Juanma Barranquero <lektu@terra.es>
4621
4622 * coding.c (syms_of_coding): Fix spacing.
4623
4624 * composite.c (Fcompose_region_internal)
4625 (Fcompose_string_internal): Likewise.
4626
4627 * data.c (Flsh): Likewise.
4628
4629 * fontset.c (Fset_fontset_font): Likewise.
4630
4631 * macfns.c (Fx_server_max_request_size): Likewise.
4632
4633 * w16select.c (syms_of_win16select): Likewise.
4634
4635 * w32select.c (syms_of_w32select): Likewise.
4636
4637 * xselect.c (syms_of_xselect): Likewise.
4638
46392002-09-05 Richard M. Stallman <rms@gnu.org>
4640
4641 * regex.c (set_image_of_range_1): In no-TRANSLATE case,
4642 call EXTEND_RANGE_TABLE and return a proper value.
4643 (set_image_of_range): Don't call set_image_of_range_1
4644 if no TRANSLATE or if range includes all of Latin-1.
4645 Only call it for the Latin-1 part of the range.
4646 For other cases, make two separate ranges,
4647 one for the original specified characters and one for
4648 their case-conversions.
4649
46502002-09-04 Richard M. Stallman <rms@gnu.org>
4651
4652 * s/sol2-5.h (UNEXEC): Use unexsol.o.
4653
4654 * window.c (displayed_window_lines): Correct for one-off bug
4655 in HEIGHT on non-window displays.
4656
4657 * regex.c (set_image_of_range_1): New function.
4658 (set_image_of_range): Use set_image_of_range_1 for Latin-1.
4659 Return a value to indicate running out of memory.
4660 (SET_RANGE_TABLE_WORK_AREA): Check value from set_image_of_range.
4661 (extend_range_table_work_area): New subroutine.
4662 (EXTEND_RANGE_TABLE): Replaces EXTEND_RANGE_TABLE_WORK_AREA.
4663 Different calling conventions, and used from set_image_of_range{,_1}.
4664 (IMMEDIATE_QUIT_CHECK): Definitions moved.
4665
46662002-09-04 Juanma Barranquero <lektu@terra.es>
4667
4668 * makefile.w32-in: All dependencies updated.
4669
46702002-09-01 Richard M. Stallman <rms@gnu.org>
4671
4672 * unexsol.c: New file.
4673
4674 * xfns.c (Qbox): Declare external, don't define.
4675
4676 * xdisp.c (redisplay_window) <force-start case>:
4677 If point is on semi-visible last line, reposition
4678 it at previous line.
4679
4680 * alloc.c (display_malloc_warning): Use display-warning.
4681 (malloc_warning_1): Function deleted.
4682
4683 * alloc.c [ALLOC_DEBUG]: #undef INLINE.
4684
4685 * lread.c (read1): Handle #! by skipping the line.
4686
46872002-08-31 Richard M. Stallman <rms@gnu.org>
4688
4689 * Makefile.in (TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS.
4690 Don't include LDFLAGS.
4691 (temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
4692
46932002-08-31 Eli Zaretskii <eliz@is.elta.co.il>
4694
4695 * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame
4696 member of x_display_info unless we compile for some window system.
4697
46982002-08-31 Kim F. Storm <storm@cua.dk>
4699
4700 * xdisp.c (Valternate_cursor_type, Qalternate_cursor_type): Removed.
4701 (get_window_cursor_type): Don't use them.
4702 (syms_of_xdisp): Remove intern, staticpro, and defvar for them.
4703
47042002-08-30 Kenichi Handa <handa@etl.go.jp>
4705
4706 * xdisp.c (get_next_display_element): Fix previous change.
4707
47082002-08-30 Andrew Choi <akochoi@shaw.ca>
4709
4710 * macterm.c (expose_overlaps): New function (merge code from xterm.c).
4711 (expose_window): Use it to fix the display of overlapping
4712 rows (merge code from xterm.c).
4713
4714 * macfns.c (Qbox): Add extern declaration.
4715
47162002-08-30 Juanma Barranquero <lektu@terra.es>
4717
4718 * w32fns.c (Qbox): Make extern.
4719 (syms_of_w32fns): Remove initialization of Qbox.
4720
47212002-08-30 Rune Kleveland <runekl@viewpoint.no> (tiny change)
4722
4723 * xfns.c (Fx_open_connection): Fix error message.
4724
47252002-08-30 Kim F. Storm <storm@cua.dk>
4726
4727 The following changes consolidates the handling of the cursor
4728 type in xdisp.c, moving duplicate code and functionality from
4729 xfns.c, xterm.c, w32fns.c, w32term.c, macfns.c, and macterm.c.
4730
4731 * frame.h (enum text_cursor_kinds): Consolidated here.
4732 Added DEFAULT_CURSOR value.
4733 (struct frame) <desired_cursor, cursor_width>
4734 <blink_off_cursor, blink_off_cursor_width>: New fields.
4735 Consolidated from output_x, output_w32 and output_mac structs.
4736 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
4737 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros consolidated here.
4738
4739 * xdisp.c (Qbar, Qhbar, Qbox, Qhollow, Vblink_cursor_alist):
4740 Variables consolidated here.
4741 (Valternate_cursor_type, Qalternate_cursor_type): New variables.
4742 (Vcursor_in_non_selected_windows): Renamed from
4743 cursor_in_non_selected_windows and changed to Lisp_Object.
4744 (syms_of_xdisp): Define and staticpro new and moved variables.
4745 (get_specified_cursor_type): Renamed from x_specified_cursor_type;
4746 consolidated here. Recognize Qhollow setting.
4747 (set_frame_cursor_types): New function to set frame cursor types
4748 based on the frame parameters.
4749 (get_window_cursor_type): New function to calculate new cursor
4750 type and width for the specified window. Based on duplicated
4751 code consolidated here.
4752 Enhancements: cursor-in-non-selected-windows may be a cursor type,
4753 check buffer-local alternate-cursor-type and blink-cursor-alist
4754 before using built-in blink off methods.
4755
4756 * dispextern.h (cursor_in_non_selected_windows): Extern removed.
4757
4758 * lisp.h (Qcursor_in_non_selected_windows): Extern removed.
4759 (get_specified_cursor_type, get_window_cursor_type)
4760 (set_frame_cursor_types): Added prototypes.
4761
4762 * macfns.c (x_specified_cursor_type): Removed.
4763 (x_set_cursor_type): Use set_frame_cursor_types.
4764 (Qbar, Qbox): Removed.
4765 (syms_of_macfns): Don't intern or staticpro them.
4766
4767 * macterm.c (x_specified_cursor_type): Remove prototype.
4768 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
4769 (x_display_and_set_cursor): Use get_window_cursor_type.
4770 Remove unused local variables cursor_non_selected, active_cursor.
4771 Redraw cursor if hbar cursor width changes.
4772 (make_mac_frame): Set FRAME_DESIRED_CURSOR.
4773
4774 * macterm.h (enum text_cursor_kinds): Removed.
4775 (struct output_mac) <current_cursor, desired_cursor, cursor_width>
4776 <blink_off_cursor, blink_off_cursor_width>: Members removed.
4777 (FRAME_DESIRED_CURSOR): Macro removed.
4778
4779 * w32fns.c (Vblink_cursor_alist): Removed.
4780 (Qbar, Qhbar, Qbox, Qhollow): Removed.
4781 (syms_of_w32fns): Don't intern, staticpro, or define them.
4782 (x_specified_cursor_type): Removed.
4783 (x_set_cursor_type): Use set_frame_cursor_types.
4784
4785 * w32term.c (x_specified_cursor_type): Remove prototype.
4786 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
4787 (x_display_and_set_cursor): Use get_window_cursor_type.
4788 Remove unused local variables cursor_off_state.
4789 Redraw cursor if hbar cursor width changes.
4790 Changed all occurrences of w32_highlight_frame to x_highlight_frame.
4791
4792 * w32term.h (enum text_cursor_kinds): Removed.
4793 (struct output_w32) <current_cursor, desired_cursor, cursor_width>
4794 <blink_off_cursor, blink_off_cursor_width>: Members removed.
4795 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
4796 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
4797 (struct w32_display_info) <x_highlight_frame>: Renamed member from
4798 w32_highlight_frame.
4799
4800 * xfns.c (Vblink_cursor_alist): Removed.
4801 (Qbar, Qhbar, Qbox, Qhollow): Removed.
4802 (syms_of_xfns): Don't intern, staticpro, or define them.
4803 (x_specified_cursor_type): Removed.
4804 (x_set_cursor_type): Use set_frame_cursor_types.
4805
4806 * xterm.c (x_specified_cursor_type): Remove prototype.
4807 (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
4808 (x_display_and_set_cursor): Use get_window_cursor_type.
4809 Remove unused local variables cursor_off_state.
4810 Redraw cursor if hbar cursor width changes.
4811
4812 * xterm.h (enum text_cursor_kinds): Removed.
4813 (struct output_x) <current_cursor, desired_cursor, cursor_width>
4814 <blink_off_cursor, blink_off_cursor_width>: Members removed.
4815 (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
4816 (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
4817 (x_specified_cursor_type): Remove prototype.
4818
48192002-08-28 Richard M. Stallman <rms@gnu.org>
4820
4821 * w32fns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
4822 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
4823 (Vblink_cursor_alist): New variable.
4824 (syms_of_w32fns): Initialize and defvar it.
4825 (x_specified_cursor_type): Recognize Qbox for filled box.
4826 Exceptions are hollow boxes.
4827 (Qbox, Qhollow): New variables.
4828 (syms_of_w32fns): Initialize and staticpro them.
4829
4830 * w32term.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
4831 New macros.
4832 (struct w32_output): New fields blink_off_cursor,
4833 blink_off_cursor_width.
4834 (FRAME_CURSOR_WIDTH): New macro.
4835
4836 * w32term.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
4837 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
4838
4839 * w32term.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
4840 for bar cursor.
4841
4842 * w32term.c (expose_overlaps): New function.
4843 (expose_window): Use it to fix the display of overlapping rows.
4844
48452002-08-28 Simon Josefsson <jas@extundo.com>
4846
4847 * xfns.c (Fx_open_connection): Improve help when X connection
4848 fails, xhost is insecure and xauth is better.
4849
48502002-08-28 Juanma Barranquero <lektu@terra.es>
4851
4852 * makefile.w32-in: Add missing dependencies on w32term.h and
4853 composite.h.
4854
4855 * emacs.c (USAGE1): Add missing newline.
4856
48572002-08-27 Andrew Choi <akochoi@shaw.ca>
4858
4859 * s/darwin.h [HAVE_LIBNCURSES]: Define HAVE_TERMINFO.
4860
48612002-08-27 Richard M. Stallman <rms@gnu.org>
4862
4863 * xfns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
4864 FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
4865 (Vblink_cursor_alist): New variable.
4866 (syms_of_xfns): Initialize and defvar it.
4867 (x_specified_cursor_type): Recognize Qbox for filled box.
4868 Exceptions are hollow boxes.
4869 (Qbox, Qhollow): New variables.
4870 (syms_of_xfns): Initialize and staticpro them.
4871
4872 * xterm.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
4873 New macros.
4874 (struct x_output): New fields blink_off_cursor, blink_off_cursor_width.
4875
4876 * xterm.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
4877 and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
4878
4879 * emacs.c (main): Handle --script.
4880 (USAGE1): Mention --script.
4881 (standard_args): Define sort order for --script.
4882
48832002-08-27 Gerd Moellmann <gerd.moellmann@t-online.de>
4884
4885 * xdisp.c (redisplay_updating_p): Variable removed.
4886 (inhibit_free_realized_faces, Qinhibit_free_realized_faces):
4887 New variables.
4888 (init_iterator): Don't free realized faces if
4889 inhibit_free_realized_faces is set.
4890 (redisplay_internal): Bind Qinhibit_free_realized_faces to nil.
4891 (syms_of_xdisp): DEFVAR_BOOL inhibit-free-realized-faces,
4892 initialize Qinhibit_free_realized_faces.
4893
4894 * dispextern.h (PRODUCE_GLYPHS): Set inhibit_free_realized_faces
4895 when iterator is adding glyphs to a glyph matrix.
4896
48972002-08-27 Kenichi Handa <handa@etl.go.jp>
4898
4899 * xdisp.c (get_next_display_element): In unibyte case, don't use
4900 octal form for such eight-bit characters that can be converted to
4901 multibyte char.
4902
49032002-08-26 Kim F. Storm <storm@cua.dk>
4904
4905 * frame.c (make_terminal_frame) [CANNOT_DUMP]: Initialize foreground
4906 and background colors. From Joe Buehler (tiny change).
4907
49082002-08-26 Miles Bader <miles@gnu.org>
4909
4910 * bytecode.c (Fbyte_code): Fsub1 can GC, so protect it.
4911
49122002-08-25 Andrew Choi <akochoi@shaw.ca>
4913
4914 * emacs.c (main): Call init_mac_osx_environment if HAVE_CARBON is
4915 defined instead of MAC_OSX.
4916
4917 * s/darwin.h (select): Define select to sys_select only if
4918 HAVE_CARBON is defined.
4919 (HAVE_WORKING_VFORK): #undef it. Define vfork to fork.
4920 (DONT_REOPEN_PTY): #def it.
4921
4922 * macterm.c (XTread_socket): Remove code to call
4923 SendEventToEventTarget for keys with command modifiers when
4924 mac_command_key_is_meta is nil.
4925
49262002-08-24 Andreas Schwab <schwab@suse.de>
4927
4928 * eval.c (Fdefvar): Fix last change.
4929
49302002-08-23 Richard M. Stallman <rms@gnu.org>
4931
4932 * eval.c (Fdefvar, Fdefconst, Fdefvaralias):
4933 Record variables in load history as (defvar . VAR).
4934 (Fdefvar): Don't record in load history if no initial value.
4935 (Qdefvar): New variable.
4936 (syms_of_eval): Init and staticpro it.
4937
4938 * lread.c (syms_of_lread): Doc fix.
4939 (build_load_history): Use Fmember to see if a definition
4940 is already in the Vload_history element.
4941
4942 * process.c (Fstart_process): Remove /: from program name.
4943
4944 * emacs.c (decode_env_path): Don't add /: if file name handler
4945 has a `safe-magic' property.
4946
4947 * callproc.c (Fcall_process): Remove /: from program name.
4948
49492002-08-23 Stefan Monnier <monnier@cs.yale.edu>
4950
4951 * regex.c (PATFETCH): Remove the translating fetch.
4952 (PATFETCH_RAW): Rename to PATFETCH.
4953 (set_image_of_range): New fun.
4954 (SET_RANGE_TABLE_WORK_AREA): Use it.
4955 (regex_compile): Don't translate the pattern chars so eagerly.
4956 Only do it when inserting an `exactn' bytecode or when handling
4957 a char-range.
4958 (mutually_exclusive_p): Avoid empty statement.
4959
49602002-08-22 Kim F. Storm <storm@cua.dk>
4961
4962 * xdisp.c (redisplay_window): Do not `goto try_to_scroll' when we
4963 end up on a partially visible line; this reverts a specific part
4964 of the 2002-07-07 change by Richard M. Stallman to "fix" a nasty
4965 display error which has been reported several times now.
4966 However it introduces the problem that changes was supposed to fix.
4967 See my comments in the source if you want to debug this further.
4968
49692002-08-20 Kenichi Handa <handa@etl.go.jp>
4970
4971 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
4972
49732002-08-19 Eli Zaretskii <eliz@is.elta.co.il>
4974
4975 * msdos.c (croak): Add `void' to definition.
4976
4977 * sysdep.c [MSDOS] (request_sigio, unrequest_sigio):
4978 Don't define them, they are defined in msdos.c.
4979
4980 * mem-limits.h [MSDOS]: Declare etext.
4981
4982 * fileio.c (Ffile_name_directory) [DOS_NT]: Don't declare `beg'
4983 `const' since CORRECT_DIR_SEPS modifies its target.
4984
49852002-08-19 Kim F. Storm <storm@cua.dk>
4986
4987 * keyboard.c (Fclear_this_command_keys): Added optional arg
4988 KEEP-RECORD to avoid clearing lossage when we just want to clear
4989 the current key sequence (kmacro needs this).
4990
49912002-08-19 Kenichi Handa <handa@localhost>
4992
4993 * composite.c (run_composition_function): Call FUNC if it is fboundp.
4994
4995 * composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
4996 cons, return Qnil.
4997
49982002-08-17 Richard M. Stallman <rms@gnu.org>
4999
5000 * s/sol2-5.h (BROKEN_SIGIO): Add #undef.
5001
5002 * sysdep.c [!VMS]: Include sys/files.h.
5003
5004 * editfns.c (save_restriction_restore): Defend from unchained marker.
5005
5006 * buffer.c (overlays_at): Handle extending vec uniformly.
5007 (overlays_in): Handle extending vec from length 0 as in overlays_at.
5008
50092002-08-15 Andrew Choi <akochoi@shaw.ca>
5010
5011 * mac.c (init_mac_osx_environment): New function.
5012
5013 * emacs.c (main) [MAC_OSX]: Call init_mac_osx_environment.
5014
50152002-08-14 Kim F. Storm <storm@cua.dk>
5016
5017 * macros.c (Fstart_kbd_macro): Added NO-EXEC argument to inhibit
5018 executing macro before appending to it (when used from Lisp).
5019 (Fexecute_kbd_macro): Added LOOPFUNC argument to supply function
5020 which is called prior to each iteration of macro (for kmacro.el).
5021 (Fend_kbd_macro, Fcall_last_kbd_macro): Likewise.
5022
5023 * lisp.h (Fexecute_kbd_macro): Update prototype.
5024
5025 * keyboard.c (Fcommand_execute): Update call to Fexecute_kbd_macro.
5026
50272002-08-14 Kenichi Handa <handa@etl.go.jp>
5028
5029 * xselect.c (QUTF8_STRING): New variable.
5030 (symbol_to_x_atom): Pay attention to QUTF8_STRING.
5031 (x_atom_to_symbol): Likewise.
5032 (x_get_local_selection): New argument local_request. If it is
5033 nonzero, call handler_fn with the second arg nil.
5034 (x_handle_selection_request): Call x_get_local_selection with
5035 local_request 0.
5036 (lisp_data_to_selection_data): Don't encode the string here.
5037 (Fx_get_selection_internal): Call x_get_local_selection with
5038 local_request 1.
5039 (syms_of_xselect): Intern and staticpro QUTF8_STRING.
5040
5041 * xterm.c (x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
5042
5043 * xterm.h (struct x_display_info): New member Xatom_UTF8_STRING.
5044
50452002-08-13 Richard M. Stallman <rms@gnu.org>
5046
5047 * minibuf.c (Fminibufferp): New function.
5048 (syms_of_minibuf): Defsubr it.
5049 (Fminibuffer_prompt_end): Handle non-minibuffers specially.
5050
50512002-08-13 Gerd Moellmann <gerd.moellmann@t-online.de>
5052
5053 * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
5054
50552002-08-12 Richard M. Stallman <rms@gnu.org>
5056
5057 * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
5058 [!VMS] (WCOREDUMP, WEXITSTATUS, WIFEXITED, WIFSTOPPED, WIFSIGNALED)
5059 (WSTOPSIG, WTERMSIG): Define each one independently if not defined
5060 already.
5061
5062 * buffer.c (syms_of_buffer) <fill-column>: Doc fix.
5063
50642002-08-11 Andrew Choi <akochoi@shaw.ca>
5065
5066 * macterm.c (XTmouse_position): Check wp with is_emacs_window.
5067 (Vmac_pass_command_to_system): New variable.
5068 (Vmac_pass_control_to_system): New variable.
5069 (do_mouse_moved): Check wp with is_emacs_window.
5070 (XTread_socket): Check window_ptr with is_emacs_window.
5071 Call FrontNonFloatingWindow instead of FrontWindow. Send keydown
5072 events back to Mac Toolbox for processing, depending on values of
5073 Vmac_pass_command_to_system and Vmac_pass_control_to_system.
5074 (syms_of_macterm): DEFVAR_LISP Vmac_pass_command_to_system and
5075 Vmac_pass_control_to_system.
5076
50772002-08-10 Kenichi Handa <handa@etl.go.jp>
5078
5079 * coding.c (unencodable_char_position): New function.
5080 (Funencodable_char_position): New function.
5081 (syms_of_coding): Defsubr Funencodable_char_position.
5082
50832002-08-10 Andrew Choi <akochoi@shaw.ca>
5084
5085 * mac.c (sys_select) [MAC_OSX]: New function.
5086
5087 * macterm.c (MakeMeTheFrontProcess): New function.
5088 (mac_initialize): Call MakeMeTheFrontProcess.
5089
5090 * s/darwin.h: Define select to sys_select.
5091
50922002-08-09 Richard M. Stallman <rms@gnu.org>
5093
5094 * keyboard.c (make_lispy_event): Test WINDOWSNT, not WINDOWS_NT.
5095
50962002-08-09 Gerd Moellmann <gerd.moellmann@t-online.de>
5097
5098 * xdisp.c (forward_to_next_line_start): Return 0 when reaching the
5099 end of the buffer.
5100
51012002-08-08 Ken Raeburn <raeburn@mit.edu>
5102
5103 * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
5104
5105 * puresize.h (BASE_PURESIZE): Increase to 910000.
5106
51072002-08-08 Kenichi Handa <handa@etl.go.jp>
5108
5109 * coding.c (Ffind_operation_coding_system): For write-region, if
5110 VISIT is a filename, make it the target.
5111
51122002-08-07 Richard M. Stallman <rms@gnu.org>
5113
5114 * alloc.c (mark_object): Detect long lists for debugging.
5115 (mark_object_loop_halt): New variable.
5116
5117 * s/hpux10.h (C_SWITCH_SYSTEM): #undef it.
5118
5119 * data.c (Fmake_variable_frame_local): Doc fix.
5120
51212002-08-01 David Ponce <david@dponce.com>
5122
5123 * w32menu.c (local_heap, local_alloc, local_free): New macros.
5124 (malloc_widget_value, free_widget_value)
5125 (w32_free_submenu_strings): Use them.
5126
5127 (push_submenu_start, push_submenu_end, push_left_right_boundary)
5128 (push_menu_pane, push_menu_item, single_keymap_panes)
5129 (single_menu_item, Fx_popup_menu, menubar_selection_callback)
5130 (single_submenu, set_frame_menubar)
5131 (w32_menu_show, w32_dialog_show): Use AREF, ASET, ASIZE.
5132
5133 (Fx_popup_menu): Don't show pop up menu until preceding one is
5134 actually cleaned up. Moved UNGCPRO outside #ifdef HAVE_MENUS block.
5135
5136 * w32menu.c: Changes adapted from xmenu.c
5137 (set_frame_menubar): First parse all submenus,
5138 then make widget_value trees from them.
5139 Don't allocate any widget_value objects
5140 until we are done with the parsing.
5141 (parse_single_submenu): New function.
5142 (digest_single_submenu): New function.
5143 (single_submenu): Function deleted, replaced by those two.
5144
51452002-08-04 Andrew Choi <akochoi@shaw.ca>
5146
5147 * macterm.c (XTread_socket): Check that FrontNonFloatingWindow
5148 returns a valid window pointer before proceeding for keyDown and
5149 autoKey events.
5150
51512002-08-03 Andrew Choi <akochoi@shaw.ca>
5152
5153 * macterm.c (USE_CARBON_EVENTS): New macro.
5154 (macCtrlKey, macShiftKey, macMetaKey, macAltKey): New macros.
5155 (x_iconify_frame): Call CollapseWindow.
5156 (Vmac_reverse_ctrl_meta): New variable.
5157 (Vmac_wheel_button_is_mouse_2): New variable.
5158 (init_mac_drag_n_drop): New function.
5159 (mac_do_receive_drag): New function.
5160 (mac_handle_service_event): New function.
5161 (init_service_handler): New function.
5162 (mac_to_emacs_modifiers): New function.
5163 (mac_event_to_emacs_modifiers): New function.
5164 (mac_get_mouse_btn): New function.
5165 (mac_convert_event_ref): New function.
5166 (XTread_socket) [USE_CARBON_EVENTS]: Call ReceiveNextEvent,
5167 SendEventToEventTarget, mac_event_to_emacs_modifiers, and
5168 mac_get_mouse_btn.
5169 (mac_initialize): Call init_mac_drag_n_drop and init_service_handler.
5170
5171 * keyboard.c: Define Qmouse_wheel, mouse_wheel_syms, and
5172 lispy_mouse_wheel_names for MAC_OSX as well as for WINDOWS_NT.
5173 (kbd_buffer_get_event): Set used_mouse_menu for MENU_BAR_EVENT and
5174 TOOL_BAR_EVENT for MAC_OS as well.
5175 (make_lispy_event): Handle MOUSE_WHEEL_EVENT for MAC_OSX as well
5176 as for WINDOWS_NT.
5177 (syms_of_keyboard): Initialize Qmouse_wheel for MAC_OSX.
5178
5179 * termhooks.h (event_kind): Define MOUSE_WHEEL_EVENT also for MAC_OSX.
5180
51812002-08-03 Gerd Moellmann <gerd.moellmann@t-online.de>
5182
5183 * xdisp.c (forward_to_next_line_start): Fix a condition that
5184 lead to a newline being skipped.
5185
51862002-08-02 Andrew Choi <akochoi@shaw.ca>
5187
5188 * mac.c (syms_of_mac): Defsubr Sx_selection_exists_p.
5189
51902002-08-01 Richard M. Stallman <rms@gnu.org>
5191
5192 * Makefile.in (SOME_MACHINE_OBJECTS): Add fontset.o.
5193
51942002-07-31 Andrew Choi <akochoi@shaw.ca>
5195
5196 * macfns.c: #undef init_process before #define-ing it.
5197
5198 * s/darwin.h: Define MAC_OS, SYMS_SYSTEM, and OTHER_FILES only if
5199 HAVE_CARBON is defined.
5200
52012002-07-31 Richard M. Stallman <rms@gnu.org>
5202
5203 * xmenu.c (set_frame_menubar): First parse all submenus,
5204 then make widget_value trees from them.
5205 Don't allocate any widget_value objects
5206 until we are done with the parsing.
5207 (parse_single_submenu): New function.
5208 (digest_single_submenu): New function.
5209 (single_submenu): Function deleted, replaced by those two.
5210
52112002-07-30 Juanma Barranquero <lektu@terra.es>
5212
5213 * w32proc.c (syms_of_ntproc): Fix docstring of
5214 `w32-get-true-file-attributes'.
5215
52162002-07-28 Richard M. Stallman <rms@gnu.org>
5217
5218 * s/hpux8.h (HPUX8): Define this before including hpux.h.
5219 (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide.
5220
5221 * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8.
5222
5223 * keyboard.c (make_lispy_event):
5224 Use #ifdef to test USE_TOOLKIT_SCROLL_BARS.
5225 Explicitly clear up_modifier in event->modifiers.
5226
52272002-07-27 Richard M. Stallman <rms@gnu.org>
5228
5229 * xterm.h (FRAME_CURSOR_WIDTH): New macro.
5230
5231 * xterm.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
5232 for bar cursor.
5233
52342002-07-26 Kenichi Handa <handa@etl.go.jp>
5235
5236 * coding.c (detect_coding_iso2022): While checking a byte sequence
5237 for CODING_CATEGORY_MASK_ISO_8_2, if we read one extra byte, check
5238 it in the normal loop.
5239
52402002-07-24 Gerd Moellmann <gerd.moellmann@t-online.de>
5241
5242 * xterm.c (expose_overlaps): New function.
5243 (expose_window): Use it to fix the display of overlapping rows.
5244
5245 * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
5246
52472002-07-23 Ken Raeburn <raeburn@gnu.org>
5248
5249 * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
5250 since it only depends on XUINT.
5251
5252 * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
5253 EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
5254 PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
5255 Macros deleted.
3947677c 5256
77d1daf2
AS
5257 * mem-limits.h (start_of_data): If DATA_START is defined, prefer
5258 its value over other approaches.
5259 * sysdep.c (start_of_data): Don't define the function if a macro
5260 form has been defined.
8a8e19a3 5261
048addec
JD
52622002-07-23 Gerd Moellmann <gerd.moellmann@t-online.de>
5263
5264 * xdisp.c (redisplay_updating_p): New variable.
5265 (init_iterator): Don't free realized faces when
5266 redisplay_updating_p is set.
5267 (redisplay_internal): Set redisplay_updating_p while updating
5268 the display.
5269
52702002-07-23 Richard M. Stallman <rms@gnu.org>
5271
5272 * editfns.c (Fmessage): Treat "" like nil.
5273
52742002-07-23 Kenichi Handa <handa@etl.go.jp>
5275
5276 * xdisp.c (face_before_or_after_it_pos):
5277 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
5278
52792002-07-22 Juanma Barranquero <lektu@terra.es>
5280
5281 * callproc.c (init_callproc) [DOS_NT]:
5282 Initialize Vshared_game_score_directory to nil.
5283 (syms_of_callproc) [DOS_NT]: Likewise.
5284
52852002-07-22 Gerd Moellmann <gerd.moellmann@t-online.de>
5286
5287 * xdisp.c (display_line): Replace an abort with xassert.
5288
52892002-07-21 Richard M. Stallman <rms@gnu.org>
5290
5291 * xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
5292 and END_UNCHANGED when setting buffer_unchanged_p.
5293 Use current_matrix_up_to_date_p to decide whether to use
5294 try_cursor_movement.
5295
5296 * config.in (HAVE_SHARED_GAME_DIR): Undef deleted.
5297
5298 * epaths.in (PATH_GAME): New macro, edited by ../Makefile.in.
5299
5300 * callproc.c (init_callproc): Set up Vshared_game_score_directory.
5301 Set to nil if dir does not exist.
5302 (syms_of_callproc): Init unconditionally and simply.
5303
5304 * buffer.c (Fbuffer_list): Doc fix.
5305
53062002-07-21 Ken Raeburn <raeburn@gnu.org>
5307
5308 * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
5309
5310 * buffer.c (mmap_realloc): When shrinking, make sure number of
5311 pages to unmap is rounded towards zero.
5312
5313 * m/mips-siemens.h (XSETUINT, XSETPNTR): Unused macros deleted.
5314 (XSETINT): Deleted.
5315
5316 * m/att3b.h (XINT): Don't define.
5317 (VALBITS, VALMASK, XTYPE): Deleted.
5318 (DATA_SEG_BITS): Define.
5319 * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET,
5320 ARRAY_MARK_FLAG): Deleted.
5321 (DATA_SEG_BITS): Define.
5322 * m/pfa50.h (VALBITS, VALMASK, XTYPE): Deleted.
5323 (DATA_SEG_BITS): Define.
5324
53252002-07-20 Richard M. Stallman <rms@gnu.org>
5326
5327 * print.c (print_error_message): New args CONTEXT and CALLER.
5328 Calls changed.
5329
5330 * lisp.h (print_error_message): Declare new args.
5331
5332 * keyboard.c (cmd_error_internal): Pass Vsignaling_function
5333 and CONTEXT to print_error_message, don't print them here.
5334 For a Quit, don't use Vsignaling_function.
5335 Call message_log_maybe_newline.
5336
5337 * Makefile.in (xsmfns.o): Don't depend on lisp.h.
5338
53392002-07-20 Kim F. Storm <storm@cua.dk>
5340
5341 * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p.
5342
53432002-07-19 Ken Raeburn <raeburn@gnu.org>
5344
5345 * bytecode.c (struct byte_stack): Pointers into byte string now
5346 point to const.
5347 * callproc.c (Fcall_process): Make NEW_ARGV array hold pointer to
5348 const.
5349 * charset.h (BCOPY_SHORT): Source pointer now points to const.
5350 * coding.c (encode_eol, detect_coding, detect_eol):
5351 (decode_coding, encode_coding, detect_coding_system):
5352 Source strings now treated as const.
5353 (decode_coding_string, encode_coding_string): Use STRING_COPYIN to
5354 modify Lisp string contents.
5355 * coding.h (decode_coding, encode_coding, detect_coding,
5356 detect_eol): Declarations updated.
5357 * composite.c (compose_chars_in_text): Treat Lisp string contents
5358 as const.
5359 * dispnew.c (safe_bcopy): Source pointer now points to const.
5360 * lisp.h (STRING_COPYIN): New macro.
5361 (detect_coding_system, safe_bcopy, temp_output_buffer_setup):
5362 (internal_with_output_to_temp_buffer): Declarations updated.
5363 * print.c (temp_output_buffer_setup):
5364 (internal_with_output_to_temp_buffer): Buffer name argument is now
5365 pointer to const.
5366 * sound.c (struct sound_device): Function pointer field "write"
5367 buffer argument now points to const.
5368 (vox_write): Buffer argument points to const.
5369 * syntax.c (Fstring_to_syntax, skip_chars): Treat Lisp string
5370 contents as const.
5371 * sysdep.c (emacs_write): Buffer pointer now const.
5372 * term.c (encode_terminal_code): Buffer pointer now const.
5373 * xfaces.c (may_use_scalable_font_p): Argument now points to const.
5374 (x_face_list_fonts, x_update_menu_appearance):
5375 (hash_string_case_insensitive): Treat Lisp string contents as const.
5376
53772002-07-19 Juanma Barranquero <lektu@terra.es>
5378
5379 * fileio.c (Ffile_name_as_directory): Fix argument name in docstring.
5380 (file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
5381
5382 * xdisp.c (syms_of_xdisp): Remove redundant deprecation info.
5383
5384 * fileio.c (syms_of_fileio): Likewise.
5385
53862002-07-18 Richard M. Stallman <rms@gnu.org>
5387
5388 * data.c (Fdefalias): Doc fix.
5389
53902002-07-17 Dave Love <fx@gnu.org>
5391
5392 * intervals.h (text_property_stickiness): Use P_.
5393
5394 * ccl.c: Remove `emacs' conditionals.
5395 (ccl_backtrace_table): Fix size spec.
5396 (ccl_driver): Fix type errors.
5397
53982002-07-16 Ken Raeburn <raeburn@gnu.org>
5399
5400 * alloc.c (xstrdup, make_string, make_unibyte_string)
5401 (make_multibyte_string, build_string): String pointer args now
5402 point to const.
5403 * charset.c (find_charset_in_text, c_string_width):
5404 (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
5405 * fileio.c (report_file_error):
5406 * insdel.c (copy_text, count_size_as_multibyte, insert_1):
5407 (count_combining_before, count_combining_after, insert_1_both):
5408 (insert, insert_and_inherit, insert_string):
5409 (insert_before_markers, insert_before_markers_and_inherit):
5410 * lread.c (intern, oblookup, hash_string):
5411 * minibuf.c (temp_echo_area_glyphs):
5412 * search.c (fast_c_string_match_ignore_case):
5413 * sysdep.c (emacs_open, set_file_times):
5414 * xfaces.c (xstricmp):
5415 * xdisp.c (store_frame_title, string_char_and_length):
5416 (message_dolog, message2, message2_nolog, set_message): Likewise.
5417 (set_message_1): Cast message string argument to const pointer.
5418 * editfns.c (general_insert_function): Insertion function now
5419 takes pointer to const for input data.
5420 * charset.h (find_charset_in_text, c_string_width):
5421 (parse_str_as_multibyte): Declarations updated.
5422 * dispextern.h (xstricmp): Declaration updated.
5423 * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text):
5424 (count_size_as_multibyte, count_combining_before):
5425 (count_combining_after, insert_1, insert_1_both, message_dolog):
5426 (insert, insert_and_inherit, insert_before_markers)
5427 (insert_before_markers_and_inherit, set_message, message2):
5428 (message2_dolog, build_string, make_string, make_unibyte_string):
5429 (make_multibyte_string, intern, oblookup, report_file_error):
5430 (fast_c_string_match_ignore_case, temp_echo_area_glyphs):
5431 (emacs_open, xstrdup): Declarations updated.
5432 * systime.h (set_file_times): Declaration updated.
5433
5434 * charset.c (find_charset_in_text, lisp_string_width): Use const
5435 for pointer to lisp string data.
5436 * charset.h (FETCH_STRING_CHAR_ADVANCE):
5437 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK):
5438 * coding.c (Ffind_coding_systems_region_interval):
5439 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory):
5440 (Fmake_directory_internal, Fdelete_directory):
5441 (Ffile_name_absolute_p, Fwrite_region, double_dollars):
5442 * fontset.c (font_family_registry, fs_query_fontset):
5443 (list_fontsets):
5444 * frame.c (Fframe_parameter):
5445 * keyboard.c (cmd_error_internal):
5446 * keymap.c (Fdescribe_buffer_bindings):
5447 * lread.c (complete_filename_p, openp):
5448 * minibuf.c (Fminibuffer_complete_word):
5449 * xdisp.c (string_pos_nchars_ahead, init_from_display_pos):
5450 (face_before_or_after_it_pos, next_element_from_string):
5451 (get_overlay_arrow_glyph_row, display_mode_element):
5452 (decode_mode_spec_coding):
5453 * xterm.c (same_x_server): Likewise.
5454
5455 * buffer.c (reset_buffer_local_variables): Delete "#if 0"
5456 settings of non-existent fields.
5457
5458 * editfns.c (Fstring_to_char): Don't use XSTRING/XSETSTRING to
5459 copy a lisp value.
5460
5461 * lread.c (Fintern_soft): Use string macros instead of
5462 Lisp_String fields.
5463 * keyboard.c (echo_char, parse_modifiers_uncached):
5464 (parse_solitary_modifier, Fexecute_extended_command): Likewise.
5465 * textprop.c (validate_interval_range, interval_of): Likewise.
5466
5467 * fontset.c (Fset_fontset_font): Use SDATA instead of XSTRING()->data.
5468
5469 * charset.h (FETCH_STRING_CHAR_ADVANCE)
5470 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SBYTES instead of
5471 XSTRING()->size_byte.
5472
5473 * lisp.h (SDATA, SREF): Produce rvalue.
5474 (SSET): New macro.
5475 * alloc.c (make_event_array): Use SSET for storing into a string.
5476 * buffer.c (Fother_buffer): Use SREF when retrieving a byte from
5477 a string.
5478 * casefiddle.c (casify_object): Use SSET.
5479 * charset.h (FETCH_STRING_CHAR_ADVANCE)
5480 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA when getting
5481 address of string contents.
5482 * data.c (Faref): Use SDATA.
5483 (Faset): Use SDATA, SSET.
5484 * dired.c (directory_files_internal): Use SSET.
5485 * fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
5486 (Fread_file_name): Use SREF, SSET.
5487 * fns.c (concat): Use SSET.
5488 (concat, Fdelete): Use SDATA.
5489 * insdel.c (insert_from_string_1): Use SDATA.
5490 * keyboard.c (Fevent_convert_list): Use SREF.
5491 * lread.c (Fload): Use SDATA, SSET.
5492 * macfns.c (validate_x_resource_name): Use SSET.
5493 * process.c (status_message): Use SSET.
5494 * search.c (wordify): Use SDATA.
5495 (Freplace_match): Use SREF.
5496 * w32fns.c (validate_x_resource_name): Use SSET.
5497 * xfns.c (validate_x_resource_name): Use SSET.
5498 * xterm.c (x_catch_errors, x_clear_errors): Use SSET.
5499
55002002-07-16 Richard M. Stallman <rms@gnu.org>
5501
5502 * s/hpux11.h (USG_SUBTTY_WORKS): Defined.
5503
5504 * xdisp.c (reconsider_clip_changes):
5505 Don't test prevent_redisplay_optimizations_p.
5506 (redisplay_internal): Test prevent_redisplay_optimizations_p
5507 along with clip_changed in some cases.
5508 (try_window_id): Likewise.
5509 (redisplay_window): New local var buffer_unchanged_p.
5510
5511 * keyboard.c (cmd_error) [HAVE_X_WINDOWS]: Maybe call cancel_houglass.
5512
5513 * process.c (create_process): Test USG_SUBTTY_WORKS.
5514 (process_send_signal): Clean up handling of GID.
5515 Detect errors in ioctls meant to set GID.
5516
5517 * window.c (temp_output_buffer_show):
5518 Don't set prevent_redisplay_optimizations_p.
5519
55202002-07-15 Juanma Barranquero <lektu@terra.es>
5521
5522 * eval.c (Fdefvaralias): Add docstring argument.
5523
55242002-07-15 Ken Raeburn <raeburn@gnu.org>
5525
5526 * lisp.h (STRING_INTERVALS): Produce rvalue.
5527 (STRING_SET_INTERVALS): New macro.
5528 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.
5529 * fns.c (Fstring_as_multibyte): Likewise.
5530 * intervals.c (balance_possible_root_interval, delete_interval)
5531 (create_root_interval, copy_intervals_to_string): Likewise.
5532 * textprop.c (set_text_properties): Likewise. Use NULL_INTERVAL
5533 instead of 0.
5534
55352002-07-14 Ken Raeburn <raeburn@gnu.org>
5536
5537 * lisp.h (STRING_SET_CHARS): New macro.
5538 (SCHARS, SBYTES): Produce rvalues.
5539 * dired.c (directory_files_internal): Use STRING_SET_CHARS.
5540 * fns.c (concat): Likewise.
5541 * lread.c (read_vector): Likewise.
5542
5543 * lisp.h (SMBP): Deleted. All uses changed to STRING_MULTIBYTE.
5544 (STRING_SET_UNIBYTE): New macro.
5545 (SET_STRING_BYTES): Deleted. Callers (all of which supplied a
5546 length of -1) changed to use STRING_SET_UNIBYTE.
5547 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
5548 casefiddle.c, category.c, ccl.c, charset.c, charset.h, coding.c,
5549 composite.c, data.c, dired.c, dispnew.c, disptab.h, doc.c,
5550 dosfns.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fn.c,
5551 fontset.c, frame.c, indent.c, insdel.c, intervals.c, keyboard.c,
5552 keymap.c, lread.c, mac.c, macfns.c, macmenu.c, macterm.c,
5553 minibuf.c, msdos.c, print.c, process.c, search.c, sound.c,
5554 sunfns.c, syntax.c, syntax.h, sysdep.c, textprop.c, undo.c,
5555 w16select.c, w32.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
5556 w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c,
5557 xselect.c, xsmfns.c, xterm.c: Most uses of XSTRING combined with
5558 STRING_BYTES or indirection changed to SCHARS, SBYTES,
5559 STRING_INTERVALS, SREF, SDATA; explicit size_byte references left
5560 unchanged for now.
5561
55622002-07-13 Kim F. Storm <storm@cua.dk>
5563
5564 * keyboard.c (command_loop_1): Invert check on Vmemory_full.
5565
55662002-07-12 Richard M. Stallman <rms@gnu.org>
5567
5568 * fileio.c (Fwrite_region): Doc fix.
5569
5570 * print.c (print_error_message): Don't handle Vsignaling_function here.
5571
5572 * keyboard.c (cmd_error_internal): Handle Vsignaling_function here.
5573 (command_loop_1): Avoid certain actions after memory-full error.
5574
5575 * eval.c (Fsignal): Don't call cancel_hourglass.
5576 For a memory-full error, don't call Vsignal_hook_function
5577 and don't set Vsignaling_function.
5578
5579 * process.c (process_send_signal): Add abort call.
5580
55812002-07-11 Markus Rost <rost@math.ohio-state.edu>
5582
5583 * keymap.c (Fkey_binding): Fix typo.
5584
55852002-07-11 Richard M. Stallman <rms@gnu.org>
5586
5587 * alloc.c (Vmemory_full): New variable.
5588 (Vmemory_signal_data): Renamed from memory_signal_data.
5589 Uses changed.
5590 (syms_of_alloc): Defvar them.
5591 (memory_full, buffer_memory_full): Set Vmemory_full.
5592
5593 * lisp.h (Vmemory_full): Add declaration.
5594 (current_column, indented_beyond_p): Change declaration.
5595
5596 * indent.c (last_known_column): Declare as double, not float.
5597 (current_column, current_column_1, string_display_width)
5598 (position_indentation): Return `double'.
5599 (indented_beyond_p): Arg `column' is `double'. Callers changed.
5600
5601 * xdisp.c (message_dolog): Do nothing if Vmemory_full is non-nil.
5602 (back_to_previous_visible_line_start)
5603 (reseat_at_next_visible_line_start, next_element_from_buffer):
5604 Use `double', not `float', when calling indented_beyond_p.
5605
5606 * s/hpux11.h (BROKEN_SA_RESTART): Defined.
5607
5608 * sysdep.c (sys_signal): Test BROKEN_SA_RESTART.
5609
56102002-07-11 Juanma Barranquero <lektu@terra.es>
5611
5612 * alloc.c, buffer.c, bytecode.c, callint.c, callproc.c, coding.c,
5613 * composite.c, dired.c, dispnew.c, editfns.c, emacs.c, eval.c,
5614 * fileio.c, fns.c, insdel.c, keyboard.c, keymap.c, lread.c, macfns.c,
5615 * macmenu.c, macros.c, minibuf.c, print.c, process.c, sound.c,
5616 * textprop.c, w32fns.c, w32menu.c, window.c, xfaces.c, xfns.c,
5617 * xmenu.c, xselect.c, xterm.c: Use SPECPDL_INDEX wherever makes sense.
5618
56192002-07-10 Juanma Barranquero <lektu@terra.es>
5620
5621 * lisp.h (SPECPDL_INDEX): Rename from BINDING_STACK_SIZE. All callers
5622 changed.
5623
56242002-07-09 Stefan Monnier <monnier@cs.yale.edu>
5625
5626 * data.c (Fdefalias): Add an optional `docstring' argument.
5627 (set_internal, Fsetq_default): Use XCAR/XCDR.
5628
5629 * composite.c (HASH_VALUE, HASH_KEY):
5630 * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
5631
56322002-07-09 Kenichi Handa <handa@etl.go.jp>
5633
5634 * callproc.c (Fcall_process): Fix previous change.
5635
56362002-07-07 Stefan Monnier <monnier@cs.yale.edu>
5637
5638 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
5639 Add support for hash-tables.
5640 (Ftry_completion): Return t even if the string appears multiple times.
5641
5642 * fns.c (Fnconc): Use XCDR.
5643 (Fprovide): Use CONSP and XCDR.
5644 (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
5645 (HASH_TABLE_SIZE): Delete: moved to lisp.h.
5646 (Fmake_hash_table): Accept `:size nil'.
5647 (Fmakehash): Delete: moved to subr.el.
5648 (syms_of_fns): Don't defsubr makehash.
5649
5650 * lisp.h (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
5651 (HASH_TABLE_SIZE): Move from fns.c.
5652
56532002-07-07 Richard M. Stallman <rms@gnu.org>
5654
5655 * xdisp.c (make_cursor_line_fully_visible): Don't try short scrolls.
5656 Instead just return 0 when there is something to be done.
5657 (try_scrolling): If make_cursor_line_fully_visible returns 0,
5658 retry scrolling as if cursor were off the bottom.
5659 (try_cursor_movement): If make_cursor_line_fully_visible returns 0,
5660 return CURSOR_MOVEMENT_MUST_SCROLL.
5661 (redisplay_window): If make_cursor_line_fully_visible returns 0,
5662 go to try_to_scroll.
5663
5664 * buffer.c (Fbuffer_local_value): Store current value into its binding
5665 so we get the up-to-date value for the binding that is loaded.
5666
5667 * eval.c (Fdefmacro): Doc fix.
5668
56692002-07-05 Dave Love <fx@gnu.org>
5670
5671 * keyboard.c (read_key_sequence): Set initial_idleness_start_time
5672 correctly.
5673
5674 * ccl.c (Vtranslation_hash_table_vector, GET_HASH_TABLE)
5675 (HASH_VALUE, CCL_LookupIntConstTbl, CCL_LookupCharConstTbl): New.
5676 (ccl_driver): Add cases for CCL_LookupIntConstTbl,
5677 CCL_LookupCharConstTbl.
5678 (syms_of_ccl): Defvar translation-hash-table-vector.
5679
56802002-07-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5681
5682 * xdisp.c: Remove unused variable `face'.
5683
56842002-07-04 Juanma Barranquero <lektu@terra.es>
5685
5686 * keyboard.c (post_command_idle_hook): Remove redundant (and inexact)
5687 obsolescence information.
5688
56892002-07-03 Andrew Choi <akochoi@shaw.ca>
5690
5691 * macterm.c (x_list_fonts): Fix comment. Cache fonts matching
5692 pattern. Search cache first.
5693 (init_font_name_table): Also add entry for jisx0201.1976-0 coding
5694 for Japanese font.
5695 (XLoadQueryFont): Use it.
5696
56972002-07-02 Richard M. Stallman <rms@gnu.org>
5698
5699 * keymap.c (Fdefine_key): Doc fix.
5700
5701 * xterm.c (x_term_init): Turn off polling around XtOpenDisplay.
5702
57032002-07-02 Juanma Barranquero <lektu@terra.es>
5704
5705 * keymap.c (syms_of_keymap): Fix typo.
5706
57072002-07-01 Andrew Choi <akochoi@shaw.ca>
5708
5709 * s/darwin.h: Define POSIX_SIGNALS.
5710
5711 * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef
5712 and FSRefMakePath to convert FSSpec returned with Apple Event to
5713 Posix pathname.
5714 (mac_initialize) [TARGET_API_MAC_CARBON]:
5715 Call init_required_apple_events and disable the `Quit' menu item
5716 provided automatically by the Carbon Toolbox.
5717
57182002-07-01 Dave Love <fx@gnu.org>
5719
5720 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
5721 for K&R.
5722
5723 * xterm.c: Fix prototype for K&R.
5724
5725 * term.c (costs_set): Declare static, non-initialized for pcc.
5726
57272002-07-01 Richard M. Stallman <rms@gnu.org>
5728
5729 * keyboard.c (timer_last_idleness_start_time): New variable.
5730 (timer_start_idle): Set that.
5731 (read_key_sequence): Use that to reset timer_idleness_start_time
5732 to previous value.
5733
5734 * window.c (Frecenter): With arg, set optional_new_start.
5735
5736 * xdisp.c (redisplay_internal): Make optional_new_start really work.
5737
5738 * minibuf.c (Fminibuffer_complete_and_exit): Move to end of
5739 buffer for completion.
5740
57412002-06-29 Ken Raeburn <raeburn@gnu.org>
5742
5743 * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
5744
57452002-06-28 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
5746
5747 * keyboard.c (readable_filtered_events): New function that filters
5748 FOCUS_IN_EVENT depending on parameter.
5749 (readable_events): Calls readable_filtered_events, not filtering
5750 FOCUS_IN_EVENT.
5751 (get_filtered_input_pending): New function, filtering parameter passed
5752 to readable_filtered_events.
5753 (get_input_pending): Calls get_filtered_input_pending, not filtering
5754 FOCUS_IN_EVENT.
5755 (Finput_pending_p): Calls get_filtered_input_pending, DO filter
5756 FOCUS_IN_EVENT.
5757
5758 * xterm.h (struct x_output): Add focus_state.
5759
5760 * xterm.c (x_focus_changed): New function.
5761 (x_detect_focus_change): New function.
5762 (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
5763 EnterNotify and LeaveNotify to track X focus changes.
5764
57652002-06-28 Andreas Schwab <schwab@suse.de>
5766
5767 * lisp.h: Remove duplicate declaration of code_convert_string_norecord.
5768
57692002-06-27 Kim F. Storm <storm@cua.dk>
5770
5771 * xdisp.c: (mode_line_string_list, mode_line_string_face)
5772 (mode_line_string_face_prop): New variables.
5773 (store_mode_line_string): New function.
5774 (display_mode_element): Use store_mode_line_string to
5775 add mode-line string elements to mode_line_string_list
5776 when mode_line_string_list is non-nil.
5777 (Fformat_mode_line): Now returns propertized string by
5778 default. New arg NO-PROPS to ignore properties.
5779 (decode_mode_spec): Only add two dashes for %- in propertized
5780 mode-line string.
5781 (syms_of_xdisp): Init and staticpro mode_line_string_list.
5782
57832002-06-27 Stefan Monnier <monnier@cs.yale.edu>
5784
5785 * minibuf.c (minibuffer_completion_contents): Add return type.
5786
57872002-06-27 Juanma Barranquero <lektu@terra.es>
5788
5789 * charset.c (Fchar_bytes): Remove obsolescence info from docstring.
5790
57912002-06-26 Juanma Barranquero <lektu@terra.es>
5792
5793 * fileio.c (read_file_name_cleanup): Add missing return.
5794
57952002-06-26 Richard M. Stallman <rms@gnu.org>
5796
5797 * window.c (Frecenter): Don't set force_start flag.
5798
5799 * minibuf.c (do_completion, Fminibuffer_complete_word)
5800 (Fminibuffer_completion_help): Complete just the text before point.
5801 (minibuffer_completion_contents): New function.
5802
5803 * buffer.c (Fbury_buffer): Use frames_discard_buffer.
5804
5805 * frame.c (frames_bury_buffer): Function deleted.
5806
58072002-06-25 Miles Bader <miles@gnu.org>
5808
5809 * callint.c (Fcall_interactively): When checking to see if doprnt hit
5810 the end of callint_message, allow for a terminating '\0'.
5811
58122002-06-24 Juanma Barranquero <lektu@terra.es>
5813
5814 * w32select.c: Include composite.h
5815
5816 * w16select.c: Likewise.
5817
58182002-06-24 Kenichi Handa <handa@etl.go.jp>
5819
5820 * callproc.c (Fcall_process): If code detection is necessary,
5821 call detect_coding directly here.
5822
5823 * coding.c (detect_eol): Preserve coding->cmp_data.
5824
5825 * w16select.c (Fw16_get_clipboard_data):
5826 * w32fns.c (w32_to_x_font):
5827 * w32select.c (Fw32_get_clipboard_data):
5828 * xselect.c (selection_data_to_lisp_data):
5829 * xterm.c (XTread_socket): Disable composition handling.
5830
58312002-06-24 Stefan Monnier <monnier@cs.yale.edu>
5832
5833 * print.c (temp_output_buffer_setup): Kill all local variables.
5834
58352002-06-22 Stefan Monnier <monnier@cs.yale.edu>
5836
5837 * lread.c (Fread): Remove redundant and imprecise declaration.
5838
5839 * xfns.c (check_x_display_info): Use check_x_frame.
5840
5841 * .gdbinit (xprintsym): Use the new `xname' field.
5842 (xsymbol): Use it.
5843
58442002-06-22 Jason Rumney <jasonr@gnu.org>
5845
5846 * w32fns.c (file_dialog_callback): New function.
5847 (Fx_file_dialog): Allow selecting directories as well as files.
5848
58492002-06-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5850
5851 * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
5852 OpenBSD. Add support for mipseb-*-netbsd* machines.
5853
58542002-06-17 Andrew Choi <akochoi@shaw.ca>
5855
5856 * macterm.c (mac_scroll_area): Set foreground and backcolor to
5857 black and white before scrolling. Restore frame background and
5858 foreground color after scrolling.
5859 (do_window_update): Call XClearWindow before calling expose_frame.
5860 (make_mac_frame): Don't set FRAME_BACKGROUND_PIXEL and
5861 FRAME_FOREGROUND_PIXEL of frame.
5862
5863 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
5864 test Mac command key as <ALT> key.
5865
58662002-06-17 Stefan Monnier <monnier@cs.yale.edu>
5867
5868 * window.c (Fset_window_configuration): Lisp_Object/int mixup.
5869
5870 * keyboard.c (read_key_sequence): Be more careful with first_unbound.
5871 Lookup keys in function-key-map immediately so that key-translation-map
5872 can be applied earlier.
5873 Remove function_key_possible and key_translation_possible, replaced
5874 by checking `keytran_start < t'.
5875
5876 * .gdbinit (xsymbol): Use the new `xname' field.
5877
58782002-06-17 Andrew Choi <akochoi@shaw.ca>
5879
5880 * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
5881 test Mac command key as <ALT> key.
5882
5883 * mac.c (do_applescript): Call initialize_applescript if necessary
5884 when first called. Dispose of result_desc only when there is no error.
5885 (Fdo_applescript): Use %d format specifier instead of %ld.
5886
58872002-06-16 Andrew Choi <akochoi@shaw.ca>
5888
5889 * macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
5890 of FrontWindow for cases keyDown and autoKey.
5891
5892 * fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
5893 Vdefault_fontset to Monaco with mac-roman coding.
5894
5895 * mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
5896 init_process before and after inclusion of Carbon/Carbon.h, resp.
5897
5898 * macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
5899 cursor_gc.
5900 (add_font_name_table_entry): New function.
5901 (init_font_name_table): Use add_font_name_table_entry; add italic,
5902 bold, and bold-italic entries for truetype fonts.
5903
5904 * xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
5905 for Mac too.
5906 (try_font_list) [MAC_OS]: If no font matches given registry, try
5907 fonts with any registry matching face_family.
5908 (realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font here.
5909
5910 * s/darwin.h: If autoconf detects the Ncurses library, define
5911 LIBS_TERMCAP to -lncurses to use it.
5912
59132002-06-16 Eli Zaretskii <eliz@is.elta.co.il>
5914
5915 * strftime.c [__hpux]: Include sys/_mbstate_t.h.
5916
59172002-06-15 Richard M. Stallman <rms@gnu.org>
5918
5919 * window.c (Fset_window_configuration): Explicitly preserve
5920 the point value that new_current_buffer had at the start.
5921
59222002-06-14 Juanma Barranquero <lektu@terra.es>
5923
5924 * composite.c (Fcompose_region_internal, Fcompose_string_internal):
5925 Fix typos.
5926
59272002-06-14 Kim F. Storm <storm@cua.dk>
5928
5929 * insdel.c (insert_1_both, insert_from_string_1)
5930 (insert_from_buffer_1): Recalculate END_UNCHANGED in case the
5931 insert happened in the end_unchanged region. Otherwise, the
5932 redisplay may be confused and duplicate the last line in the
5933 buffer [seen after save-buffer when require-final-newline==t].
5934
59352002-06-13 Jason Rumney <jasonr@gnu.org>
5936
5937 * w32.c (init_environment): Remove EMACSLOCKDIR.
5938 (stat): Swap _S_IFDIR and _S_IFREG.
5939
59402002-06-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5941
5942 * keyboard.c, macterm.c, macmenu.c, msdos.c, sysdep.c
5943 * termhooks.h, xmenu.c, xsmfns.c, xterm.h, xterm.c, w32term.c,
5944 * w32menu.c, w32inevt.c: Rename enum event_kind as follows:
5945 ascii_keystroke to ASCII_KEYSTROKE_EVENT, multibyte_char_keystroke
5946 to MULTIBYTE_CHAR_KEYSTROKE_EVENT, non_ascii_keystroke to
5947 NON_ASCII_KEYSTROKE_EVENT, timer_event to TIMER_EVENT, mouse_click
5948 to MOUSE_CLICK_EVENT, mouse_wheel to MOUSE_WHEEL_EVENT,
5949 language_change_event to LANGUAGE_CHANGE_EVENT, scroll_bar_click
5950 to SCROLL_BAR_CLICK_EVENT, w32_scroll_bar_click to
5951 W32_SCROLL_BAR_CLICK_EVENT, selection_request_event to
5952 SELECTION_REQUEST_EVENT, selection_clear_event to
5953 SELECTION_CLEAR_EVENT, buffer_switch_event to BUFFER_SWITCH_EVENT,
5954 delete_window_event to DELETE_WINDOW_EVENT, iconify_event to
5955 ICONIFY_EVENT, deiconify_event to DEICONIFY_EVENT,
5956 menu_bar_activate_event to MENU_BAR_ACTIVATE_EVENT, drag_n_drop to
5957 DRAG_N_DROP_EVENT, save_session_event to SAVE_SESSION_EVENT and
5958 no_event to NO_EVENT.
5959
59602002-06-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
5961
5962 * macmenu.c: Remove declaration of Qmouse_click and Qevent_kind.
5963
59642002-06-12 Stefan Monnier <monnier@cs.yale.edu>
5965
5966 * intervals.c (textget): Don't forget to `return'.
5967 (lookup_char_property): Use XCAR/XCDR.
5968
59692002-06-12 Juanma Barranquero <lektu@terra.es>
5970
5971 * xdisp.c (Fformat_mode_line): Fix typo.
5972
59732002-06-12 Kim F. Storm <storm@cua.dk>
5974
5975 * xdisp.c (Fformat_mode_line): New function.
5976 (frame_title_buf, frame_title_buf_end, frame_title_ptr)
5977 (store_frame_title_char, store_frame_title): Use unconditionally.
5978 (init_xdisp): Defsubr Fformat_mode_line.
5979 Initialize frame_title_buf etc. unconditionally.
5980
59812002-06-11 Stefan Monnier <monnier@cs.yale.edu>
5982
5983 * keyboard.c (read_key_sequence):
5984 Remove prev_(fkey|keytran}_(map|start|end) since we don't want to pass
5985 things through those maps after downcasing events.
5986 Enforce that keytran_end <= fkey_start, i.e. that key-translation-map
5987 applies after function-key-map.
5988 Make sure that keytran can be done in the middle in the sequence.
5989 Be careful not to throw away events past the one we downcase.
5990
5991 * lread.c (read_integer): Remove unused var `tem'.
5992 (read1): Fix int/Lisp_Object mixup.
5993
5994 * xfaces.c (tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
5995
59962002-06-11 Richard M. Stallman <rms@gnu.org>
5997
5998 * keyboard.c (readable_events): Ignore any number of
5999 FOCUS_IN_EVENT events and return 0 if nothing else in buffer.
6000
60012002-06-09 Miles Bader <miles@gnu.org>
6002
6003 * xfaces.c (Ftty_supports_face_attributes_p): New function.
6004 (parse_rgb_list, tty_lookup_color): New functions.
6005 (tty_defined_color): Use `tty_lookup_color' to do all the work.
6006 (color_distance, Fcolor_distance): New functions.
6007 (TTY_SAME_COLOR_THRESHOLD): New macro.
6008 (Qtty_color_standard_values): New variable.
6009 (syms_of_xfaces): Initialize new vars & functions.
6010
60112002-06-08 Colin Walters <walters@verbum.org>
6012
6013 * textprop.c (Vchar_property_alias_alist): New variable.
6014 (syms_of_textprop) <Vchar_property_alias_alist>: DEFVAR_LISP.
6015
6016 * intervals.c (lookup_char_property): New function for looking up
6017 overlay and text properties, created from textget.
6018 (textget): Use it.
6019
6020 * intervals.h (lookup_char_property): Declare.
6021 (Vchar_property_alias_alist): Declare.
6022
6023 * buffer.c (Foverlay_get): Use lookup_char_property.
6024
60252002-06-07 Sam Steingold <sds@gnu.org>
6026
6027 * xselect.c (lisp_data_to_selection_data): Fix last change:
6028 *data_ret is not a Lisp string, while unibyte_string is.
6029
60302002-06-07 Eli Zaretskii <eliz@is.elta.co.il>
6031
6032 * xselect.c (lisp_data_to_selection_data): Fix last change:
6033 set size_ret.
6034
60352002-06-07 Andreas Schwab <schwab@suse.de>
6036
6037 * m/amdx86-64.h: New file.
6038
60392002-06-05 Eli Zaretskii <eliz@is.elta.co.il>
6040
6041 * fns.c (Fstring_make_unibyte): Doc fix.
6042
6043 * xselect.c (lisp_data_to_selection_data): If the requested type
6044 is STRING, call string_make_unibyte to encode the selected text
6045 as a string.
6046
6047 * window.c (Fset_window_hscroll): Doc fix.
6048
60492002-06-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6050
6051 * fileio.c (choose_write_coding_system):
6052 Call select-safe-coding-system properly.
6053
60542002-06-03 Richard M. Stallman <rms@gnu.org>
6055
6056 * xdisp.c (message_with_string): Error if STRING is not a string.
6057
6058 * fns.c (md5): Pass FILE arg to Vselect_safe_coding_system_function.
6059
6060 * fileio.c (choose_write_coding_system): Pass FILE arg to
6061 Vselect_safe_coding_system_function.
6062
60632002-06-03 Ken Raeburn <raeburn@gnu.org>
6064
6065 * buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
6066
60672002-06-02 Thien-Thi Nguyen <ttn@gnu.org>
6068
6069 * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
6070 * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
6071 * keymap.c (describe_command): Likewise.
6072 * minibuf.c (read_minibuf): Likewise.
6073
6074 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
6075 Cast `current_column' return value to int.
6076 (back_to_previous_visible_line_start)
6077 (reseat_at_next_visible_line_start, next_element_from_buffer):
6078 Cast `indented_beyond_p' 3rd arg to float.
6079
6080 * indent.c (last_known_column): Now a float.
6081 (current_column_1, position_indentation, current_column)
6082 (string_display_width): Return float.
6083 (Fcurrent_column): Cast `current_column' return value to int.
6084 (Fcurrent_indentation): Cast `position_indentation' retval to int.
6085 (indented_beyond_p): Third arg now a float.
6086 (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
6087
6088 * lisp.h (current_column): Now returns float.
6089 (indented_beyond_p): 3rd arg now a float.
6090
60912002-05-31 Eli Zaretskii <eliz@is.elta.co.il>
6092
6093 * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
6094 is Qcompound_text_with_extensions.
6095
6096 * xselect.c (lisp_data_to_selection_data): Always set selection
6097 type as string if x_encode_text returns streingp non-NULL.
6098
6099 * s/netbsd.h: Include /usr/pkg in the run time shared library path.
6100
61012002-05-30 Richard M. Stallman <rms@gnu.org>
6102
6103 * window.c (Fset_window_configuration): Correct the handling
6104 of point in current buffer, to work with multiple windows.
6105
61062002-05-29 Colin Walters <walters@verbum.org>
6107
6108 * lread.c (Fread_from_string): Don't depend on order of evaluation
6109 for C function parameters.
6110
61112002-05-28 Richard M. Stallman <rms@gnu.org>
6112
6113 * xterm.c (x_display_and_set_cursor): Change the cursor in the same
6114 way for blinked-off state and for a nonselected window.
6115
6116 * window.c (window_scroll_pixel_based): Don't call Fbolp;
6117 instead, see if the new start pos is at beginning of line.
6118
6119 * fileio.c (Fwrite_region): If START is a string, don't
6120 make any annotations.
6121
6122 * eval.c (syms_of_eval): Doc fix.
6123
61242002-05-28 Colin Walters <walters@debian.org>
6125
6126 * emacs.c (USAGE1): Add --no-splash.
6127 (standard_args): Ditto.
6128
61292002-05-28 Colin Walters <walters@gnu.org>
6130
6131 * lread.c (readchar_count): New variable.
6132 (readchar): Increment it.
6133 (unreadchar): Decrement it.
6134 (read_multibyte): Decrement it.
6135 (Vread_with_symbol_positions): New variable.
6136 (Vread_symbol_positions_list): New variable.
6137 (read_internal_start): New function, created from Fread and
6138 Fread_from_string. Handle Vread_symbol_positions_list and
6139 Vread_with_symbol_positions.
6140 (readevalloop, Fread, Fread_from_string): Use it.
6141 (read1): Use readchar_count to add symbol positions to
6142 Vread_symbol_positions_list if Vread_with_symbol_positions is non-nil.
6143 (syms_of_lread): DEFVAR_LISP and initialize them.
6144
6145 * lread.c (read0, read1, read_list, read_vector, read_multibyte)
6146 (substitute_object_recurse, substitute_object_in_subtree)
6147 (substitute_in_interval): Prototype.
6148 (read_multibyte): Return c if it's less than zero.
6149
61502002-05-28 Kim F. Storm <storm@cua.dk>
6151
6152 * fileio.c (Fread_file_name_internal): Added brute-force
6153 speed up for using predicate file-directory-p.
6154
61552002-05-28 Kim F. Storm <storm@cua.dk>
6156
6157 * fileio.c (Vread_file_name_function, Vread_file_name_predicate):
6158 New variables.
6159 (syms_of_fileio): DEFVAR_LISP them.
6160 (read_file_name_cleanup): New unwind function.
6161 (Fread_file_name_internal): Only return completions satifying
6162 Vread_file_name_predicate. Temporarily unwind protect and rebind
6163 default-directory while checking completions against the predicate.
6164 (Fread_file_name): Added PREDICATE argument. Specbind it to
6165 Vread_file_name_predicate during completion.
6166 Call Vread_file_name_function to read the file name if non-nil.
6167
6168 * lisp.h (Fread_file_name): Now has 6 args.
6169
6170 * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
6171 predicate for Fread_file_name when reading directory name.
6172 Supply Qnil for predicate in other calls to Fread_file_name.
6173
61742002-05-26 Miles Bader <miles@gnu.org>
6175
6176 * term.c (tty_capable_p): New function.
6177 * dispextern.h (tty_capable_p): New function declaration.
6178 (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM)
6179 (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros.
6180
61812002-05-23 Stefan Monnier <monnier@cs.yale.edu>
6182
6183 * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
6184 (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
6185 (Vwrite_region_annotate_functions): Docstring fix.
6186
61872002-05-23 Kim F. Storm <storm@cua.dk>
6188
6189 * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
6190 phys_cursor's hpos is overwritten. This is still not completely
6191 correct, as it doesn't really make sense to use hpos at all to
6192 get the cursor glyph (as that is relative to the width of the
6193 characters on the line, which may have changed during the update).
6194
61952002-05-22 Jason Rumney <jasonr@gnu.org>
6196
6197 * w32fns.c (enumfont_t): Remove tail, make pattern a normal
6198 Lisp_Object.
6199 (enum_font_cb2, enum_font_maybe_add_to_list, w32_list_fonts):
6200 Use modified enumfont_t struct.
6201
6202 * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
6203
6204 * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
6205 Handle the `hbar' cursor type.
6206 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
6207
6208 * w32fns.c (Qhbar): New variable.
6209 (x_specified_cursor_type): Use it.
6210
62112002-05-21 Ken Raeburn <raeburn@gnu.org>
6212
6213 * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
6214 now, when the address is needed.
6215
62162002-05-21 Colin Walters <walters@gnu.org>
6217
6218 * Makefile.in (shortlisp): Add font-core.el.
6219
62202002-05-20 Richard M. Stallman <rms@gnu.org>
6221
6222 * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
6223
6224 * keyboard.c (read_char_minibuf_menu_prompt): Don't list
6225 equivalent key bindings here.
6226
62272002-05-20 Ken Raeburn <raeburn@gnu.org>
6228
6229 Change symbol structure to contain a lisp object for the symbol
6230 name:
6231 * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
6232 object field named "xname".
6233 (SYMBOL_NAME): New macro.
6234 * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
6235 name field.
6236 * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
6237 (mark_object, gc_sweep): Use symbol xname field and XSTRING
6238 instead of name field.
6239 * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
6240 SYMBOL_NAME instead of XSYMBOL and name field.
6241 * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
6242 instead of XSYMBOL and name field.
6243 * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
6244 and SYMBOL_NAME instead of XSYMBOL and name field.
6245 * coding.c (Fread_coding_system, code_convert_region1)
6246 (code_convert_string1, code_convert_string_norecord)
6247 (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
6248 XSYMBOL and name field.
6249 * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
6250 (Fmake_variable_buffer_local, Fmake_local_variable)
6251 (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
6252 of XSYMBOL and name field.
6253 * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
6254 XSYMBOL and name field.
6255 * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
6256 instead of XSYMBOL and name field.
6257 * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
6258 XSYMBOL and name field.
6259 * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
6260 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
6261 * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
6262 instead of XSYMBOL and name field.
6263 * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
6264 (parse_modifiers, apply_modifiers, Fevent_convert_list)
6265 (parse_solitary_modifier, Fexecute_extended_command):
6266 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
6267 * keymap.c (silly_event_symbol_error, Fsingle_key_description)
6268 (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
6269 of XSYMBOL and name field.
6270 (describe_command, describe_translation): Use SYMBOL_NAME and
6271 assignment instead of XSYMBOL and name field and XSETSTRING.
6272 * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
6273 instead of XSYMBOL and name field.
6274 (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
6275 name field and XSETSTRING.
6276 * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
6277 of XSYMBOL and name field.
6278 * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
6279 assignment instead of XSYMBOL and name field and XSETSTRING.
6280 * print.c (print_error_message, print_object): Use SYMBOL_NAME and
6281 XSTRING instead of XSYMBOL and name field.
6282 * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
6283 and XSTRING instead of XSYMBOL and name field.
6284 * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
6285 and XSTRING instead of XSYMBOL and name field.
6286 * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
6287 XSTRING instead of XSYMBOL and name field.
6288 * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
6289 of XSYMBOL and name field.
6290 * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
6291 Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
6292
62932002-05-19 Ken Raeburn <raeburn@gnu.org>
6294
6295 * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
6296 and XCDR real rvalues in most configurations.
6297
6298 * buffer.c (fix_overlays_in_range, fix_overlays_before):
6299 Don't take the address of the cdr part of a cons cell; instead, track
6300 the parent cell and call XSETCDR, or set the variable for the head
6301 of the list if we haven't started down the list yet.
6302
63032002-05-19 Richard M. Stallman <rms@gnu.org>
6304
6305 * doc.c (reread_doc_file): Don't ask for confirmation.
6306
63072002-05-18 Jason Rumney <jasonr@gnu.org>
6308
6309 * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
6310 (xbm_load_image): Use it.
6311 (xbm_load): Ditto.
6312 (xbm_read_bitmap_data): Reverted to xfns.c version.
6313 From David Ponce <david@dponce.com>.
6314
63152002-05-17 Eli Zaretskii <eliz@is.elta.co.il>
6316
6317 * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
6318 2.02 and later.
6319
63202002-05-16 Juanma Barranquero <lektu@terra.es>
6321
6322 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
6323
63242002-05-15 Stefan Monnier <monnier@cs.yale.edu>
6325
6326 * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
6327 meaningful test.
6328 (read_char_minibuf_menu_prompt): Fix typo.
6329
63302002-05-15 Eli Zaretskii <eliz@is.elta.co.il>
6331
6332 * eval.c (Fcommandp): Doc fix.
6333
63342002-05-13 Stefan Monnier <monnier@cs.yale.edu>
6335
6336 * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
6337 (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
6338 (Fset_keymap_parent): Gcpro a bit more.
6339 (access_keymap): Gcpro around meta_map call and around the main loop.
6340 (get_keyelt): Gcpro when following indirect references.
6341 (copy_keymap_item): New fun, extracted from Fcopy_keymap.
6342 (copy_keymap_1, Fcopy_keymap): Use it. Don't copy the parent map.
6343 (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
6344 Remove useless ad-hoc remap code.
6345
63462002-05-13 Richard M. Stallman <rms@gnu.org>
6347
6348 * search.c (search_buffer): Give up boyer moore search if inverse
6349 translation change charset_base.
6350
63512002-05-12 Eli Zaretskii <eliz@is.elta.co.il>
6352
6353 * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
6354 characters is carried over from the previous block of text, adjust
6355 coding->produced to account for the extra character.
6356
63572002-05-11 Andreas Schwab <schwab@suse.de>
6358
6359 * coding.c (intersection): Keep the elements of the returned list
6360 in the same order as in the first list.
6361
63622002-05-11 Kim F. Storm <storm@cua.dk>
6363
6364 * keymap.c (current_minor_maps): Fixed resizing of cmm_maps;
6365 only update cmm_size if realloc actually succeeds.
6366 Testing with initial size of 2 elements revealed that using
6367 realloc on GNU/Linux would cause a random trap in xmalloc
6368 later on, so I rewrote the code to use malloc/bcopy/free instead
6369 of realloc.
6370
63712002-05-10 Jason Rumney <jasonr@gnu.org>
6372
6373 * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
6374
63752002-05-10 Eli Zaretskii <eliz@is.elta.co.il>
6376
6377 * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
6378 parens, to ensure correct evaluation order.
6379
63802002-05-10 Kim F. Storm <storm@cua.dk>
6381
6382 * keymap.c (Vemulation_mode_map_alists): New variable.
6383 (syms_of_keymap): DEFVAR_LISP it.
6384 (current_minor_maps): Process keymap alists in that list before
6385 minor-mode-overriding-map-alist and minor-mode-map-alist.
6386
63872002-05-09 Richard M. Stallman <rms@gnu.org>
6388
6389 * search.c (Freplace_match): Doc fix.
6390
63912002-05-09 Kim F. Storm <storm@cua.dk>
6392
6393 * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
6394 Enlarge cursor rectangle drawn around image with non-zero relief.
6395
6396 * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
6397 Enlarge cursor rectangle drawn around image with non-zero relief.
6398
6399 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
6400 Enlarge cursor rectangle drawn around image with non-zero relief.
6401
64022002-05-07 Eli Zaretskii <eliz@is.elta.co.il>
6403
6404 * xselect.c (lisp_data_to_selection_data): Don't set selection
6405 type if comes from the Lisp object's car. If the selection
6406 contains a pure ASCII text, always return QSTRING as its type.
6407
64082002-05-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6409
6410 * mac.c (mac-cut-function): Doc fix.
6411
64122002-05-05 Richard M. Stallman <rms@gnu.org>
6413
6414 * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
6415
64162002-05-04 Jason Rumney <jasonr@gnu.org>
6417
6418 * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
6419 for event-click-count.
6420
6421 * process.c (init_process): Only add server subfeature if we can
6422 use non-blocking I/O.
6423
64242002-05-04 Andrew Choi <akochoi@shaw.ca>
6425
6426 * macterm.c (XTread_socket): Call WaitNextEvent once instead of
6427 repeatedly.
6428
64292002-05-03 Jason Rumney <jasonr@gnu.org>
6430
6431 * process.c (Fmake_network_process): Only support server sockets
6432 when we can make them non-blocking.
6433
6434 * s/ms-w32.h (HAVE_SELECT): Define.
6435
6436 * w32.h (FILE_NDELAY): New flag.
6437
6438 * w32.c (sys_getpeername, fcntl): New functions.
6439 (_sys_read_ahead): Temporarily block on non-blocking sockets.
6440
6441 * w32proc.c: include sys/file.h.
6442
64432002-05-03 Colin Walters <walters@verbum.org>
6444
6445 * callproc.c (Vgame_score_directory): Renamed to
6446 Vshared_game_score_directory.
6447
64482002-04-30 Richard M. Stallman <rms@gnu.org>
6449
6450 * s/gnu.h [emacs]: Include stdio.h.
6451 (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
6452
6453 * eval.c (do_autoload): Error if called while preparing to dump.
6454
6455 * fns.c (Frequire): Error if need to load while preparing to dump.
6456
64572002-04-28 Colin Walters <walters@verbum.org>
6458
6459 * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
6460 Default to "~/.emacs.d/games".
6461
64622002-04-29 Stefan Monnier <monnier@cs.yale.edu>
6463
6464 * lread.c (openp): Change arg exec_only to predicate.
6465 (build_load_history): Use XCAR/XCDR.
6466 (Flocate_file_internal): New fun.
6467 (syms_of_lread): Defsubr it.
6468 (Fload): Update call to openp.
6469
6470 * lisp.h (openp): Update prototype.
6471
6472 * xfns.c (x_create_bitmap_from_file, x_find_image_file):
6473 * w32proc.c (sys_spawnve):
6474 * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
6475 * w32.c (check_windows_init_file):
6476 * sound.c (Fplay_sound_internal):
6477 * process.c (Fstart_process):
6478 * macfns.c (x_create_bitmap_from_file, x_find_image_file):
6479 * mac.c (run_mac_command):
6480 * emacs.c (init_cmdargs):
6481 * callproc.c (Fcall_process): Update call to openp.
6482
6483 * textprop.c (remove_properties): Don't use XCAR without CONSP.
6484
6485 * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
6486
64872002-04-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6488
6489 * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
6490 (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
6491
64922002-04-28 Richard M. Stallman <rms@gnu.org>
6493
6494 * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
6495
6496 * eval.c (Fcommandp): New arg for_call_interactively.
6497 * lisp.h (Fcommandp): Declare new arg.
6498
64992002-04-28 Jason Rumney <jasonr@gnu.org>
6500
6501 * w32proc.c (syms_of_w32proc): Get true file attributes by default.
6502
6503 * w32.c (stat, fstat): Use file index information to generate
6504 inodes for directories where available.
6505
65062002-04-26 Andrew Choi <akochoi@shaw.ca>
6507
6508 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
6509 [HAVE_CARBON]: Include Mac object files.
6510
6511 * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
6512 fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
6513 termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
6514 MAC_OSX, and MAC_OS instead of macintosh.
6515
6516 * editfns.c [MAC_OS8]: Include stdio.h.
6517
6518 * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
6519
6520 * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
6521 Apple Monaco.
6522
6523 * process.c: Declare QCfamily and QCfilter as extern.
6524 (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
6525 calling select.
6526
6527 * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
6528
6529 * tparam.c [MAC_OSX]: Don't define BC and UP.
6530
6531 * config.in [HAVE_CARBON]: Add.
6532
6533 * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
6534 Move here from mac/src and mac/inc.
6535
6536 * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
6537
65382002-04-26 Gerd Moellmann <gerd@gnu.org>
6539
6540 * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
6541 Compute phys_cursor_width from the x position returned
6542 by x_draw_glyhs, which is cheaper.
6543 (x_display_and_set_cursor): Compute the buffer-local value
6544 of `cursor-in-non-selected-windows' only when needed.
6545
65462002-04-25 Gerd Moellmann <gerd@gnu.org>
6547
6548 * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
6549 cursor on a stretch glyph has a width that depends on
6550 x_stretch_cursor_p.
6551
65522002-04-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6553
6554 * abbrev.c (abbrev-start-location): Doc fix.
6555
6556 * indent.c (Fvertical_motion): Fix last change.
6557
65582002-04-25 Gerd Moellmann <gerd@gnu.org>
6559
6560 * indent.c (Fvertical_motion): Move to the start of the line
6561 containing PT before moving up or down.
6562
65632002-04-24 Gerd Moellmann <gerd@gnu.org>
6564
6565 * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
6566 case of writing a whole row, more or less analogous to the case of
6567 writing only parts of a row.
6568
6569 * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
6570 0 for NO_CURSOR.
6571
6572 * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
6573
65742002-04-23 Colin Walters <walters@verbum.org>
6575
6576 * buffer.c (syms_of_buffer): Doc fix.
6577
65782002-04-23 Gerd Moellmann <gerd@gnu.org>
6579
6580 * xterm.c (notice_overwritten_cursor): Handle the special case
6581 of the cursor being in the first blank non-text line at the
6582 end of a window.
6583
6584 * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
6585 (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
6586 (x_display_and_set_cursor): Don't set phys_cursor_width here, for
6587 bar cursors only, to make phys_cursor_width contain what its name
6588 suggests.
6589 (notice_overwritten_cursor): Consider the cursor image erased if
6590 the output area intersects the cursor image in y-direction.
6591
65922002-04-23 Simon Marshall <simon@gnu.org>
6593
6594 * xfns.c (x_set_mouse_color): Change default for cross_cursor
6595 to XC_hand2.
6596
65972002-04-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6598
6599 * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
6600
66012002-04-22 Kim F. Storm <storm@cua.dk>
6602
6603 * textprop.c (remove_properties): Fixed trap for malformed plist.
6604
66052002-04-22 Richard M. Stallman <rms@gnu.org>
6606
6607 * cmds.c (Fend_of_line): Handle intangible text in mid line.
6608
6609 * window.c (make_window): Initialize height_fixed_p,
6610 last_cursor_off_p, and p->cursor_off_p slots.
6611
66122002-04-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6613
6614 * fns.c (use-dialog-box): Doc fix.
6615
66162002-04-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6617
6618 * xterm.c (note_mode_line_or_margin_highlight): Remove unused
6619 variables `row', `i' and `area'.
6620 (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
6621 toolkit library.
6622
66232002-04-19 Stefan Monnier <monnier@cs.yale.edu>
6624
6625 * xfaces.c (clear_font_table): Don't free the default font of
6626 a frame even if it's on another display.
6627 (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
6628 that could be Qt.
6629
66302002-04-19 Juanma Barranquero <lektu@terra.es>
6631
6632 * indent.c (Fmove_to_column): Remove unused local variable
6633 `next_boundary_byte'.
6634 (current_column_1): Likewise.
6635
66362002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
6637
6638 * msdos.c (Qhbar): New variable.
6639 (syms_of_msdos): Intern and staticpro it.
6640 (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
6641 cursor type.
6642
66432002-04-19 Dave Lambert <dlambert@acm.org>
6644
6645 Theses change implement an underscore-like (`hbar') cursor.
6646
6647 * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
6648
6649 * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
6650 Handle the `hbar' cursor type.
6651 (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
6652
6653 * xfns.c (Qhbar): New variable.
6654 (syms_of_xfns): Intern and staticpro it.
6655 (x_specified_cursor_type): Handle `hbar' cursor.
6656
6657 * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
6658 not defined.
6659
66602002-04-18 Richard M. Stallman <rms@gnu.org>
6661
6662 * textprop.c (remove_properties): New arg LIST allows scanning
6663 either a list or a plist.
6664 (interval_has_some_properties_list): New function, like
6665 interval_has_some_properties using list instead of plist.
6666 All callers changed.
6667 (Fremove_list_of_text_properties): New function.
6668 (syms_of_textprop): Defsubr it.
6669
66702002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
6671
6672 * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
6673
66742002-04-17 Juanma Barranquero <lektu@terra.es>
6675
6676 * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
6677
66782002-04-17 Eli Zaretskii <eliz@is.elta.co.il>
6679
6680 * window.c (coordinates_in_window): Don't report on margin area
6681 if its width is zero.
6682
66832002-04-16 Jason Rumney <jasonr@gnu.org>
6684
6685 * w32fns.c (Fx_file_dialog): Decode file name before using.
6686
6687 * w32term.c (construct_drag_n_drop): Likewise.
6688
66892002-04-16 Eli Zaretskii <eliz@is.elta.co.il>
6690
6691 * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
6692 store load-history in pure space.
6693
6694 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
6695
66962002-04-16 Stefan Monnier <monnier@cs.yale.edu>
6697
6698 * xterm.c (Qlatin_1, Qutf_8): New vars.
6699 (syms_of_xterm): Initialize them.
6700 (XTread_socket): Eliminate incorrect optimization that tried to avoid
6701 decoding the output of X*LookupString.
6702 Always use latin-1 to decode the output of XLookupString.
6703 Try Xutf8LookupString if XmbLookupString failed.
6704
6705 * region-cache.c (new_region_cache): Use BEG.
6706
67072002-04-16 Gerd Moellmann <gerd@gnu.org>
6708
6709 * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
6710 configuration files.
6711 (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
6712 returns 0.
6713
67142002-04-15 Andreas Schwab <schwab@suse.de>
6715
6716 * config.in: Regenerated using autoheader.
6717
6718 * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
6719 m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
6720 m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
6721 m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
6722 m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
6723 m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
6724 m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
6725 m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
6726 m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
6727 m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
6728 m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
6729 m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
6730 m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
6731 m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
6732 m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
6733 s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
6734 STACK_DIRECTION, now set by autoconf.
6735
67362002-04-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6737
6738 * dispnew.c (marginal_area_string): Sort arguments.
6739
6740 * dispextern.h (marginal_area_string): Add prototype.
6741
67422002-04-13 Richard M. Stallman <rms@gnu.org>
6743
6744 * fileio.c (Finsert_file_contents):
6745 Don't call temp_output_buffer_setup--do just part, by hand.
6746
6747 * coding.c (run_pre_post_conversion_on_str):
6748 Don't call temp_output_buffer_setup--do just part, by hand.
6749
6750 * keyboard.c (command_loop_1): Don't call start_hourglass
6751 or cancel_hourglass when executing a macro.
6752
6753 * marker.c (count_markers): New function.
6754
6755 * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
6756 grow without limit. Move recently used elements to the front.
6757
67582002-04-13 Eli Zaretskii <eliz@is.elta.co.il>
6759
6760 * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
6761
67622002-04-12 Gerd Moellmann <gerd@gnu.org>
6763
6764 * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
6765 rows marginal areas.
6766 (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
6767 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
6768
6769 * dispnew.c (marginal_area_string): Check that glyph row is enabled.
6770
67712002-04-12 Dave Love <fx@gnu.org>
6772
6773 * dispnew.c (marginal_area_string): New.
6774
6775 * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
6776 (Qleft_margin, Qright_margin): Declare.
6777 (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
6778
6779 * xterm.c (note_mode_line_or_margin_highlight): Renamed from
6780 note_mode_line_highlight and extended.
6781
6782 * keyboard.c (Qleft_margin, Qright_margin): Declare.
6783 (make_lispy_event): Deal with mouse events in margins.
6784
67852002-04-12 Stefan Monnier <monnier@cs.yale.edu>
6786
6787 * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
6788
6789 * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
6790 than deactivating the mark if tmm is set to `lambda'.
6791 (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
6792 Use a single event for HELP_EVENT.
6793 (Fexecute_extended_command): Save last_point_position.
6794
67952002-04-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6796
6797 * lisp.h (Fpropertize): Add prototype.
6798
6799 * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
6800
68012002-04-10 Colin Walters <walters@verbum.org>
6802
6803 * config.in: Add HAVE_SHARED_GAME_DIR.
6804
6805 * callproc.c: (Vgame_score_directory): New variable.
6806 (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
6807
68082002-04-10 Richard M. Stallman <rms@gnu.org>
6809
6810 * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
6811
68122002-04-09 Stefan Monnier <monnier@cs.yale.edu>
6813
6814 * minibuf.c (read_minibuf): Use empty_string.
6815 (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
6816 Short-circuit the search as soon as it "failed".
6817 (Fall_completions): Allow lambda forms and lists of strings for alist.
6818 (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
6819 when require_match is nil.
6820 (Ftest_completion): Rename from `test_completion' and export to elisp.
6821 Call the predicate also when alist is a list.
6822 Obey Vcompletion_regexp_list.
6823 (do_completion, Fminibuffer_complete_and_exit): Use it.
6824 (Fassoc_string): Rename from `assoc_for_completion'.
6825 Allow list of strings as well and export to elisp.
6826
68272002-04-08 Stefan Monnier <monnier@cs.yale.edu>
6828
6829 * puresize.h (BASE_PURESIZE): Increase to 900KB.
6830
68312002-04-08 Juanma Barranquero <lektu@terra.es>
6832
6833 * w32.c (sys_accept): Don't hide variable `s'.
6834
68352002-04-05 Gerd Moellmann <gerd@gnu.org>
6836
6837 * callint.c (Fcall_interactively): Use INTEGERP instead of
6838 NUMBERP for checking Vhistory_length.
6839
68402002-04-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6841
6842 * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
6843 Doc fix to reflect it.
6844
68452002-04-04 Richard M. Stallman <rms@gnu.org>
6846
6847 * xdisp.c (display_mode_element): New arg RISKY.
6848 Disregard text props found or specified within a variable
6849 that isn't marked risky-local-variable.
6850 (Qrisky_local_variable): New variable.
6851 (syms_of_xdisp): Init and staticpro it.
6852
68532002-04-04 Stefan Monnier <monnier@cs.yale.edu>
6854
6855 * undo.c (record_point): New fun.
6856 (record_delete, record_insert): Use it.
6857
68582002-04-03 Juanma Barranquero <lektu@terra.es>
6859
6860 * doc.c (Fdocumentation): Add missing parentheses.
6861 (Fdocumentation_property): Likewise.
6862
68632002-04-03 Stefan Monnier <monnier@cs.yale.edu>
6864
6865 * doc.c (Fdocumentation, Fdocumentation_property): When the doc
6866 data is 0, just return nil.
6867
68682002-04-03 Eli Zaretskii <eliz@is.elta.co.il>
6869
6870 * msdos.c (syms_of_msdos): Fix last change with
6871 mouse_autoselect_window.
6872
68732002-04-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6874
6875 * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
6876 mouse_autoselect_window.
6877
68782002-04-02 Stefan Monnier <monnier@cs.yale.edu>
6879
6880 * keyboard.c (make_lispy_event): Handle unknown keysyms together
6881 with system-specific keysyms. Use it also for unknown function keys.
6882
6883 * doc.c (reread_doc_file): Return whether reload was attempted.
6884 (Fdocumentation, Fdocumentation_property): Don't try to reload
6885 if the doc is 0 and only ask once.
6886
6887 * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
6888
68892002-04-02 Eli Zaretskii <eliz@is.elta.co.il>
6890
6891 * keyboard.c (read_char): If the event was Qselect_window,
6892 restore timer_idleness_start_time to its previous value.
6893
6894 * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
6895
68962002-04-01 Stefan Monnier <monnier@cs.yale.edu>
6897
6898 * region-cache.c (new_region_cache): Use BEG.
6899
6900 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
6901 Use BEG and BEG_BYTE.
6902
6903 * doc.c (get_doc_string): Return nil if the location is wrong.
6904 (reread_doc_file): New fun.
6905 (Fdocumentation, Fdocumentation_property):
6906 Call it if get_doc_string fails.
6907 (Fsnarf_documentation): Make it work for a dumped Emacs.
6908
6909 * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
6910 Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
6911
6912 * charset.c (Fstring): Allow 0 arguments.
6913
6914 * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
6915
6916 * process.c (DATAGRAM_CONN_P, list_processes_1)
6917 (Fprocess_datagram_address, Fset_process_datagram_address)
6918 (Fset_network_process_options, server_accept_connection):
6919 Fix some int/Lisp_Object confusions (thank you union types).
6920
69212002-04-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6922
6923 * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
6924
6925 * w32term.c: Likewise.
6926 (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
6927
6928 * keyboard.c (Qselect_window): New symbol.
6929 (head_table): Use it.
6930 (keys_of_keyboard): Bound select-window event to handle-select-window.
6931 (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
6932
6933 * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
6934 (last_window): New variable.
6935 (XTread_socket): Generate SELECT_WINDOW_EVENTs.
6936 (note_mouse_movement): Remove reimplemented code in #if 0.
6937 (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
6938 Emacs windows.
6939
6940 * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
6941
69422002-03-31 Gerd Moellmann <gerd@gnu.org>
6943
6944 * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
6945 Callers changed.
6946
69472002-03-30 Richard M. Stallman <rms@gnu.org>
6948
6949 * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
6950 loop whenever it stops making progress.
6951
6952 * widget.c (set_frame_size): Don't call change_frame_size.
6953
69542002-03-30 Gerd Moellmann <gerd@gnu.org>
6955
6956 * dispnew.c (direct_output_for_insert):
6957 Call mark_window_display_accurate.
6958
69592002-03-29 Jason Rumney <jasonr@gnu.org>
6960
6961 * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
6962
69632002-03-29 Eli Zaretskii <eliz@is.elta.co.il>
6964
6965 * Makefile.in (lread.o): Depend on coding.h.
6966
6967 * lread.c (openp, Fload): Encode the file name before passing it
6968 to `stat', `access', and `emacs_open'.
6969 (openp): GCPRO the encoded file name. Don't recompute Lisp
6970 strings unnecessarily.
6971
69722002-03-29 Kim F. Storm <storm@cua.dk>
6973
6974 * fns.c (Flax_plist_put): Doc fix.
6975
69762002-03-28 Miles Bader <miles@gnu.org>
6977
6978 * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
6979
69802002-03-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
6981
6982 * process.c (set-network-process-options): Add usage.
6983 (make-network-process): Doc fix.
6984
69852002-03-26 Eli Zaretskii <eliz@is.elta.co.il>
6986
6987 * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
6988
69892002-03-26 Richard M. Stallman <rms@gnu.org>
6990
6991 * fns.c (Fsubstring_no_properties): New function.
6992 (Flax_plist_get, Flax_plist_put): New functions.
6993 (syms_of_fns): defsubr them.
6994
6995 * xdisp.c (update_menu_bar): Test only update_mode_lines;
6996 don't test or alter w->update_mode_line.
6997
6998 * window.c (Fdisplay_buffer): Doc fix.
6999
70002002-03-24 Richard M. Stallman <rms@gnu.org>
7001
7002 * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
7003
70042002-03-24 Gerd Moellmann <gerd@gnu.org>
7005
7006 * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
7007 (Fdefmacro): Handle `(declare ...)'.
7008 (syms_of_eval) <Qdeclare>: Initialize and staticpro.
7009 (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
7010
70112002-03-24 Jason Rumney <jasonr@gnu.org>
7012
7013 * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
7014 (xbm_file_p): Add prototypes.
7015 (xbm_format, xbm_image_p): Sync with xfns.c.
7016 (reflect_byte): New function.
7017 (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
7018 (xbm_load_image): Create bitmaps with a depth of 1.
7019 (init_xfns): Enable XBM images.
7020
70212002-03-23 Jason Rumney <jasonr@gnu.org>
7022
7023 * w32term.c (w32_handle_tool_bar_click): Detect up and down events
7024 correctly. Do not pass up_modifier to keyboard buffer.
7025
7026 * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
7027
70282002-03-22 Stefan Monnier <monnier@cs.yale.edu>
7029
7030 * Makefile.in (bootstrapclean): New target.
7031 (bootstrap-temacs, bootstrap-doc): Remove.
7032 (bootstrap-emacs): Use a bog-standard `temacs'.
7033 Don't bother to build a DOC file.
7034
7035 * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
7036
7037 * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
7038 in temacs even if !CANNOT_DUMP.
7039 (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
7040
7041 * alloc.c (check_pure_size): Only output a warning.
7042
70432002-03-22 Jason Rumney <jasonr@gnu.org>
7044
7045 * w32fns.c (Fx_create_frame): Enable tool-bar when images are
7046 supported.
7047
7048 * w32term.c (zv_bits): Declare as short, for word alignment.
7049 (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
7050 (syms_of_w32term): Define x-use-underline-position-properties.
7051
7052 * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
7053 (clear_image_cache): Block input, fix logic, clear matrices in
7054 all frames that share this cache.
7055
70562002-03-22 Eli Zaretskii <eliz@is.elta.co.il>
7057
7058 * emacs.c (main): Update the Copyright year in the blurb printed
7059 by "emacs --version".
7060
7061 * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
7062
7063 * xterm.c (XTread_socket): If XK_ISO_Lock and
7064 XK_ISO_Last_Group_Lock are defined, handle keysyms between
7065 XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
7066
70672002-03-21 Kim F. Storm <storm@cua.dk>
7068
7069 * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
7070 menu-bar bindings in keymap and local-map properties _are_ used.
7071 But try keymap property first in accordance with 2002-01-03 patch.
7072 Added comment describing why this is not always reliable.
7073 (tool_bar_items): Ditto for tool-bar.
7074
70752002-03-21 Jason Rumney <jasonr@gnu.org>
7076
7077 * w32fns.c (x_clear_image_1): Disable color table code.
7078
70792002-03-21 Kim F. Storm <storm@cua.dk>
7080
7081 * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
7082 removed the wrong version of the DEFUN macro; fixed it.
7083
7084 * fns.c (Ffeaturep): Allow subfeature to be a list (test using
7085 Fmember rather than Fmemq).
7086 (Fprovide): Check that subfeatures is a list.
7087
7088 * process.c (QCfeature, QCdatagram): Removed variables.
7089 (QCtype, Qdatagram): New variables.
7090 (network_process_featurep): Removed function.
7091 (Fmake_network_process): Removed :feature check.
7092 Use :type 'datagram instead of :datagram t to create a datagram
7093 socket. This allows us to add other connection types (e.g. raw
7094 sockets) later in a consistent manner.
7095 (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
7096 supported subfeatures for feature make-network-process.
7097 (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
7098 Intern and staticpro QCtype and Qdatagram.
7099 (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
7100
7101 * xfns.c: (QCtype): Remove duplicate declaration and
7102 initialization (is now declared in process.c).
7103
7104 * w32fns.c: (QCtype): Remove duplicate declaration and
7105 initialization (is now declared in process.c).
7106
71072002-03-21 Richard M. Stallman <rms@gnu.org>
7108
7109 * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
7110 (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
7111 when jumping to `fail' to avoid undoing reg changes in the
7112 last iteration of the loop.
7113 (GET_UNSIGNED_NUMBER): Skip spaces around the number.
7114
7115 * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
7116 Depend on process.h.
7117
71182002-03-20 Jason Rumney <jasonr@gnu.org>
7119
7120 Most of the following changes are still conditional on HAVE_IMAGES
7121 which is not set by default on Windows.
7122
7123 * emacs.c (main) [WINDOWSNT]: Call init_xfns.
7124
7125 * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
7126 (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
7127 (four_corners_best, x_clear_image_1, x_clear_image)
7128 (x_alloc_image_color, postprocess_image)
7129 (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
7130 (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
7131 (init_xfns, syms_of_w32fns): Initialize image functions and constants.
7132
7133 * w32gui.h (struct XImage): Define.
7134
7135 * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
7136 extract mouse co-ordinates.
7137
71382002-03-20 Jason Rumney <jasonr@gnu.org>
7139
7140 * w32.c (init_winsock): Dynamically load new server and UDP
7141 socket functions.
7142 (socket_to_fd): New function.
7143 (sys_socket): Use it.
7144 (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
7145 (sys_recvfrom, sys_sendto): New wrapper functions.
7146
7147 * process.c (QCfamily, QCfilter): Remove duplicate declaration
7148 and initialization.
7149
7150 * makefile.w32-in (LIBS): Remove $(WSOCK32).
7151
71522002-03-20 Eli Zaretskii <eliz@is.elta.co.il>
7153
7154 * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr):
7155 Don't use "sun" as a variable, it's a predefined constant on Sun
7156 machines.
7157
71582002-03-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7159
7160 * bytecode.c (Fbyte_code): Revert last change.
7161
71622002-03-19 Kim F. Storm <storm@cua.dk>
7163
7164 * makefile.w32-in (LIBS): Add $(WSOCK32).
7165 From David Ponce <dponce@voila.fr>.
7166
71672002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7168
7169 * process.c (wait_reading_process_input): Move variables `pname'
7170 and `pnamelen' down where they are used.
7171
7172 * bytecode.c (Fbyte_code): Discard unused computed value to
7173 prevent gcc warning.
7174
7175 * lisp.h (Fplist_member): Add prototype.
7176
71772002-03-18 Kim F. Storm <storm@cua.dk>
7178
7179 * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
7180 HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and HAVE_SYS_UN_H.
7181
7182 * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
7183 Remove explicit GNU_LINUX settings for datagram support.
7184
71852002-03-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7186
7187 * process.c (Fmake_network_process): Remove unused variable `sa'.
7188 Doc fix. Add usage:.
7189 (set_socket_options): Remove unused variables `optnum' and `opttype'.
7190
71912002-03-17 Richard M. Stallman <rms@gnu.org>
7192
7193 * xdisp.c (cursor_type_changed): New variable.
7194 (redisplay_internal): Redisplay all windows if cursor_type_changed.
7195 Clear it when clearing windows_or_buffers_changed.
7196 (try_cursor_movement, redisplay_window, try_window_id)
7197 (try_window_reusing_current_matrix): Test cursor_type_changed
7198 along with windows_or_buffers_changed.
7199
7200 * window.h (cursor_type_changed): New variable.
7201
7202 * xfns.c (x_set_cursor_type): Set cursor_type_changed,
7203 not update_mode_lines, and always set it to 1.
7204
7205 * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
7206 if no frames needed redrawing.
7207
72082002-03-17 Kim F. Storm <storm@cua.dk>
7209
7210 The following changes add support for network server processes,
7211 datagram connections, and local (unix) sockets.
7212
7213 * process.h (struct Lisp_Process): New member log.
7214 Doc fix: Member command used to indicate stopped network process.
7215 Doc fix: Member childp contains plist for network process.
7216 Doc fix: Member kill_without_query is inverse of query-on-exit flag.
7217
7218 * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
7219 (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop)
7220 (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature):
7221 New variables.
7222 (NETCONN1_P): New macro.
7223 (DATAGRAM_SOCKETS): New conditional symbol.
7224 (datagram_address): New array.
7225 (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
7226 (status_message): Use concat3.
7227 (Fprocess_status): Add `listen' status to doc string. Return `stop'
7228 for a stopped network process.
7229 (Fset_process_buffer): Update contact plist for network process.
7230 (Fset_process_filter): Ditto. Don't enable input for stopped
7231 network processes. Server must listen, even if filter is t.
7232 (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
7233 New functions.
7234 (Fprocess_kill_without_query): Removed. Now defined in simple.el.
7235 (Fprocess_contact): Added KEY argument. Handle datagrams.
7236 (list_processes_1): Optionally show only processes with the query
7237 on exit flag set. Dynamically adjust column widths. Omit tty
7238 column if not needed. Report stopped network processes.
7239 Identify server and datagram network processes.
7240 (Flist_processes): New optional arg `query-only'.
7241 (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
7242 (conv_lisp_to_sockaddr, set_socket_options)
7243 (network_process_featurep, unwind_request_sigio): New helper functions.
7244 (Fprocess_datagram_address, Fset_process_datagram_address):
7245 (Fset_network_process_options): New lisp functions.
7246 (Fopen_network_stream): Removed. Now defined in simple.el.
7247 (Fmake_network_process): New lisp function. Code is based on previous
7248 Fopen_network_stream, but heavily reworked with new property list based
7249 argument list, support for datagrams, server processes, and local
7250 sockets in addition to old client-only functionality.
7251 (server_accept_connection): New function.
7252 (wait_reading_process_input): Use it to handle incoming connects.
7253 Do not enable input on a new connection if process is stopped.
7254 (read_process_output): Handle datagram sockets. Use 2k buffer for them.
7255 (send_process): Handle datagram sockets.
7256 (Fstop_process, Fcontinue_process): Apply to network processes. A stopped
7257 network process is indicated by setting command field to t .
7258 (Fprocess_send_eof): No-op if datagram connection.
7259 (Fstatus_notify): Don't read input for a stream server socket or a
7260 stopped network process.
7261 (init_process): Initialize datagram_address array.
7262 (syms_of_process): Intern and staticpro new variables, defsubr new
7263 functions.
7264
72652002-03-16 Jason Rumney <jasonr@gnu.org>
7266
7267 * w32fns.c (w32_to_all_x_charsets): Return correct type in
7268 startup case.
7269
72702002-03-16 Richard M. Stallman <rms@gnu.org>
7271
7272 * xdisp.c (redisplay_internal, redisplay_windows):
7273 Use list_of_error to call internal_condition_case_1.
7274 (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
7275 so as to catch all errors with no possibility of debugger redisplay.
7276 (list_of_error): New variable.
7277 (syms_of_xdisp): Init and staticpro it.
7278
7279 * print.c (print_object): Delete `\ ' from printed rep of frame.
7280
72812002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
7282
7283 * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
7284 until its implementation is fixed.
7285
72862002-03-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7287
7288 * xfns.c (png_load): Remove unused variable `gamma_str'.
7289
72902002-03-14 Richard M. Stallman <rms@gnu.org>
7291
7292 * xfns.c (x_real_positions): Handle failure in XQueryTree.
7293
72942002-03-14 Miles Bader <miles@gnu.org>
7295
7296 * intervals.c (adjust_for_invis_intang): New function.
7297 (set_point_both): Use `adjust_for_invis_intang' to do most of the
7298 work for dealing with invisible+intangible regions. Do so before
7299 and after both forward and backward movements, to handle both
7300 front-sticky and rear-sticky cases.
7301 * textprop.c (text_property_stickiness): Function moved here from
7302 `editfns.c'.
7303 * intervals.h (text_property_stickiness): New declaration.
7304 * editfns.c (char_property_eq): Function removed.
7305 (text_property_stickiness): Function moved to `textprop.c'.
7306
73072002-03-13 Jason Rumney <jasonr@gnu.org>
7308
7309 * config.in: Add STRFTIME_NO_POSIX2.
7310
7311 * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
7312 and %OX when underlying strftime does not.
7313
73142002-03-13 Stefan Monnier <monnier@cs.yale.edu>
7315
7316 * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
7317 Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
7318 line) to avoid annoying flicker.
7319 (xm_scroll_callback): Get rid of the now unnecessary kludge.
7320 (XTread_socket): Mark it static.
7321
7322 * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
7323
73242002-03-13 Kim F. Storm <storm@cua.dk>
7325
7326 * puresize.h (BASE_PURESIZE): Increase to 775000.
7327
73282002-03-12 Juanma Barranquero <lektu@terra.es>
7329
7330 * editfns.c (syms_of_editfns): Fix typo.
7331
73322002-03-12 Gerd Moellmann <gerd@gnu.org>
7333
7334 * xsmfns.c: Include stdio.h because termhooks.h needs it.
7335 Include termopt.h for interrupt_input.
7336
73372002-03-11 Andreas Schwab <schwab@suse.de>
7338
7339 * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
7340
73412002-03-11 Gerd Moellmann <gerd@gnu.org>
7342
7343 * xterm.c (note_mouse_movement): Put code for
7344 x_autoselect_window_p in #if 0.
7345
7346 * lread.c (Fload): Don't assume that message_with_string uses the
7347 string it is given like a C string.
7348
73492002-03-10 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
7350
7351 * xterm.h (x_session_check_input, x_session_initialize): Declared.
7352
7353 * xterm.c: (XTread_socket): Add call to x_session_check_input and
7354 x_session_have_connection.
7355 (x_initialize): Add call to x_session_initialize.
7356
7357 * termhooks.h (enum event_kind): Add save_session_event.
7358
7359 * keyboard.c: Add Emacs event save_session_event.
7360
7361 * emacs.c (main): Add call to syms_of_xsmfns.
7362
7363 * lisp.h: Declare syms_of_xsmfns as extern.
7364
7365 * config.in: Add HAVE_X_SM.
7366
7367 * Makefile.in (LIBXT): Add -lSM -lICE
7368 if HAVE_X_SM and not USE_X_TOOLKIT.
7369 (XOBJ): New file xsmfns.c added.
7370
7371 * xsmfns.c: New file for X session management.
7372
73732002-03-09 Jason Rumney <jasonr@gnu.org>
7374
7375 * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
7376 read-only when setting modified time.
7377
73782002-03-08 Gerd Moellmann <gerd@gnu.org>
7379
7380 * xdisp.c (move_it_vertically_backward): At the end of the function,
7381 when moving forward by lines, treat terminal frames specially.
7382
7383 * keyboard.c (echo_char): Make sure to add a separator between
7384 keys even if echo_dash hasn't been called.
7385
7386 * xdisp.c: Use new string macros.
7387 (update_echo_area): Pass number of bytes to message3 instead of
7388 number of chars.
7389 (set_message_1): Don't access a string's size_byte directly.
7390 (decode_mode_spec_coding): Use number of bytes of eoltype string
7391 instead number of chars.
7392
7393 * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
7394
73952002-03-08 Juanma Barranquero <lektu@terra.es>
7396
7397 * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
7398 24-bit.
7399
74002002-03-06 Jason Rumney <jasonr@gnu.org>
7401
7402 * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
7403
74042002-03-06 Gerd Moellmann <gerd@gnu.org>
7405
7406 * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
7407 (cancel_echoing, echo_length, echo_truncate): Changed to
7408 work with new kboard definition.
7409 (echo_now): Use message3_nolog instead of message2_nolog.
7410
7411 * alloc.c (mark_kboards): Mark echo_string.
7412
7413 * keyboard.h (ECHOBUFSIZE): Removed.
7414 (struct kboard): Member echoptr removed, member echobuf renamed
7415 to echo_string.
7416
7417 * xdisp.c (message_with_string): Use Fformat instead of doprnt and
7418 message3 instead of message2 to display the message using STRING's
7419 text properties.
7420
74212002-03-05 Andreas Schwab <schwab@suse.de>
7422
7423 * xdisp.c (hscroll_margin): Change to EMACS_INT.
7424
74252002-03-05 Per Abrahamsen <abraham@dina.kvl.dk>
7426
7427 * frame.c (default-frame-alist): Explain that setting it doesn't
7428 affect existing frames.
7429
74302002-03-05 Stefan Monnier <monnier@cs.yale.edu>
7431
7432 * indent.c (skip_invisible): Fix my brain fart.
7433
7434 * dispnew.c (sit_for): Don't wait if executing a kbd macro.
7435
74362002-03-04 Stefan Monnier <monnier@cs.yale.edu>
7437
7438 * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
7439 * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
7440 * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
7441 * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
7442 and variables to use EMACS_INT instead of just int.
7443
7444 * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
7445
74462002-03-04 Eli Zaretskii <eliz@is.elta.co.il>
7447
7448 * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
7449 environment, pass it down with corrected value.
7450
74512002-03-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7452
7453 * lread.c (read_filtered_event): Do not call start_hourglass
7454 before returning.
7455
74562002-03-04 Juanma Barranquero <lektu@terra.es>
7457
7458 * w32term.c (x_display_and_set_cursor): Fix typo.
7459
74602002-03-03 Richard M. Stallman <rms@gnu.org>
7461
7462 * fileio.c (Fmake_temp_name): Doc fix.
7463
74642002-03-03 Gary Wong <gtw@gnu.org>
7465
7466 * termcap.c [!emacs]: Replace ospeed for building standalone
7467 libtermcap, for binary compatibility.
7468
7469 * tparam.c [!emacs]: Move #define of bcopy to after string.h.
7470
74712002-03-03 Richard M. Stallman <rms@gnu.org>
7472
7473 * xrdb.c (file_p): Rename arg `path' to `filename'.
7474
7475 * abbrev.c (Fexpand_abbrev): Increment plist as use count
7476 only if it is an integer.
7477
7478 * xfns.c (png_load): Set screen_gamma based on f->gamma.
7479 If png_get_sRGB gives an answer, call png_set_gamma
7480 using the default image gamma value.
7481
7482 * lread.c (read1): When reading from a file, default string to
7483 multibyte only if it has some multibyte characters.
7484
7485 * print.c (print_object): Output multibyte chars 128...255
7486 using \x even if ! print_escape_multibyte.
7487
7488 * xdisp.c (display_mode_element): Move the places where
7489 bytepos, charpos, this, and lisp_string are set.
7490 Use lisp_string to set bytepos.
7491
7492 * xdisp.c (redisplay_internal):
7493 Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
7494
7495 * xdisp.c (display_mode_element): Merge properties specified with
7496 :propertize onto those that come with the string.
7497
74982002-03-03 Eli Zaretskii <eliz@is.elta.co.il>
7499
7500 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
7501 automatic-hscrolling. Users changed.
7502 <hscroll-margin>: Renamed from automatic-hscroll-margin.
7503 Users changed.
7504 <hscroll-step>: Renamed from automatic-hscroll-step. Users changed.
7505
75062002-03-02 Eli Zaretskii <eliz@is.elta.co.il>
7507
7508 * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
7509
75102002-03-02 Kim F. Storm <storm@cua.dk>
7511
7512 * window.c (Fminibuffer_selected_window): New function.
7513 (syms_of_window): Defsubr it.
7514
75152002-03-01 Kim F. Storm <storm@cua.dk>
7516
7517 * window.h (struct window): New member phys_cursor_width.
7518
7519 * window.c (make_window, replace_window): Init phys_cursor_width.
7520
7521 * xterm.c (x_display_and_set_cursor): Blink box cursor using
7522 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
7523
7524 * w32term.c (x_display_and_set_cursor): Blink box cursor using
7525 hollow box cursor. Blink bar cursor using 1 pixel wide bar.
7526
7527 * lisp.h (GCPRO6): New macro.
7528
7529 * process.c (Fopen_network_stream): Use GCPRO6.
7530
75312002-03-01 Kim F. Storm <storm@cua.dk>
7532
7533 * process.c (Qconnect, Qfailed): New variables.
7534 (syms_of_process): Intern and staticpro them.
7535 (Fprocess_status): Document connect and failed return values.
7536 [NON_BLOCKING_CONNECT]: New conditional.
7537 (connect_wait_mask, num_pending_connects): New variables.
7538 (status_message): Convert Qfailed status.
7539 (Fopen_network_stream): Added support for non-blocking connect.
7540 New optional args: filter, sentinel, non_blocking. Doc updated.
7541 [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]: Merged common code.
7542 (deactivate_process): Handle pending non-blocking connect.
7543 (wait_reading_process_input): Poll for status of non-blocking
7544 connects. Exec sentinel directly when connect succeeds.
7545 (status_notify): Don't read process output if not yet connected.
7546
75472002-02-28 Kim F. Storm <storm@cua.dk>
7548
7549 * window.c: (minibuf_selected_window): Renamed from
7550 Vminibuf_selected_window. Users changed.
7551 (syms_of_window): Staticpro it.
7552
75532002-02-26 Kim F. Storm <storm@cua.dk>
7554
7555 The following changes add a new Vminibuf_selected_window variable
7556 which is similar to Vminibuf_scroll_window, but which is only set
7557 on entry to the minibuffer (from a non-minibuffer window):
7558
7559 * window.c: (Vminibuf_selected_window): New variable.
7560 (struct save_window_data): New member minibuf_selected_window.
7561 (Fset_window_configuration): Restore Vminibuf_selected_window.
7562 (Fcurrent_window_configuration): Save Vminibuf_selected_window.
7563 Set minibuf_scroll_window member to nil if minibuf_level is 0.
7564 (compare_window_configurations): Compare minibuf_selected_window.
7565
7566 * window.h: (Vminibuf_selected_window): Declare extern.
7567
7568 * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
7569 entry to minibuffer or on entry from a non-minibuffer window.
7570
7571 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
7572 Vminibuf_selected_window instead of Vminibuf_scroll_window.
7573
7574 * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
7575 instead of Vminibuf_scroll_window when deciding in which window
7576 the region should be highlighted. Consequently, the region remains
7577 highlighteded even when a completion buffer is also displayed.
7578
75792002-02-26 Eli Zaretskii <eliz@is.elta.co.il>
7580
7581 * fileio.c (Fsubstitute_in_file_name): Fix the change from 2002-02-08.
7582
7583 * xselect.c (Qcompound_text_with_extensions): Renamed from
7584 Qcompound_text_no_extensions.
7585 (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
7586
75872002-02-26 Juanma Barranquero <lektu@terra.es>
7588
7589 * w32proc.c (syms_of_ntproc): Doc fix.
7590
75912002-02-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7592
7593 * intervals.h: Include "dispextern.h" unconditionally.
7594
75952002-02-24 Jason Rumney <jasonr@gnu.org>
7596
7597 * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
7598 and disp-table.elc.
7599 (lisp): Add emacs-lisp/backquote.elc.
7600
76012002-02-24 Kim F. Storm <storm@cua.dk>
7602
7603 * keymap.c (Flookup_key): Fixed problem in 2001-12-28 patch:
7604 The validation of the event type was too strict as it didn't
7605 allow string events; buffer names are used in bindings for
7606 menu-bar-select-buffer (see `menu-bar-update-buffers').
7607
76082002-02-23 Kim F. Storm <storm@cua.dk>
7609
7610 The following changes rework my patch of 2002-02-06 which
7611 added command remapping by entering the commands directly into
7612 the keymaps. Now, command remapping uses an explicit `remap'
7613 prefix in the keymaps, i.e. [remap COMMAND].
7614
7615 * keymap.c (Qremap, remap_command_vector): New variables.
7616 (is_command_symbol): Removed function.
7617 (Fdefine_key): No longer accept a symbol for KEY.
7618 Added validation of [remap COMMAND] argument for KEY.
7619 The DEF is no longer required to be a symbol when remapping a command.
7620 (Fremap_command): New function to remap command through keymaps.
7621 (Flookup_key): Perform command remapping initiated by
7622 Fremap_command directly for speed.
7623 (Fkey_binding): Use Fremap_command for command remapping.
7624 (where_is_internal): Handle new command remapping representation.
7625 (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
7626 staticpro them. Defsubr Fremap_command.
7627
7628 * keymap.h (Fremap_command): Declare extern.
7629 (is_command_symbol): Remove extern.
7630
7631 * keyboard.c (command_loop_1): Use Fremap_command for command
7632 remapping; now try command remapping for all symbols.
7633
76342002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
7635
7636 * coding.h (run_pre_post_conversion_on_str): Add prototype.
7637
76382002-02-23 Jason Rumney <jasonr@gnu.org>
7639
7640 * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
7641 on the string before encoding it.
7642 (Fw32_get_clipboard_data): Run post-read-conversion on the string
7643 after decoding it.
7644
7645 * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
7646
76472002-02-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7648
7649 * w32term.c (enter_timestamp): Remove unused static variable to
7650 prevent warning.
7651
7652 * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
7653
76542002-02-23 Eli Zaretskii <eliz@is.elta.co.il>
7655
7656 * w16select.c (Fw16_get_clipboard_data): Fix last change.
7657
7658 * xselect.c (selection_data_to_lisp_data): Fix last change.
7659
76602002-02-22 Jason Rumney <jasonr@gnu.org>
7661
7662 * w32term.h (struct w32_output): New member menu_command_in_progress.
7663
7664 * w32menu.c (menubar_selection_callback): Free the menu and
7665 clear the menu_command_in_progress flag.
7666
7667 * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
7668 (menu_free_timer): New variable.
7669 (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
7670 (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
7671 <WM_EXITMENULOOP>: Delay before freeing menu. Do nothing if a
7672 menu command is in progress.
7673 <WM_COMMAND>: Set the menu_command_in_progress flag.
7674 Kill any menu_free_timer that is running.
7675
7676 * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
7677 Call ExtTextOutA rather than ExtTextOut.
7678
76792002-02-22 Eli Zaretskii <eliz@gnu.org>
7680
7681 * puresize.h (BASE_PURESIZE): Increase to 755000.
7682
76832002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
7684
7685 * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
7686 on the string before encoding it.
7687 (Fw16_get_clipboard_data): Run post-read-conversion on the string
7688 after decoding it.
7689
76902002-02-22 Eli Zaretskii <eliz@is.elta.co.il>
7691
7692 Support for ICCCM Extended Segments in X selections:
7693
7694 * xselect.c <Qcompound_text_no_extensions>: New variable.
7695 (syms_of_xselect): Intern and staticpro it.
7696 (selection_data_to_lisp_data): Run post-read-conversion on decoded
7697 selection text.
7698 (lisp_data_to_selection_data): If next-selection-coding-system is
7699 compound-text-no-extensions, set the type of selection to be
7700 compound-text.
7701
7702 * xterm.h (x_encode_text): Update prototype.
7703
7704 * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
7705 callers changed. If SELECTIONP is non-zero, run the
7706 pre-write-conversion function before encoding the selection text.
7707
77082002-02-21 Kim F. Storm <storm@cua.dk>
7709
7710 * frame.c (syms_of_frame): Change mouse-highlight default to t.
7711
7712 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
7713 Correct composing of language-change event.
7714
77152002-02-20 Kim F. Storm <storm@cua.dk>
7716
7717 * keyboard.c (menu_bar_items): Don't include keymap or local-map
7718 bindings at PT when building menu (the menu is not updated often
7719 enough for this to work reliable).
7720 (tool_bar_items): Likewise.
7721 (current_active_maps): Removed unused (and buggy) function.
7722
77232002-02-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7724
7725 * xfns.c (gif_load): Use correct width and height for GIF images.
7726
77272002-02-19 Eli Zaretskii <eliz@is.elta.co.il>
7728
7729 * floatfns.c (Fatan): Accept an optional second arg and call
7730 atan2 if passed 2 args.
7731
77322002-02-18 Jason Rumney <jasonr@gnu.org>
7733
7734 * w32term.c (glyph_rect): Determine the row and glyph more precisely.
7735
77362002-02-17 Jason Rumney <jasonr@gnu.org>
7737
7738 * w32term.c (x_autoselect_window_p): New variable.
7739 (syms_of_w32term): DEFVAR_BOOL and initialize it.
7740 (note_mouse_movement): Use it.
7741
7742 * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
7743
7744 * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
7745
7746 * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
7747 New variables.
7748 (syms_of_w32fns): Intern and staticpro them.
7749 (x_frame_parms) <"fullscreen">: New parameter.
7750 (x_fullscreen_move, x_set_fullscreen): New functions.
7751 (x_set_frame_parameters): Support Qfullscreen.
7752 (x_real_positions): Save x/y_pixels_diff frame params.
7753 (x_figure_window_size): Support full-screen frames.
7754 (Fx_create_frame): Default the fullscreen parameter.
7755
7756 * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
7757 (x_fullscreen_adjust): New functions.
7758 (w32_read_socket) <WM_WINDOWPOSCHANGED>: Don't resize to
7759 fullscreen. Call x_check_fullscreen_move, and set the
7760 want_fullscreen member of output_data.w32
7761 <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
7762
7763 * w32term.h: New enum for FULLSCREEN_* constants.
7764 (struct w32_output): New members want_fullscreen, x_pixels_diff,
7765 y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
7766 (x-fullscreen-adjust): New prototype.
7767
77682002-02-17 Kim F. Storm <storm@cua.dk>
7769
7770 * frame.c: (Vmouse_highlight): New variable.
7771 (syms_of_frame): DEFVAR_LISP it.
7772
7773 * frame.h: (Vmouse_highlight): Declare extern.
8a8e19a3 7774
048addec 7775 * xterm.h (struct x_display_info): Add mouse_face_hidden.
8a8e19a3 7776
048addec
JD
7777 * xterm.c (disable_mouse_highlight): Removed variable.
7778 (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
7779 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
7780 (XTread_socket): Turn mouse_face_hidden off after mouse movement,
7781 and on after keyboard input.
7782 (x_term_init): Initialize mouse_face_hidden.
8a8e19a3 7783
048addec 7784 * msdos.h (struct display_info): Add mouse_face_hidden.
8a8e19a3 7785
048addec
JD
7786 * msdos.c (disable_mouse_highlight): Removed variable.
7787 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
7788 (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
7789 (internal_terminal_init): Initialize mouse_face_hidden.
7790 (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
7791 and on after keyboard input.
4f1b1854 7792
048addec 7793 * w32term.h (struct w32_display_info): Add mouse_face_hidden.
4f1b1854 7794
048addec
JD
7795 * w32term.c (disable_mouse_highlight): Removed variable.
7796 (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
7797 (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
7798 (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
7799 and on after keyboard input.
7800 (w32_initialize_display_info): Initialize mouse_face_hidden.
4f1b1854 7801
048addec 78022002-02-16 Eli Zaretskii <eliz@is.elta.co.il>
4f1b1854 7803
048addec
JD
7804 * msdos.c (last_mouse_window): New variable.
7805 (dos_rawgetc): Fix last change--if the mouse is in the same window
7806 as recorded in last_mouse_window, don't select this window.
5cb6905d 7807
048addec 7808 * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
5cb6905d 7809
048addec
JD
7810 * msdos.c (x_autoselect_window_p): New variable.
7811 (syms_of_msdos): Defvar it.
7812 (dos_rawgetc): If x_autoselect_window_p is set, select the window in
7813 which the last mouse movement occured, unless it is already selected.
437dfb9f 7814
048addec
JD
7815 * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
7816 New variables.
7817 (syms_of_xdisp): DEVFAR them.
7818 (hscroll_window_tree): Use automatic_hscroll_margin and
7819 Vautomatic_hscroll_step to compute the amount of window scrolling.
437dfb9f 7820
048addec 78212002-02-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9f696a00 7822
048addec
JD
7823 * xterm.c (x-autoselect-window): New variable.
7824 (note_mouse_movement): Use it.
9f696a00 7825
048addec 7826 * keyboard.c: Do not include "systime.h" twice.
d57966d7 7827
048addec 78282002-02-15 Andreas Schwab <schwab@suse.de>
d57966d7 7829
048addec 7830 * puresize.h (BASE_PURESIZE): Increase to 9/5.
d57966d7 7831
048addec 7832 * alloc.c (NSTATICS): Increase to 1280.
74779f52 7833
048addec 78342002-02-15 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
74779f52 7835
048addec 7836 * alloc.c (NSTATICS): Bump to 1026.
a474d59c 7837
048addec
JD
7838 * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
7839 (Vx_super_keysym): New variables.
7840 (syms_of_xterm): DEFVAR_LISP them.
7841 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
7842 variables to determine which keys to use for the various modifiers.
a474d59c 7843
048addec 78442002-02-13 Kim F. Storm <storm@cua.dk>
fbb70ad9 7845
048addec
JD
7846 * window.c: (Vmode_line_in_non_selected_windows): Removed.
7847 (mode_line_in_non_selected_windows): New variable.
7848 (syms_of_window): DEFVAR_BOOL it.
fbb70ad9 7849
048addec
JD
7850 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
7851 Use mode_line_in_non_selected_windows.
7852 (mode_line_in_non_selected_windows): Declare extern.
7853 (Vmode_line_in_non_selected_windows): Removed extern.
2d10309f 7854
048addec 78552002-02-13 Richard M. Stallman <rms@gnu.org>
2d10309f 7856
048addec
JD
7857 * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
7858 (Fthis_single_command_keys, Fthis_single_command_raw_keys)
7859 (Fclear_this_command_keys): Doc fixes.
2d10309f 7860
048addec
JD
7861 * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
7862 (update_face_from_frame_parameter): Increment face_change_count
7863 and windows_or_buffers_changed to force redisplay using changed faces.
7f2cddf3 7864
048addec
JD
7865 * xdisp.c (QCpropertize): New variable.
7866 (mode_line_proptrans_alist): New variable.
7867 (display_mode_element): New arg PROPS; all calls changed.
7868 Implement this, for strings.
7869 Handle literal output of strings by sharing the
7870 main-line code for strings, using local var `literal'.
7871 Handle :propertize feature.
7872 (syms_of_xdisp): Initialze and staticpro QCpropertize and
7873 mode_line_proptrans_alist.
0b1e6b54 7874
048addec 78752002-02-11 Kim F. Storm <storm@cua.dk>
7f2cddf3 7876
048addec
JD
7877 * window.c: (Vmode_line_in_non_selected_windows): New variable.
7878 (syms_of_window): DEFVAR_LISP it.
7f2cddf3 7879
048addec
JD
7880 * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
7881 (CURRENT_MODE_LINE_FACE_ID): Use it.
7882 (Vmode_line_in_non_selected_windows): Declare extern.
e17144de 7883
048addec
JD
7884 * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
7885 to get mode line face.
e17144de 7886
048addec 78872002-02-11 Eli Zaretskii <eliz@is.elta.co.il>
6637c996 7888
048addec
JD
7889 * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
7890 variables; cus-start.el doesn't need them anymore.
44368f8f 7891
048addec 78922002-02-09 Kim F. Storm <storm@cua.dk>
f884b6f4 7893
048addec
JD
7894 * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
7895 reduction. This fixes a display problem where stray newlines were
7896 inserted in the window (corrected by C-l). Clarified code (IMHO).
6637c996 7897
048addec 78982002-02-09 Eli Zaretskii <eliz@is.elta.co.il>
6637c996 7899
048addec 7900 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
6637c996 7901
048addec 7902 * xdisp.c (display_mode_lines): Fix last change.
453c5510 7903
048addec 79042002-02-09 Jason Rumney <jasonr@gnu.org>
453c5510 7905
048addec
JD
7906 * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
7907 match each other.
7908 (w32_load_system_font): Prevent Cleartype fonts from loading.
7909 (Fx_show_tip): Ensure tip frames are above other topmost windows.
d1d070e3 7910
048addec 79112002-02-09 Kim F. Storm <storm@cua.dk>
d1d070e3 7912
048addec
JD
7913 * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
7914 (CURRENT_MODE_LINE_HEIGHT): Use it.
7915 (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
9ec1bdb6 7916
048addec
JD
7917 * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
7918 (pos_visible_p, handle_face_prop): Likewise.
7919 (display_mode_lines): Likewise, but for the real selected window.
7920 (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
9ec1bdb6 7921
048addec
JD
7922 * xfaces.c (Qmode_line_inactive): New face variable for mode-line
7923 in non-selected windows.
7924 (realize_basic_faces): Realize it.
7925 (syms_of_term): Intern and staticpro it.
308dd672 7926
048addec 79272002-02-08 Kim F. Storm <storm@cua.dk>
edde72f6 7928
048addec
JD
7929 * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
7930 Changed mail addresses to emacs-devel@gnu.org.
308dd672 7931
048addec 79322002-02-08 Eli Zaretskii <eliz@is.elta.co.il>
3c1e6b46 7933
048addec
JD
7934 * fileio.c (Fsubstitute_in_file_name): If the file name includes
7935 ~user, and there's no such user, don't discard everything before ~user.
03950b5b 7936
048addec 7937 * floatfns.c (Fround): Doc fix.
3c1e6b46 7938
048addec 79392002-02-08 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
c1e11810 7940
048addec 7941 * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
c1e11810 7942
048addec 79432002-02-07 Stefan Monnier <monnier@cs.yale.edu>
1996baee 7944
048addec 7945 * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
1996baee 7946
048addec 79472002-02-07 Kim F. Storm <storm@cua.dk>
0065bb74 7948
048addec
JD
7949 * keymap.c (where_is_internal): Only check whether definition is
7950 remapped if it fulfills is_command_symbol.
0065bb74 7951
048addec 79522002-02-07 Andreas Schwab <schwab@suse.de>
0065bb74 7953
048addec 7954 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
b5cb6072 7955
048addec 7956 * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
b5cb6072 7957
048addec 79582002-02-06 Kim F. Storm <storm@cua.dk>
15fff01d 7959
048addec
JD
7960 * keymap.c (Fdefine_key): Allow symbol as KEY argument for
7961 defining command remapping. Doc updated.
7962 (Flookup_key): Remap command through keymap if KEY is a symbol.
7963 (is_command_symbol): New function.
7964 (Fkey_binding): Use it. New optional argument NO-REMAP.
7965 Doc updated. Callers changed. Perform command remapping via
7966 recursive call unless that arg is non-nil.
7967 (where_is_internal): New argument no_remap. Callers changed.
7968 Call recursively to find original key bindings for a remapped
7969 comand unless that arg is non-nil.
7970 (Fwhere_is_internal): New optional argument NO-REMAP.
7971 Doc updated. Callers changed. Pass arg to where_is_internal.
0065bb74 7972
048addec
JD
7973 * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
7974 (is_command_symbol): Added prototype.
0d8466cc 7975
048addec
JD
7976 * keyboard.c (Vthis_original_command): New variable.
7977 (syms_of_keyboard): DEFVAR_LISP it.
7978 (command_loop_1): Set it, and perform command remapping.
15fff01d 7979
048addec 79802002-02-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2fae9111 7981
048addec 7982 * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
2d6c1fc0 7983
048addec 79842002-02-06 Jason Rumney <jasonr@gnu.org>
07025a55 7985
048addec 7986 * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
07025a55 7987
048addec 79882002-02-06 Eli Zaretskii <eliz@is.elta.co.il>
07025a55 7989
048addec 7990 * charset.c (get_charset_id): Use if-else instead of ?:.
3a232704 7991
048addec 79922002-02-06 Richard M. Stallman <rms@gnu.org>
539e92ad 7993
048addec 7994 * filelock.c (S_ISLNK): Define if not defined.
3a232704 7995
048addec 79962002-02-03 Richard M. Stallman <rms@gnu.org>
0cb8bb48 7997
048addec 7998 * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
539e92ad 7999
048addec
JD
8000 * lread.c (read1): Redesign strategy for force_multibyte and
8001 force_singlebyte. Now is_multibyte records whether read_buffer
8002 is multibyte. Encountering any multibyte character makes it so.
4e02881b 8003
048addec 80042002-02-02 Stefan Monnier <monnier@cs.yale.edu>
4e02881b 8005
048addec
JD
8006 * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
8007 with the same sequence, map that sequence to f10 rather than f0.
1ab964d7 8008
048addec 80092002-02-03 Andreas Schwab <schwab@suse.de>
1ab964d7 8010
048addec
JD
8011 * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
8012 latter never being defined on GNU/Linux.
749f499f 8013
048addec 80142002-02-02 Eli Zaretskii <eliz@is.elta.co.il>
749f499f 8015
048addec
JD
8016 * xfaces.c (realize_default_face): Don't set the weight and slant of
8017 the default face to Qnormal, unless these attributes are unspecified.
b5d9aaba 8018
048addec 80192002-02-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3a232704 8020
048addec
JD
8021 * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
8022 Call cancel_hourglass unconditionally.
d0fd26dd 8023
048addec
JD
8024 * eval.c (Fsignal): Remove duplicated declaration of
8025 the variable `display_hourglass_p'.
b4c45162 8026
048addec 80272002-01-31 Richard M. Stallman <rms@gnu.org>
d0fd26dd 8028
048addec 8029 * editfns.c (region_limit): Nicer error message.
c95eaa61 8030
048addec
JD
8031 * coding.c (decode_composition_emacs_mule):
8032 Give up if NCOMPONENT gets too large to index `component'.
c95eaa61 8033
048addec
JD
8034 * callint.c (check_mark): New arg to specify clearer error message.
8035 Callers changed.
c95eaa61 8036
048addec 80372002-01-27 Richard M. Stallman <rms@gnu.org>
c95eaa61 8038
048addec 8039 * minibuf.c (Fcompleting_read): Doc fix.
c95eaa61 8040
048addec 80412002-01-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
c95eaa61 8042
048addec
JD
8043 * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
8044 (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
8045 Fix doc-strings.
c95eaa61 8046
048addec 80472002-01-26 Richard M. Stallman <rms@gnu.org>
c95eaa61 8048
048addec 8049 * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
c95eaa61 8050
048addec
JD
8051 * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
8052 and scroll_up_aggressively.
c95eaa61 8053
048addec 80542002-01-26 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
31877e0a 8055
048addec 8056 * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
31877e0a 8057
048addec 80582002-01-25 Stefan Monnier <monnier@cs.yale.edu>
e2c3786a 8059
048addec
JD
8060 * textprop.c (Fnext_property_change, Fnext_single_property_change)
8061 (Fprevious_property_change, Fprevious_single_property_change):
8062 Stay within the narrowed-buffer boundaries.
e2c3786a 8063
048addec 80642002-01-25 Eli Zaretskii <eliz@is.elta.co.il>
c513fc03 8065
048addec
JD
8066 * term.c (Ftty_display_color_cells): New function.
8067 (syms_of_term): Defsubr it.
8068 (Ftty_display_color_cells, Ftty_display_color_p): Change the
8069 argument name to DISPLAY. Doc fix.
bf794306 8070
048addec
JD
8071 * dispextern.h: Add prototype for set_tty_color_mode and
8072 tty_setup_colors.
bf794306 8073
048addec 80742002-01-24 Jason Rumney <jasonr@gnu.org>
bf794306 8075
048addec
JD
8076 * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
8077 If region left to draw is not what was expected, mark the frame as
8078 garbaged.
62582985 8079
048addec
JD
8080 * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
8081 Combine the regions returned by BeginPaint and GetUpdateRect.
c513fc03 8082
048addec 80832002-01-23 Jason Rumney <jasonr@gnu.org>
3509a04c 8084
048addec
JD
8085 * w32term.c (x_update_window_begin): Only hide caret if
8086 w32_use_visible_system_caret is set.
8087 (x_update_window_end): Only show caret if
8088 w32_use_visible_system_caret is set.
8089 (syms_of_w32term): Handle SystemParametersInfo call failing.
3509a04c 8090
048addec 8091 * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
3509a04c 8092
048addec 80932002-01-22 Richard M. Stallman <rms@gnu.org>
3509a04c 8094
048addec
JD
8095 * unexelf.c (unexec): Define n so as to cause compilation error
8096 for the code where people have often written n instead of nn.
1e9a6186 8097
048addec 8098 * .gdbinit (hookpost-run): Defined.
1e9a6186 8099
048addec 81002002-01-22 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
e4e34e31 8101
048addec 8102 * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
e4e34e31 8103
048addec 81042002-01-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
4521d1fc 8105
048addec
JD
8106 * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
8107 if fullscreen is being set.
7c75be36 8108
048addec 81092002-01-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4521d1fc 8110
048addec
JD
8111 * minibuf.c (Fminibuffer_contents)
8112 (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
8113 (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
4521d1fc 8114
048addec 81152002-01-21 Richard M. Stallman <rms@gnu.org>
4521d1fc 8116
048addec 8117 * window.c (check_frame_size): Fix minimum height calculation.
93dec019 8118
048addec 81192002-01-20 Ken Raeburn <raeburn@gnu.org>
93dec019 8120
048addec
JD
8121 * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
8122 height before comparison.
8123 (WINDOW_WANTS_HEADER_LINE_P): Likewise.
905cc05a 8124
048addec 81252002-01-20 Jason Rumney <jasonr@gnu.org>
2ed06289 8126
048addec
JD
8127 * w32term.c (w32_system_caret_width): Remove.
8128 (w32_use_visible_system_caret): New user flag.
8129 (syms_of_w32term): DEFVAR_BOOL it. Initialize based on whether
8130 Windows reports a screen reader running.
8131 (x_update_window_begin): Hide the system caret.
8132 (x_update_window_end): Show the system caret.
8133 (x_display_and_set_cursor): Don't draw a cursor when
8134 w32_use_visible_system_caret is set. Do not adjust width.
0e79d667 8135
048addec
JD
8136 * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
8137 (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
8138 <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
8139 the user requests it. Use system default width when creating.
8140 <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
0e79d667 8141
048addec
JD
8142 * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
8143 New window messages.
905cc05a 8144
048addec 81452002-01-20 Richard M. Stallman <rms@gnu.org>
82a7ab23 8146
048addec 8147 * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
d75bec6a 8148
048addec 81492002-01-20 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
52dcb476 8150
048addec 8151 * doprnt.c (doprnt1): Fix typos in error call.
82a7ab23 8152
048addec 81532002-01-20 Eli Zaretskii <eliz@is.elta.co.il>
82a7ab23 8154
048addec 8155 * unexelf.c (unexec) [__sgi]: Support the .got sections.
82a7ab23 8156
048addec 81572002-01-20 Jason Rumney <jasonr@gnu.org>
4d0fa4f3 8158
048addec
JD
8159 * w32term.c (w32_native_per_char_metric): Don't trust the metrics
8160 that Windows returns. If a double check fails, try to guess how
8161 ExtTextOut is going to act.
4d0fa4f3 8162
048addec
JD
8163 * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
8164 in place of stricmp.
8165 (w32_list_synthesized_fonts): Removed.
8166 (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
8167 (struct enumfont_t): New element; list.
8168 (enum_font_cb2): List all style and charset variations of a font.
8169 (Fw32_select_font): New optional argument; include_proportional.
8170 Exclude vertical fonts. Exclude proportional fonts unless
8171 include_proportional is non-nil.
8172 (w32_enable_synthesized_fonts): Change to a boolean.
8173 (Fw32_send_sys_command): Doc fix.
493faf20 8174
048addec 81752002-01-19 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
493faf20 8176
048addec
JD
8177 * dispnew.c (update_frame): Move the variable `tem' to the block
8178 where it is used.
4971e491 8179
048addec 81802002-01-19 Jason Rumney <jasonr@gnu.org>
4971e491 8181
048addec
JD
8182 * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
8183 call to face-set-after-frame-default.
4971e491 8184
048addec 81852002-01-18 Richard M. Stallman <rms@gnu.org>
d911a0fa 8186
048addec
JD
8187 * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
8188 (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
d911a0fa 8189
048addec 81902002-01-17 Richard M. Stallman <rms@gnu.org>
d911a0fa 8191
048addec
JD
8192 * window.c (enlarge_window): When exceeding size of parent,
8193 directly delete all the siblings instead of trying to resize it.
201c831a 8194
048addec 81952002-01-17 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
201c831a 8196
048addec 8197 * term.c (set_tty_color_mode): Remove unused variable `tem'.
201c831a 8198
048addec 81992002-01-16 Henrik Enberg <henrik@enberg.org>
34e39c95 8200
048addec 8201 * lread.c (init_lread): Move the installed-lisp dirs later in the path.
34e39c95 8202
048addec 82032002-01-16 Kim F. Storm <storm@cua.dk>
d77fbc16 8204
048addec
JD
8205 * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
8206 is invisible. This can happen if cursor is on top line of a
8207 window, and we switch to a buffer with a header line.
d77fbc16 8208
048addec 8209 * w32term.c (x_erase_phys_cursor): Ditto.
61e3b944 8210
048addec 82112002-01-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
61e3b944 8212
048addec
JD
8213 * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
8214 `dont_resize' only when used.
61e3b944 8215
048addec 8216 * xdisp.c: Remove forgotten extern declaration of `Qimage'.
70da46c3 8217
048addec 82182002-01-15 Eli Zaretskii <eliz@is.elta.co.il>
70da46c3 8219
048addec
JD
8220 * xdisp.c (display_mode_element): When computing charpos, depend
8221 on multibyteness of elt, not the text in field.
8af01033 8222
048addec 82232002-01-15 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8af01033 8224
048addec
JD
8225 * buffer.c (Fkill_all_local_variables):
8226 Increment `update_mode_lines' only once.
7363986a 8227
048addec 82282002-01-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
7363986a 8229
048addec
JD
8230 * lisp.h (adjust_after_replace_noundo)
8231 (Fupdate_coding_systems_internal): Add prototypes.
d9e6c4b1 8232
048addec 8233 * sound.c (Fplay_sound): Initialize header_size also for :data case.
d20fc48a 8234
048addec 82352002-01-14 Eli Zaretskii <eliz@is.elta.co.il>
d9e6c4b1 8236
048addec
JD
8237 Support for the --color command-line argument and tty-color-mode
8238 frame parameter:
f1a85b89 8239
048addec
JD
8240 * term.c (tty_default_color_capabilities, tty_setup_colors)
8241 (set_tty_color_mode): New functions.
8242 (term_init): Call tty_default_color_capabilities.
8243 (Qtty_color_mode_alist): New variable.
8244 (syms_of_term): Intern and staticpro it.
f1a85b89 8245
048addec
JD
8246 * frame.c (store_frame_param): Call set_tty_color_mode for termcap
8247 frames.
8248 (do_switch_frame): For termcap frames, switch the tty
8249 color mode as specified by the frame's parameters.
8250 (Qtty_color_mode): New variable.
8251 (syms_of_frame): Intern and staticpro it.
3a62677f 8252
048addec
JD
8253 * emacs.c (USAGE2): Add the --color option.
8254 (standard_args): Ditto.
72244db2 8255
048addec
JD
82562002-01-13 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
8257
8258 * xterm.h (struct x_output): New members want_fullscreen,
8259 x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
8260 y_pixels_outer_diff.
8261 New enum for FULLSCREEN_* constants.
8262 (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
8263 is NULL.
8264 (x_fullscreen_adjust): Add prototype.
3a62677f 8265
048addec
JD
8266 * emacs.c (USAGE2): Add the new full-screen arguments.
8267 (standard_args): Ditto.
3a62677f 8268
048addec
JD
8269 * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
8270 New variables.
8271 (syms_of_xfns): Intern and staticpro them.
8272 (x_frame_parms) <"fullscreen">: New parameter.
8273 (x_fullscreen_move, x_set_fullscreen): New functions.
8274 (x_set_frame_parameters): Support for Qfullscreen.
8275 (x_real_positions): More accurate computation of the frame position.
8276 (x_figure_window_size): Support full-screen frames.
8277 (Fx_create_frame): Default the fullscreen parameter.
3a62677f 8278
048addec
JD
8279 * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
8280 (XTread_socket) <Expose>: Call x_check_fullscreen.
8281 <ConfigureNotify>: Don't resize to fullscreen.
8282 Call x_check_fullscreen_move, and set the want_fullscreen member of
8283 output_data.x.
3a62677f 8284
048addec 82852002-01-13 Jason Rumney <jasonr@gnu.org>
9d113d9d 8286
048addec
JD
8287 * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
8288 for mice with more than 3 buttons.
b8523839 8289
048addec
JD
8290 * w32term.c (parse_button): New parameter xbutton. Callers changed.
8291 (w32_read_socket): Handle new "XBUTTON" messages.
9464dea4 8292
048addec
JD
8293 * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
8294 (syms_of_w32fns): DEFVAR_BOOL it.
8295 (w32_wnd_proc): Handle new "XBUTTON" messages.
9d113d9d 8296
048addec 82972002-01-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
70ec1377 8298
048addec 8299 * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
70ec1377 8300
048addec 83012002-01-13 Andreas Schwab <schwab@suse.de>
92f7dd37 8302
048addec 8303 * xterm.c (x_load_font): Never set fonts_changed_p to zero.
92f7dd37 8304
048addec 83052002-01-12 Andreas Schwab <schwab@suse.de>
c93674bb 8306
048addec
JD
8307 * .gdbinit (xbuffer): Remove address operator since data is now a
8308 pointer.
c93674bb 8309
048addec 83102002-01-11 Richard M. Stallman <rms@gnu.org>
59b59892 8311
048addec 8312 * insdel.c (adjust_after_replace_noundo): New function.
59b59892 8313
048addec 8314 * coding.c (code_convert_region): Don't copy old text if undo disabled.
c6ea2775 8315
048addec 83162002-01-09 Jason Rumney <jasonr@gnu.org>
c6ea2775 8317
048addec
JD
8318 * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
8319 when checking for multiple frames.
91175673 8320
048addec 83212002-01-08 Richard M. Stallman <rms@gnu.org>
91175673 8322
048addec
JD
8323 * window.c (delete_window): Rewrite the code for changing the
8324 selected window to handle the case where WINDOW is not a leaf.
91175673 8325
048addec 83262002-01-07 Eli Zaretskii <eliz@is.elta.co.il>
e0fead5d 8327
048addec
JD
8328 * process.c (send_process): Set src_multibyte to 1 after the call
8329 top setup_coding_system, not before the call.
e0fead5d 8330
048addec 83312002-01-07 Jason Rumney <jasonr@gnu.org>
e0fead5d 8332
048addec
JD
8333 * xmenu.c (set_frame_menubar, xmenu_show):
8334 (xdialog_show): Initialize wv->help to Qnil.
c186cdb3 8335
048addec
JD
8336 * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
8337 (w32_dialog_show): Initialize wv->help to Qnil.
c186cdb3 8338
048addec 83392002-01-06 Jason Rumney <jasonr@gnu.org>
c186cdb3 8340
048addec 8341 * xmenu.c (single_submenu): Initialize wv->help to Qnil.
c186cdb3 8342
048addec 8343 * w32menu.c (w32_menu_display_help): Revert last change.
58cfce98 8344
048addec 8345 * xmenu.c (menu_highlight_callback): Revert last change.
58cfce98 8346
048addec 83472002-01-06 Andreas Schwab <schwab@suse.de>
62854fe2 8348
048addec
JD
8349 * insdel.c (make_gap_larger): Make sure buffer size does not
8350 overflow range of int.
62854fe2 8351
048addec 83522002-01-05 Jason Rumney <jasonr@gnu.org>
656f46bb 8353
048addec
JD
8354 * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
8355 OVERLAPS_P.
656f46bb 8356
048addec 8357 * w32menu.c (w32_menu_display_help): Hide any tooltip window.
656f46bb 8358
048addec
JD
8359 * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
8360 to the left or to the right of the pointer, put it against
8361 the left screen edge.
8362 (x_frame_parms): Add missing braces around initializer.
036e218d 8363
048addec
JD
8364 * w32term.c (x_setup_relief_colors): Don't compute an image's
8365 background color if it doesn't have a Pixmap.
8366 (notice_overwritten_cursor): Don't depend on
8367 output_cursor and updated_area. Compare pixel coordinates with
8368 window's cursor pixel coordinates.
8369 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
8370 Call notice_overwritten_cursor with new arg list.
8371 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
8372 unconditionally.
8373 (x_draw_image_relief): Use predefined macro instead of
8374 constant when the value of `tool_bar_button_relief' is negative.
036e218d 8375
048addec 8376 * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
7ddb2c16 8377
048addec 83782002-01-04 Richard M. Stallman <rms@gnu.org>
7ddb2c16 8379
048addec 8380 * xmenu.c (menu_highlight_callback): Hide any tooltip window.
ace9b298 8381
048addec 83822002-01-03 Richard M. Stallman <rms@gnu.org>
90647b07 8383
048addec
JD
8384 * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
8385 (Fkey_binding): Try the `keymap' property map first.
8386 (Fdescribe_buffer_bindings): Show `keymap' property bindings before
8387 minor mode bindings.
90647b07 8388
048addec 83892002-01-03 Kim F. Storm <storm@cua.dk>
ace9b298 8390
048addec 8391 * keyboard.c (read_key_sequence): Fixed cast of submaps arg to bcopy.
ace9b298 8392
048addec 83932002-01-02 Richard M. Stallman <rms@gnu.org>
ace9b298 8394
048addec
JD
8395 * keyboard.c (read_key_sequence): Handle the keymap property
8396 before minor mode maps.
9fbc32aa 8397
048addec
JD
8398 * editfns.c (Fformat): Update thissize from field_width
8399 based on the actual width, in the string case.
036e218d 8400
048addec 84012002-01-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9fbc32aa 8402
048addec
JD
8403 * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
8404 when used as truth value to prevent gcc warnings.
9fbc32aa 8405
048addec
JD
8406 * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
8407 * w32proc.c: Include <config.h>.
9fbc32aa 8408
048addec 84092002-01-01 Andreas Schwab <schwab@suse.de>
9fbc32aa 8410
048addec
JD
8411 * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
8412 not EMACS_INT, to make them compatible with DEFVAR_INT.
8413 * lisp.h (max_specpdl_size): Adjust declaration.
9fbc32aa 8414
048addec 84152002-01-01 Richard M. Stallman <rms@gnu.org>
9fbc32aa 8416
048addec
JD
8417 * print.c (print_object): Test print_escape_nonascii only for
8418 unibyte strings.
8419 (PRINTPREPARE): Once again bind Qprint_escape_nonascii
8420 when outputting to a multibyte buffer.
9fbc32aa 8421
048addec 84222001-12-29 Richard M. Stallman <rms@gnu.org>
9fbc32aa 8423
048addec
JD
8424 * print.c (print_object): In multibyte string, use hex escapes.
8425 Use octal only for unibyte strings.
8426 (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
0142178a 8427
048addec
JD
8428 * lread.c (read_escape): New arg BYTEREP for reporting whether
8429 escape forces unibyte or multibyte.
8430 (read1): When reading a string, take note of that info.
0142178a 8431
048addec 84322001-12-29 Ken Raeburn <raeburn@gnu.org>
d4824a5d 8433
048addec
JD
8434 * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
8435 comparison to test lisp value returned by Fget.
d4824a5d 8436
048addec 84372001-12-29 Richard M. Stallman <rms@gnu.org>
b1356234 8438
048addec 8439 * lisp.h (max_specpdl_size): Add declaration.
b1356234 8440
048addec 8441 * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
3ce081f5 8442
048addec
JD
8443 * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
8444 Handle modifier bits. Correct typo in error message.
99e380ee 8445
048addec 84462001-12-28 Richard M. Stallman <rms@gnu.org>
3ce081f5 8447
048addec
JD
8448 * abbrev.c: Use the plist of an abbrev for multiple params if nec.
8449 (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
8450 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
8451 Update calls to Fdefine_abbrev.
8452 (write_abbrev): Update for changed data format.
8453 Don't list "system" abbrevs.
8454 (Fexpand_abbrev): Update use count with new data format.
8455 (describe_abbrev): Update for changed data format.
8456 (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
66458f32 8457
048addec 8458 * config.in (HAVE_MBSINIT): Add #undef.
66458f32 8459
048addec 8460 * strftime.c (mbsinit): Define as no-op if not available.
66458f32 8461
048addec
JD
8462 * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
8463 (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
59a86c99 8464
048addec
JD
8465 * keymap.c (Flookup_key): Error message if key has wrong data type.
8466 (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
8467 (exclude_key): New variable.
59a86c99 8468
048addec 84692001-12-28 Gerd Moellmann <gerd@gnu.org>
eb77a5f4 8470
048addec
JD
8471 * xterm.c (x_setup_relief_colors): Don't compute an image's
8472 background color if it doesn't have a Pixmap.
eb77a5f4 8473
048addec
JD
8474 * xterm.c (notice_overwritten_cursor): Don't depend on
8475 output_cursor and updated_area. Compare pixel coordinates with
8476 window's cursor pixel coordinates.
8477 (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
8478 Call notice_overwritten_cursor with new arg list.
8479 (show_mouse_face): Fix bug setting a row's mouse_face_p flag
8480 unconditionally.
eb77a5f4 8481
048addec
JD
8482 * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
8483 height of the cursor line to the amount to scroll.
eb77a5f4 8484
048addec 84852001-12-27 Richard M. Stallman <rms@gnu.org>
bb313871 8486
048addec
JD
8487 * intervals.c (set_point_both): The position after an invisible,
8488 intangible character is not an acceptable stopping point.
bb313871 8489
048addec 84902001-12-27 Ken Raeburn <raeburn@gnu.org>
55b43a63 8491
048addec
JD
8492 * window.c (enlarge_window): In new preserve_before code, convert
8493 CURBEG from lisp object to integer before doing arithmetic.
6052529b 8494
048addec 84952001-12-27 Richard M. Stallman <rms@gnu.org>
3ce081f5 8496
048addec 8497 * bytecode.c (Fbyte_code): Undo previous change.
3ce081f5 8498
048addec 84992001-12-26 Kim F. Storm <storm@cua.dk>
3ce081f5 8500
048addec
JD
8501 * keyboard.c (record_char): Ignore duplicate help-echo events only
8502 separated by mouse-movement. When tracking mouse, only record
8503 first and last mouse-movement event in same window.
8504 Don't record mouse-movement events in keyboard macros.
3ce081f5 8505
048addec 85062001-12-25 Richard M. Stallman <rms@gnu.org>
55b43a63 8507
048addec
JD
8508 * window.c (enlarge_window): New arg PRESERVE_BEFORE. Callers changed.
8509 (Fenlarge_window): New arg PRESERVE_BEFORE.
111ed14e 8510
048addec
JD
8511 * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
8512 instead of Fstring_as_unibyte.
9fabb2f5 8513
048addec 85142001-12-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9fabb2f5 8515
048addec 8516 The following changes remove mocklisp support:
9fabb2f5 8517
048addec 8518 * mocklisp.h, mocklisp.c: Files removed.
111ed14e 8519
048addec
JD
8520 * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
8521 `Qmocklisp' and `Qmocklisp_arguments'.
8522 Remove prototype of syms_of_mocklisp.
2fa0eedf 8523
048addec 8524 * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
d1420435 8525
048addec
JD
8526 * callint.c: Do not include mocklisp.h.
8527 (Fcall_interactively): Do not test for mocklisp case.
2fa0eedf 8528
048addec
JD
8529 * eval.c: Remove variables `Qmocklisp_arguments',
8530 `Vmocklisp_arguments' and `Qmocklisp'. Remove prototype of ml_apply.
8531 (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
8532 Do not test for mocklisp case.
8533 (Fwhile): Remove unused variable `tem'.
8534 (syms_of_eval): Remove variable `moclisp-arguments'.
ebcbef4e 8535
048addec 8536 * data.c (wrong_type_argument): Remove mocklisp case.
5c131048 8537
048addec 8538 * doc.c (Fdocumentation): Remove mocklisp case.
5c131048 8539
048addec 8540 * emacs.c (main): Do not call syms_of_mocklisp.
5c131048 8541
048addec 85422001-12-21 Richard M. Stallman <rms@gnu.org>
96d276c3 8543
048addec
JD
8544 * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
8545 to the left or to the right of the pointer, put it against
8546 the left screen edge.
6108b49c 8547
048addec 85482001-12-21 Eli Zaretskii <eliz@is.elta.co.il>
96d276c3 8549
048addec
JD
8550 * Makefile.in (distclean): Remove .gdbinit if we are building
8551 outside the source tree.
5eea19a4 8552
048addec 85532001-12-19 Eli Zaretskii <eliz@is.elta.co.il>
5eea19a4 8554
048addec 8555 * w32.c (emacs_root_dir): New function.
5eea19a4 8556
048addec 8557 * msdos.c (emacs_root_dir): New function.
5eea19a4 8558
048addec
JD
8559 * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
8560 of the current drive as the fallback for default_directory.
438e57dd 8561
048addec
JD
8562 * dired.c (file_name_completion): Run the elements of
8563 completion-ignored-extensions through ENCODE_FILE.
438e57dd 8564
048addec
JD
8565 * lisp.h (scmp): Remove prototype, since it's now a static
8566 function private to dired.c.
c88e5347 8567
048addec 85682001-12-18 Richard M. Stallman <rms@gnu.org>
c88e5347 8569
048addec
JD
8570 * dired.c (scmp): Function moved from minibuf.c.
8571 Delete multibyte handling--used only on encoded strings.
59ce1461 8572
048addec 8573 * minibuf.c (scmp): Function moved to dired.c.
59ce1461 8574
048addec 8575 * fns.c (merge): Add QUIT call.
59ce1461 8576
048addec 85772001-12-18 Dave Love <fx@gnu.org>
8727d588 8578
048addec
JD
8579 * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
8580 language/georgian.el.
8727d588 8581
048addec 85822001-12-18 Eli Zaretskii <eliz@is.elta.co.il>
cc63037e 8583
048addec
JD
8584 * Makefile.in (lisp, shortlisp): Synchronize with changes to
8585 lisp/Makefile.in:DONTCOMPILE.
cc63037e 8586
048addec 85872001-12-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
cc63037e 8588
048addec
JD
8589 * xdisp.c (window_box_height): Do not return negative values.
8590 From Gerd Moellmann <gerd@gnu.org>.
cc63037e 8591
048addec 8592 * keyboard.c (head_table): Add missing braces around initializer.
cc63037e 8593
048addec 8594 * term.c (keys): Likewise.
deece6f5 8595
048addec 8596 * xfns.c (x_frame_parms, visual_classes): Likewise.
deece6f5 8597
048addec 85982001-12-17 Sam Steingold <sds@gnu.org>
1b944d9c 8599
048addec
JD
8600 * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
8601 patch (COMPOSING_P, not COMPOSING).
28ff4293 8602
048addec 86032001-12-17 Richard M. Stallman <rms@gnu.org>
a395ef6a 8604
048addec 8605 * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
a395ef6a 8606
048addec
JD
8607 * coding.c (code_convert_region): Update coding->cmp_data->char_offset
8608 before calling decode_coding.
9b46de40 8609
048addec 8610 * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
9b46de40 8611
048addec
JD
8612 * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
8613 instead of only for COMPOSITION_DISABLED.
9b46de40 8614
048addec 86152001-12-16 Richard M. Stallman <rms@gnu.org>
aff37336 8616
048addec 8617 * alloc.c (pure_alloc): After overflow, allocate just a small block.
aff37336 8618
048addec 8619 * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
b9937f07 8620
048addec
JD
8621 * buffer.h (struct buffer): New field `display_error_modiff'.
8622 * buffer.c (reset_buffer): Initialize `display_error_modiff'.
b9937f07 8623
048addec 8624 * window.c (Frecenter): Clear display_error_modiff field.
2cd23960 8625
048addec
JD
8626 * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
8627 Call redisplay_window, but not if display_error_modiff field says no.
8628 (redisplay_window_error): New function.
8629 (displayed_buffer): New variable.
8630 (redisplay_internal, redisplay_windows): Call the new functions
8631 instead of redisplay_window directly.
2cd23960 8632
048addec 86332001-12-15 Richard M. Stallman <rms@gnu.org>
2cd23960 8634
048addec 8635 * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
2cd23960 8636
048addec 86372001-12-14 Andrew Innes <andrewi@gnu.org>
a4184c1c 8638
048addec
JD
8639 * makefile.w32-in (EMACSLOADPATH): Define.
8640 ($(EMACS)): Run `list-load-path-shadows' after dumping emacs.
8641 (bootstrap-temacs): Remove dependency on bootstrap-clean.
a4184c1c 8642
048addec 86432001-12-13 Eli Zaretskii <eliz@is.elta.co.il>
f6fa0866 8644
048addec
JD
8645 * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
8646 parameter have a numeric value all the time.
f6fa0866 8647
048addec 8648 * w32fns.c (x_report_frame_params): Likewise.
f4ca4b00 8649
048addec 86502001-12-12 Richard M. Stallman <rms@gnu.org>
f4ca4b00 8651
048addec 8652 * fileio.c (Fwrite_region): Doc fix.
f4e25f94 8653
048addec
JD
8654 * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
8655 (redisplay_internal): Call clear_image_cache only for window terminals.
f4e25f94 8656
048addec 86572001-12-12 Gerd Moellmann <gerd@gnu.org>
91c153e2 8658
048addec
JD
8659 * xdisp.c (move_it_vertically_backward): Change heuristic
8660 for the case that we didn't move far enough initially.
91c153e2 8661
048addec
JD
8662 * window.c (Frecenter): Simplify computation in the case of window
8663 system frames and ARG < 0; use window_box_height.
65b7d3e7 8664
048addec 86652001-12-11 Richard M. Stallman <rms@gnu.org>
65b7d3e7 8666
048addec
JD
8667 * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
8668 * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
6b5f6311 8669
048addec 86702001-12-11 Andrew Innes <andrewi@gnu.org>
6b5f6311 8671
048addec
JD
8672 * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
8673 arg is negative.
be676094 8674
048addec 86752001-12-11 Richard M. Stallman <rms@gnu.org>
be676094 8676
048addec
JD
8677 * m/hp800.h: Split the __hpux conditional into the parts
8678 that are right for GNU/Linux too and the parts that are not.
8679 Use the former if GNU_LINUX.
8680 (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
032a857d 8681
048addec 8682 * s/gnu-linux.h (GNU_LINUX): Defined.
032a857d 8683
048addec 86842001-12-11 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
032a857d 8685
048addec
JD
8686 * macros.c, msdos.c, w16select.c: Change doc-string comments to
8687 `new style' [w/`doc:' keyword].
032a857d 8688
048addec 86892001-12-10 Jason Rumney <jasonr@gnu.org>
b6270150 8690
048addec
JD
8691 * w32menu.c (w32_free_submenu_strings): Clear menu item struct
8692 before using.
b6270150 8693
048addec 86942001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
792e5cbd 8695
048addec
JD
8696 * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
8697 keyword].
98cbb9fa 8698
048addec 86992001-12-09 Eli Zaretskii <eliz@is.elta.co.il>
98cbb9fa 8700
048addec 8701 * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
98cbb9fa 8702
048addec 8703 * s/hpux10.h (srand48): Don't undefine.
98cbb9fa 8704
048addec 87052001-12-09 Jason Rumney <jasonr@gnu.org>
792e5cbd 8706
048addec
JD
8707 * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
8708 Add comment to explain where the struct came from.
8709 (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
8710 (add_menu_item): Process pop-up menus first to avoid memory leak.
8711 (add_menu_item, w32_menu_display_help): Use `help' field as
8712 Lisp_Object.
8713 (w32_free_submenu_strings): Only free owner-drawn strings.
fa336b91 8714
048addec 87152001-12-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
fa336b91 8716
048addec 8717 * COPYING: Moved back.
fa336b91 8718
048addec
JD
8719 * charset.c (char_to_string_1, translate_char, Fdefine_charset):
8720 Add parentheses around && within ||.
077907d4 8721
048addec 8722 * indent.c (compute_motion): Likewise.
aa2af83a 8723
048addec 8724 * intervals.c (merge_properties_sticky): Likewise.
60a653f1 8725
048addec
JD
8726 * coding.c (setup_coding_system, shrink_encoding_region)
8727 (Fdecode_sjis_char): Likewise.
60a653f1 8728
048addec 87292001-12-07 Andreas Schwab <schwab@suse.de>
60a653f1 8730
048addec
JD
8731 * xdisp.c (display_mode_element): Don't read past end of string if
8732 it ends with '%'.
60a653f1 8733
048addec
JD
8734 * alloc.c (inhibit_garbage_collection): Don't exceed value an int
8735 can hold.
60a653f1 8736
048addec
JD
8737 * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum):
8738 Rename from most_positive_fixnum and most_negative_fixnum, resp., and
8739 type changed to Lisp_Object.
8740 (syms_of_data): DEFVAR_LISP them.
60a653f1 8741
048addec 87422001-12-07 Richard M. Stallman <rms@gnu.org>
60a653f1 8743
048addec
JD
8744 * callproc.c (init_callproc): Set Vdata_directory based on the source
8745 location whenever Emacs was run uninstalled.
60a653f1 8746
048addec 87472001-12-06 Paul Eggert <eggert@twinsun.com>
60a653f1 8748
048addec
JD
8749 * config.in (HAVE_WORKING_VFORK): New #undefs.
8750 * process.c (create_process):
8751 Use HAVE_WORKING_VFORK, not HAVE_VFORK.
8752 * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
8753 * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
8754 * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
8755 * m/intel386.h (HAVE_VFORK): Likewise.
8756 * m/mips-siemens.h (HAVE_VFORK): Likewise.
8757 * m/mips.h (HAVE_VFORK): Likewise.
8758 * s/freebsd.h (vfork): Remove #define.
8759 * s/lynxos.h (HAVE_VFORK): Remove #undef.
8760 * s/usg5-4-2.h: Fix comment about vfork.
60a653f1 8761
048addec 87622001-12-06 Richard M. Stallman <rms@gnu.org>
60a653f1 8763
048addec
JD
8764 * s/hpux10.h (random): Add undef.
8765 (HAVE_RANDOM): Define it just once.
60a653f1 8766
048addec 87672001-12-06 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 8768
048addec 8769 * eval.c: Undo last change: the standard syntax is not wanted.
60a653f1 8770
048addec 87712001-12-06 Eli Zaretskii <eliz@is.elta.co.il>
60a653f1 8772
048addec
JD
8773 * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
8774 scroll bars of the frame before deleting the frame itself. If the
8775 frame has a widget, delete the frame with XtDestroyWidget, and do
8776 not call XDestroyWindow before that.
60a653f1 8777
048addec 87782001-12-06 Kim F. Storm <storm@cua.dk>
60a653f1 8779
048addec 8780 * xfns.c (x_report_frame_params): Return actual fringe widths.
60a653f1 8781
048addec 8782 * w32fns.c (x_report_frame_params): Return actual fringe widths.
60a653f1 8783
048addec 87842001-12-05 Andrew Innes <andrewi@gnu.org>
60a653f1 8785
048addec
JD
8786 * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
8787 excessively large.
60a653f1 8788
048addec
JD
8789 * insdel.c (make_gap_larger): New function.
8790 (make_gap_smaller): New function.
8791 (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]:
8792 Call make_gap_smaller if arg is negative.
60a653f1 8793
048addec 87942001-12-04 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 8795
048addec
JD
8796 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
8797 Pass a dummy argument when calling interrupt_signal.
8798 (parse_menu_item): Mark disabled items before checking for empty def.
8799 (read_char_minibuf_menu_prompt): Make safety more visible.
8800 (read_key_sequence): Add a `first_unbound' variable.
8801 Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
8802 unbound prefix as soon as we can detect it.
60a653f1 8803
048addec
JD
8804 * doc.c (Fsnarf_documentation): Add prototype.
8805 (get_doc_string): Handle negative arguments.
8806 (Fdocumentation): Use AREF and ASIZE.
8807 Move the calls to get_doc_string to a single place.
8808 Don't confuse an interactive-spec for a docstring reference.
8809 (Fdocumentation_property): Take advantage of the fact that
8810 get_doc_string now ignores the sign of the docstring position.
60a653f1 8811
048addec 8812 * eval.c: Use standard syntax for usage in docstrings.
60a653f1 8813
048addec 88142001-12-03 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 8815
048addec 8816 * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief` an option.
60a653f1 8817
048addec 88182001-12-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 8819
048addec
JD
8820 * xterm.c (x_draw_image_relief): Use predefined macro instead of
8821 constant when the value of `tool_bar_button_relief' is negative.
60a653f1 8822
048addec 88232001-12-02 Richard M. Stallman <rms@gnu.org>
60a653f1 8824
048addec
JD
8825 * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
8826 (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
60a653f1 8827
048addec 8828 * fileio.c (read_non_regular): Delete Fsignal call.
60a653f1 8829
048addec 88302001-12-01 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 8831
048addec 8832 * lisp.h (run_hook_list_with_args): Undo last change.
60a653f1 8833
048addec 88342001-12-01 Gerd Moellmann <gerd@gnu.org>
60a653f1 8835
048addec 8836 * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
60a653f1 8837
048addec 88382001-12-01 Jason Rumney <jasonr@gnu.org>
60a653f1 8839
048addec 8840 * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
60a653f1 8841
048addec
JD
8842 * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
8843 [!WM_MOUSELEAVE]: Define.
60a653f1 8844
048addec
JD
8845 * w32menu.c (current_popup_menu, get_menu_item_info):
8846 (set_menu_item_info): New vars.
8847 (set_frame_menubar): Doc fix clarifying GC interaction with menus.
8848 (w32_menu_show): Set current_popup_menu.
8849 (add_menu_item): Allocate new strings for owner-drawn menu items
8850 and help strings.
8851 Use owner-draw for disabled menu items again.
8852 (w32_menu_display_help): Ignore owner-drawn items and popup menus.
8853 (w32_free_submenu_strings, w32_free_menu_strings): New functions.
60a653f1 8854
048addec
JD
8855 * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
8856 (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
8857 <WM_EXITMENULOOP>: Free menu strings.
8858 <WM_MOUSELEAVE>: Stop tracking mouse.
8859 (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
60a653f1 8860
048addec
JD
8861 * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
8862 and mouse face.
60a653f1 8863
048addec 88642001-12-01 Kim F. Storm <storm@cua.dk>
60a653f1 8865
048addec
JD
8866 The following changes add left-fringe and right-fringe
8867 frame parameters to adjust fringe widths, or remove one or
8868 both fringes.
60a653f1 8869
048addec
JD
8870 * frame.h (struct frame): Remove trunc_area_pixel_width and
8871 trunc_area_cols fields.
8872 (Qleft_fringe, Qright_fringe): Declare.
8873 (FRAME_RIGHT_FRINGE_WIDTH): New macro.
60a653f1 8874
048addec
JD
8875 * frame.c (Qleft_fringe, Qright_fringe): New vars.
8876 (syms_of_frame): Initialize them.
60a653f1 8877
048addec
JD
8878 * window.c (coordinates_in_window): Handle separate left and right
8879 fringe widths.
60a653f1 8880
048addec
JD
8881 * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
8882 and fringe_cols fields.
8883 (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
8884 (FRAME_X_FRINGE_COLS): Use fringe_cols field.
8885 (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
8886 (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
8887 (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
8888 (x_compute_fringe_widths): Add prototype.
60a653f1 8889
048addec
JD
8890 * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
8891 fill fringe evenly with small dashes.
8892 (x_draw_fringe_bitmap): Clear background if necessary. Align and
8893 clip the new ZV bitmap to avoid jitter between rows.
8894 (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
8895 background. Don't draw fringe bitmaps if fringe width is zero.
8896 (x_compute_fringe_widths): New function.
8897 (x_new_font, x_set_window_size_1): Use it.
60a653f1 8898
048addec
JD
8899 * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
8900 (x_set_frame_parameters): Process `font' parameter before other
8901 parameters as fringe widths depend on it.
8902 (x_set_fringe_width): New function.
8903 (x_figure_window_size): Use x_compute_fringe_widths.
8904 (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
8905 parameters.
60a653f1 8906
048addec
JD
8907 * widget.c (set_frame_size): Use x_compute_fringe_widths.
8908 (EmacsFrameSetCharSize): Ditto.
60a653f1 8909
048addec
JD
8910 * w32term.h: Merged changes from xterm.h.
8911 * w32term.c: Merged changes from xterm.c.
8912 * w32fns.c: Merged changes from xfns.c.
60a653f1 8913
048addec 89142001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 8915
048addec 8916 * COPYING: Removed.
60a653f1 8917
048addec 89182001-11-29 Dave Love <fx@gnu.org>
60a653f1 8919
048addec
JD
8920 * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
8921 extra extra slot.
8922 (detect_coding_mask): Fix call of detect_coding_iso2022.
60a653f1 8923
048addec 89242001-11-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 8925
048addec
JD
8926 * fileio.c (file-name-coding-system)
8927 (default-file-name-coding-system): Doc fix (links to referenced
8928 variables added).
60a653f1 8929
048addec 89302001-11-28 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 8931
048addec
JD
8932 * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
8933 Add dummy uses of gcproN variables.
60a653f1 8934
048addec
JD
8935 * category.c (describe_category, describe_category_1)
8936 (Fdescribe_categories): Remove. (Moved to lisp/help-fns.el.)
8937 (syms_of_category): Don't defsubr Sdescribe_categories.
60a653f1 8938
048addec 89392001-11-28 Richard M. Stallman <rms@gnu.org>
60a653f1 8940
048addec 8941 * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
60a653f1 8942
048addec
JD
8943 * Makefile.in (lispdir): New variable, referring to build dir.
8944 (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
60a653f1 8945
048addec 89462001-11-28 Andrew Innes <andrewi@gnu.org>
60a653f1 8947
048addec
JD
8948 * w32menu.c (w32_menu_display_help): Actually add the new argument
8949 OWNER.
60a653f1 8950
048addec 89512001-11-28 Jason Rumney <jasonr@gnu.org>
60a653f1 8952
048addec
JD
8953 * w32menu.c (add_menu_item): Do not use owner-draw for disabled
8954 menu items. From David Ponce <dponce@wanadoo.fr>.
8955 (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
8956 conditionally.
8957 (w32_menu_display_help): New argument OWNER. Rewritten to store a
8958 help event in the owner frame's keyboard buffer.
60a653f1 8959
048addec
JD
8960 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
8961 (Fx_show_tip): Don't subtract last width from row width.
8962
8963 * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
8964 (w32_read_socket): Use EQ to compare frames.
60a653f1 8965
048addec 89662001-11-28 Gerd Moellmann <gerd@gnu.org>
60a653f1 8967
048addec
JD
8968 * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
8969 OVERLAPS_P.
60a653f1 8970
048addec 89712001-11-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 8972
048addec
JD
8973 * xdisp.c (message_dolog): Remove unused variables `gcpro2',
8974 `gcpro3' and `gcpro4'.
60a653f1 8975
048addec 8976 * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
60a653f1 8977
048addec 89782001-11-28 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 8979
048addec 8980 * ccl.c: Use AREF and ASIZE.
60a653f1 8981
048addec 89822001-11-27 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 8983
048addec
JD
8984 * lisp.h (run_hook_list_with_args): Remove.
8985 (LIST_END_P): Fix call to wrong_type_argument.
8986 (make_fixnum_or_float): Use EMACS_INT rather than int.
60a653f1 8987
048addec 89882001-11-26 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 8989
048addec
JD
8990 * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
8991 (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
60a653f1 8992
048addec
JD
8993 * eval.c: Use AREF and ASIZE.
8994 (Ffetch_bytecode): Add the file name to the error message.
60a653f1 8995
048addec
JD
8996 * fileio.c (Ffind_file_name_handler): Give precedence to handlers
8997 which match the end of the file-name.
8998 (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
8999 is not a valid env var, but leave it as is instead.
60a653f1 9000
048addec
JD
9001 * keymap.c (access_keymap): Handle t bindings like nil bindings.
9002 Make nil bindings in char-tables transparent.
9003 (store_in_keymap): Turn a nil binding into a t binding for char-tables.
60a653f1 9004
048addec 90052001-11-26 Richard M. Stallman <rms@gnu.org>
60a653f1 9006
048addec
JD
9007 * textprop.c (set_text_properties_1): Allow START, END in either order.
9008 Do nothing if range is empty.
60a653f1 9009
048addec 9010 * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
60a653f1 9011
048addec
JD
9012 * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
9013 (clean): Not here.
60a653f1 9014
048addec 90152001-11-25 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 9016
048addec
JD
9017 * textprop.c (set_text_properties_1): Clearly mark that the
9018 interval should not be empty.
60a653f1 9019
048addec
JD
9020 * intervals.c (graft_intervals_into_buffer):
9021 Don't call set_text_properties_1 on an empty interval.
60a653f1 9022
048addec 90232001-11-25 Richard M. Stallman <rms@gnu.org>
60a653f1 9024
048addec 9025 * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
60a653f1 9026
048addec
JD
9027 * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
9028 don't lose the data in it.
60a653f1 9029
048addec 90302001-11-25 Juanma Barranquero <lektu@terra.es>
60a653f1 9031
048addec 9032 * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
60a653f1 9033
048addec 9034 * buffer.c (Fkill_buffer): Use Frun_hooks, not Vrun_hooks.
60a653f1 9035
048addec 9036 * print.c (temp_output_buffer_setup): Use Frun_hooks, not Vrun_hooks.
60a653f1 9037
048addec 90382001-11-25 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 9039
048addec 9040 * xfaces.c (merge_face_heights): Coerce back to int explicitly.
60a653f1 9041
048addec 90422001-11-25 Eli Zaretskii <eliz@is.elta.co.il>
60a653f1 9043
048addec
JD
9044 * window.c (Fset_window_vscroll): Doc fix. From Kalle Olavi
9045 Niemitalo <kon@iki.fi>.
60a653f1 9046
048addec 90472001-11-25 Jason Rumney <jasonr@gnu.org>
60a653f1 9048
048addec 9049 * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
60a653f1 9050
048addec
JD
9051 * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
9052 (Fx_show_tip): Block input during frame creation.
9053 (Fx_show_tip, Fx_hide_tip): Enable.
60a653f1 9054
048addec 90552001-11-24 Richard M. Stallman <rms@gnu.org>
60a653f1 9056
048addec
JD
9057 * lread.c (Fload): Detect recursive load error for more than 3
9058 nestings of the same file.
9059 (Vrecursive_load_depth_limit): Variable deleted.
9060 (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
60a653f1 9061
048addec 90622001-11-24 Jason Rumney <jasonr@gnu.org>
60a653f1 9063
048addec
JD
9064 * xfns.c (compute_tip_xy): Initialize root_x and root_y from
9065 mouse position if either left or top is not specified.
60a653f1 9066
048addec
JD
9067 * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
9068 <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
9069 (my_create_tip_window, Fx_show_tip): Adjust size for external border.
9070 (my_create_tip_window): Assign tip_window.
9071 (x_create_tip_frame): Use same defaults as X.
9072 (compute_tip_xy): Remove unused variable. Use full screen width.
9073 (Fx_show_tip): Do not double height. Call ShowWindow directly.
60a653f1 9074
048addec
JD
9075 * w32term.c (x_after_update_window_line): Doc fix.
9076 (w32_read_socket): Doc fix. Avoid SET_FRAME_GARBAGED for tip
9077 frames.
9078 <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
60a653f1 9079
048addec
JD
9080 * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
9081 for all Windowed systems.
60a653f1 9082
048addec 90832001-11-23 Eli Zaretskii <eliz@is.elta.co.il>
60a653f1 9084
048addec
JD
9085 * msdos.c (IT_clear_screen): If the frame's faces are not yet
9086 realized, use the initial screen colors to clear the screen.
60a653f1 9087
048addec 90882001-11-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 9089
048addec
JD
9090 * textprop.c (Fset_text_properties): Remove unused variables
9091 `unchanged', `prev_changed', `s' and `len'.
60a653f1 9092
048addec
JD
9093 * search.c (Freplace_match): Remove unused variable `inslen'.
9094
9095 * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
9096
90972001-11-22 Jason Rumney <jasonr@gnu.org>
9098
9099 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
9100 (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
9101 (my_create_tip_window): New function.
9102 (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
9103 (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
9104
91052001-11-20 Jason Rumney <jasonr@gnu.org>
9106
9107 * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
9108 (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
9109
9110 * w32fns.c (Vw32_system_coding_system): Remove.
9111 (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
9112
91132001-11-19 Stefan Monnier <monnier@cs.yale.edu>
9114
9115 * fileio.c (Fwrite_region): Move choose_write_coding_system to
9116 after build_annotations.
9117
9118 * syntax.c (describe_syntax): Add dummy arg.
9119 (describe_syntax_1): Update call to describe_vector.
9120
9121 * category.c (describe_category): Add dummy arg.
9122 (describe_category_1): Update call to describe_vector.
9123
9124 * keymap.c (Fdescribe_vector): Add `describer' parameter.
9125 (describe_command, describe_translation): Add dummy second param.
9126 (describe_map): Call elt_describer with two arguments.
9127 (describe_vector_princ): Add `fun' parameter.
9128 Call it instead of the hardcoded `princ'.
9129 (describe_vector): Add arg `args'.
9130 Pass it as a new second argument to elt_describer.
60a653f1 9131
048addec 9132 * keymap.h (describe_vector): Update prototype.
60a653f1 9133
048addec
JD
9134 * frame.c: Don't include keymap.h any more.
9135 (keys_of_frame): Remove.
60a653f1 9136
048addec 9137 * lisp.h (keys_of_frame): Remove declaration.
60a653f1 9138
048addec 9139 * emacs.c (main): Don't call `keys_of_frame' any more.
60a653f1 9140
048addec 91412001-11-14 Andreas Schwab <schwab@suse.de>
60a653f1 9142
048addec
JD
9143 * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
9144 if defined, 0 otherwise.
9145 (MAP_FAILED): Define if not defined and use it to test mmap failure.
9146 (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
60a653f1 9147
048addec 91482001-11-19 Richard M. Stallman <rms@gnu.org>
60a653f1 9149
048addec 9150 * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
60a653f1 9151
048addec 91522001-11-18 Jason Rumney <jasonr@gnu.org>
60a653f1 9153
048addec
JD
9154 * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
9155 (x_draw_bar_cursor): If the background color of the glyph under
9156 the cursor equals the frame's cursor color, use the glyph's
9157 foreground color for drawing the bar cursor.
9158 (x_after_update_window_line): Clear internal border in different
9159 circumstances.
9160 (w32_set_vertical_scroll_bar): Check for width and height > 0.
9161 (w32_draw_relief_rect): Correct relief by 1 pixel.
9162 (x_set_glyph_string_background_width):
9163 Set extends_to_end_of_line_p if the row's fill_line_p is set and
9164 drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
9165 (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
9166 if cursor_in_non_selected_windows is false.
9167 (show_mouse_face): Clean up. Recognize overwritten cursor differently.
9168 (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
9169 Notice if cursor gets overwritten.
9170 (notice_overwritten_cursor): Renamed from
9171 note_overwritten_text_cursor. Rewritten to take glyph widths
9172 into account, and to take X positions as parameters.
9173 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
9174 around call to x_draw_glyphs.
9175 (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
9176 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
9177 color to use for image glyph reliefs.
9178 (x_draw_image_relief): Accept zero tool_bar_button_relief.
9179 (glyph_rect): Remove unused variable `area'.
60a653f1 9180
048addec
JD
9181 * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
9182 some items.
9183 (x_set_internal_border_width): Set frame garbaged when window
9184 doesn't exist yet.
9185 (Fx_create_frame): Accept zero tool_bar_button_relief.
9186 (x_clear_image_1, four_corners_best, image_background)
9187 (image_background_transparent): New functions.
9188 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
9189 (gs_format): Add `:background' entry.
9190 (lookup_image): Set IMG's background color if specified.
9191 (pbm_load, xbm_load_image, png_load): Set IMG's background field
9192 when appropriate.
9193 (x_clear_image_1): Reset `background_valid' and
9194 `background_transparent_valid' fields.
9195 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
9196 calculating it here. Set IMG's background_transparent field.
9197 (enum xpm_keyword_index): Add XPM_BACKGROUND.
9198 (enum png_keyword_index): Add PNG_BACKGROUND.
9199 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
9200 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
9201 (enum gif_keyword_index): Add GIF_BACKGROUND.
9202 (enum gs_keyword_index): Add GS_BACKGROUND.
9203 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
9204 Pre-calculate image background color where necessary.
9205 (x_create_x_image_and_pixmap, xbm_load, gs_load):
9206 Use display info's n_cbits entry for screen depth.
9207 (Fx_show_tip): Remove unused variables `buffer', `top',
9208 `left', `max_width' and `max_height'.
60a653f1 9209
048addec 9210 * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
60a653f1 9211
048addec 92122001-11-18 Gerd Moellmann <gerd@gnu.org>
60a653f1 9213
048addec 9214 * puresize.h (BASE_PURESIZE): Increase to 750000.
60a653f1 9215
048addec 92162001-11-18 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
60a653f1 9217
048addec 9218 * frame.c (Fframe_live_p): Doc fix.
60a653f1 9219
048addec 92202001-11-18 Richard M. Stallman <rms@gnu.org>
60a653f1 9221
048addec
JD
9222 * xdisp.c (message_dolog_marker1, message_dolog_marker2)
9223 (message_dolog_marker3): New static variables hold three markers.
9224 (syms_of_xdisp): Initialize and staticpro them.
9225 (message_dolog): Use message_dolog_marker1..3 instead of
9226 allocating markers each time. Unchain them when done.
60a653f1 9227
048addec 92282001-11-17 Richard M. Stallman <rms@gnu.org>
60a653f1 9229
048addec 9230 * doc.c (Fsnarf_documentation): Doc fix.
60a653f1 9231
048addec 92322001-11-17 Andreas Schwab <schwab@suse.de>
60a653f1 9233
048addec 9234 * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
60a653f1 9235
048addec 92362001-11-17 Richard M. Stallman <rms@gnu.org>
60a653f1 9237
048addec 9238 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
60a653f1 9239
048addec 92402001-11-17 Jason Rumney <jasonr@gnu.org>
60a653f1 9241
048addec 9242 * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
60a653f1 9243
048addec 92442001-11-17 Gerd Moellmann <gerd@gnu.org>
60a653f1 9245
048addec
JD
9246 * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
9247 with invalid position.
60a653f1 9248
048addec 92492001-11-16 Richard M. Stallman <rms@gnu.org>
60a653f1 9250
048addec 9251 * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
60a653f1 9252
048addec
JD
9253 * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
9254 * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
9255 * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
60a653f1 9256
048addec 9257 * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
60a653f1 9258
048addec 92592001-11-16 Stefan Monnier <monnier@cs.yale.edu>
60a653f1 9260
048addec
JD
9261 * fileio.c (build_annotations): Split off the tail.
9262 (build_annotations_2): New fun. Extracted from build_annotations.
9263 (Fwrite_region): Split the call to build_annotations into two
9264 calls to build_annotations and build_annotations_2.
077907d4 9265
048addec 92662001-11-16 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
1756e2fb 9267
048addec
JD
9268 * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
9269 clear_waiting_for_input with argument.
1756e2fb 9270
048addec 9271 * xterm.h (x_update_cursor): Remove duplicated prototype.
06e8f738 9272
048addec 9273 * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
06e8f738 9274
048addec 9275 * xterm.c (waiting_for_input): Remove unnecessary declaration.
fa336b91 9276
048addec 9277 * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
fa336b91 9278
048addec 92792001-11-16 Stefan Monnier <monnier@cs.yale.edu>
fa336b91 9280
048addec
JD
9281 * fileio.c (choose_write_coding_system): New fun, extracted
9282 from Fwrite_region.
9283 (Fwrite_region): Use it.
fa336b91 9284
048addec
JD
9285 * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
9286 (funcall_lambda, run_hook_with_args): Make static and add prototype.
9287 (ml_apply, find_handler_clause): Add prototype.
fa336b91 9288
048addec 92892001-11-16 Eli Zaretskii <eliz@gnu.org>
fa336b91 9290
048addec 9291 * config.in: Add #undef HAVE_COFF_H.
fa336b91 9292
048addec
JD
9293 * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
9294 Required for ISC 4.1.
fa336b91 9295
048addec 92962001-11-16 Eli Zaretskii <eliz@is.elta.co.il>
fa336b91 9297
048addec
JD
9298 * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
9299 Andrew Wiseman <a.wiseman@btclick.com>.
fa336b91 9300
048addec 93012001-11-16 Kim F. Storm <storm@cua.dk>
fa336b91 9302
048addec
JD
9303 The following changes are made to clean up the various internal
9304 references to the fringes to actually use the term `fringe' for
9305 them. Previously, they were called `flags areas', `bitmap areas',
9306 `left/right side of windows', or implicitly as `flags' or
9307 `bitmaps':
fa336b91 9308
048addec
JD
9309 * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
9310 Comments fixed. Use renamed symbols.
06e8f738 9311
048addec 9312 * dispnew.c: Comment fix. Use renamed symbols.
06e8f738 9313
048addec
JD
9314 * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
9315 (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
9316 (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
9ce647f4 9317
048addec 9318 * msdos.c: Comment fix.
9ce647f4 9319
048addec 9320 * w32fns.c: Use renamed symbols.
9b784ab8 9321
048addec
JD
9322 * w32term.c: Comment fixes. Use renamed symbols.
9323 (fringe_bitmap_type): Renamed from bitmap_type.
9324 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
9325 (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
9326 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
9f7e52b4 9327
048addec
JD
9328 * w32term.h: Comment fixes. Use renamed symbols.
9329 (fringes_extra): Renamed from flags_areas_extra.
9330 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
9331 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
9332 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
9333 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
9334 (FRAME_X_LEFT_FRINGE_WIDTH):
9335 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
9336 (FRAME_X_RIGHT_FRINGE_WIDTH):
9337 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
9f7e52b4 9338
048addec 9339 * widget.c: Use renamed symbols.
9f7e52b4 9340
048addec
JD
9341 * window.c: Comment fixes. Use renamed symbols.
9342 (coordinates-in-window-p): Doc fix.
fa336b91 9343
048addec 9344 * xdisp.c: Comment fixes. Use renamed symbols.
34e5d0af 9345
048addec 9346 * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
9b784ab8 9347
048addec 9348 * xfns.c: Use renamed symbols.
89512fcd 9349
048addec
JD
9350 * xterm.c: Comment fixes. Use renamed symbols.
9351 (fringe_bitmap_type): Renamed from bitmap_type.
9352 (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
9353 (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
9354 (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
89512fcd 9355
048addec
JD
9356 * xterm.h: Comment fixes. Use renamed symbols.
9357 (fringes_extra): Renamed from flags_areas_extra.
9358 (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
9359 (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
9360 (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
9361 (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
9362 (FRAME_X_LEFT_FRINGE_WIDTH):
9363 Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
9364 (FRAME_X_RIGHT_FRINGE_WIDTH):
9365 Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
9366
93672001-11-15 Jason Rumney <jasonr@gnu.org>
9368
9369 * w32menu.c (add-menu-item): Make help_echo and radio buttons
9370 work for most menu items. From David Ponce
9371 <david.ponce@wanadoo.fr>.
9372
93732001-11-15 Gerd Moellmann <gerd@gnu.org>
9374
9375 * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
9376 Some x_set_* function expect to be called even if old and new
9377 value are equal.
9378
9379 * xdisp.c (build_desired_tool_bar_string): Accept zero
9380 tool_bar_button_relief.
9381
9382 * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
9383
9384 * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
9385
9386 * xterm.c (x_draw_bar_cursor): If the background color of the
9387 glyph under the cursor equals the frame's cursor color, use
9388 the glyph's foreground color for drawing the bar cursor.
9389
9390 * dispnew.c (direct_output_forward_char): Fix character/byte
9391 position comparison.
7d18891d 9392
048addec 93932001-11-15 Miles Bader <miles@gnu.org>
d2936d21 9394
048addec
JD
9395 * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
9396 (Fdelete_field, Ffield_string, Ffield_string_no_properties):
9397 Update arguments to find_field.
9398 (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
9399 (Fconstrain_to_field): Use LIMIT arg to shorten search time.
9400 * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
9401 * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
7d18891d 9402
048addec 94032001-11-14 Richard M. Stallman <rms@gnu.org>
7d18891d 9404
048addec 9405 * editfns.c (Fpropertize): Allow call with 1 arg.
7d18891d 9406
048addec
JD
9407 * dispextern.h (image_background, image_background_transparent):
9408 Conditionalize on HAVE_X_WINDOWS.
7d18891d 9409
048addec 94102001-11-13 Richard M. Stallman <rms@gnu.org>
7d18891d 9411
048addec 9412 * print.c (Fprin1_to_string): Doc fix.
7d18891d 9413
048addec 9414 * sunfns.c (Fsun_change_cursor_icon): Doc fix.
7d18891d 9415
048addec 9416 * floatfns.c (Fceiling, Ffloor): Doc fixes.
7d18891d 9417
048addec 9418 * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
7d18891d 9419
048addec 9420 * fileio.c (Ffile_accessible_directory_p): Doc fix.
7d18891d 9421
048addec 9422 * eval.c (syms_of_eval): Doc fix.
7d18891d 9423
048addec 9424 * coding.c (syms_of_coding): Doc fix.
7d18891d 9425
048addec 9426 * doc.c (Fsnarf_documentation): Doc fix.
7d18891d 9427
048addec 9428 * dispnew.c (syms_of_display): Doc fix.
9474c847 9429
048addec 9430 * category.c (Fget_unused_category): Doc fix.
9474c847 9431
048addec 9432 * buffer.c (syms_of_buffer): Doc fixes.
e3059a5d 9433
048addec 94342001-11-14 Eli Zaretskii <eliz@is.elta.co.il>
e3059a5d 9435
048addec 9436 * print.c (prin1, print): Doc fix.
e3059a5d 9437
048addec 94382001-11-14 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
b3700ae7 9439
048addec
JD
9440 * fontset.h: Remove declarations of variables
9441 `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
b3700ae7 9442
048addec
JD
9443 * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
9444 `Vclip_large_size_font'.
eae936e2 9445
048addec 94462001-11-13 Jason Rumney <jasonr@gnu.org>
4bb962be 9447
048addec 9448 * w32fns.c: Doc fix.
ddb67bdc 9449
048addec 94502001-11-13 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
3467c402 9451
048addec 9452 * xfaces.c (Fface_attributes_as_vector): Doc fix.
3467c402 9453
048addec 9454 * fns.c: Doc fix.
6e1b91d7 9455
048addec 9456 * emacs.c: Doc fix.
1c1d3d69 9457
048addec 9458 * coding.c: Doc fix.
1c1d3d69 9459
048addec
JD
9460 * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
9461 * fontset.c, insdel.c, keymap.c: Change doc-string comments to
9462 `new style' [w/`doc:' keyword].
b6f4c7ba 9463
048addec 94642001-11-12 Richard M. Stallman <rms@gnu.org>
b6f4c7ba 9465
048addec
JD
9466 * xterm.c (XTread_socket): Don't update focus for EnterNotify or
9467 LeaveNotify events. Only FocusIn and FocusOut do that now.
9468 (x_display_and_set_cursor): Do display hollow cursors in active
9469 minibuffer windows when they are not selected.
b6f4c7ba 9470
048addec 94712001-11-12 Jason Rumney <jasonr@gnu.org>
a89f435d 9472
048addec
JD
9473 * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
9474 * w32term.c: Change doc-string comments to `new style'.
9475 [w/`doc:' keyword]. Doc fixes.
a89f435d 9476
048addec
JD
9477 * w32fns.c: Don't define max.
9478 (Fx_open_connection): Only execute once.
a4cd0cd7 9479
048addec 94802001-11-12 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
eafb659a 9481
048addec
JD
9482 * ccl.c: Change macros to use do-while block instead of if-else.
9483 Use braces to follow GNU Coding Standards.
eafb659a 9484
048addec 94852001-11-11 Richard M. Stallman <rms@gnu.org>
a4cd0cd7 9486
048addec 9487 * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
a4cd0cd7 9488
048addec 9489 * lread.c (read_escape): Use end_of_file_error for reporting eof.
a4cd0cd7 9490
048addec
JD
9491 * insdel.c (replace_range): Use adjust_markers_for_replace
9492 instead of adjust_markers_for_delete and adjust_markers_for_insert.
a4cd0cd7 9493
048addec 9494 * intervals.h: Declare set_text_properties and set_text_properties_1.
a4cd0cd7 9495
048addec
JD
9496 * textprop.c (set_text_properties_1): New subroutine
9497 broken out of set_text_properties.
9498 (set_text_properties): Use set_text_properties_1.
91823618 9499
048addec
JD
9500 * intervals.c (graft_intervals_into_buffer):
9501 Use set_text_properties_1 to clear out properties.
91823618 9502
048addec
JD
9503 * search.c (Freplace_match): Use replace_range to insert
9504 and delete. Don't request property inheritance from
9505 surrounding text.
86928dfb 9506
048addec 95072001-11-10 Jason Rumney <jasonr@gnu.org>
86928dfb 9508
048addec
JD
9509 * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
9510 vertical fonts. Allow them if face name is explicitly specified.
9511 Do not give up if we find a font that cannot be converted to an xlfd.
40ef1eda 9512
048addec 95132001-11-10 Gerd Moellmann <gerd@gnu.org>
ab8469eb 9514
048addec
JD
9515 * unexelf.c (unexec): Use mmap/munmap to allocate buffers
9516 instead of malloc/free.
a78e0303 9517
048addec 95182001-11-09 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
40ef1eda 9519
048addec
JD
9520 * xfaces.c (merge_face_vectors): Use braces to follow GNU
9521 Coding Standards.
9522 (Finternal_set_lisp_face_attribute): Likewise.
fabf4a91 9523
048addec 9524 * buffer.c (Fbury_buffer): Likewise.
0c99b139 9525
048addec 9526 * indent.c (current_column_1): Remove unused variable `prev_col'.
0c99b139 9527
048addec
JD
9528 * coding.c (encode_coding): Use precomputed value of `src'.
9529 (encode_coding): Remove unused variable `src_end'.
9530 (code_convert_region): Remove unused variables `count'.
830ddd77 9531
048addec 95322001-11-07 Jason Rumney <jasonr@gnu.org>
830ddd77 9533
048addec
JD
9534 * w32term.c (x_display_and_set_cursor): Do not move system caret
9535 if cursor_glyph is NULL.
55c6d645 9536
048addec 95372001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
55c6d645 9538
048addec 9539 * keymap.c (access_keymap): Fix compilation error.
5de38842 9540
048addec 95412001-11-07 Miles Bader <miles@gnu.org>
7a4564a4 9542
048addec 9543 * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
5de38842 9544
048addec 95452001-11-07 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4fa23df5 9546
048addec
JD
9547 * intervals.c (graft_intervals_into_buffer):
9548 Remove #ifdef'd-out code.
9549 (graft_intervals_into_buffer): Remove unused variable `middle'.
4fa23df5 9550
048addec
JD
9551 * lread.c (Feval_region): Remove obsolete #ifdef'd-out
9552 code (eval-current-buffer).
9553 Change doc-string comments to `new style' [w/`doc:' keyword].
7a6a97d7 9554
048addec 95552001-11-06 Richard M. Stallman <rms@gnu.org>
c191d13c 9556
048addec 9557 * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
7a6a97d7 9558
048addec 95592001-11-06 Stefan Monnier <monnier@cs.yale.edu>
44dc78e0 9560
048addec 9561 * lread.c (read1): Fix behavior with nested backquoting.
44dc78e0 9562
048addec
JD
9563 * keyboard.c (make_lispy_event): Check integerness and fix
9564 Lisp_Object/int mixup.
17893c65 9565
048addec 95662001-11-06 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4d994a79 9567
048addec 9568 * fns.c (copy_hash_table): Remove unused variable `v'.
d5360cc7 9569
048addec
JD
9570 * fontset.c (fontset_font_pattern): Remove unused variable
9571 `family_registry'.
d5360cc7 9572
048addec 9573 * indent.c (current_column_1): Remove unused variable `prev_col'.
d5360cc7 9574
048addec 95752001-11-05 Richard M. Stallman <rms@gnu.org>
96238a5a 9576
048addec 9577 * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
96238a5a 9578
048addec
JD
9579 * buffer.c (Fkill_buffer): Don't delete auto save file
9580 if buffer is modified.
d9d54213 9581
048addec 95822001-11-05 Andrew Innes <andrewi@gnu.org>
d9d54213 9583
048addec
JD
9584 * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
9585 CHECK_NUMBER_CDR.
b116830b 9586
048addec 95872001-11-05 Richard M. Stallman <rms@gnu.org>
b116830b 9588
048addec 9589 * unexelf.c (unexec): Minor changes; clean up comments.
3297e2a1 9590
048addec 95912001-11-05 Sam Steingold <sds@gnu.org>
3297e2a1 9592
048addec 9593 * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
6fb8339c 9594
048addec 95952001-11-05 Andreas Schwab <schwab@suse.de>
6fb8339c 9596
048addec 9597 * sound.c (sound_perror): Save errno from being clobbered.
7dd73b78 9598
048addec 95992001-11-05 Dale Hagglund <rdh@yottayotta.com>
7dd73b78 9600
048addec
JD
9601 * unexelf.c (unexec): Don't use `mmap'. Instead, read and write
9602 the program image directly.
982f6c7e 9603
048addec 96042001-11-05 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
d31053f9 9605
048addec 9606 * buffer.h (Fbuffer_local_value): Add prototype.
d31053f9 9607
048addec 96082001-11-04 Richard M. Stallman <rms@gnu.org>
d31053f9 9609
048addec
JD
9610 * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
9611 and CHECK_BUFFER.
d31053f9 9612
048addec
JD
9613 * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
9614 (record_char): Likewise.
d31053f9 9615
048addec
JD
9616 * keyboard.c (make_lispy_event): Don't insist a drag event must
9617 move to a different buffer position. Instead, check for moving at
9618 least double_click_fuzz.
982f6c7e 9619
048addec 9620 * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
830047fd 9621
048addec 9622 * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
b116830b 9623
048addec
JD
9624 * indent.c (current_column_1, Fmove_to_column): Separate the code
9625 for display-table glyphs from the code for buffer text, to fix
9626 bugs in the former.
830047fd 9627
048addec 96282001-11-04 Michael Welsh Duggan <md5i@cs.cmu.edu>
b116830b 9629
048addec
JD
9630 * buffer.c (Fbuffer_local_value): New function.
9631 (syms_of_buffer): Defsubr it.
2df5238c 9632
048addec
JD
9633 * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
9634 value of `cursor-in-non-selected-windows'.
4e397688 9635
048addec
JD
9636 * lisp.h (Qcursor_in_non_selected_windows): New declaration.
9637 * xdisp.c (Qcursor_in_non_selected_windows): New variable.
9638 (syms_of_xdisp): Initialize it.
48b0f3ae 9639
048addec 96402001-11-04 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2df5238c 9641
048addec 9642 * xfns.c (Fx_create_frame): Doc fix.
3ecaf7e5 9643
048addec
JD
9644 * coding.c: Change doc-string comments to `new style' [w/`doc:'
9645 keyword].
3ecaf7e5 9646
048addec
JD
9647 * eval.c (top_level_value, top_level_set): Remove commented and
9648 #ifdef'd-out code.
9649 (Fdefvar): Fix usage in doc-string.
3ecaf7e5 9650
048addec 96512001-11-03 Richard M. Stallman <rms@gnu.org>
3ecaf7e5 9652
048addec 9653 * xfns.c: Include unistd.h, if it exists.
8db2e33b 9654
048addec 9655 * editfns.c: Move the include of ctype.h after unistd.h.
8db2e33b 9656
048addec 9657 * gmalloc.c: Test BROKEN_PROTOTYPES.
aed29b97 9658
048addec 96592001-11-03 Ken Raeburn <raeburn@gnu.org>
aed29b97 9660
048addec
JD
9661 * lisp.h (CHECK_STRING_CAR): New macro.
9662 * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
9663 treating XCAR and XCDR as lvalues.
9664 (openp): Use CHECK_STRING_CAR.
9665 (read_list): Use XSETCDR instead of treating XCDR as lvalue.
aed29b97 9666
048addec 96672001-11-03 Eli Zaretskii <eliz@is.elta.co.il>
6cb16f95 9668
048addec
JD
9669 * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
9670 (SIGMASKTYPE): Define.
1b1acc13 9671
048addec 9672 * syssignal.h (sigunblock): Don't define if already defined.
020f9b38 9673
048addec 96742001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
020f9b38 9675
048addec
JD
9676 * eval.c (debugger_may_continue, Vdebug_ignored_errors)
9677 (call_debugger, Fcondition_case, skip_debugger, unbind_to):
9678 Fix typos in comments.
6cb16f95 9679
048addec
JD
9680 * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
9681 and #ifdef'd-out code.
9682 Fix and reindent comments.
6cb16f95 9683
048addec 9684 * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
6cb16f95 9685
048addec
JD
9686 * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
9687 argument `i' in macros.
6cb16f95 9688
048addec
JD
9689 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
9690 `i' in macros.
7e9d3c2f 9691
048addec
JD
9692 * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
9693 (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
9694 (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
9695 (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
9696 (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
9697 (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
9698 (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
9699 (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
9700 in macros.
7e9d3c2f 9701
048addec
JD
9702 * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
9703 * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
9704 * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
9705 * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
9706 * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
9707 * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
9708 * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
9709 * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
9710 * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
9711 (remove unused second argument).
7e9d3c2f 9712
048addec 97132001-11-02 Stefan Monnier <monnier@cs.yale.edu>
e6bff182 9714
048addec
JD
9715 * syntax.c (describe_syntax): New wrapper.
9716 (Finternal_describe_syntax_value): Rename from describe_syntax.
9717 Don't insert space at front and \n at the end.
9718 (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
e6bff182 9719
048addec
JD
9720 * regex.c (re_wctype): Try to fix some warnings.
9721 (regcomp, regexec): Don't forget the __restrict.
9ba48103 9722
048addec 97232001-11-02 Richard M. Stallman <rms@gnu.org>
9ba48103 9724
048addec 9725 * textprop.c (Fget_char_property): Doc fix.
9ba48103 9726
048addec 97272001-11-02 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
9ba48103 9728
048addec 9729 * process.c (Fstart_process): Add usage to doc-string.
c22e59e1 9730
048addec 9731 * data.c (Fsetq_default): Ditto.
c22e59e1 9732
048addec 9733 * callint.c (Finteractive): Ditto.
9271ed2c 9734
048addec 97352001-11-01 Stefan Monnier <monnier@cs.yale.edu>
e6bff182 9736
048addec
JD
9737 * macros.c: Don't include keymap.h any more.
9738
97392001-11-01 Richard M. Stallman <rms@gnu.org>
9740
9741 * data.c (Fmake_local_variable): Doc fix.
9742
9743 * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
9744 (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
e6bff182 9745
048addec 9746 * keymap.c (Fdescribe_buffer_bindings): Print character property
9271ed2c
RS
9747 bindings along with or instead of the buffer local map.
9748 Make the overriding maps override what they should.
9749
f00691a3 97502001-11-01 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
8b8bd9c6
PJ
9751
9752 * window.c (grow_mini_window): Fix typo in comment.
9753
27188d11
GM
97542001-11-01 Gerd Moellmann <gerd@gnu.org>
9755
7b49b9d2
GM
9756 * xterm.c (x_scroll_bar_create): Check for width and height > 0.
9757 (XTset_vertical_scroll_bar): Likewise.
9758
43f7c3ea
GM
9759 * xfns.c (x_build_heuristic_mask): Use four_corners_best
9760 instead of IMAGE_BACKGROUND.
c22e59e1 9761
b350c2e5
GM
9762 * xfns.c (four_corners_best): Reindent.
9763
c22e59e1 9764 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
27188d11
GM
9765 Handle :box so that it is possible to specify sexprs.
9766
bf00d461
EZ
97672001-10-31 Eli Zaretskii <eliz@is.elta.co.il>
9768
9769 * s/hpux11.h: New file.
9770
f00691a3 97712001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4e10df59 9772
2b209b97
PJ
9773 * emacs.c (USAGE1): Show command line option --no-window-system
9774 instead of --no-windows in usage.
9775 (standard_args): Rename --no-windows to --no-window-system.
9776 (bug_reporting_address): Follow Emacs coding conventions.
9777
9dbc9081
PJ
9778 * eval.c (Fcommandp): Doc fix.
9779 Change doc-string comments to `new style' [w/`doc:' keyword].
9780
4e10df59
PJ
9781 * frame.c (Fframe_live_p): Doc fix.
9782
9783 * buffer.c (selective-display-ellipses): Doc fix.
9784
dd387b25
GM
97852001-10-31 Gerd Moellmann <gerd@gnu.org>
9786
fe957e65
GM
9787 * lread.c (to_multibyte): Fix computation of new read_buffer_size.
9788
dd387b25
GM
9789 * xfaces.c (realize_x_face): If C is not a single-byte character,
9790 set the face's colors_copied_bitwise_p instead of the defaulted_p
9791 members which have a different meaning.
9792 (free_face_colors): Do nothing for a face whose colors have been
9793 copied bitwise.
9794
c22e59e1 9795 * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
dd387b25 9796
f00691a3 97972001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2e1280f8 9798
687784e8
PJ
9799 * marker.c, mocklisp.c: Change doc-string comments to `new style'
9800 [w/`doc:' keyword].
2e1280f8 9801
b9d9a9b9
GM
98022001-10-31 Gerd Moellmann <gerd@gnu.org>
9803
9804 * fns.c (require_unwind): Return Lisp_Object.
9805
f00691a3 98062001-10-31 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
48400103 9807
fa1361cb
PJ
9808 * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
9809 (last-input-char): Revert doc-string to be the same as the
9810 doc-string of `last-input-event'.
9811
6c465a15 9812 * xdisp.c: Fix typos in comments.
48400103 9813
eafa3196
GM
98142001-10-31 Gerd Moellmann <gerd@gnu.org>
9815
9816 * window.c (grow_mini_window): Handle case that the root
9817 window is already smaller than the nominal mininum height.
9818
747d3f2a
SM
98192001-10-30 Stefan Monnier <monnier@cs.yale.edu>
9820
bf9bb76f
SM
9821 * emacs.c (main): Don't call keys_of_macros any more.
9822
9823 * lisp.h (keys_of_macros): Remove.
9824
9825 * macros.c (keys_of_macros): Remove.
9826
747d3f2a
SM
9827 * xfaces.c (Fface_attribute_relative_p): Declare args.
9828
5e905a57
JR
98292001-10-30 Jason Rumney <jasonr@gnu.org>
9830
9831 * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
9832 (enum_font_cb2): Ignore fonts with vertical orientation.
9833
3a426197
RS
98342001-10-30 Richard M. Stallman <rms@gnu.org>
9835
9836 * keyboard.c (Finput_pending_p): Doc fix.
9837
a742d646
GM
98382001-10-30 Gerd Moellmann <gerd@gnu.org>
9839
259cf6bc
GM
9840 * xterm.c (x_after_update_window_line): Don't run the code
9841 clearing in borders for rows whose visible height is 0.
9842
3f99f948
GM
9843 * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
9844 resized_p flag is set. If not set, use the much less flickering
9845 method previously used.
9846
9847 * dispnew.c (change_frame_size_1): Set frame's resized_p.
9848
9849 * frame.h (struct frame) <resized_p>: New member.
9850
b4a3be43
GM
9851 * lread.c (to_multibyte): Ensure read_buffer is at least twice
9852 as large as the number of bytes to convert.
747d3f2a 9853
a742d646
GM
9854 * lread.c (to_multibyte): New function.
9855 (read1): Use it.
9856
cacbb9e9
EZ
98572001-10-30 Eli Zaretskii <eliz@is.elta.co.il>
9858
9859 * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
9860
99cb6b2f
GM
98612001-10-30 Gerd Moellmann <gerd@gnu.org>
9862
327f42ee 9863 * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
747d3f2a
SM
9864 (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
9865 if the row's fill_line_p is set and drawing the last glyph with
9866 DRAW_IMAGE_{RAISED,SUNKEN}.
327f42ee 9867
99cb6b2f
GM
9868 * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
9869
8e8223e2
SM
98702001-10-29 Stefan Monnier <monnier@cs.yale.edu>
9871
9872 * xmenu.c: Include coding.h and charset.h.
9873 (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
9874 (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
9875 (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
9876 Explicitly set wv->help. Use `TRUE' rather than `True'.
9877 (menu_help_callback): Use empty_string.
9878
9879 * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
9880 (Fx_popup_dialog): Explicitly init f.
9881 (w32_menu_display_help): Use empty_string.
9882
4d083a8f
RS
98832001-10-29 Richard M. Stallman <rms@gnu.org>
9884
b2304472
RS
9885 * fns.c (Frequire): Detect recursive try to require the same
9886 feature 3 or more levels deep, and get error.
9887 (require_unwind): New subroutine.
9888 (require_nesting_list): New variable.
9889 (syms_of_fns): Init and staticpro it.
9890
4d083a8f
RS
9891 * print.c (print_object): Clarify indication of insertion type.
9892
2fe41216
EZ
98932001-10-29 Eli Zaretskii <eliz@is.elta.co.il>
9894
90480000
EZ
9895 * coding.c (syms_of_coding): Document that locale-coding-system is
9896 used for decoding input on X.
9897
2fe41216
EZ
9898 * window.c (Fscroll_left, Fscroll_right): Doc fix.
9899
f00691a3 99002001-10-29 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
74e79967
PJ
9901
9902 * keyboard.c (Finput_pending_p): Fix typo in doc-string.
9903 (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
9904
60ebcfe8
GM
99052001-10-29 Gerd Moellmann <gerd@gnu.org>
9906
9a7bdceb
GM
9907 * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
9908 use NO_CURSOR if cursor_in_non_selected_windows is false.
9909
3f08fcd2
GM
9910 * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
9911 the slant attribute if FRAME is t.
9912
0ccfdad2
GM
9913 * xfns.c (x_set_internal_border_width): Set frame garbaged
9914 when X window doesn't exist yet.
9915
ef253080
GM
9916 * xterm.c (x_after_update_window_line): Clear internal border
9917 in different circumstances.
b116830b 9918
60ebcfe8
GM
9919 * xterm.c (XTread_socket) <KeyPress>: Don't use
9920 STRING_CHAR_AND_LENGTH if nchars == nbytes. From Kenichi Handa
9921 <handa@etl.go.jp>.
9922
73d25f9c
EZ
99232001-10-28 Eli Zaretskii <eliz@is.elta.co.il>
9924
9925 * m/ibms390.h: New file. From Adam Thornton
9926 <athornton@sinenomine.net>.
9927
cac1daf0
GM
99282001-10-28 Gerd Moellmann <gerd@gnu.org>
9929
053b3256 9930 * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
b116830b 9931
cac1daf0
GM
9932 * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
9933 a loop counter.
9934
f00691a3 99352001-10-28 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
13b1a09c 9936
186486eb
PJ
9937 * emacs.c: Use argv[0] instead of emacs when -t was specified.
9938
4707d2d0
PJ
9939 * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
9940 keyword].
9941 Fix typos in comments.
b116830b 9942
d883731c
PJ
9943 * emacs.c (bug_reporting_address): New function.
9944 Use it when displaying usage message.
9945
04012254
PJ
9946 * minibuf.c (read_minibuf): Remove unused external declaration of
9947 variable `Qread_only'.
9948
13b1a09c
PJ
9949 * keymap.c (access_keymap): Remove unused variable `charset'.
9950
5bbf4378
MB
99512001-10-28 Miles Bader <miles@gnu.org>
9952
9953 * xfaces.c (merge_face_heights): Handle TO being relative as well.
9954 Remove #ifdef'd-out code.
9955 (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
9956 (syms_of_xfaces): Initialize them.
9957
1ce1e4ee
JR
99582001-10-27 Jason Rumney <jasonr@gnu.org>
9959
9960 * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
9961 <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
9962 position using the system caret.
9963
9964 * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
9965 (w32_system_caret_height, w32_system_caret_x)
9966 (w32_system_caret_y): New variables for tracking system caret.
9967 (w32_initialize): Initialize them.
c2d53558 9968 (x_display_and_set_cursor): Make system caret follow the active cursor.
1ce1e4ee 9969
c2d53558
SM
9970 * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
9971 New messages types.
1ce1e4ee
JR
9972
9973 * w32term.c (note_mouse_highlight): Clear old help_echo.
9974
f00691a3 99752001-10-27 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
4e30ce42 9976
bb4600a4
PJ
9977 * xterm.c: Fix typo in a comment.
9978
7db35a48
PJ
9979 * emacs.c: Fix typos in comments.
9980 Remove unnecessary spaces.
9981 Change doc-string comments to `new style' [w/`doc:' keyword].
9982 (USAGE2): Fix typos in usage string.
9983
a7248e4f
PJ
9984 * xterm.c: Fix typo in a comment.
9985
4e30ce42
PJ
9986 * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
9987 emacs.c.
9988
62725a92
GM
99892001-10-27 Gerd Moellmann <gerd@gnu.org>
9990
798dbe1f 9991 * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
c2d53558 9992 instead of 1/2 line_height in the heuristic for skipping
798dbe1f
GM
9993 farther backward when target_y was not reached.
9994
62725a92
GM
9995 * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
9996 Display errno only if non-zero.
9997 (sound_warning): New function.
9998 (vox_configure): Don't treat failing to set sample rate as error.
9999 (various places): Improve error messages.
10000
d4e34d24
EZ
100012001-10-26 Eli Zaretskii <eliz@is.elta.co.il>
10002
944e6f60
EZ
10003 * fileio.c (Faccess_file): Run the argument filename through
10004 Fexpand_file_name, before using it.
10005
d4e34d24
EZ
10006 * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
10007 ring-bell-function. Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
10008
38d2af0c
GM
100092001-10-26 Gerd Moellmann <gerd@gnu.org>
10010
da80a8d5
GM
10011 * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
10012
38d2af0c
GM
10013 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
10014 Fix clearing in the case of scroll bars on the right.
c2d53558 10015
45de4a6f 100162001-10-26 Juanma Barranquero <lektu@terra.es>
56f508dd
EZ
10017
10018 * w32gui.h (XImage): Add a dummy typedef.
10019
fbd5ceb2
GM
100202001-10-26 Gerd Moellmann <gerd@gnu.org>
10021
c2d53558 10022 * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
fbd5ceb2 10023
b23236fb
EZ
100242001-10-25 Eli Zaretskii <eliz@is.elta.co.il>
10025
10026 * frame.c (Fframe_parameter): Fix last change.
10027
5d991fc4
EZ
10028 * fileio.c: Revert last change (which removed old commented-out
10029 version of expand-file-name). Add a comment that explains why
10030 this old version should not be removed.
10031
879eadc3
GM
100322001-10-25 Gerd Moellmann <gerd@gnu.org>
10033
75700ff2
GM
10034 * frame.c (Fframe_parameter): Fix a bug whereby some
10035 ``artificial'' frame parameters, like `minibuffer' were not
10036 obtained by calling Fframe_parameters.
10037
dfe92a6a
GM
10038 * xterm.c (show_mouse_face): Clean up. Recognize overwritten
10039 cursor differently.
10040
879eadc3
GM
10041 * xdisp.c (move_it_vertically_backward): Compute line height
10042 differently. Add heuristic to try to be more compatible to 20.x.
10043
e1010ebe
SM
100442001-10-25 Stefan Monnier <monnier@cs.yale.edu>
10045
d73a471b
SM
10046 * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
10047
d6da5a06
GM
10048 * editfns.c (text_property_stickiness): Fix Lisp_Object used as
10049 boolean.
e1010ebe 10050
f66bd220
MB
100512001-10-25 Miles Bader <miles@gnu.org>
10052
10053 * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
10054 BG is a pointer to a structure, not a structure.
10055 (gif_format, png_format): Add missing commas.
10056
d436d538
RS
100572001-10-24 Richard M. Stallman <rms@gnu.org>
10058
10059 * xfaces.c (Fface_attributes_as_vector): New function.
c2d53558 10060 (syms_of_xfaces): Defsubr it.
d436d538 10061
f00691a3 100622001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
075c507b
PJ
10063
10064 * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
10065 variable `area'.
10066
f00691a3 100672001-10-25 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
d492b584 10068
c2d53558 10069 * search.c (scan_newline): Remove unused variable `selective_display'.
d492b584 10070
e2a57b34
MB
100712001-10-25 Miles Bader <miles@gnu.org>
10072
10073 * dispextern.h (struct image): Add `background',
10074 `background_valid', and `background_transparent' fields.
10075 (image_background, image_background_transparent): New declarations.
10076 (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
10077 * xfns.c (image_background, image_background_transparent)
10078 (four_corners_best): New functions.
c2d53558 10079 (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
e2a57b34
MB
10080 (gs_format): Add `:background' entry.
10081 (lookup_image): Set IMG's background color if specified.
10082 (pbm_load, xbm_load_image, png_load): Set IMG's background field
10083 when appropriate.
10084 (x_clear_image_1): Reset `background_valid' and
10085 `background_transparent_valid' fields.
10086 (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
10087 calculating it here. Set IMG's background_transparent field.
10088 (enum xpm_keyword_index): Add XPM_BACKGROUND.
10089 (enum png_keyword_index): Add PNG_BACKGROUND.
10090 (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
10091 (enum tiff_keyword_index): Add TIFF_BACKGROUND.
10092 (enum gif_keyword_index): Add GIF_BACKGROUND.
10093 (enum gs_keyword_index): Add GS_BACKGROUND.
c2d53558 10094 (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
e2a57b34
MB
10095 Pre-calculate image background color where necessary.
10096 * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
10097 `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
10098 color to use for image glyph reliefs.
10099
b547b6e8
GM
101002001-10-24 Gerd Moellmann <gerd@gnu.org>
10101
d9e3b8c6
GM
10102 * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
10103 in full-width rows.
c2d53558 10104
b547b6e8
GM
10105 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
10106 Fix clearing of area not covered by scroll bar.
10107
f00691a3 101082001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
2beb36f9
PJ
10109
10110 * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
10111 and `real_start'.
c2d53558 10112 (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
2beb36f9
PJ
10113 (glyph_rect): Remove unused variable `area'.
10114
76cb5e06
GM
101152001-10-24 Gerd Moellmann <gerd@gnu.org>
10116
bdbdebff 10117 * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
c2d53558
SM
10118
10119 * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
10120 (row_containing_pos): Take additional argument DY.
10121 Treat rows ending in middle of char differently.
62e33982
GM
10122 (display_line): Handle tabs on window systems differently.
10123
10124 * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
10125 with additional argument.
10126
10127 * dispextern.h (row_containing_pos): Adjust prototype.
10128
76cb5e06
GM
10129 * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
10130 (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
10131 (try_window_id, try_window_reusing_current_matrix)
10132 (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
6c465a15 10133 (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
76cb5e06 10134
f00691a3 101352001-10-24 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
996fee11 10136
c9e60620
PJ
10137 * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
10138 gnuemacs).
10139 (HAVE_BOXES): Fix typo in comment.
10140 (push_menu_pane): Fix typo in comment.
10141
3b552d56
PJ
10142 * xdisp.c: (display_prop_string_p): Remove unused local declaration
10143 of `Qwhen'.
10144 (single_display_prop_string_p): Remove unused local declarations
10145 of `Qwhen' and `Qmargin'.
10146 (string_buffer_position): Remove unused variable `around'.
10147 (store_frame_title): Remove unused variable `width'.
10148
15c565ac
PJ
10149 * window.c: Don't define max.
10150 (coordinates_in_window): Remove unused variable `uy'.
10151
a8818eb9
PJ
10152 * widget.c: Don't define max.
10153
996fee11
PJ
10154 * process.c: Don't define max.
10155 (create_process): Remove unused variable `buffer'.
10156
496e1a5b
GM
101572001-10-23 Gerd Moellmann <gerd@gnu.org>
10158
c2d53558 10159 * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
496e1a5b 10160
5905ae8b
EZ
101612001-10-23 Eli Zaretskii <eliz@is.elta.co.il>
10162
10163 * xfaces.c (Finternal_set_lisp_face_attribute)
10164 [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
10165 frame is on a windowed display.
10166
24db49fb
GM
101672001-10-23 Gerd Moellmann <gerd@gnu.org>
10168
c2d53558
SM
10169 * dispnew.c (sync_window_with_frame_matrix_rows):
10170 Fix handling of windows which aren't full-width, fix handling
c51488cd
GM
10171 of marginal areas.
10172
c2d53558 10173 * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
24db49fb 10174
f0487f05
EZ
101752001-10-23 Andreas Schwab <schwab@suse.de>
10176
10177 * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
10178 LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
10179
f0a48a01
GM
101802001-10-23 Gerd Moellmann <gerd@gnu.org>
10181
c2d53558 10182 * xterm.c (x_draw_glyphs): Remove parameters READ_START and
f0a48a01
GM
10183 REAL_END. Notice if cursor gets overwritten.
10184 (notice_overwritten_cursor): Take X positions as parameters.
10185 (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
10186 around call to x_draw_glyphs.
10187
f00691a3 101882001-10-23 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
a50a10a0 10189
fc11dff0
PJ
10190 * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
10191 instead of C) and usage.
a50a10a0 10192
fc11dff0
PJ
10193 * editfns.c (char-to-string): Fix argument names (use CHAR instead
10194 of C) and usage.
a50a10a0
PJ
10195
10196 * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
10197 `left', `max_width' and `max_height'.
10198
8738febd
GM
101992001-10-23 Gerd Moellmann <gerd@gnu.org>
10200
10201 * xdisp.c (display_line): For a tab continued to the next line,
10202 set row's ends_in_middle_of_char_p.
10203
653c329b
GM
102042001-10-22 Gerd Moellmann <gerd@gnu.org>
10205
10206 * xdisp.c (display_line): Fix computation of continuation lines
10207 width for TABs.
10208
f00691a3 102092001-10-22 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
f958c5ac 10210
7ba51063
PJ
10211 * xdisp.c (build_desired_tool_bar_string): Remove unused variable
10212 `Qlaplace'.
10213
f958c5ac
PJ
10214 * fileio.c: Remove unused code.
10215
eb360291
MB
102162001-10-22 Miles Bader <miles@gnu.org>
10217
10218 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
10219 (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
10220 Remove `DOC_STRINGS_IN_COMMENTS' cases.
10221
98515cf0
JR
102222001-10-21 Jason Rumney <jasonr@gnu.org>
10223
10224 * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
10225
93026d88
EZ
102262001-10-21 Eli Zaretskii <eliz@is.elta.co.il>
10227
10228 * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
10229 (Finsert_string): Avoid the multi-line string literals warning.
10230
c9a95b79
MB
102312001-10-22 Miles Bader <miles@gnu.org>
10232
10233 * doc.c (Vhelp_manyarg_func_alist): Variable removed.
10234 (Fdocumentation): Don't use it.
10235 (syms_of_doc): Don't initialize it.
10236
10237 * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
10238 * print.c (Fwith_output_to_temp_buffer): Likewise.
10239 * window.c (Fsave_window_excursion): Likewise.
c2d53558 10240 * editfns.c (Fsave_excursion, Fsave_current_buffer)
c9a95b79 10241 (Fsave_restriction): Likewise.
c2d53558
SM
10242 * eval.c (Frun_hooks, Frun_hook_with_args)
10243 (Frun_hook_with_args_until_failure)
10244 (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
10245 (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
10246 (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
c9a95b79
MB
10247 (Funwind_protect, Fcondition_case): Likewise.
10248 * coding.c (Ffind_operation_coding_system): Likewise.
10249 * keyboard.c (Ftrack_mouse): Likewise.
10250
a3b10252
MB
102512001-10-21 Miles Bader <miles@gnu.org>
10252
c2d53558 10253 * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
a3b10252
MB
10254 (Fmake_hash_table): Add usage: string to doc string.
10255 * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
c2d53558 10256 (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
a3b10252
MB
10257 (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
10258 * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
10259 (Fml_prefix_argument_loop): Likewise.
10260
f00691a3 102612001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
c6f73eec 10262
c2d53558 10263 * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
888ebd13 10264
c6f73eec
PJ
10265 * sysdep.c (init_sys_modes): Change doc-string comments to `new
10266 style' [w/`doc:' keyword].
10267
10268 * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
10269 * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
10270 comments to `new style' [w/`doc:' keyword].
10271
3cf3436e
JR
102722001-10-21 Jason Rumney <jasonr@gnu.org>
10273
10274 * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
10275
c169b8f1
JR
10276 * w32term.c (remember_mouse_glyph): New function.
10277 (w32_mouse_position): Use it.
10278 (note_mouse_movement): If the mouse moved off the glyph, remember
10279 its new position.
c2d53558 10280
4fdd691b
JR
10281 * w32term.h (struct w32_output): Correct spelling of x_compatible.
10282 (w32_display_info): Add mouse_face_overlay.
10283
c169b8f1
JR
10284 * w32term.c (notice_overwritten_cursor): Renamed from
10285 note_overwritten_text_cursor. Rewritten to take glyph widths into
10286 account.
10287 (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
10288 (fast_find_string_pos): New function.
10289 (fast_find_position): Return the correct vpos. Add parameter
10290 STOP. In the final row, stop before glyphs having STOP as object.
10291 Don't consider glyphs that are not from a buffer.
10292 (fast_find_position) [0]: Add a presumably more correct version
10293 for after 21.1.
10294 (expose_window_tree, expose_frame): Don't compute intersections here.
10295 (expose_window): Do it here instead.
10296 (expose_window_tree, expose_window, expose_line): Return 1 when
10297 overwriting mouse-face.
10298 (expose_window): If W is the window currently being updated, mark
10299 the frame garbaged.
10300 (expose_frame): If mouse-face was overwritten, redo it.
10301 (x_use_underline_position_properties): New variable.
10302 (syms_of_xterm): DEFVAR_BOOL it.
10303 (x_draw_glyph_string): Add comment to use it in future.
10304 (x_draw_glyph_string): Restore clipping after drawing box.
10305 Fix a computation of the underline position.
10306 (w32_get_glyph_string_clip_rect): Minor cleanup.
10307 (x_fill_stretch_glyph_string): Remove an assertion.
10308 (x_produce_glyphs): Don't convert multibyte characters
10309 to unibyte characters in unibyte buffers.
10310 (cursor_in_mouse_face_p): New function.
10311 (x_draw_stretch_glyph_string): Use it to choose a different GC
10312 when drawing a cursor within highlighted text. Don't draw
10313 background again if it has already been drawn.
10314 (x_draw_glyph_string_box): Don't draw a full-width
10315 box just because the glyph row's full_width_p flag is set.
10316 (x_draw_glyphs): Fix computation of rightmost x for
10317 full-width rows.
10318 (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
10319 (w32_draw_relief_rect): Extend left shadow to the bottom and left;
10320 change bottom shadow accordingly. Some cleanup.
10321 (x_update_window_end): Handle overwritten mouse face
10322 also for tool bar windows.
10323 (show_mouse_face): Set the glyph row's mouse_face_p flag also when
10324 DRAW is DRAW_IMAGE_RAISED.
10325 (clear_mouse_face): Return 1 if text with mouse face was
2c568af5
SM
10326 actually redrawn. Make the function static.
10327 Reset dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
c169b8f1
JR
10328 optimize away highlighting if we pass over that same overlay again.
10329 (note_mouse_highlight): Call mouse_face_overlay_overlaps
10330 to detect a case where we have to highlight a different region
10331 despite not having left the currently highlighted region.
10332 Set mouse_face_overlay in the x_display_info. Avoid changing the
10333 mouse pointer shape when show_mouse_face has already done it, or
10334 there is no need. Handle mouse-face and help-echo in strings.
10335 (glyph_rect): New function.
10336 (w32_mouse_position): Use it to raise the threshold for mouse
10337 movement event generation.
10338 (w32_initialize_display_info): Initialize the x_display_info's
10339 mouse_face_overlay.
10340 (w32_set_vertical_scroll_bar): Don't clear a zero height
10341 or width area.
10342 (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
10343 a widget to zero height.
10344
3cf3436e 10345 * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
4fdd691b 10346 Protect unibyte strings created by replacing their multibyte
3cf3436e
JR
10347 equivalents in menu_items.
10348 (w32_menu_show): Don't overwrite an item's name with its key
10349 description in case the description is a multibyte string.
10350 (single_submenu): Some cleanup.
10351
10352 * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
10353 (postprocess_image): New function.
10354 (lookup_image): Call it for all image types except PostScript.
10355 (x_kill_gs_process): Call postprocess_image.
10356 (tiff_error_handler, tiff_warning_handler): New functions.
10357 (tiff_load): Install them as handlers.
10358 (x_kill_gs_process): Recognize if someone has cleared the image
10359 cache under us.
10360 (valid_image_p): Protect better against invalid image
10361 specifications. Previous code could signal an error.
10362 (Fx_hide_tip, Fshow_tip): Doc fix.
10363 (Fv_max_tooltip_size): New variable.
10364 (syns_of_xfns): DEFVAR_LISP it.
10365 (Fx_show_tip): Add parameter TEXT. Set the tip frame's root
10366 window buffer to *tip* right after creating the frame. Set frame's
10367 window_width. Use a maximum tooltip size specified by
10368 Vx_max_tooltip_size, if that has valid contents.
10369 (compute_tip_xy): Add parameters WIDTH and HEIGHT.
10370 Make sure the tooltip is completely visible.
10371 (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
10372 (Fx_create_frame): Adjust the frame's height for presence
10373 of the tool bar before calling x_figure_window_size.
10374 (x_set_tool_bar_lines): Clear the tool bar window's current matrix
10375 when the window gets smaller.
10376 (x_set_foreground_color): Set frame's cursor_pixel.
10377 (x_set_foreground_color, x_set_background_color): Cleaned up.
10378 (x_set_font): Handle case of x_new_fontset returning the same name
10379 as before, although there was a change in fontsets.
10380
386ca361
MB
103812001-10-21 Miles Bader <miles@gnu.org>
10382
c2d53558 10383 * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
386ca361
MB
10384 (Flogxor): Add usage: string to doc string.
10385 * charset.c (Fstring): Likewise.
10386 * callproc.c (Fcall_process_region, Fcall_process): Likewise.
10387 * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
10388
f00691a3 103892001-10-21 Pavel Jan\e,Am\e(Bk <Pavel@Janik.cz>
14ff1ee0 10390
03be2694
PJ
10391 * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
10392
10393 * alloc.c: Reindent DEFUNs with doc: keywords.
10394
10395 * abbrev.c (Finsert_abbrev_table_description): Reindent.
10396
14ff1ee0
PJ
10397 * frame.c: Change doc-string comments to `new style' [w/`doc:'
10398 keyword].
10399
2f147815 10400See ChangeLog.9 for earlier changes.
6922b018
KH
10401
10402;; Local Variables:
49b3bd82 10403;; coding: iso-2022-7bit
6922b018 10404;; End:
2a34a036 10405
2f147815 10406 Copyright (C) 2001, 2002 Free Software Foundation, Inc.
2a34a036
GM
10407 Copying and distribution of this file, with or without modification,
10408 are permitted provided the copyright notice and this notice are preserved.