(f90-looking-at-where-or-forall): Oops, defsubst, not defun.
[emacs.git] / src / ChangeLog
blob40f74df59e0ece42864379f8de193342b726588e
1 2002-05-20  Richard M. Stallman  <rms@gnu.org>
3         * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
5         * keyboard.c (read_char_minibuf_menu_prompt): Don't list
6         equivalent key bindings here.
8 2002-05-20  Ken Raeburn  <raeburn@gnu.org>
10         Change symbol structure to contain a lisp object for the symbol
11         name:
12         * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
13         object field named "xname".
14         (SYMBOL_NAME): New macro.
15         * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
16         name field.
17         * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
18         (mark_object, gc_sweep): Use symbol xname field and XSTRING
19         instead of name field.
20         * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
21         SYMBOL_NAME instead of XSYMBOL and name field.
22         * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
23         instead of XSYMBOL and name field.
24         * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
25         and SYMBOL_NAME instead of XSYMBOL and name field.
26         * coding.c (Fread_coding_system, code_convert_region1)
27         (code_convert_string1, code_convert_string_norecord)
28         (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
29         XSYMBOL and name field.
30         * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding) 
31         (Fmake_variable_buffer_local, Fmake_local_variable) 
32         (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
33         of XSYMBOL and name field.
34         * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
35         XSYMBOL and name field.
36         * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
37         instead of XSYMBOL and name field.
38         * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
39         XSYMBOL and name field.
40         * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash): Use
41         SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
42         * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
43         instead of XSYMBOL and name field.
44         * keyboard.c (echo_char, record_char, parse_modifiers_uncached) 
45         (parse_modifiers, apply_modifiers, Fevent_convert_list) 
46         (parse_solitary_modifier, Fexecute_extended_command): Use
47         SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
48         * keymap.c (silly_event_symbol_error, Fsingle_key_description) 
49         (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
50         of XSYMBOL and name field.
51         (describe_command, describe_translation): Use SYMBOL_NAME and
52         assignment instead of XSYMBOL and name field and XSETSTRING.
53         * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
54         instead of XSYMBOL and name field.
55         (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
56         name field and XSETSTRING.
57         * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
58         of XSYMBOL and name field.
59         * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
60         assignment instead of XSYMBOL and name field and XSETSTRING.
61         * print.c (print_error_message, print_object): Use SYMBOL_NAME and
62         XSTRING instead of XSYMBOL and name field.
63         * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
64         and XSTRING instead of XSYMBOL and name field.
65         * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
66         and XSTRING instead of XSYMBOL and name field.
67         * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
68         XSTRING instead of XSYMBOL and name field.
69         * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
70         of XSYMBOL and name field.
71         * xselect.c (symbol_to_x_atom, x_get_foreign_selection): Use
72         SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
74 2002-05-19  Ken Raeburn  <raeburn@gnu.org>
76         * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
77         and XCDR real rvalues in most configurations.
79         * buffer.c (fix_overlays_in_range, fix_overlays_before): Don't
80         take the address of the cdr part of a cons cell; instead, track
81         the parent cell and call XSETCDR, or set the variable for the head
82         of the list if we haven't started down the list yet.
84 2002-05-19  Richard M. Stallman  <rms@gnu.org>
86         * doc.c (reread_doc_file): Don't ask for confirmation.
88 2002-05-18  Jason Rumney  <jasonr@gnu.org>
90         * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
91         (xbm_load_image): Use it.
92         (xbm_load): Ditto.
93         (xbm_read_bitmap_data): Reverted to xfns.c version.
94         From David Ponce <david@dponce.com>.
96 2002-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
98         * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
99         2.02 and later.
101 2002-05-16  Juanma Barranquero  <lektu@terra.es>
103         * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix
104         typo.
106 2002-05-15  Stefan Monnier  <monnier@cs.yale.edu>
108         * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
109         meaningful test.
110         (read_char_minibuf_menu_prompt): Fix typo.
112 2002-05-15  Eli Zaretskii  <eliz@is.elta.co.il>
114         * eval.c (Fcommandp): Doc fix.
116 2002-05-13  Stefan Monnier  <monnier@cs.yale.edu>
118         * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
119         (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
120         (Fset_keymap_parent): Gcpro a bit more.
121         (access_keymap): Gcpro around meta_map call and around the main loop.
122         (get_keyelt): Gcpro when following indirect references.
123         (copy_keymap_item): New fun, extracted from Fcopy_keymap.
124         (copy_keymap_1, Fcopy_keymap): Use it.  Don't copy the parent map.
125         (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
126         Remove useless ad-hoc remap code.
128 2002-05-13  Richard M. Stallman  <rms@gnu.org>
130         * search.c (search_buffer): Give up boyer moore search if inverse
131         translation change charset_base.
133 2002-05-12  Eli Zaretskii  <eliz@is.elta.co.il>
135         * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
136         characters is carried over from the previous block of text, adjust
137         coding->produced to account for the extra character.
139 2002-05-11  Andreas Schwab  <schwab@suse.de>
141         * coding.c (intersection): Keep the elements of the returned list
142         in the same order as in the first list.
144 2002-05-11  Kim F. Storm  <storm@cua.dk>
146         * keymap.c (current_minor_maps): Fixed resizing of cmm_maps;
147         only update cmm_size if realloc actually succeeds.
148         Testing with initial size of 2 elements revealed that using
149         realloc on GNU/Linux would cause a random trap in xmalloc
150         later on, so I rewrote the code to use malloc/bcopy/free instead
151         of realloc.
153 2002-05-10  Jason Rumney  <jasonr@gnu.org>
155         * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
157 2002-05-10  Eli Zaretskii  <eliz@is.elta.co.il>
159         * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
160         parens, to ensure correct evaluation order.
162 2002-05-10  Kim F. Storm  <storm@cua.dk>
164         * keymap.c (Vemulation_mode_map_alists): New variable.
165         (syms_of_keymap): DEFVAR_LISP it.
166         (current_minor_maps): Process keymap alists in that list before
167         minor-mode-overriding-map-alist and minor-mode-map-alist.
169 2002-05-09  Richard M. Stallman  <rms@gnu.org>
171         * search.c (Freplace_match): Doc fix.
173 2002-05-09  Kim F. Storm  <storm@cua.dk>
175         * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1): 
176         Enlarge cursor rectangle drawn around image with non-zero relief.
178         * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1): 
179         Enlarge cursor rectangle drawn around image with non-zero relief.
181         * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1): 
182         Enlarge cursor rectangle drawn around image with non-zero relief.
184 2002-05-07  Eli Zaretskii  <eliz@is.elta.co.il>
186         * xselect.c (lisp_data_to_selection_data): Don't set selection
187         type if comes from the Lisp object's car.  If the selection
188         contains a pure ASCII text, always return QSTRING as its type.
190 2002-05-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
192         * mac.c (mac-cut-function): Doc fix.
194 2002-05-05  Richard M. Stallman  <rms@gnu.org>
196         * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
198 2002-05-04  Jason Rumney  <jasonr@gnu.org>
200         * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
201         for event-click-count.
203         * process.c (init_process): Only add server subfeature if we can
204         use non-blocking I/O.
206 2002-05-04  Andrew Choi  <akochoi@shaw.ca>
208         * macterm.c (XTread_socket): Call WaitNextEvent once instead of
209         repeatedly.
211 2002-05-03  Jason Rumney  <jasonr@gnu.org>
213         * process.c (Fmake_network_process): Only support server sockets
214         when we can make them non-blocking.
216         * s/ms-w32.h (HAVE_SELECT): Define.
218         * w32.h (FILE_NDELAY): New flag.
220         * w32.c (sys_getpeername, fcntl): New functions.
221         (_sys_read_ahead): Temporarily block on non-blocking sockets.
223         * w32proc.c: include sys/file.h.
225 2002-05-03  Colin Walters  <walters@verbum.org>
227         * callproc.c (Vgame_score_directory): Renamed to
228         Vshared_game_score_directory.
230 2002-04-30  Richard M. Stallman  <rms@gnu.org>
232         * s/gnu.h [emacs]: Include stdio.h.
233         (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
235         * eval.c (do_autoload): Error if called while preparing to dump.
237         * fns.c (Frequire): Error if need to load while preparing to dump.
239 2002-04-28  Colin Walters  <walters@verbum.org>
241         * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
242         Default to "~/.emacs.d/games".
244 2002-04-29  Stefan Monnier  <monnier@cs.yale.edu>
246         * lread.c (openp): Change arg exec_only to predicate.
247         (build_load_history): Use XCAR/XCDR.
248         (Flocate_file_internal): New fun.
249         (syms_of_lread): Defsubr it.
250         (Fload): Update call to openp.
252         * lisp.h (openp): Update prototype.
254         * xfns.c (x_create_bitmap_from_file, x_find_image_file):
255         * w32proc.c (sys_spawnve):
256         * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
257         * w32.c (check_windows_init_file):
258         * sound.c (Fplay_sound_internal):
259         * process.c (Fstart_process):
260         * macfns.c (x_create_bitmap_from_file, x_find_image_file):
261         * mac.c (run_mac_command):
262         * emacs.c (init_cmdargs):
263         * callproc.c (Fcall_process): Update call to openp.
265         * textprop.c (remove_properties): Don't use XCAR without CONSP.
267         * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
269 2002-04-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
271         * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
272         (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
274 2002-04-28  Richard M. Stallman  <rms@gnu.org>
276         * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
278         * eval.c (Fcommandp): New arg for_call_interactively.
279         * lisp.h (Fcommandp): Declare new arg.
281 2002-04-28  Jason Rumney  <jasonr@gnu.org>
283         * w32proc.c (syms_of_w32proc): Get true file attributes by default.
285         * w32.c (stat, fstat): Use file index information to generate
286         inodes for directories where available.
288 2002-04-26  Andrew Choi  <akochoi@shaw.ca>
290         * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
291         [HAVE_CARBON]: Include Mac object files.
293         * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
294         fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
295         termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
296         MAC_OSX, and MAC_OS instead of macintosh.
298         * editfns.c [MAC_OS8]: Include stdio.h.
300         * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
302         * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
303         Apple Monaco.
305         * process.c: Declare QCfamily and QCfilter as extern.
306         (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
307         calling select.
309         * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
311         * tparam.c [MAC_OSX]: Don't define BC and UP.
313         * config.in [HAVE_CARBON]: Add.
315         * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
316         Move here from mac/src and mac/inc.
318         * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
320 2002-04-26  Gerd Moellmann  <gerd@gnu.org>
322         * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
323         Compute phys_cursor_width from the x position returned
324         by x_draw_glyhs, which is cheaper.
325         (x_display_and_set_cursor): Compute the buffer-local value
326         of `cursor-in-non-selected-windows' only when needed.
328 2002-04-25  Gerd Moellmann  <gerd@gnu.org>
330         * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
331         cursor on a stretch glyph has a width that depends on
332         x_stretch_cursor_p.
334 2002-04-25  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
336         * abbrev.c (abbrev-start-location): Doc fix.
338         * indent.c (Fvertical_motion): Fix last change.
340 2002-04-25  Gerd Moellmann  <gerd@gnu.org>
342         * indent.c (Fvertical_motion): Move to the start of the line
343         containing PT before moving up or down.
345 2002-04-24  Gerd Moellmann  <gerd@gnu.org>
347         * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
348         case of writing a whole row, more or less analogous to the case of
349         writing only parts of a row.
351         * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
352         0 for NO_CURSOR.
354         * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
356 2002-04-23  Colin Walters  <walters@verbum.org>
358         * buffer.c (syms_of_buffer): Doc fix.
360 2002-04-23  Gerd Moellmann  <gerd@gnu.org>
362         * xterm.c (notice_overwritten_cursor): Handle the special case
363         of the cursor being in the first blank non-text line at the
364         end of a window.
366         * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
367         (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
368         (x_display_and_set_cursor): Don't set phys_cursor_width here, for
369         bar cursors only, to make phys_cursor_width contain what its name
370         suggests.
371         (notice_overwritten_cursor): Consider the cursor image erased if
372         the output area intersects the cursor image in y-direction.
374 2002-04-23  Simon Marshall  <simon@gnu.org>
376         * xfns.c (x_set_mouse_color): Change default for cross_cursor
377         to XC_hand2.
379 2002-04-23  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
381         * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
383 2002-04-22  Kim F. Storm  <storm@cua.dk>
385         * textprop.c (remove_properties): Fixed trap for malformed plist.
387 2002-04-22  Richard M. Stallman  <rms@gnu.org>
389         * cmds.c (Fend_of_line): Handle intangible text in mid line.
391         * window.c (make_window): Initialize height_fixed_p,
392         last_cursor_off_p, and p->cursor_off_p slots.
394 2002-04-20  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
396         * fns.c (use-dialog-box): Doc fix.
398 2002-04-19  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
400         * xterm.c (note_mode_line_or_margin_highlight): Remove unused
401         variables `row', `i' and `area'.
402         (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
403         toolkit library.
405 2002-04-19  Stefan Monnier  <monnier@cs.yale.edu>
407         * xfaces.c (clear_font_table): Don't free the default font of
408         a frame even if it's on another display.
409         (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
410         that could be Qt.
412 2002-04-19  Juanma Barranquero  <lektu@terra.es>
414         * indent.c (Fmove_to_column): Remove unused local variable
415         `next_boundary_byte'.
416         (current_column_1): Likewise.
418 2002-04-19  Eli Zaretskii  <eliz@is.elta.co.il>
420         * msdos.c (Qhbar): New variable.
421         (syms_of_msdos): Intern and staticpro it.
422         (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
423         cursor type.
425 2002-04-19  Dave Lambert <dlambert@acm.org>
427         Theses change implement an underscore-like (`hbar') cursor.
429         * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
431         * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
432         Handle the `hbar' cursor type.
433         (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
435         * xfns.c (Qhbar): New variable.
436         (syms_of_xfns): Intern and staticpro it.
437         (x_specified_cursor_type): Handle `hbar' cursor.
439         * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
440         not defined.
442 2002-04-18  Richard M. Stallman  <rms@gnu.org>
444         * textprop.c (remove_properties): New arg LIST allows scanning
445         either a list or a plist.
446         (interval_has_some_properties_list): New function, like
447         interval_has_some_properties using list instead of plist.
448         All callers changed.
449         (Fremove_list_of_text_properties): New function.
450         (syms_of_textprop): Defsubr it.
452 2002-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
454         * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
456 2002-04-17  Juanma Barranquero  <lektu@terra.es>
458         * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
460 2002-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
462         * window.c (coordinates_in_window): Don't report on margin area
463         if its width is zero.
465 2002-04-16  Jason Rumney  <jasonr@gnu.org>
467         * w32fns.c (Fx_file_dialog): Decode file name before using.
469         * w32term.c (construct_drag_n_drop): Likewise.
471 2002-04-16  Eli Zaretskii  <eliz@is.elta.co.il>
473         * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
474         store load-history in pure space.
476         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
478 2002-04-16  Stefan Monnier  <monnier@cs.yale.edu>
480         * xterm.c (Qlatin_1, Qutf_8): New vars.
481         (syms_of_xterm): Initialize them.
482         (XTread_socket): Eliminate incorrect optimization that tried to avoid
483         decoding the output of X*LookupString.
484         Always use latin-1 to decode the output of XLookupString.
485         Try Xutf8LookupString if XmbLookupString failed.
487         * region-cache.c (new_region_cache): Use BEG.
489 2002-04-16  Gerd Moellmann  <gerd@gnu.org>
491         * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
492         configuration files.
493         (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
494         returns 0.
496 2002-04-15  Andreas Schwab  <schwab@suse.de>
498         * config.in: Regenerated using autoheader.
500         * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
501         m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
502         m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
503         m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
504         m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
505         m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
506         m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
507         m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
508         m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
509         m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
510         m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
511         m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
512         m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
513         m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
514         m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
515         s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
516         STACK_DIRECTION, now set by autoconf.
518 2002-04-14  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
520         * dispnew.c (marginal_area_string): Sort arguments.
522         * dispextern.h (marginal_area_string): Add prototype.
524 2002-04-13  Richard M. Stallman  <rms@gnu.org>
526         * fileio.c (Finsert_file_contents):
527         Don't call temp_output_buffer_setup--do just part, by hand.
529         * coding.c (run_pre_post_conversion_on_str):
530         Don't call temp_output_buffer_setup--do just part, by hand.
532         * keyboard.c (command_loop_1): Don't call start_hourglass
533         or cancel_hourglass when executing a macro.
535         * marker.c (count_markers): New function.
537         * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
538         grow without limit.  Move recently used elements to the front.
540 2002-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
542         * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
544 2002-04-12  Gerd Moellmann  <gerd@gnu.org>
546         * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
547         rows marginal areas.
548         (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
549         (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
551         * dispnew.c (marginal_area_string): Check that glyph row is enabled.
553 2002-04-12  Dave Love  <fx@gnu.org>
555         * dispnew.c (marginal_area_string): New.
557         * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
558         (Qleft_margin, Qright_margin): Declare.
559         (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
561         * xterm.c (note_mode_line_or_margin_highlight): Renamed from
562         note_mode_line_highlight and extended.
564         * keyboard.c (Qleft_margin, Qright_margin): Declare.
565         (make_lispy_event): Deal with mouse events in margins.
567 2002-04-12  Stefan Monnier  <monnier@cs.yale.edu>
569         * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
571         * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
572         than deactivating the mark if tmm is set to `lambda'.
573         (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
574         Use a single event for HELP_EVENT.
575         (Fexecute_extended_command): Save last_point_position.
577 2002-04-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
579         * lisp.h (Fpropertize): Add prototype.
581         * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
583 2002-04-10  Colin Walters  <walters@verbum.org>
585         * config.in: Add HAVE_SHARED_GAME_DIR.
587         * callproc.c: (Vgame_score_directory): New variable.
588         (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
590 2002-04-10  Richard M. Stallman  <rms@gnu.org>
592         * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
594 2002-04-09  Stefan Monnier  <monnier@cs.yale.edu>
596         * minibuf.c (read_minibuf): Use empty_string.
597         (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
598         Short-circuit the search as soon as it "failed".
599         (Fall_completions): Allow lambda forms and lists of strings for alist.
600         (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
601         when require_match is nil.
602         (Ftest_completion): Rename from `test_completion' and export to elisp.
603         Call the predicate also when alist is a list.
604         Obey Vcompletion_regexp_list.
605         (do_completion, Fminibuffer_complete_and_exit): Use it.
606         (Fassoc_string): Rename from `assoc_for_completion'.
607         Allow list of strings as well and export to elisp.
609 2002-04-08  Stefan Monnier  <monnier@cs.yale.edu>
611         * puresize.h (BASE_PURESIZE): Increase to 900KB.
613 2002-04-08  Juanma Barranquero  <lektu@terra.es>
615         * w32.c (sys_accept): Don't hide variable `s'.
617 2002-04-05  Gerd Moellmann  <gerd@gnu.org>
619         * callint.c (Fcall_interactively): Use INTEGERP instead of
620         NUMBERP for checking Vhistory_length.
622 2002-04-05  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
624         * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
625         Doc fix to reflect it.
627 2002-04-04  Richard M. Stallman  <rms@gnu.org>
629         * xdisp.c (display_mode_element): New arg RISKY.
630         Disregard text props found or specified within a variable
631         that isn't marked risky-local-variable.
632         (Qrisky_local_variable): New variable.
633         (syms_of_xdisp): Init and staticpro it.
635 2002-04-04  Stefan Monnier  <monnier@cs.yale.edu>
637         * undo.c (record_point): New fun.
638         (record_delete, record_insert): Use it.
640 2002-04-03  Juanma Barranquero  <lektu@terra.es>
642         * doc.c (Fdocumentation): Add missing parentheses.
643         (Fdocumentation_property): Likewise.
645 2002-04-03  Stefan Monnier  <monnier@cs.yale.edu>
647         * doc.c (Fdocumentation, Fdocumentation_property): When the doc
648         data is 0, just return nil.
650 2002-04-03  Eli Zaretskii  <eliz@is.elta.co.il>
652         * msdos.c (syms_of_msdos): Fix last change with
653         mouse_autoselect_window.
655 2002-04-03  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
657         * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
658         mouse_autoselect_window.
660 2002-04-02  Stefan Monnier  <monnier@cs.yale.edu>
662         * keyboard.c (make_lispy_event): Handle unknown keysyms together
663         with system-specific keysyms.  Use it also for unknown function keys.
665         * doc.c (reread_doc_file): Return whether reload was attempted.
666         (Fdocumentation, Fdocumentation_property): Don't try to reload
667         if the doc is 0 and only ask once.
669         * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
671 2002-04-02  Eli Zaretskii  <eliz@is.elta.co.il>
673         * keyboard.c (read_char): If the event was Qselect_window,
674         restore timer_idleness_start_time to its previous value.
676         * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
678 2002-04-01  Stefan Monnier  <monnier@cs.yale.edu>
680         * region-cache.c (new_region_cache): Use BEG.
682         * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
683         Use BEG and BEG_BYTE.
685         * doc.c (get_doc_string): Return nil if the location is wrong.
686         (reread_doc_file): New fun.
687         (Fdocumentation, Fdocumentation_property):
688         Call it if get_doc_string fails.
689         (Fsnarf_documentation): Make it work for a dumped Emacs.
691         * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
692         Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
694         * charset.c (Fstring): Allow 0 arguments.
696         * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
698         * process.c (DATAGRAM_CONN_P, list_processes_1)
699         (Fprocess_datagram_address, Fset_process_datagram_address)
700         (Fset_network_process_options, server_accept_connection):
701         Fix some int/Lisp_Object confusions (thank you union types).
703 2002-04-01  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
705         * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
707         * w32term.c: Likewise.
708         (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
710         * keyboard.c (Qselect_window): New symbol.
711         (head_table): Use it.
712         (keys_of_keyboard): Bound select-window event to handle-select-window.
713         (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
715         * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
716         (last_window): New variable.
717         (XTread_socket): Generate SELECT_WINDOW_EVENTs.
718         (note_mouse_movement): Remove reimplemented code in #if 0.
719         (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
720         Emacs windows.
722         * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
724 2002-03-31  Gerd Moellmann  <gerd@gnu.org>
726         * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
727         Callers changed.
729 2002-03-30  Richard M. Stallman  <rms@gnu.org>
731         * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
732         loop whenever it stops making progress.
734         * widget.c (set_frame_size): Don't call change_frame_size.
736 2002-03-30  Gerd Moellmann  <gerd@gnu.org>
738         * dispnew.c (direct_output_for_insert):
739         Call mark_window_display_accurate.
741 2002-03-29  Jason Rumney  <jasonr@gnu.org>
743         * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
745 2002-03-29  Eli Zaretskii  <eliz@is.elta.co.il>
747         * Makefile.in (lread.o): Depend on coding.h.
749         * lread.c (openp, Fload): Encode the file name before passing it
750         to `stat', `access', and `emacs_open'.
751         (openp): GCPRO the encoded file name.  Don't recompute Lisp
752         strings unnecessarily.
754 2002-03-29  Kim F. Storm  <storm@cua.dk>
756         * fns.c (Flax_plist_put): Doc fix.
758 2002-03-28  Miles Bader  <miles@gnu.org>
760         * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
762 2002-03-27  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
764         * process.c (set-network-process-options): Add usage.
765         (make-network-process): Doc fix.
767 2002-03-26  Eli Zaretskii  <eliz@is.elta.co.il>
769         * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
771 2002-03-26  Richard M. Stallman  <rms@gnu.org>
773         * fns.c (Fsubstring_no_properties): New function.
774         (Flax_plist_get, Flax_plist_put): New functions.
775         (syms_of_fns): defsubr them.
777         * xdisp.c (update_menu_bar): Test only update_mode_lines;
778         don't test or alter w->update_mode_line.
780         * window.c (Fdisplay_buffer): Doc fix.
782 2002-03-24  Richard M. Stallman  <rms@gnu.org>
784         * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
786 2002-03-24  Gerd Moellmann  <gerd@gnu.org>
788         * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
789         (Fdefmacro): Handle `(declare ...)'.
790         (syms_of_eval) <Qdeclare>: Initialize and staticpro.
791         (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
793 2002-03-24  Jason Rumney  <jasonr@gnu.org>
795         * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
796         (xbm_file_p): Add prototypes.
797         (xbm_format, xbm_image_p): Sync with xfns.c.
798         (reflect_byte): New function.
799         (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
800         (xbm_load_image): Create bitmaps with a depth of 1.
801         (init_xfns): Enable XBM images.
803 2002-03-23  Jason Rumney  <jasonr@gnu.org>
805         * w32term.c (w32_handle_tool_bar_click): Detect up and down events
806         correctly.  Do not pass up_modifier to keyboard buffer.
808         * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
810 2002-03-22  Stefan Monnier  <monnier@cs.yale.edu>
812         * Makefile.in (bootstrapclean): New target.
813         (bootstrap-temacs, bootstrap-doc): Remove.
814         (bootstrap-emacs): Use a bog-standard `temacs'.
815         Don't bother to build a DOC file.
817         * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
819         * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
820         in temacs even if !CANNOT_DUMP.
821         (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
823         * alloc.c (check_pure_size): Only output a warning.
825 2002-03-22  Jason Rumney  <jasonr@gnu.org>
827         * w32fns.c (Fx_create_frame): Enable tool-bar when images are
828         supported.
830         * w32term.c (zv_bits): Declare as short, for word alignment.
831         (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
832         (syms_of_w32term): Define x-use-underline-position-properties.
834         * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
835         (clear_image_cache): Block input, fix logic, clear matrices in
836         all frames that share this cache.
838 2002-03-22  Eli Zaretskii  <eliz@is.elta.co.il>
840         * emacs.c (main): Update the Copyright year in the blurb printed
841         by "emacs --version".
843         * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
845         * xterm.c (XTread_socket): If XK_ISO_Lock and
846         XK_ISO_Last_Group_Lock are defined, handle keysyms between
847         XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
849 2002-03-21  Kim F. Storm  <storm@cua.dk>
851         * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
852         menu-bar bindings in keymap and local-map properties _are_ used.
853         But try keymap property first in accordance with 2002-01-03 patch.
854         Added comment describing why this is not always reliable.
855         (tool_bar_items): Ditto for tool-bar.
857 2002-03-21  Jason Rumney  <jasonr@gnu.org>
859         * w32fns.c (x_clear_image_1): Disable color table code.
861 2002-03-21  Kim F. Storm  <storm@cua.dk>
863         * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
864         removed the wrong version of the DEFUN macro; fixed it.
866         * fns.c (Ffeaturep): Allow subfeature to be a list (test using
867         Fmember rather than Fmemq).
868         (Fprovide): Check that subfeatures is a list.
870         * process.c (QCfeature, QCdatagram): Removed variables.
871         (QCtype, Qdatagram): New variables.
872         (network_process_featurep): Removed function.
873         (Fmake_network_process): Removed :feature check.
874         Use :type 'datagram instead of :datagram t to create a datagram
875         socket.  This allows us to add other connection types (e.g. raw
876         sockets) later in a consistent manner.
877         (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
878         supported subfeatures for feature make-network-process.
879         (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
880         Intern and staticpro QCtype and Qdatagram.
881         (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
883         * xfns.c: (QCtype): Remove duplicate declaration and
884         initialization (is now declared in process.c).
886         * w32fns.c: (QCtype): Remove duplicate declaration and
887         initialization (is now declared in process.c).
889 2002-03-21  Richard M. Stallman  <rms@gnu.org>
891         * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
892         (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
893         when jumping to `fail' to avoid undoing reg changes in the
894         last iteration of the loop.
895         (GET_UNSIGNED_NUMBER): Skip spaces around the number.
897         * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
898         Depend on process.h.
900 2002-03-20  Jason Rumney  <jasonr@gnu.org>
902         Most of the following changes are still conditional on HAVE_IMAGES
903         which is not set by default on Windows.
905         * emacs.c (main) [WINDOWSNT]: Call init_xfns.
907         * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
908         (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
909         (four_corners_best, x_clear_image_1, x_clear_image)
910         (x_alloc_image_color, postprocess_image) 
911         (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image) 
912         (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
913         (init_xfns, syms_of_w32fns): Initialize image functions and constants.
915         * w32gui.h (struct XImage): Define.
917         * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
918         extract mouse co-ordinates.
920 2002-03-20  Jason Rumney  <jasonr@gnu.org>
922         * w32.c (init_winsock): Dynamically load new server and UDP
923         socket functions.
924         (socket_to_fd): New function.
925         (sys_socket): Use it.
926         (sys_setsockopt, sys_listen, sys_getsockname, sys_accept) 
927         (sys_recvfrom, sys_sendto): New wrapper functions.
929         * process.c (QCfamily, QCfilter): Remove duplicate declaration
930         and initialization.
932         * makefile.w32-in (LIBS): Remove $(WSOCK32).
934 2002-03-20  Eli Zaretskii  <eliz@is.elta.co.il>
936         * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr): Don't
937         use "sun" as a variable, it's a predefined constant on Sun
938         machines.
940 2002-03-20  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
942         * bytecode.c (Fbyte_code): Revert last change.
944 2002-03-19  Kim F. Storm  <storm@cua.dk>
946         * makefile.w32-in (LIBS): Add $(WSOCK32).
947         From David Ponce <dponce@voila.fr>.
949 2002-03-18  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
951         * process.c (wait_reading_process_input): Move variables `pname'
952         and `pnamelen' down where they are used.
954         * bytecode.c (Fbyte_code): Discard unused computed value to
955         prevent gcc warning.
957         * lisp.h (Fplist_member): Add prototype.
959 2002-03-18  Kim F. Storm  <storm@cua.dk>
961         * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
962         HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and
963         HAVE_SYS_UN_H.
965         * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
966         Remove explicit GNU_LINUX settings for datagram support.
968 2002-03-18  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
970         * process.c (Fmake_network_process): Remove unused variable `sa'.
971         Doc fix.  Add usage:.
972         (set_socket_options): Remove unused variables `optnum' and
973         `opttype'.
975 2002-03-17  Richard M. Stallman  <rms@gnu.org>
977         * xdisp.c (cursor_type_changed): New variable.
978         (redisplay_internal): Redisplay all windows if cursor_type_changed.
979         Clear it when clearing windows_or_buffers_changed.
980         (try_cursor_movement, redisplay_window, try_window_id)
981         (try_window_reusing_current_matrix): Test cursor_type_changed
982         along with windows_or_buffers_changed.
984         * window.h (cursor_type_changed): New variable.
986         * xfns.c (x_set_cursor_type): Set cursor_type_changed,
987         not update_mode_lines, and always set it to 1.
989         * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
990         if no frames needed redrawing.
992 2002-03-17  Kim F. Storm  <storm@cua.dk>
994         The following changes add support for network server processes,
995         datagram connections, and local (unix) sockets.
997         * process.h (struct Lisp_Process): New member log.
998         Doc fix: Member command used to indicate stopped network process.
999         Doc fix: Member childp contains plist for network process.
1000         Doc fix: Member kill_without_query is inverse of query-on-exit flag.
1002         * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
1003         (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop)
1004         (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature):
1005         New variables.
1006         (NETCONN1_P): New macro.
1007         (DATAGRAM_SOCKETS): New conditional symbol.
1008         (datagram_address): New array.
1009         (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
1010         (status_message): Use concat3.
1011         (Fprocess_status): Add `listen' status to doc string.  Return `stop'
1012         for a stopped network process.
1013         (Fset_process_buffer): Update contact plist for network process.
1014         (Fset_process_filter): Ditto.  Don't enable input for stopped
1015         network processes.  Server must listen, even if filter is t.
1016         (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
1017         New functions.
1018         (Fprocess_kill_without_query): Removed.  Now defined in simple.el.
1019         (Fprocess_contact): Added KEY argument.  Handle datagrams.
1020         (list_processes_1): Optionally show only processes with the query
1021         on exit flag set.  Dynamically adjust column widths.  Omit tty
1022         column if not needed.  Report stopped network processes.
1023         Identify server and datagram network processes.
1024         (Flist_processes): New optional arg `query-only'.
1025         (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
1026         (conv_lisp_to_sockaddr, set_socket_options)
1027         (network_process_featurep, unwind_request_sigio): New helper functions.
1028         (Fprocess_datagram_address, Fset_process_datagram_address):
1029         (Fset_network_process_options): New lisp functions.
1030         (Fopen_network_stream): Removed.  Now defined in simple.el.
1031         (Fmake_network_process): New lisp function.  Code is based on previous
1032         Fopen_network_stream, but heavily reworked with new property list based
1033         argument list, support for datagrams, server processes, and local
1034         sockets in addition to old client-only functionality.
1035         (server_accept_connection): New function.
1036         (wait_reading_process_input): Use it to handle incoming connects.
1037         Do not enable input on a new connection if process is stopped.
1038         (read_process_output): Handle datagram sockets. Use 2k buffer for them.
1039         (send_process): Handle datagram sockets.
1040         (Fstop_process, Fcontinue_process): Apply to network processes.  A stopped
1041         network process is indicated by setting command field to t .
1042         (Fprocess_send_eof): No-op if datagram connection.
1043         (Fstatus_notify): Don't read input for a stream server socket or a
1044         stopped network process.
1045         (init_process): Initialize datagram_address array.
1046         (syms_of_process): Intern and staticpro new variables, defsubr new
1047         functions.
1049 2002-03-16  Jason Rumney  <jasonr@gnu.org>
1051         * w32fns.c (w32_to_all_x_charsets): Return correct type in
1052         startup case.
1054 2002-03-16  Richard M. Stallman  <rms@gnu.org>
1056         * xdisp.c (redisplay_internal, redisplay_windows): 
1057         Use list_of_error to call internal_condition_case_1.
1058         (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
1059         so as to catch all errors with no possibility of debugger redisplay.
1060         (list_of_error): New variable.
1061         (syms_of_xdisp): Init and staticpro it.
1063         * print.c (print_object): Delete `\ ' from printed rep of frame.
1065 2002-03-15  Eli Zaretskii  <eliz@is.elta.co.il>
1067         * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
1068         until its implementation is fixed.
1070 2002-03-14  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1072         * xfns.c (png_load): Remove unused variable `gamma_str'.
1074 2002-03-14  Richard M. Stallman  <rms@gnu.org>
1076         * xfns.c (x_real_positions): Handle failure in XQueryTree.
1078 2002-03-14  Miles Bader  <miles@gnu.org>
1080         * intervals.c (adjust_for_invis_intang): New function.
1081         (set_point_both): Use `adjust_for_invis_intang' to do most of the
1082         work for dealing with invisible+intangible regions.  Do so before
1083         and after both forward and backward movements, to handle both
1084         front-sticky and rear-sticky cases.
1085         * textprop.c (text_property_stickiness): Function moved here from
1086         `editfns.c'.
1087         * intervals.h (text_property_stickiness): New declaration.
1088         * editfns.c (char_property_eq): Function removed.
1089         (text_property_stickiness): Function moved to `textprop.c'.
1091 2002-03-13  Jason Rumney  <jasonr@gnu.org>
1093         * config.in: Add STRFTIME_NO_POSIX2.
1095         * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
1096         and %OX when underlying strftime does not.
1098 2002-03-13  Stefan Monnier  <monnier@cs.yale.edu>
1100         * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
1101         Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
1102         line) to avoid annoying flicker.
1103         (xm_scroll_callback): Get rid of the now unnecessary kludge.
1104         (XTread_socket): Mark it static.
1106         * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
1108 2002-03-13  Kim F. Storm  <storm@cua.dk>
1110         * puresize.h (BASE_PURESIZE): Increase to 775000.
1112 2002-03-12  Juanma Barranquero  <lektu@terra.es>
1114         * editfns.c (syms_of_editfns): Fix typo.
1116 2002-03-12  Gerd Moellmann  <gerd@gnu.org>
1118         * xsmfns.c: Include stdio.h because termhooks.h needs it.
1119         Include termopt.h for interrupt_input.
1121 2002-03-11  Andreas Schwab  <schwab@suse.de>
1123         * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
1125 2002-03-11  Gerd Moellmann  <gerd@gnu.org>
1127         * xterm.c (note_mouse_movement): Put code for
1128         x_autoselect_window_p in #if 0.
1130         * lread.c (Fload): Don't assume that message_with_string uses the
1131         string it is given like a C string.
1133 2002-03-10  Jan D.  <Jan.Djarv@mbox200.swipnet.se>
1135         * xterm.h (x_session_check_input, x_session_initialize): Declared.
1137         * xterm.c: (XTread_socket): Add call to x_session_check_input and
1138         x_session_have_connection.
1139         (x_initialize): Add call to x_session_initialize.
1141         * termhooks.h (enum event_kind): Add save_session_event.
1143         * keyboard.c: Add Emacs event save_session_event.
1145         * emacs.c (main): Add call to syms_of_xsmfns.
1147         * lisp.h: Declare syms_of_xsmfns as extern.
1149         * config.in: Add HAVE_X_SM.
1151         * Makefile.in (LIBXT): Add -lSM -lICE
1152         if HAVE_X_SM and not USE_X_TOOLKIT.
1153         (XOBJ): New file xsmfns.c added.
1155         * xsmfns.c: New file for X session management.
1157 2002-03-09  Jason Rumney  <jasonr@gnu.org>
1159         * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
1160         read-only when setting modified time.
1162 2002-03-08  Gerd Moellmann  <gerd@gnu.org>
1164         * xdisp.c (move_it_vertically_backward): At the end of the
1165         function, when moving forward by lines, treat terminal frames
1166         specially.
1168         * keyboard.c (echo_char): Make sure to add a separator between
1169         keys even if echo_dash hasn't been called.
1171         * xdisp.c: Use new string macros.
1172         (update_echo_area): Pass number of bytes to message3 instead of
1173         number of chars.
1174         (set_message_1): Don't access a string's size_byte directly.
1175         (decode_mode_spec_coding): Use number of bytes of eoltype string
1176         instead number of chars.
1178         * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
1180 2002-03-08  Juanma Barranquero  <lektu@terra.es>
1182         * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
1183         24-bit.
1185 2002-03-06  Jason Rumney  <jasonr@gnu.org>
1187         * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
1189 2002-03-06  Gerd Moellmann  <gerd@gnu.org>
1191         * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
1192         (cancel_echoing, echo_length, echo_truncate): Changed to
1193         work with new kboard definition.
1194         (echo_now): Use message3_nolog instead of message2_nolog.
1196         * alloc.c (mark_kboards): Mark echo_string.
1198         * keyboard.h (ECHOBUFSIZE): Removed.
1199         (struct kboard): Member echoptr removed, member echobuf renamed
1200         to echo_string.
1202         * xdisp.c (message_with_string): Use Fformat instead of doprnt and
1203         message3 instead of message2 to display the message using STRING's
1204         text properties.
1206 2002-03-05  Andreas Schwab  <schwab@suse.de>
1208         * xdisp.c (hscroll_margin): Change to EMACS_INT.
1210 2002-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
1212         * frame.c (default-frame-alist): Explain that setting it doesn't
1213         affect existing frames.
1215 2002-03-05  Stefan Monnier  <monnier@cs.yale.edu>
1217         * indent.c (skip_invisible): Fix my brain fart.
1219         * dispnew.c (sit_for): Don't wait if executing a kbd macro.
1221 2002-03-04  Stefan Monnier  <monnier@cs.yale.edu>
1223         * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
1224         * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
1225         * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
1226         * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
1227         and variables to use EMACS_INT instead of just int.
1229         * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
1231 2002-03-04  Eli Zaretskii  <eliz@is.elta.co.il>
1233         * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
1234         environment, pass it down with corrected value.
1236 2002-03-04  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1238         * lread.c (read_filtered_event): Do not call start_hourglass
1239         before returning.
1241 2002-03-04  Juanma Barranquero  <lektu@terra.es>
1243         * w32term.c (x_display_and_set_cursor): Fix typo.
1245 2002-03-03  Richard M. Stallman  <rms@gnu.org>
1247         * fileio.c (Fmake_temp_name): Doc fix.
1249 2002-03-03  Gary Wong  <gtw@gnu.org>
1251         * termcap.c [!emacs]: Replace ospeed for building standalone
1252         libtermcap, for binary compatibility.
1254         * tparam.c [!emacs]: Move #define of bcopy to after string.h.
1256 2002-03-03  Richard M. Stallman  <rms@gnu.org>
1258         * xrdb.c (file_p): Rename arg `path' to `filename'.
1260         * abbrev.c (Fexpand_abbrev): Increment plist as use count
1261         only if it is an integer.
1263         * xfns.c (png_load): Set screen_gamma based on f->gamma.
1264         If png_get_sRGB gives an answer, call png_set_gamma
1265         using the default image gamma value.
1267         * lread.c (read1): When reading from a file, default string to
1268         multibyte only if it has some multibyte characters.
1270         * print.c (print_object): Output multibyte chars 128...255
1271         using \x even if ! print_escape_multibyte.
1273         * xdisp.c (display_mode_element): Move the places where
1274         bytepos, charpos, this, and lisp_string are set.
1275         Use lisp_string to set bytepos.
1277         * xdisp.c (redisplay_internal):
1278         Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
1280         * xdisp.c (display_mode_element): Merge properties specified with
1281         :propertize onto those that come with the string.
1283 2002-03-03  Eli Zaretskii  <eliz@is.elta.co.il>
1285         * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
1286         automatic-hscrolling.  Users changed.
1287         <hscroll-margin>: Renamed from automatic-hscroll-margin.
1288         Users changed.
1289         <hscroll-step>: Renamed from automatic-hscroll-step.  Users changed.
1291 2002-03-02  Eli Zaretskii  <eliz@is.elta.co.il>
1293         * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
1295 2002-03-02  Kim F. Storm  <storm@cua.dk>
1297         * window.c (Fminibuffer_selected_window): New function.
1298         (syms_of_window): Defsubr it.
1300 2002-03-01  Kim F. Storm  <storm@cua.dk>
1302         * window.h (struct window): New member phys_cursor_width.
1304         * window.c (make_window, replace_window): Init phys_cursor_width.
1306         * xterm.c (x_display_and_set_cursor): Blink box cursor using
1307         hollow box cursor.  Blink bar cursor using 1 pixel wide bar.
1309         * w32term.c (x_display_and_set_cursor): Blink box cursor using
1310         hollow box cursor.  Blink bar cursor using 1 pixel wide bar.
1312         * lisp.h (GCPRO6): New macro.
1314         * process.c (Fopen_network_stream): Use GCPRO6.
1316 2002-03-01  Kim F. Storm  <storm@cua.dk>
1318         * process.c (Qconnect, Qfailed): New variables.
1319         (syms_of_process): Intern and staticpro them.
1320         (Fprocess_status): Document connect and failed return values.
1321         [NON_BLOCKING_CONNECT]: New conditional.
1322         (connect_wait_mask, num_pending_connects): New variables.
1323         (status_message): Convert Qfailed status.
1324         (Fopen_network_stream): Added support for non-blocking connect.
1325         New optional args: filter, sentinel, non_blocking.  Doc updated.
1326         [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]:  Merged common code.
1327         (deactivate_process): Handle pending non-blocking connect.
1328         (wait_reading_process_input): Poll for status of non-blocking
1329         connects.  Exec sentinel directly when connect succeeds.
1330         (status_notify): Don't read process output if not yet connected.
1332 2002-02-28  Kim F. Storm  <storm@cua.dk>
1334         * window.c: (minibuf_selected_window): Renamed from
1335         Vminibuf_selected_window.  Users changed.
1336         (syms_of_window): Staticpro it.
1338 2002-02-26  Kim F. Storm  <storm@cua.dk>
1340         The following changes add a new Vminibuf_selected_window variable
1341         which is similar to Vminibuf_scroll_window, but which is only set
1342         on entry to the minibuffer (from a non-minibuffer window):
1344         * window.c: (Vminibuf_selected_window): New variable.
1345         (struct save_window_data): New member minibuf_selected_window.
1346         (Fset_window_configuration): Restore Vminibuf_selected_window.
1347         (Fcurrent_window_configuration): Save Vminibuf_selected_window.
1348         Set minibuf_scroll_window member to nil if minibuf_level is 0.
1349         (compare_window_configurations): Compare minibuf_selected_window.
1351         * window.h: (Vminibuf_selected_window): Declare extern.
1353         * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
1354         entry to minibuffer or on entry from a non-minibuffer window.
1356         * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
1357         Vminibuf_selected_window instead of Vminibuf_scroll_window.
1359         * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
1360         instead of Vminibuf_scroll_window when deciding in which window
1361         the region should be highlighted.  Consequently, the region remains
1362         highlighteded even when a completion buffer is also displayed.
1364 2002-02-26  Eli Zaretskii  <eliz@is.elta.co.il>
1366         * fileio.c (Fsubstitute_in_file_name): Fix the change from
1367         2002-02-08.
1369         * xselect.c (Qcompound_text_with_extensions): Renamed from
1370         Qcompound_text_no_extensions.
1371         (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
1373 2002-02-26  Juanma Barranquero  <lektu@terra.es>
1375         * w32proc.c (syms_of_ntproc): Doc fix.
1377 2002-02-24  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1379         * intervals.h: Include "dispextern.h" unconditionally.
1381 2002-02-24  Jason Rumney  <jasonr@gnu.org>
1383         * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
1384         and disp-table.elc.
1385         (lisp): Add emacs-lisp/backquote.elc.
1387 2002-02-24  Kim F. Storm  <storm@cua.dk>
1389         * keymap.c (Flookup_key): Fixed problem in 2001-12-28 patch:
1390         The validation of the event type was too strict as it didn't
1391         allow string events; buffer names are used in bindings for
1392         menu-bar-select-buffer (see `menu-bar-update-buffers').
1394 2002-02-23  Kim F. Storm  <storm@cua.dk>
1396         The following changes rework my patch of 2002-02-06 which
1397         added command remapping by entering the commands directly into
1398         the keymaps.  Now, command remapping uses an explicit `remap'
1399         prefix in the keymaps, i.e. [remap COMMAND].
1401         * keymap.c (Qremap, remap_command_vector): New variables.
1402         (is_command_symbol): Removed function.
1403         (Fdefine_key): No longer accept a symbol for KEY.
1404         Added validation of [remap COMMAND] argument for KEY.
1405         The DEF is no longer required to be a symbol when remapping a command.
1406         (Fremap_command): New function to remap command through keymaps.
1407         (Flookup_key): Perform command remapping initiated by
1408         Fremap_command directly for speed.
1409         (Fkey_binding): Use Fremap_command for command remapping.
1410         (where_is_internal): Handle new command remapping representation.
1411         (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
1412         staticpro them.  Defsubr Fremap_command.
1414         * keymap.h (Fremap_command): Declare extern.
1415         (is_command_symbol): Remove extern.
1417         * keyboard.c (command_loop_1): Use Fremap_command for command
1418         remapping; now try command remapping for all symbols.
1420 2002-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
1422         * coding.h (run_pre_post_conversion_on_str): Add prototype.
1424 2002-02-23  Jason Rumney  <jasonr@gnu.org>
1426         * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
1427         on the string before encoding it.
1428         (Fw32_get_clipboard_data): Run post-read-conversion on the string
1429         after decoding it.
1431         * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
1433 2002-02-23  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1435         * w32term.c (enter_timestamp): Remove unused static variable to
1436         prevent warning.
1438         * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
1440 2002-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
1442         * w16select.c (Fw16_get_clipboard_data): Fix last change.
1444         * xselect.c (selection_data_to_lisp_data): Fix last change.
1446 2002-02-22  Jason Rumney  <jasonr@gnu.org>
1448         * w32term.h (struct w32_output): New member menu_command_in_progress.
1450         * w32menu.c (menubar_selection_callback): Free the menu and
1451         clear the menu_command_in_progress flag.
1453         * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
1454         (menu_free_timer): New variable.
1455         (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
1456         (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
1457         <WM_EXITMENULOOP>: Delay before freeing menu.  Do nothing if a
1458         menu command is in progress.
1459         <WM_COMMAND>: Set the menu_command_in_progress flag.
1460         Kill any menu_free_timer that is running.
1462         * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
1463         Call ExtTextOutA rather than ExtTextOut.
1465 2002-02-22  Eli Zaretskii  <eliz@gnu.org>
1467         * puresize.h (BASE_PURESIZE): Increase to 755000.
1469 2002-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
1471         * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
1472         on the string before encoding it.
1473         (Fw16_get_clipboard_data): Run post-read-conversion on the string
1474         after decoding it.
1476 2002-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
1478         Support for ICCCM  Extended Segments in X selections:
1480         * xselect.c <Qcompound_text_no_extensions>: New variable.
1481         (syms_of_xselect): Intern and staticpro it.
1482         (selection_data_to_lisp_data): Run post-read-conversion on decoded
1483         selection text.
1484         (lisp_data_to_selection_data): If next-selection-coding-system is
1485         compound-text-no-extensions, set the type of selection to be
1486         compound-text.
1488         * xterm.h (x_encode_text): Update prototype.
1490         * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
1491         callers changed.  If SELECTIONP is non-zero, run the
1492         pre-write-conversion function before encoding the selection text.
1494 2002-02-21  Kim F. Storm  <storm@cua.dk>
1496         * frame.c (syms_of_frame): Change mouse-highlight default to t.
1498         * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
1499         Correct composing of language-change event.
1501 2002-02-20  Kim F. Storm  <storm@cua.dk>
1503         * keyboard.c (menu_bar_items): Don't include keymap or local-map
1504         bindings at PT when building menu (the menu is not updated often
1505         enough for this to work reliable).
1506         (tool_bar_items): Likewise.
1507         (current_active_maps): Removed unused (and buggy) function.
1509 2002-02-20  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1511         * xfns.c (gif_load): Use correct width and height for GIF images.
1513 2002-02-19  Eli Zaretskii  <eliz@is.elta.co.il>
1515         * floatfns.c (Fatan): Accept an optional second arg and call
1516         atan2 if passed 2 args.
1518 2002-02-18  Jason Rumney  <jasonr@gnu.org>
1520         * w32term.c (glyph_rect): Determine the row and glyph more precisely.
1522 2002-02-17  Jason Rumney  <jasonr@gnu.org>
1524         * w32term.c (x_autoselect_window_p): New variable.
1525         (syms_of_w32term): DEFVAR_BOOL and initialize it.
1526         (note_mouse_movement): Use it.
1528         * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
1530         * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
1532         * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
1533         New variables.
1534         (syms_of_w32fns): Intern and staticpro them.
1535         (x_frame_parms) <"fullscreen">: New parameter.
1536         (x_fullscreen_move, x_set_fullscreen): New functions.
1537         (x_set_frame_parameters): Support Qfullscreen.
1538         (x_real_positions): Save x/y_pixels_diff frame params.
1539         (x_figure_window_size): Support full-screen frames.
1540         (Fx_create_frame): Default the fullscreen parameter.
1542         * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
1543         (x_fullscreen_adjust): New functions.
1544         (w32_read_socket) <WM_WINDOWPOSCHANGED>:  Don't resize to
1545         fullscreen.  Call x_check_fullscreen_move, and set the
1546         want_fullscreen member of output_data.w32
1547         <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
1549         * w32term.h: New enum for FULLSCREEN_* constants.
1550         (struct w32_output): New members want_fullscreen, x_pixels_diff,
1551         y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
1552         (x-fullscreen-adjust): New prototype.
1554 2002-02-17  Kim F. Storm  <storm@cua.dk>
1556         * frame.c: (Vmouse_highlight): New variable.
1557         (syms_of_frame): DEFVAR_LISP it.
1559         * frame.h: (Vmouse_highlight): Declare extern.
1561         * xterm.h (struct x_display_info): Add mouse_face_hidden.
1563         * xterm.c (disable_mouse_highlight): Removed variable.
1564         (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
1565         (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
1566         (XTread_socket): Turn mouse_face_hidden off after mouse movement,
1567         and on after keyboard input.
1568         (x_term_init): Initialize mouse_face_hidden.
1570         * msdos.h (struct display_info): Add mouse_face_hidden.
1572         * msdos.c (disable_mouse_highlight): Removed variable.
1573         (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
1574         (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
1575         (internal_terminal_init): Initialize mouse_face_hidden.
1576         (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
1577         and on after keyboard input.
1579         * w32term.h (struct w32_display_info): Add mouse_face_hidden.
1581         * w32term.c (disable_mouse_highlight): Removed variable.
1582         (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
1583         (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
1584         (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
1585         and on after keyboard input.
1586         (w32_initialize_display_info): Initialize mouse_face_hidden.
1588 2002-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
1590         * msdos.c (last_mouse_window): New variable.
1591         (dos_rawgetc): Fix last change--if the mouse is in the same window
1592         as recorded in last_mouse_window, don't select this window.
1594         * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
1596         * msdos.c (x_autoselect_window_p): New variable.
1597         (syms_of_msdos): Defvar it.
1598         (dos_rawgetc): If x_autoselect_window_p is set, select the window
1599         in which the last mouse movement occured, unless it is already
1600         selected.
1602         * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
1603         New variables.
1604         (syms_of_xdisp): DEVFAR them.
1605         (hscroll_window_tree): Use automatic_hscroll_margin and
1606         Vautomatic_hscroll_step to compute the amount of window scrolling.
1608 2002-02-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1610         * xterm.c (x-autoselect-window): New variable.
1611         (note_mouse_movement): Use it.
1613         * keyboard.c: Do not include "systime.h" twice.
1615 2002-02-15  Andreas Schwab  <schwab@suse.de>
1617         * puresize.h (BASE_PURESIZE): Increase to 9/5.
1619         * alloc.c (NSTATICS): Increase to 1280.
1621 2002-02-15  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
1623         * alloc.c (NSTATICS): Bump to 1026.
1625         * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
1626         (Vx_super_keysym): New variables.
1627         (syms_of_xterm): DEFVAR_LISP them.
1628         (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
1629         variables to determine which keys to use for the various modifiers.
1631 2002-02-13  Kim F. Storm  <storm@cua.dk>
1633         * window.c: (Vmode_line_in_non_selected_windows): Removed.
1634         (mode_line_in_non_selected_windows): New variable.
1635         (syms_of_window): DEFVAR_BOOL it.
1637         * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
1638         Use mode_line_in_non_selected_windows.
1639         (mode_line_in_non_selected_windows): Declare extern.
1640         (Vmode_line_in_non_selected_windows): Removed extern.
1642 2002-02-13  Richard M. Stallman  <rms@gnu.org>
1644         * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
1645         (Fthis_single_command_keys, Fthis_single_command_raw_keys)
1646         (Fclear_this_command_keys): Doc fixes.
1648         * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
1649         (update_face_from_frame_parameter): Increment face_change_count
1650         and windows_or_buffers_changed to force redisplay using changed faces.
1652         * xdisp.c (QCpropertize): New variable.
1653         (mode_line_proptrans_alist): New variable.
1654         (display_mode_element): New arg PROPS; all calls changed.
1655         Implement this, for strings.
1656         Handle literal output of strings by sharing the
1657         main-line code for strings, using local var `literal'.
1658         Handle :propertize feature.
1659         (syms_of_xdisp): Initialze and staticpro QCpropertize and
1660         mode_line_proptrans_alist.
1662 2002-02-11  Kim F. Storm  <storm@cua.dk>
1664         * window.c: (Vmode_line_in_non_selected_windows): New variable.
1665         (syms_of_window): DEFVAR_LISP it.
1667         * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
1668         (CURRENT_MODE_LINE_FACE_ID): Use it.
1669         (Vmode_line_in_non_selected_windows): Declare extern.
1671         * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
1672         to get mode line face.
1674 2002-02-11  Eli Zaretskii  <eliz@is.elta.co.il>
1676         * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
1677         variables; cus-start.el doesn't need them anymore.
1679 2002-02-09  Kim F. Storm  <storm@cua.dk>
1681         * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
1682         reduction.  This fixes a display problem where stray newlines were
1683         inserted in the window (corrected by C-l).  Clarified code (IMHO).
1685 2002-02-09  Eli Zaretskii  <eliz@is.elta.co.il>
1687         * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
1689         * xdisp.c (display_mode_lines): Fix last change.
1691 2002-02-09  Jason Rumney  <jasonr@gnu.org>
1693         * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
1694         match each other.
1695         (w32_load_system_font): Prevent Cleartype fonts from loading.
1696         (Fx_show_tip): Ensure tip frames are above other topmost windows.
1698 2002-02-09  Kim F. Storm  <storm@cua.dk>
1700         * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
1701         (CURRENT_MODE_LINE_HEIGHT): Use it.
1702         (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
1704         * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
1705         (pos_visible_p, handle_face_prop): Likewise.
1706         (display_mode_lines): Likewise, but for the real selected window.
1707         (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
1709         * xfaces.c (Qmode_line_inactive): New face variable for mode-line
1710         in non-selected windows.
1711         (realize_basic_faces): Realize it.
1712         (syms_of_term): Intern and staticpro it.
1714 2002-02-08  Kim F. Storm  <storm@cua.dk>
1716         * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
1717         Changed mail addresses to emacs-devel@gnu.org.
1719 2002-02-08  Eli Zaretskii  <eliz@is.elta.co.il>
1721         * fileio.c (Fsubstitute_in_file_name): If the file name includes
1722         ~user, and there's no such user, don't discard everything before ~user.
1724         * floatfns.c (Fround): Doc fix.
1726 2002-02-08  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1728         * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
1730 2002-02-07  Stefan Monnier  <monnier@cs.yale.edu>
1732         * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
1734 2002-02-07  Kim F. Storm  <storm@cua.dk>
1736         * keymap.c (where_is_internal): Only check whether definition is
1737         remapped if it fulfills is_command_symbol.
1739 2002-02-07  Andreas Schwab  <schwab@suse.de>
1741         * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
1743         * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
1745 2002-02-06  Kim F. Storm  <storm@cua.dk>
1747         * keymap.c (Fdefine_key): Allow symbol as KEY argument for
1748         defining command remapping.  Doc updated.
1749         (Flookup_key): Remap command through keymap if KEY is a symbol.
1750         (is_command_symbol): New function.
1751         (Fkey_binding): Use it.  New optional argument NO-REMAP.
1752         Doc updated.  Callers changed.  Perform command remapping via
1753         recursive call unless that arg is non-nil.
1754         (where_is_internal): New argument no_remap.  Callers changed.
1755         Call recursively to find original key bindings for a remapped
1756         comand unless that arg is non-nil.
1757         (Fwhere_is_internal): New optional argument NO-REMAP.
1758         Doc updated.  Callers changed.  Pass arg to where_is_internal.
1760         * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
1761         (is_command_symbol): Added prototype.
1763         * keyboard.c (Vthis_original_command): New variable.
1764         (syms_of_keyboard): DEFVAR_LISP it.
1765         (command_loop_1): Set it, and perform command remapping.
1767 2002-02-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1769         * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
1771 2002-02-06  Jason Rumney  <jasonr@gnu.org>
1773         * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
1775 2002-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
1777         * charset.c (get_charset_id): Use if-else instead of ?:.
1779 2002-02-06  Richard M. Stallman  <rms@gnu.org>
1781         * filelock.c (S_ISLNK): Define if not defined.
1783 2002-02-03  Richard M. Stallman  <rms@gnu.org>
1785         * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
1787         * lread.c (read1): Redesign strategy for force_multibyte and
1788         force_singlebyte.  Now is_multibyte records whether read_buffer
1789         is multibyte.  Encountering any multibyte character makes it so.
1791 2002-02-02  Stefan Monnier  <monnier@cs.yale.edu>
1793         * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
1794         with the same sequence, map that sequence to f10 rather than f0.
1796 2002-02-03  Andreas Schwab  <schwab@suse.de>
1798         * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
1799         latter never being defined on GNU/Linux.
1801 2002-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
1803         * xfaces.c (realize_default_face): Don't set the weight and slant
1804         of the default face to Qnormal, unless these attributes are
1805         unspecified.
1807 2002-02-02  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1809         * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
1810         Call cancel_hourglass unconditionally.
1812         * eval.c (Fsignal): Remove duplicated declaration of
1813         the variable `display_hourglass_p'.
1815 2002-01-31  Richard M. Stallman  <rms@gnu.org>
1817         * editfns.c (region_limit): Nicer error message.
1819         * coding.c (decode_composition_emacs_mule):
1820         Give up if NCOMPONENT gets too large to index `component'.
1822         * callint.c (check_mark): New arg to specify clearer error message.
1823         Callers changed.
1825 2002-01-27  Richard M. Stallman  <rms@gnu.org>
1827         * minibuf.c (Fcompleting_read): Doc fix.
1829 2002-01-27  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1831         * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
1832         (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
1833         Fix doc-strings.
1835 2002-01-26  Richard M. Stallman  <rms@gnu.org>
1837         * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
1839         * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
1840         and scroll_up_aggressively.
1842 2002-01-26  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1844         * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
1846 2002-01-25  Stefan Monnier  <monnier@cs.yale.edu>
1848         * textprop.c (Fnext_property_change, Fnext_single_property_change)
1849         (Fprevious_property_change, Fprevious_single_property_change):
1850         Stay within the narrowed-buffer boundaries.
1852 2002-01-25  Eli Zaretskii  <eliz@is.elta.co.il>
1854         * term.c (Ftty_display_color_cells): New function.
1855         (syms_of_term): Defsubr it.
1856         (Ftty_display_color_cells, Ftty_display_color_p): Change the
1857         argument name to DISPLAY.  Doc fix.
1859         * dispextern.h: Add prototype for set_tty_color_mode and
1860         tty_setup_colors.
1862 2002-01-24  Jason Rumney  <jasonr@gnu.org>
1864         * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
1865         If region left to draw is not what was expected, mark the frame as
1866         garbaged.
1868         * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
1869         Combine the regions returned by BeginPaint and GetUpdateRect.
1871 2002-01-23  Jason Rumney  <jasonr@gnu.org>
1873         * w32term.c (x_update_window_begin): Only hide caret if
1874         w32_use_visible_system_caret is set.
1875         (x_update_window_end): Only show caret if
1876         w32_use_visible_system_caret is set.
1877         (syms_of_w32term): Handle SystemParametersInfo call failing.
1879         * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
1881 2002-01-22  Richard M. Stallman  <rms@gnu.org>
1883         * unexelf.c (unexec): Define n so as to cause compilation error
1884         for the code where people have often written n instead of nn.
1886         * .gdbinit (hookpost-run): Defined.
1888 2002-01-22  Jan D.  <Jan.Djarv@mbox200.swipnet.se>
1890         * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
1892 2002-01-21  Jan D.  <Jan.Djarv@mbox200.swipnet.se>
1894         * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
1895         if fullscreen is being set.
1897 2002-01-21  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1899         * minibuf.c (Fminibuffer_contents)
1900         (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
1901         (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
1903 2002-01-21  Richard M. Stallman  <rms@gnu.org>
1905         * window.c (check_frame_size): Fix minimum height calculation.
1907 2002-01-20  Ken Raeburn  <raeburn@gnu.org>
1909         * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
1910         height before comparison.
1911         (WINDOW_WANTS_HEADER_LINE_P): Likewise.
1913 2002-01-20  Jason Rumney  <jasonr@gnu.org>
1915         * w32term.c (w32_system_caret_width): Remove.
1916         (w32_use_visible_system_caret): New user flag.
1917         (syms_of_w32term): DEFVAR_BOOL it.  Initialize based on whether
1918         Windows reports a screen reader running.
1919         (x_update_window_begin): Hide the system caret.
1920         (x_update_window_end): Show the system caret.
1921         (x_display_and_set_cursor): Don't draw a cursor when
1922         w32_use_visible_system_caret is set.  Do not adjust width.
1924         * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
1925         (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
1926         <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
1927         the user requests it.  Use system default width when creating.
1928         <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
1930         * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
1931         New window messages.
1933 2002-01-20  Richard M. Stallman  <rms@gnu.org>
1935         * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
1937 2002-01-20  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1939         * doprnt.c (doprnt1): Fix typos in error call.
1941 2002-01-20  Eli Zaretskii  <eliz@is.elta.co.il>
1943         * unexelf.c (unexec) [__sgi]: Support the .got sections.
1945 2002-01-20  Jason Rumney  <jasonr@gnu.org>
1947         * w32term.c (w32_native_per_char_metric): Don't trust the metrics
1948         that Windows returns.  If a double check fails, try to guess how
1949         ExtTextOut is going to act.
1951         * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
1952         in place of stricmp.
1953         (w32_list_synthesized_fonts): Removed.
1954         (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
1955         (struct enumfont_t): New element; list.
1956         (enum_font_cb2): List all style and charset variations of a font.
1957         (Fw32_select_font): New optional argument; include_proportional.
1958         Exclude vertical fonts.  Exclude proportional fonts unless
1959         include_proportional is non-nil.
1960         (w32_enable_synthesized_fonts): Change to a boolean.
1961         (Fw32_send_sys_command): Doc fix.
1963 2002-01-19  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1965         * dispnew.c (update_frame): Move the variable `tem' to the block
1966         where it is used.
1968 2002-01-19  Jason Rumney  <jasonr@gnu.org>
1970         * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
1971         call to face-set-after-frame-default.
1973 2002-01-18  Richard M. Stallman  <rms@gnu.org>
1975         * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
1976         (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
1978 2002-01-17  Richard M. Stallman  <rms@gnu.org>
1980         * window.c (enlarge_window): When exceeding size of parent,
1981         directly delete all the siblings instead of trying to resize it.
1983 2002-01-17  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
1985         * term.c (set_tty_color_mode): Remove unused variable `tem'.
1987 2002-01-16  Henrik Enberg  <henrik@enberg.org>
1989         * lread.c (init_lread): Move the installed-lisp dirs later in the path.
1991 2002-01-16  Kim F. Storm  <storm@cua.dk>
1993         * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
1994         is invisible.  This can happen if cursor is on top line of a
1995         window, and we switch to a buffer with a header line.
1997         * w32term.c (x_erase_phys_cursor): Ditto.
1999 2002-01-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2001         * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
2002         `dont_resize' only when used.
2004         * xdisp.c: Remove forgotten extern declaration of `Qimage'.
2006 2002-01-15  Eli Zaretskii  <eliz@is.elta.co.il>
2008         * xdisp.c (display_mode_element): When computing charpos, depend
2009         on multibyteness of elt, not the text in field.
2011 2002-01-15  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2013         * buffer.c (Fkill_all_local_variables):
2014         Increment `update_mode_lines' only once.
2016 2002-01-14  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2018         * lisp.h (adjust_after_replace_noundo)
2019         (Fupdate_coding_systems_internal): Add prototypes.
2021         * sound.c (Fplay_sound): Initialize header_size also for :data case.
2023 2002-01-14  Eli Zaretskii  <eliz@is.elta.co.il>
2025         Support for the --color command-line argument and tty-color-mode
2026         frame parameter:
2028         * term.c (tty_default_color_capabilities, tty_setup_colors)
2029         (set_tty_color_mode): New functions.
2030         (term_init): Call tty_default_color_capabilities.
2031         (Qtty_color_mode_alist): New variable.
2032         (syms_of_term): Intern and staticpro it.
2034         * frame.c (store_frame_param): Call set_tty_color_mode for termcap
2035         frames.
2036         (do_switch_frame): For termcap frames, switch the tty
2037         color mode as specified by the frame's parameters.
2038         (Qtty_color_mode): New variable.
2039         (syms_of_frame): Intern and staticpro it.
2041         * emacs.c (USAGE2): Add the --color option.
2042         (standard_args): Ditto.
2044 2002-01-13  Jan Djarv  <Jan.Djarv@mbox200.swipnet.se>
2046         * xterm.h (struct x_output): New members want_fullscreen,
2047         x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
2048         y_pixels_outer_diff.
2049         New enum for FULLSCREEN_* constants.
2050         (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
2051         is NULL.
2052         (x_fullscreen_adjust): Add prototype.
2054         * emacs.c (USAGE2): Add the new full-screen arguments.
2055         (standard_args): Ditto.
2057         * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
2058         New variables.
2059         (syms_of_xfns): Intern and staticpro them.
2060         (x_frame_parms) <"fullscreen">: New parameter.
2061         (x_fullscreen_move, x_set_fullscreen): New functions.
2062         (x_set_frame_parameters): Support for Qfullscreen.
2063         (x_real_positions): More accurate computation of the frame position.
2064         (x_figure_window_size): Support full-screen frames.
2065         (Fx_create_frame): Default the fullscreen parameter.
2067         * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
2068         (XTread_socket) <Expose>: Call x_check_fullscreen.
2069         <ConfigureNotify>: Don't resize to fullscreen.
2070         Call x_check_fullscreen_move, and set the want_fullscreen member of
2071         output_data.x.
2073 2002-01-13  Jason Rumney  <jasonr@gnu.org>
2075         * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
2076         for mice with more than 3 buttons.
2078         * w32term.c (parse_button): New parameter xbutton.  Callers changed.
2079         (w32_read_socket): Handle new "XBUTTON" messages.
2081         * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
2082         (syms_of_w32fns): DEFVAR_BOOL it.
2083         (w32_wnd_proc): Handle new "XBUTTON" messages.
2085 2002-01-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2087         * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
2089 2002-01-13  Andreas Schwab  <schwab@suse.de>
2091         * xterm.c (x_load_font): Never set fonts_changed_p to zero.
2093 2002-01-12  Andreas Schwab  <schwab@suse.de>
2095         * .gdbinit (xbuffer): Remove address operator since data is now a
2096         pointer.
2098 2002-01-11  Richard M. Stallman  <rms@gnu.org>
2100         * insdel.c (adjust_after_replace_noundo): New function.
2102         * coding.c (code_convert_region): Don't copy old text if undo disabled.
2104 2002-01-09  Jason Rumney  <jasonr@gnu.org>
2106         * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
2107         when checking for multiple frames.
2109 2002-01-08  Richard M. Stallman  <rms@gnu.org>
2111         * window.c (delete_window): Rewrite the code for changing the
2112         selected window to handle the case where WINDOW is not a leaf.
2114 2002-01-07  Eli Zaretskii  <eliz@is.elta.co.il>
2116         * process.c (send_process): Set src_multibyte to 1 after the call
2117         top setup_coding_system, not before the call.
2119 2002-01-07  Jason Rumney  <jasonr@gnu.org>
2121         * xmenu.c (set_frame_menubar, xmenu_show):
2122         (xdialog_show): Initialize wv->help to Qnil.
2124         * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
2125         (w32_dialog_show): Initialize wv->help to Qnil.
2127 2002-01-06  Jason Rumney  <jasonr@gnu.org>
2129         * xmenu.c (single_submenu): Initialize wv->help to Qnil.
2131         * w32menu.c (w32_menu_display_help): Revert last change.
2133         * xmenu.c (menu_highlight_callback): Revert last change.
2135 2002-01-06  Andreas Schwab  <schwab@suse.de>
2137         * insdel.c (make_gap_larger): Make sure buffer size does not
2138         overflow range of int.
2140 2002-01-05  Jason Rumney  <jasonr@gnu.org>
2142         * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
2143         OVERLAPS_P.
2145         * w32menu.c (w32_menu_display_help): Hide any tooltip window.
2147         * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
2148         to the left or to the right of the pointer, put it against
2149         the left screen edge.
2150         (x_frame_parms): Add missing braces around initializer.
2152         * w32term.c (x_setup_relief_colors): Don't compute an image's
2153         background color if it doesn't have a Pixmap.
2154         (notice_overwritten_cursor): Don't depend on
2155         output_cursor and updated_area.  Compare pixel coordinates with
2156         window's cursor pixel coordinates.
2157         (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
2158         Call notice_overwritten_cursor with new arg list.
2159         (show_mouse_face): Fix bug setting a row's mouse_face_p flag
2160         unconditionally.
2161         (x_draw_image_relief): Use predefined macro instead of
2162         constant when the value of `tool_bar_button_relief' is negative.
2164         * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
2166 2002-01-04  Richard M. Stallman  <rms@gnu.org>
2168         * xmenu.c (menu_highlight_callback): Hide any tooltip window.
2170 2002-01-03  Richard M. Stallman  <rms@gnu.org>
2172         * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
2173         (Fkey_binding): Try the `keymap' property map first.
2174         (Fdescribe_buffer_bindings): Show `keymap' property bindings before
2175         minor mode bindings.
2177 2002-01-03  Kim F. Storm  <storm@cua.dk>
2179         * keyboard.c (read_key_sequence): Fixed cast of submaps arg to bcopy.
2181 2002-01-02  Richard M. Stallman  <rms@gnu.org>
2183         * keyboard.c (read_key_sequence): Handle the keymap property
2184         before minor mode maps.
2186         * editfns.c (Fformat): Update thissize from field_width
2187         based on the actual width, in the string case.
2189 2002-01-01  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2191         * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
2192         when used as truth value to prevent gcc warnings.
2194         * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
2195         * w32proc.c: Include <config.h>.
2197 2002-01-01  Andreas Schwab  <schwab@suse.de>
2199         * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
2200         not EMACS_INT, to make them compatible with DEFVAR_INT.
2201         * lisp.h (max_specpdl_size): Adjust declaration.
2203 2002-01-01  Richard M. Stallman  <rms@gnu.org>
2205         * print.c (print_object): Test print_escape_nonascii only for
2206         unibyte strings.
2207         (PRINTPREPARE): Once again bind Qprint_escape_nonascii
2208         when outputting to a multibyte buffer.
2210 2001-12-29  Richard M. Stallman  <rms@gnu.org>
2212         * print.c (print_object): In multibyte string, use hex escapes.
2213         Use octal only for unibyte strings.
2214         (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
2216         * lread.c (read_escape): New arg BYTEREP for reporting whether
2217         escape forces unibyte or multibyte.
2218         (read1): When reading a string, take note of that info.
2220 2001-12-29  Ken Raeburn  <raeburn@gnu.org>
2222         * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
2223         comparison to test lisp value returned by Fget.
2225 2001-12-29  Richard M. Stallman  <rms@gnu.org>
2227         * lisp.h (max_specpdl_size): Add declaration.
2229         * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
2231         * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
2232         Handle modifier bits.  Correct typo in error message.
2234 2001-12-28  Richard M. Stallman  <rms@gnu.org>
2236         * abbrev.c: Use the plist of an abbrev for multiple params if nec.
2237         (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
2238         (Fdefine_global_abbrev, Fdefine_mode_abbrev):
2239         Update calls to Fdefine_abbrev.
2240         (write_abbrev): Update for changed data format.
2241         Don't list "system" abbrevs.
2242         (Fexpand_abbrev): Update use count with new data format.
2243         (describe_abbrev): Update for changed data format.
2244         (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
2246         * config.in (HAVE_MBSINIT): Add #undef.
2248         * strftime.c (mbsinit): Define as no-op if not available.
2250         * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
2251         (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
2253         * keymap.c (Flookup_key): Error message if key has wrong data type.
2254         (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
2255         (exclude_key): New variable.
2257 2001-12-28  Gerd Moellmann  <gerd@gnu.org>
2259         * xterm.c (x_setup_relief_colors): Don't compute an image's
2260         background color if it doesn't have a Pixmap.
2262         * xterm.c (notice_overwritten_cursor): Don't depend on
2263         output_cursor and updated_area.  Compare pixel coordinates with
2264         window's cursor pixel coordinates.
2265         (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
2266         Call notice_overwritten_cursor with new arg list.
2267         (show_mouse_face): Fix bug setting a row's mouse_face_p flag
2268         unconditionally.
2270         * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
2271         height of the cursor line to the amount to scroll.
2273 2001-12-27  Richard M. Stallman  <rms@gnu.org>
2275         * intervals.c (set_point_both): The position after an invisible,
2276         intangible character is not an acceptable stopping point.
2278 2001-12-27  Ken Raeburn  <raeburn@gnu.org>
2280         * window.c (enlarge_window): In new preserve_before code, convert
2281         CURBEG from lisp object to integer before doing arithmetic.
2283 2001-12-27  Richard M. Stallman  <rms@gnu.org>
2285         * bytecode.c (Fbyte_code): Undo previous change.
2287 2001-12-26  Kim F. Storm  <storm@cua.dk>
2289         * keyboard.c (record_char): Ignore duplicate help-echo events only
2290         separated by mouse-movement.  When tracking mouse, only record
2291         first and last mouse-movement event in same window.
2292         Don't record mouse-movement events in keyboard macros.
2294 2001-12-25  Richard M. Stallman  <rms@gnu.org>
2296         * window.c (enlarge_window): New arg PRESERVE_BEFORE.  Callers changed.
2297         (Fenlarge_window): New arg PRESERVE_BEFORE.
2299         * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
2300         instead of Fstring_as_unibyte.
2302 2001-12-22  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2304         The following changes remove mocklisp support:
2306         * mocklisp.h, mocklisp.c: Files removed.
2308         * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
2309         `Qmocklisp' and `Qmocklisp_arguments'.
2310         Remove prototype of syms_of_mocklisp.
2312         * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
2314         * callint.c: Do not include mocklisp.h.
2315         (Fcall_interactively): Do not test for mocklisp case.
2317         * eval.c: Remove variables `Qmocklisp_arguments',
2318         `Vmocklisp_arguments' and `Qmocklisp'.  Remove prototype of ml_apply.
2319         (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
2320         Do not test for mocklisp case.
2321         (Fwhile): Remove unused variable `tem'.
2322         (syms_of_eval): Remove variable `moclisp-arguments'.
2324         * data.c (wrong_type_argument): Remove mocklisp case.
2326         * doc.c (Fdocumentation): Remove mocklisp case.
2328         * emacs.c (main): Do not call syms_of_mocklisp.
2330 2001-12-21  Richard M. Stallman  <rms@gnu.org>
2332         * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
2333         to the left or to the right of the pointer, put it against
2334         the left screen edge.
2336 2001-12-21  Eli Zaretskii  <eliz@is.elta.co.il>
2338         * Makefile.in (distclean): Remove .gdbinit if we are building
2339         outside the source tree.
2341 2001-12-19  Eli Zaretskii  <eliz@is.elta.co.il>
2343         * w32.c (emacs_root_dir): New function.
2345         * msdos.c (emacs_root_dir): New function.
2347         * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
2348         of the current drive as the fallback for default_directory.
2350         * dired.c (file_name_completion): Run the elements of
2351         completion-ignored-extensions through ENCODE_FILE.
2353         * lisp.h (scmp): Remove prototype, since it's now a static
2354         function private to dired.c.
2356 2001-12-18  Richard M. Stallman  <rms@gnu.org>
2358         * dired.c (scmp): Function moved from minibuf.c.
2359         Delete multibyte handling--used only on encoded strings.
2361         * minibuf.c (scmp): Function moved to dired.c.
2363         * fns.c (merge): Add QUIT call.
2365 2001-12-18  Dave Love  <fx@gnu.org>
2367         * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
2368         language/georgian.el.
2370 2001-12-18  Eli Zaretskii  <eliz@is.elta.co.il>
2372         * Makefile.in (lisp, shortlisp): Synchronize with changes to
2373         lisp/Makefile.in:DONTCOMPILE.
2375 2001-12-18  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2377         * xdisp.c (window_box_height): Do not return negative values.
2378         From Gerd Moellmann <gerd@gnu.org>.
2380         * keyboard.c (head_table): Add missing braces around initializer.
2382         * term.c (keys): Likewise.
2384         * xfns.c (x_frame_parms, visual_classes): Likewise.
2386 2001-12-17  Sam Steingold  <sds@gnu.org>
2388         * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
2389         patch (COMPOSING_P, not COMPOSING).
2391 2001-12-17  Richard M. Stallman  <rms@gnu.org>
2393         * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
2395         * coding.c (code_convert_region): Update coding->cmp_data->char_offset
2396         before calling decode_coding.
2398         * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
2400         * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
2401         instead of only for COMPOSITION_DISABLED.
2403 2001-12-16  Richard M. Stallman  <rms@gnu.org>
2405         * alloc.c (pure_alloc): After overflow, allocate just a small block.
2407         * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
2409         * buffer.h (struct buffer): New field `display_error_modiff'.
2410         * buffer.c (reset_buffer): Initialize `display_error_modiff'.
2412         * window.c (Frecenter): Clear display_error_modiff field.
2414         * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
2415         Call redisplay_window, but not if display_error_modiff field says no.
2416         (redisplay_window_error): New function.
2417         (displayed_buffer): New variable.
2418         (redisplay_internal, redisplay_windows): Call the new functions
2419         instead of redisplay_window directly.
2421 2001-12-15  Richard M. Stallman  <rms@gnu.org>
2423         * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
2425 2001-12-14  Andrew Innes  <andrewi@gnu.org>
2427         * makefile.w32-in (EMACSLOADPATH): Define.
2428         ($(EMACS)): Run `list-load-path-shadows' after dumping emacs.
2429         (bootstrap-temacs): Remove dependency on bootstrap-clean.
2431 2001-12-13  Eli Zaretskii  <eliz@is.elta.co.il>
2433         * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
2434         parameter have a numeric value all the time.
2436         * w32fns.c (x_report_frame_params): Likewise.
2438 2001-12-12  Richard M. Stallman  <rms@gnu.org>
2440         * fileio.c (Fwrite_region): Doc fix.
2442         * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
2443         (redisplay_internal): Call clear_image_cache only for window terminals.
2445 2001-12-12  Gerd Moellmann  <gerd@gnu.org>
2447         * xdisp.c (move_it_vertically_backward): Change heuristic
2448         for the case that we didn't move far enough initially.
2450         * window.c (Frecenter): Simplify computation in the case of window
2451         system frames and ARG < 0; use window_box_height.
2453 2001-12-11  Richard M. Stallman  <rms@gnu.org>
2455         * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
2456         * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
2458 2001-12-11  Andrew Innes  <andrewi@gnu.org>
2460         * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
2461         arg is negative.
2463 2001-12-11  Richard M. Stallman  <rms@gnu.org>
2465         * m/hp800.h: Split the __hpux conditional into the parts
2466         that are right for GNU/Linux too and the parts that are not.
2467         Use the former if GNU_LINUX.
2468         (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
2470         * s/gnu-linux.h (GNU_LINUX): Defined.
2472 2001-12-11  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2474         * macros.c, msdos.c, w16select.c: Change doc-string comments to
2475         `new style' [w/`doc:' keyword].
2477 2001-12-10  Jason Rumney  <jasonr@gnu.org>
2479         * w32menu.c (w32_free_submenu_strings): Clear menu item struct
2480         before using.
2482 2001-12-09  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2484         * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
2485         keyword].
2487 2001-12-09  Eli Zaretskii  <eliz@is.elta.co.il>
2489         * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
2491         * s/hpux10.h (srand48): Don't undefine.
2493 2001-12-09  Jason Rumney  <jasonr@gnu.org>
2495         * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
2496         Add     comment to explain where the struct came from.
2497         (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
2498         (add_menu_item): Process pop-up menus first to avoid memory leak.
2499         (add_menu_item, w32_menu_display_help): Use `help' field as
2500         Lisp_Object.
2501         (w32_free_submenu_strings): Only free owner-drawn strings.
2503 2001-12-09  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2505         * COPYING: Moved back.
2507         * charset.c (char_to_string_1, translate_char, Fdefine_charset):
2508         Add parentheses around && within ||.
2510         * indent.c (compute_motion): Likewise.
2512         * intervals.c (merge_properties_sticky): Likewise.
2514         * coding.c (setup_coding_system, shrink_encoding_region)
2515         (Fdecode_sjis_char): Likewise.
2517 2001-12-07  Andreas Schwab  <schwab@suse.de>
2519         * xdisp.c (display_mode_element): Don't read past end of string if
2520         it ends with '%'.
2522         * alloc.c (inhibit_garbage_collection): Don't exceed value an int
2523         can hold.
2525         * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum): Rename
2526         from most_positive_fixnum and most_negative_fixnum, resp., and
2527         type changed to Lisp_Object.
2528         (syms_of_data): DEFVAR_LISP them.
2530 2001-12-07  Richard M. Stallman  <rms@gnu.org>
2532         * callproc.c (init_callproc): Set Vdata_directory based on the source
2533         location whenever Emacs was run uninstalled.
2535 2001-12-06  Paul Eggert  <eggert@twinsun.com>
2537         * config.in (HAVE_WORKING_VFORK): New #undefs.
2538         * process.c (create_process):
2539         Use HAVE_WORKING_VFORK, not HAVE_VFORK.
2540         * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
2541         * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
2542         * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
2543         * m/intel386.h (HAVE_VFORK): Likewise.
2544         * m/mips-siemens.h (HAVE_VFORK): Likewise.
2545         * m/mips.h (HAVE_VFORK): Likewise.
2546         * s/freebsd.h (vfork): Remove #define.
2547         * s/lynxos.h (HAVE_VFORK): Remove #undef.
2548         * s/usg5-4-2.h: Fix comment about vfork.
2550 2001-12-06  Richard M. Stallman  <rms@gnu.org>
2552         * s/hpux10.h (random): Add undef.
2553         (HAVE_RANDOM): Define it just once.
2555 2001-12-06  Stefan Monnier  <monnier@cs.yale.edu>
2557         * eval.c: Undo last change: the standard syntax is not wanted.
2559 2001-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
2561         * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
2562         scroll bars of the frame before deleting the frame itself.  If the
2563         frame has a widget, delete the frame with XtDestroyWidget, and do
2564         not call XDestroyWindow before that.
2566 2001-12-06  Kim F. Storm  <storm@cua.dk>
2568         * xfns.c (x_report_frame_params): Return actual fringe widths.
2570         * w32fns.c (x_report_frame_params): Return actual fringe widths.
2572 2001-12-05  Andrew Innes  <andrewi@gnu.org>
2574         * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
2575         excessively large.
2577         * insdel.c (make_gap_larger): New function.
2578         (make_gap_smaller): New function.
2579         (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]: Call
2580         make_gap_smaller if arg is negative.
2582 2001-12-04  Stefan Monnier  <monnier@cs.yale.edu>
2584         * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
2585         Pass a dummy argument when calling interrupt_signal.
2586         (parse_menu_item): Mark disabled items before checking for empty def.
2587         (read_char_minibuf_menu_prompt): Make safety more visible.
2588         (read_key_sequence): Add a `first_unbound' variable.
2589         Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
2590         unbound prefix as soon as we can detect it.
2592         * doc.c (Fsnarf_documentation): Add prototype.
2593         (get_doc_string): Handle negative arguments.
2594         (Fdocumentation): Use AREF and ASIZE.
2595         Move the calls to get_doc_string to a single place.
2596         Don't confuse an interactive-spec for a docstring reference.
2597         (Fdocumentation_property): Take advantage of the fact that
2598         get_doc_string now ignores the sign of the docstring position.
2600         * eval.c: Use standard syntax for usage in docstrings.
2602 2001-12-03  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2604         * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief` an option.
2606 2001-12-02  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2608         * xterm.c (x_draw_image_relief): Use predefined macro instead of
2609         constant when the value of `tool_bar_button_relief' is negative.
2611 2001-12-02  Richard M. Stallman  <rms@gnu.org>
2613         * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
2614         (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
2616         * fileio.c (read_non_regular): Delete Fsignal call.
2618 2001-12-01  Stefan Monnier  <monnier@cs.yale.edu>
2620         * lisp.h (run_hook_list_with_args): Undo last change.
2622 2001-12-01  Gerd Moellmann  <gerd@gnu.org>
2624         * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
2626 2001-12-01  Jason Rumney  <jasonr@gnu.org>
2628         * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
2630         * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
2631         [!WM_MOUSELEAVE]: Define.
2633         * w32menu.c (current_popup_menu, get_menu_item_info):
2634         (set_menu_item_info): New vars.
2635         (set_frame_menubar): Doc fix clarifying GC interaction with menus.
2636         (w32_menu_show): Set current_popup_menu.
2637         (add_menu_item): Allocate new strings for owner-drawn menu items
2638         and help strings.
2639         Use owner-draw for disabled menu items again.
2640         (w32_menu_display_help): Ignore owner-drawn items and popup menus.
2641         (w32_free_submenu_strings, w32_free_menu_strings): New functions.
2643         * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
2644         (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
2645         <WM_EXITMENULOOP>: Free menu strings.
2646         <WM_MOUSELEAVE>: Stop tracking mouse.
2647         (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
2649         * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
2650         and mouse face.
2652 2001-12-01  Kim F. Storm  <storm@cua.dk>
2654         The following changes add left-fringe and right-fringe
2655         frame parameters to adjust fringe widths, or remove one or
2656         both fringes.
2658         * frame.h (struct frame): Remove trunc_area_pixel_width and
2659         trunc_area_cols fields.
2660         (Qleft_fringe, Qright_fringe): Declare.
2661         (FRAME_RIGHT_FRINGE_WIDTH): New macro.
2663         * frame.c (Qleft_fringe, Qright_fringe): New vars.
2664         (syms_of_frame): Initialize them.
2666         * window.c (coordinates_in_window): Handle separate left and right
2667         fringe widths.
2669         * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
2670         and fringe_cols fields.
2671         (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
2672         (FRAME_X_FRINGE_COLS): Use fringe_cols field.
2673         (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
2674         (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
2675         (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
2676         (x_compute_fringe_widths): Add prototype.
2678         * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
2679         fill fringe evenly with small dashes.
2680         (x_draw_fringe_bitmap): Clear background if necessary. Align and
2681         clip the new ZV bitmap to avoid jitter between rows.
2682         (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
2683         background.  Don't draw fringe bitmaps if fringe width is zero.
2684         (x_compute_fringe_widths): New function.
2685         (x_new_font, x_set_window_size_1): Use it.
2687         * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
2688         (x_set_frame_parameters): Process `font' parameter before other
2689         parameters as fringe widths depend on it.
2690         (x_set_fringe_width): New function.
2691         (x_figure_window_size): Use x_compute_fringe_widths.
2692         (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
2693         parameters.
2695         * widget.c (set_frame_size): Use x_compute_fringe_widths.
2696         (EmacsFrameSetCharSize): Ditto.
2698         * w32term.h: Merged changes from xterm.h.
2699         * w32term.c: Merged changes from xterm.c.
2700         * w32fns.c: Merged changes from xfns.c.
2702 2001-11-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2704         * COPYING: Removed.
2706 2001-11-29  Dave Love  <fx@gnu.org>
2708         * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
2709         extra extra slot.
2710         (detect_coding_mask): Fix call of detect_coding_iso2022.
2712 2001-11-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2714         * fileio.c (file-name-coding-system)
2715         (default-file-name-coding-system): Doc fix (links to referenced
2716         variables added).
2718 2001-11-28  Stefan Monnier  <monnier@cs.yale.edu>
2720         * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
2721         Add dummy uses of gcproN variables.
2723         * category.c (describe_category, describe_category_1)
2724         (Fdescribe_categories): Remove.  (Moved to lisp/help-fns.el.)
2725         (syms_of_category): Don't defsubr Sdescribe_categories.
2727 2001-11-28  Richard M. Stallman  <rms@gnu.org>
2729         * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
2731         * Makefile.in (lispdir): New variable, referring to build dir.
2732         (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
2734 2001-11-28  Andrew Innes  <andrewi@gnu.org>
2736         * w32menu.c (w32_menu_display_help): Actually add the new argument
2737         OWNER.
2739 2001-11-28  Jason Rumney  <jasonr@gnu.org>
2741         * w32menu.c (add_menu_item): Do not use owner-draw for disabled
2742         menu items.  From David Ponce <dponce@wanadoo.fr>.
2743         (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
2744         conditionally.
2745         (w32_menu_display_help): New argument OWNER. Rewritten to store a
2746         help event in the owner frame's keyboard buffer.
2748         * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
2749         (Fx_show_tip): Don't subtract last width from row width.
2751         * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
2752         (w32_read_socket): Use EQ to compare frames.
2754 2001-11-28  Gerd Moellmann  <gerd@gnu.org>
2756         * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
2757         OVERLAPS_P.
2759 2001-11-28  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2761         * xdisp.c (message_dolog): Remove unused variables `gcpro2',
2762         `gcpro3' and `gcpro4'.
2764         * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
2766 2001-11-28  Stefan Monnier  <monnier@cs.yale.edu>
2768         * ccl.c: Use AREF and ASIZE.
2770 2001-11-27  Stefan Monnier  <monnier@cs.yale.edu>
2772         * lisp.h (run_hook_list_with_args): Remove.
2773         (LIST_END_P): Fix call to wrong_type_argument.
2774         (make_fixnum_or_float): Use EMACS_INT rather than int.
2776 2001-11-26  Stefan Monnier  <monnier@cs.yale.edu>
2778         * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
2779         (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
2781         * eval.c: Use AREF and ASIZE.
2782         (Ffetch_bytecode): Add the file name to the error message.
2784         * fileio.c (Ffind_file_name_handler): Give precedence to handlers
2785         which match the end of the file-name.
2786         (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
2787         is not a valid env var, but leave it as is instead.
2789         * keymap.c (access_keymap): Handle t bindings like nil bindings.
2790         Make nil bindings in char-tables transparent.
2791         (store_in_keymap): Turn a nil binding into a t binding for char-tables.
2793 2001-11-26  Richard M. Stallman  <rms@gnu.org>
2795         * textprop.c (set_text_properties_1): Allow START, END in either order.
2796         Do nothing if range is empty.
2798         * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
2800         * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
2801         (clean): Not here.
2803 2001-11-25  Stefan Monnier  <monnier@cs.yale.edu>
2805         * textprop.c (set_text_properties_1): Clearly mark that the
2806         interval should not be empty.
2808         * intervals.c (graft_intervals_into_buffer):
2809         Don't call set_text_properties_1 on an empty interval.
2811 2001-11-25  Richard M. Stallman  <rms@gnu.org>
2813         * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
2815         * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
2816         don't lose the data in it.
2818 2001-11-25  Juanma Barranquero  <lektu@terra.es>
2820         * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
2822         * buffer.c (Fkill_buffer): Use Frun_hooks, not Vrun_hooks.
2824         * print.c (temp_output_buffer_setup): Use Frun_hooks, not Vrun_hooks.
2826 2001-11-25  Stefan Monnier  <monnier@cs.yale.edu>
2828         * xfaces.c (merge_face_heights): Coerce back to int explicitly.
2830 2001-11-25  Eli Zaretskii  <eliz@is.elta.co.il>
2832         * window.c (Fset_window_vscroll): Doc fix.  From Kalle Olavi
2833         Niemitalo <kon@iki.fi>.
2835 2001-11-25  Jason Rumney  <jasonr@gnu.org>
2837         * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
2839         * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
2840         (Fx_show_tip): Block input during frame creation.
2841         (Fx_show_tip, Fx_hide_tip): Enable.
2843 2001-11-24  Richard M. Stallman  <rms@gnu.org>
2845         * lread.c (Fload): Detect recursive load error for more than 3
2846         nestings of the same file.
2847         (Vrecursive_load_depth_limit): Variable deleted.
2848         (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
2850 2001-11-24  Jason Rumney  <jasonr@gnu.org>
2852         * xfns.c (compute_tip_xy): Initialize root_x and root_y from
2853         mouse position if either left or top is not specified.
2855         * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
2856         <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
2857         (my_create_tip_window, Fx_show_tip): Adjust size for external border.
2858         (my_create_tip_window): Assign tip_window.
2859         (x_create_tip_frame): Use same defaults as X.
2860         (compute_tip_xy): Remove unused variable.  Use full screen width.
2861         (Fx_show_tip): Do not double height. Call ShowWindow directly.
2863         * w32term.c (x_after_update_window_line): Doc fix.
2864         (w32_read_socket): Doc fix.  Avoid SET_FRAME_GARBAGED for tip
2865         frames.
2866         <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
2868         * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
2869         for all Windowed systems.
2871 2001-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
2873         * msdos.c (IT_clear_screen): If the frame's faces are not yet
2874         realized, use the initial screen colors to clear the screen.
2876 2001-11-23  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
2878         * textprop.c (Fset_text_properties): Remove unused variables
2879         `unchanged', `prev_changed', `s' and `len'.
2881         * search.c (Freplace_match): Remove unused variable `inslen'.
2883         * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
2885 2001-11-22  Jason Rumney  <jasonr@gnu.org>
2887         * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
2888         (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
2889         (my_create_tip_window): New function.
2890         (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
2891         (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
2893 2001-11-20  Jason Rumney  <jasonr@gnu.org>
2895         * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
2896         (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
2898         * w32fns.c (Vw32_system_coding_system): Remove.
2899         (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
2901 2001-11-19  Stefan Monnier  <monnier@cs.yale.edu>
2903         * fileio.c (Fwrite_region): Move choose_write_coding_system to
2904         after build_annotations.
2906         * syntax.c (describe_syntax): Add dummy arg.
2907         (describe_syntax_1): Update call to describe_vector.
2909         * category.c (describe_category): Add dummy arg.
2910         (describe_category_1): Update call to describe_vector.
2912         * keymap.c (Fdescribe_vector): Add `describer' parameter.
2913         (describe_command, describe_translation): Add dummy second param.
2914         (describe_map): Call elt_describer with two arguments.
2915         (describe_vector_princ): Add `fun' parameter.
2916         Call it instead of the hardcoded `princ'.
2917         (describe_vector): Add arg `args'.
2918         Pass it as a new second argument to elt_describer.
2920         * keymap.h (describe_vector): Update prototype.
2922         * frame.c: Don't include keymap.h any more.
2923         (keys_of_frame): Remove.
2925         * lisp.h (keys_of_frame): Remove declaration.
2927         * emacs.c (main): Don't call `keys_of_frame' any more.
2929 2001-11-14  Andreas Schwab  <schwab@suse.de>
2931         * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
2932         if defined, 0 otherwise.
2933         (MAP_FAILED): Define if not defined and use it to test mmap failure.
2934         (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
2936 2001-11-19  Richard M. Stallman  <rms@gnu.org>
2938         * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
2940 2001-11-18  Jason Rumney  <jasonr@gnu.org>
2942         * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
2943         (x_draw_bar_cursor): If the background color of the glyph under
2944         the cursor equals the frame's cursor color, use the glyph's
2945         foreground color for drawing the bar cursor.
2946         (x_after_update_window_line): Clear internal border in different
2947         circumstances.
2948         (w32_set_vertical_scroll_bar): Check for width and height > 0.
2949         (w32_draw_relief_rect): Correct relief by 1 pixel.
2950         (x_set_glyph_string_background_width):
2951         Set extends_to_end_of_line_p if the row's fill_line_p is set and
2952         drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
2953         (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
2954         if cursor_in_non_selected_windows is false.
2955         (show_mouse_face): Clean up.  Recognize overwritten cursor differently.
2956         (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
2957         Notice if cursor gets overwritten.
2958         (notice_overwritten_cursor): Renamed from
2959         note_overwritten_text_cursor.  Rewritten to take glyph widths
2960         into account, and to take X positions as parameters.
2961         (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
2962         around call to x_draw_glyphs.
2963         (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
2964         `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
2965         color to use for image glyph reliefs.
2966         (x_draw_image_relief): Accept zero tool_bar_button_relief.
2967         (glyph_rect): Remove unused variable `area'.
2969         * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
2970         some items.
2971         (x_set_internal_border_width): Set frame garbaged when window
2972         doesn't exist yet.
2973         (Fx_create_frame): Accept zero tool_bar_button_relief.
2974         (x_clear_image_1, four_corners_best, image_background)
2975         (image_background_transparent): New functions.
2976         (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
2977         (gs_format): Add `:background' entry.
2978         (lookup_image): Set IMG's background color if specified.
2979         (pbm_load, xbm_load_image, png_load): Set IMG's background field
2980         when appropriate.
2981         (x_clear_image_1): Reset `background_valid' and
2982         `background_transparent_valid' fields.
2983         (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
2984         calculating it here.  Set IMG's background_transparent field.
2985         (enum xpm_keyword_index): Add XPM_BACKGROUND.
2986         (enum png_keyword_index): Add PNG_BACKGROUND.
2987         (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
2988         (enum tiff_keyword_index): Add TIFF_BACKGROUND.
2989         (enum gif_keyword_index): Add GIF_BACKGROUND.
2990         (enum gs_keyword_index): Add GS_BACKGROUND.
2991         (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
2992         Pre-calculate image background color where necessary.
2993         (x_create_x_image_and_pixmap, xbm_load, gs_load):
2994         Use display info's n_cbits entry for screen depth.
2995         (Fx_show_tip): Remove unused variables `buffer', `top',
2996         `left', `max_width' and `max_height'.
2998         * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
3000 2001-11-18  Gerd Moellmann  <gerd@gnu.org>
3002         * puresize.h (BASE_PURESIZE): Increase to 750000.
3004 2001-11-18  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3006         * frame.c (Fframe_live_p): Doc fix.
3008 2001-11-18  Richard M. Stallman  <rms@gnu.org>
3010         * xdisp.c (message_dolog_marker1, message_dolog_marker2)
3011         (message_dolog_marker3): New static variables hold three markers.
3012         (syms_of_xdisp): Initialize and staticpro them.
3013         (message_dolog): Use message_dolog_marker1..3 instead of
3014         allocating markers each time.  Unchain them when done.
3016 2001-11-17  Richard M. Stallman  <rms@gnu.org>
3018         * doc.c (Fsnarf_documentation): Doc fix.
3020 2001-11-17  Andreas Schwab  <schwab@suse.de>
3022         * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
3024 2001-11-17  Richard M. Stallman  <rms@gnu.org>
3026         * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
3028 2001-11-17  Jason Rumney  <jasonr@gnu.org>
3030         * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
3032 2001-11-17  Gerd Moellmann  <gerd@gnu.org>
3034         * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
3035         with invalid position.
3037 2001-11-16  Richard M. Stallman  <rms@gnu.org>
3039         * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
3041         * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
3042         * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
3043         * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
3045         * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
3047 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
3049         * fileio.c (build_annotations): Split off the tail.
3050         (build_annotations_2): New fun.  Extracted from build_annotations.
3051         (Fwrite_region): Split the call to build_annotations into two
3052         calls to build_annotations and build_annotations_2.
3054 2001-11-16  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3056         * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
3057         clear_waiting_for_input with argument.
3059         * xterm.h (x_update_cursor): Remove duplicated prototype.
3061         * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
3063         * xterm.c (waiting_for_input): Remove unnecessary declaration.
3065         * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
3067 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
3069         * fileio.c (choose_write_coding_system): New fun, extracted
3070         from Fwrite_region.
3071         (Fwrite_region): Use it.
3073         * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
3074         (funcall_lambda, run_hook_with_args): Make static and add prototype.
3075         (ml_apply, find_handler_clause): Add prototype.
3077 2001-11-16  Eli Zaretskii  <eliz@gnu.org>
3079         * config.in: Add #undef HAVE_COFF_H.
3081         * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
3082         Required for ISC 4.1.
3084 2001-11-16  Eli Zaretskii  <eliz@is.elta.co.il>
3086         * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1.  Reported by
3087         Andrew Wiseman <a.wiseman@btclick.com>.
3089 2001-11-16  Kim F. Storm  <storm@cua.dk>
3091         The following changes are made to clean up the various internal
3092         references to the fringes to actually use the term `fringe' for
3093         them.  Previously, they were called `flags areas', `bitmap areas',
3094         `left/right side of windows', or implicitly as `flags' or
3095         `bitmaps':
3097         * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
3098         Comments fixed. Use renamed symbols.
3100         * dispnew.c: Comment fix. Use renamed symbols.
3102         * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
3103         (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
3104         (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
3106         * msdos.c: Comment fix.
3108         * w32fns.c: Use renamed symbols.
3110         * w32term.c: Comment fixes. Use renamed symbols.
3111         (fringe_bitmap_type): Renamed from bitmap_type.
3112         (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
3113         (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
3114         (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
3116         * w32term.h: Comment fixes. Use renamed symbols.
3117         (fringes_extra): Renamed from flags_areas_extra.
3118         (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
3119         (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
3120         (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
3121         (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
3122         (FRAME_X_LEFT_FRINGE_WIDTH):
3123         Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
3124         (FRAME_X_RIGHT_FRINGE_WIDTH):
3125         Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
3127         * widget.c: Use renamed symbols.
3129         * window.c: Comment fixes. Use renamed symbols.
3130         (coordinates-in-window-p): Doc fix.
3132         * xdisp.c: Comment fixes. Use renamed symbols.
3134         * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
3136         * xfns.c: Use renamed symbols.
3138         * xterm.c: Comment fixes. Use renamed symbols.
3139         (fringe_bitmap_type): Renamed from bitmap_type.
3140         (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
3141         (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
3142         (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
3144         * xterm.h: Comment fixes. Use renamed symbols.
3145         (fringes_extra): Renamed from flags_areas_extra.
3146         (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
3147         (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
3148         (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
3149         (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
3150         (FRAME_X_LEFT_FRINGE_WIDTH):
3151         Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
3152         (FRAME_X_RIGHT_FRINGE_WIDTH):
3153         Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
3155 2001-11-15  Jason Rumney  <jasonr@gnu.org>
3157         * w32menu.c (add-menu-item): Make help_echo and radio buttons
3158         work for most menu items.  From David Ponce
3159         <david.ponce@wanadoo.fr>.
3161 2001-11-15  Gerd Moellmann  <gerd@gnu.org>
3163         * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
3164         Some x_set_* function expect to be called even if old and new
3165         value are equal.
3167         * xdisp.c (build_desired_tool_bar_string): Accept zero
3168         tool_bar_button_relief.
3170         * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
3172         * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
3174         * xterm.c (x_draw_bar_cursor): If the background color of the
3175         glyph under the cursor equals the frame's cursor color, use
3176         the glyph's foreground color for drawing the bar cursor.
3178         * dispnew.c (direct_output_forward_char): Fix character/byte
3179         position comparison.
3181 2001-11-15  Miles Bader  <miles@gnu.org>
3183         * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
3184         (Fdelete_field, Ffield_string, Ffield_string_no_properties):
3185         Update arguments to find_field.
3186         (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
3187         (Fconstrain_to_field): Use LIMIT arg to shorten search time.
3188         * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
3189         * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
3191 2001-11-14  Richard M. Stallman  <rms@gnu.org>
3193         * editfns.c (Fpropertize): Allow call with 1 arg.
3195         * dispextern.h (image_background, image_background_transparent):
3196         Conditionalize on HAVE_X_WINDOWS.
3198 2001-11-13  Richard M. Stallman  <rms@gnu.org>
3200         * print.c (Fprin1_to_string): Doc fix.
3202         * sunfns.c (Fsun_change_cursor_icon): Doc fix.
3204         * floatfns.c (Fceiling, Ffloor): Doc fixes.
3206         * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
3208         * fileio.c (Ffile_accessible_directory_p): Doc fix.
3210         * eval.c (syms_of_eval): Doc fix.
3212         * coding.c (syms_of_coding): Doc fix.
3214         * doc.c (Fsnarf_documentation): Doc fix.
3216         * dispnew.c (syms_of_display): Doc fix.
3218         * category.c (Fget_unused_category): Doc fix.
3220         * buffer.c (syms_of_buffer): Doc fixes.
3222 2001-11-14  Eli Zaretskii  <eliz@is.elta.co.il>
3224         * print.c (prin1, print): Doc fix.
3226 2001-11-14  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3228         * fontset.h: Remove declarations of variables
3229         `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
3231         * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
3232         `Vclip_large_size_font'.
3234 2001-11-13  Jason Rumney  <jasonr@gnu.org>
3236         * w32fns.c: Doc fix.
3238 2001-11-13  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3240         * xfaces.c (Fface_attributes_as_vector): Doc fix.
3242         * w32fns.c (Fx_synchronize): Reindent.
3244         * fns.c: Doc fix.
3246         * emacs.c: Doc fix.
3248         * coding.c: Doc fix.
3250         * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
3251         * fontset.c, insdel.c, keymap.c: Change doc-string comments to
3252         `new style' [w/`doc:' keyword].
3254         * xmenu.c (x-popup-menu): Reindent.
3255         (x-popup-dialog): Likewise.
3257         * xfaces.c (Finternal_set_alternative_font_family_alist): Reindent.
3259         * xdisp.c (Fdump_tool_bar_row): Reindent.
3261         * minibuf.c (Fminibuffer_complete_word): Reindent.
3262         (Fminibuffer_complete_and_exit): Likewise.
3263         (Fminibuffer_completion_help): Likewise.
3264         (Fminibuffer_message): Likewise.
3266         * fns.c (Freverse): Reindent.
3268         * eval.c (Fif): Reindent.
3269         (Fand): Likewise.
3271         * editfns.c (Fuser_real_login_name): Reindent.
3272         (Finsert_buffer_substring): Likewise.
3273         (Fcompare_buffer_substrings): Likewise.
3274         (Fsubst_char_in_region): Likewise.
3276         * dispnew.c (Fsit_for): Reindent.
3277         (Fframe_or_buffer_changed_p): Likewise.
3278         (Finternal_show_cursor_p): Likewise.
3279         (syms_of_display): Likewise.
3281         * alloc.c (Flist): Reindent.
3282         (Fvector): Likewise.
3284 2001-11-12  Richard M. Stallman  <rms@gnu.org>
3286         * xterm.c (XTread_socket): Don't update focus for EnterNotify or
3287         LeaveNotify events.  Only FocusIn and FocusOut do that now.
3288         (x_display_and_set_cursor): Do display hollow cursors in active
3289         minibuffer windows when they are not selected.
3291 2001-11-12  Jason Rumney  <jasonr@gnu.org>
3293         * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
3294         * w32term.c: Change doc-string comments to `new style'.
3295         [w/`doc:' keyword]. Doc fixes.
3297         * w32fns.c: Don't define max.
3298         (Fx_open_connection): Only execute once.
3300 2001-11-12  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3302         * ccl.c: Change macros to use do-while block instead of if-else.
3303         Use braces to follow GNU Coding Standards.
3305 2001-11-11  Richard M. Stallman  <rms@gnu.org>
3307         * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
3309         * lread.c (read_escape): Use end_of_file_error for reporting eof.
3311         * insdel.c (replace_range): Use adjust_markers_for_replace
3312         instead of adjust_markers_for_delete and adjust_markers_for_insert.
3314         * intervals.h: Declare set_text_properties and set_text_properties_1.
3316         * textprop.c (set_text_properties_1): New subroutine
3317         broken out of set_text_properties.
3318         (set_text_properties): Use set_text_properties_1.
3320         * intervals.c (graft_intervals_into_buffer):
3321         Use set_text_properties_1 to clear out properties.
3323         * search.c (Freplace_match): Use replace_range to insert
3324         and delete.  Don't request property inheritance from
3325         surrounding text.
3327 2001-11-10  Jason Rumney  <jasonr@gnu.org>
3329         * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
3330         vertical fonts. Allow them if face name is explicitly specified.
3331         Do not give up if we find a font that cannot be converted to an xlfd.
3333 2001-11-10  Gerd Moellmann  <gerd@gnu.org>
3335         * unexelf.c (unexec): Use mmap/munmap to allocate buffers
3336         instead of malloc/free.
3338 2001-11-09  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3340         * xfaces.c (merge_face_vectors): Use braces to follow GNU
3341         Coding Standards.
3342         (Finternal_set_lisp_face_attribute): Likewise.
3344         * buffer.c (Fbury_buffer): Likewise.
3346         * indent.c (current_column_1): Remove unused variable `prev_col'.
3348         * coding.c (encode_coding): Use precomputed value of `src'.
3349         (encode_coding): Remove unused variable `src_end'.
3350         (code_convert_region): Remove unused variables `count'.
3352 2001-11-07  Jason Rumney  <jasonr@gnu.org>
3354         * w32term.c (x_display_and_set_cursor): Do not move system caret
3355         if cursor_glyph is NULL.
3357 2001-11-07  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3359         * keymap.c (access_keymap): Fix compilation error.
3361 2001-11-07  Miles Bader  <miles@gnu.org>
3363         * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
3365 2001-11-07  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3367         * intervals.c (graft_intervals_into_buffer):
3368         Remove #ifdef'd-out code.
3369         (graft_intervals_into_buffer): Remove unused variable `middle'.
3371         * lread.c (Feval_region): Remove obsolete #ifdef'd-out
3372         code (eval-current-buffer).
3373         Change doc-string comments to `new style' [w/`doc:' keyword].
3375 2001-11-06  Richard M. Stallman  <rms@gnu.org>
3377         * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
3379 2001-11-06  Stefan Monnier  <monnier@cs.yale.edu>
3381         * lread.c (read1): Fix behavior with nested backquoting.
3383         * keyboard.c (make_lispy_event): Check integerness and fix
3384         Lisp_Object/int mixup.
3386 2001-11-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3388         * fns.c (copy_hash_table): Remove unused variable `v'.
3390         * fontset.c (fontset_font_pattern): Remove unused variable
3391         `family_registry'.
3393         * indent.c (current_column_1): Remove unused variable `prev_col'.
3395 2001-11-05  Richard M. Stallman  <rms@gnu.org>
3397         * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
3399         * buffer.c (Fkill_buffer): Don't delete auto save file
3400         if buffer is modified.
3402 2001-11-05  Andrew Innes  <andrewi@gnu.org>
3404         * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
3405         CHECK_NUMBER_CDR.
3407 2001-11-05  Richard M. Stallman  <rms@gnu.org>
3409         * unexelf.c (unexec): Minor changes; clean up comments.
3411 2001-11-05  Sam Steingold  <sds@gnu.org>
3413         * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
3415 2001-11-05  Andreas Schwab  <schwab@suse.de>
3417         * sound.c (sound_perror): Save errno from being clobbered.
3419 2001-11-05  Dale Hagglund  <rdh@yottayotta.com>
3421         * unexelf.c (unexec): Don't use `mmap'.  Instead, read and write
3422         the program image directly.
3424 2001-11-05  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3426         * buffer.h (Fbuffer_local_value): Add prototype.
3428 2001-11-04  Richard M. Stallman  <rms@gnu.org>
3430         * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
3431         and CHECK_BUFFER.
3433         * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
3434         (record_char): Likewise.
3436         * keyboard.c (make_lispy_event): Don't insist a drag event must
3437         move to a different buffer position.  Instead, check for moving at
3438         least double_click_fuzz.
3440         * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
3442         * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
3444         * indent.c (current_column_1, Fmove_to_column): Separate the code
3445         for display-table glyphs from the code buffer text, to fix
3446         bugs in the former.
3448 2001-11-04  Michael Welsh Duggan  <md5i@cs.cmu.edu>
3450         * buffer.c (Fbuffer_local_value): New function.
3451         (syms_of_buffer): Defsubr it.
3453         * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
3454         value of `cursor-in-non-selected-windows'.
3456         * lisp.h (Qcursor_in_non_selected_windows): New declaration.
3457         * xdisp.c (Qcursor_in_non_selected_windows): New variable.
3458         (syms_of_xdisp): Initialize it.
3460 2001-11-04  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3462         * xfns.c (Fx_create_frame): Doc fix.
3464         * coding.c: Change doc-string comments to `new style' [w/`doc:'
3465         keyword].
3467         * eval.c (top_level_value, top_level_set): Remove commented and
3468         #ifdef'd-out code.
3469         (Fdefvar): Fix usage in doc-string.
3471 2001-11-03  Richard M. Stallman  <rms@gnu.org>
3473         * xfns.c: Include unistd.h, if it exists.
3475         * editfns.c: Move the include of ctype.h after unistd.h.
3477         * gmalloc.c: Test BROKEN_PROTOTYPES.
3479 2001-11-03  Ken Raeburn  <raeburn@gnu.org>
3481         * lisp.h (CHECK_STRING_CAR): New macro.
3482         * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
3483         treating XCAR and XCDR as lvalues.
3484         (openp): Use CHECK_STRING_CAR.
3485         (read_list): Use XSETCDR instead of treating XCDR as lvalue.
3487 2001-11-03  Eli Zaretskii  <eliz@is.elta.co.il>
3489         * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
3490         (SIGMASKTYPE): Define.
3492         * syssignal.h (sigunblock): Don't define if already defined.
3494 2001-11-02  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3496         * eval.c (debugger_may_continue, Vdebug_ignored_errors)
3497         (call_debugger, Fcondition_case, skip_debugger, unbind_to):
3498         Fix typos in comments.
3500         * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
3501         and #ifdef'd-out code.
3502         Fix and reindent comments.
3504         * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
3506         * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
3507         argument `i' in macros.
3509         * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
3510         `i' in macros.
3512         * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
3513         (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
3514         (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
3515         (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
3516         (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
3517         (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
3518         (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
3519         (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
3520         in macros.
3522         * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
3523         * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
3524         * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
3525         * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
3526         * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
3527         * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
3528         * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
3529         * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
3530         * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
3531         (remove unused second argument).
3533 2001-11-02  Stefan Monnier  <monnier@cs.yale.edu>
3535         * syntax.c (describe_syntax): New wrapper.
3536         (Finternal_describe_syntax_value): Rename from describe_syntax.
3537         Don't insert space at front and \n at the end.
3538         (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
3540         * regex.c (re_wctype): Try to fix some warnings.
3541         (regcomp, regexec): Don't forget the __restrict.
3543 2001-11-02  Richard M. Stallman  <rms@gnu.org>
3545         * textprop.c (Fget_char_property): Doc fix.
3547 2001-11-02  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3549         * process.c (Fstart_process): Add usage to doc-string.
3551         * data.c (Fsetq_default): Ditto.
3553         * callint.c (Finteractive): Ditto.
3555 2001-11-01  Stefan Monnier  <monnier@cs.yale.edu>
3557         * macros.c: Don't include keymap.h any more.
3559 2001-11-01  Richard M. Stallman  <rms@gnu.org>
3561         * data.c (Fmake_local_variable): Doc fix.
3563         * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
3564         (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
3566         * keymap.c (Fdescribe_buffer_bindings): Print character property
3567         bindings along with or instead of the buffer local map.
3568         Make the overriding maps override what they should.
3570 2001-11-01  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3572         * window.c (grow_mini_window): Fix typo in comment.
3574 2001-11-01  Gerd Moellmann  <gerd@gnu.org>
3576         * xterm.c (x_scroll_bar_create): Check for width and height > 0.
3577         (XTset_vertical_scroll_bar): Likewise.
3579         * xfns.c (x_build_heuristic_mask): Use four_corners_best
3580         instead of IMAGE_BACKGROUND.
3582         * xfns.c (four_corners_best): Reindent.
3584         * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
3585         Handle :box so that it is possible to specify sexprs.
3587 2001-11-01  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3589         * xfaces.c (Finternal_merge_in_global_face): Reindent.
3590         (Fface_font): Ditto.
3591         (Finternal_set_alternative_font_registry_alist): Ditto.
3592         (Ftty_suppress_bold_inverse_default_colors): Ditto.
3594         * xfns.c (x-get-resource): Reindent.
3596 2001-10-31  Eli Zaretskii  <eliz@is.elta.co.il>
3598         * s/hpux11.h: New file.
3600 2001-10-31  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3602         * emacs.c (USAGE1): Show command line option --no-window-system
3603         instead of --no-windows in usage.
3604         (standard_args): Rename --no-windows to --no-window-system.
3605         (bug_reporting_address): Follow Emacs coding conventions.
3607         * eval.c (Fcommandp): Doc fix.
3608         Change doc-string comments to `new style' [w/`doc:' keyword].
3610         * frame.c (Fframe_live_p): Doc fix.
3612         * buffer.c (selective-display-ellipses): Doc fix.
3614 2001-10-31  Gerd Moellmann  <gerd@gnu.org>
3616         * lread.c (to_multibyte): Fix computation of new read_buffer_size.
3618         * xfaces.c (realize_x_face): If C is not a single-byte character,
3619         set the face's colors_copied_bitwise_p instead of the defaulted_p
3620         members which have a different meaning.
3621         (free_face_colors): Do nothing for a face whose colors have been
3622         copied bitwise.
3624         * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
3626 2001-10-31  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3628         * marker.c, mocklisp.c: Change doc-string comments to `new style'
3629         [w/`doc:' keyword].
3631 2001-10-31  Gerd Moellmann  <gerd@gnu.org>
3633         * fns.c (require_unwind): Return Lisp_Object.
3635 2001-10-31  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3637         * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
3638         (last-input-char): Revert doc-string to be the same as the
3639         doc-string of `last-input-event'.
3641         * xdisp.c:  Fix typos in comments.
3643 2001-10-31  Gerd Moellmann  <gerd@gnu.org>
3645         * window.c (grow_mini_window): Handle case that the root
3646         window is already smaller than the nominal mininum height.
3648 2001-10-30  Stefan Monnier  <monnier@cs.yale.edu>
3650         * emacs.c (main): Don't call keys_of_macros any more.
3652         * lisp.h (keys_of_macros): Remove.
3654         * macros.c (keys_of_macros): Remove.
3656         * xfaces.c (Fface_attribute_relative_p): Declare args.
3658 2001-10-30  Jason Rumney  <jasonr@gnu.org>
3660         * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
3661         (enum_font_cb2): Ignore fonts with vertical orientation.
3663 2001-10-30  Richard M. Stallman  <rms@gnu.org>
3665         * keyboard.c (Finput_pending_p): Doc fix.
3667 2001-10-30  Gerd Moellmann  <gerd@gnu.org>
3669         * xterm.c (x_after_update_window_line): Don't run the code
3670         clearing in borders for rows whose visible height is 0.
3672         * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
3673         resized_p flag is set.  If not set, use the much less flickering
3674         method previously used.
3676         * dispnew.c (change_frame_size_1): Set frame's resized_p.
3678         * frame.h (struct frame) <resized_p>: New member.
3680         * lread.c (to_multibyte): Ensure read_buffer is at least twice
3681         as large as the number of bytes to convert.
3683         * lread.c (to_multibyte): New function.
3684         (read1): Use it.
3686 2001-10-30  Eli Zaretskii  <eliz@is.elta.co.il>
3688         * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
3690 2001-10-30  Gerd Moellmann  <gerd@gnu.org>
3692         * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
3693         (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
3694         if the row's fill_line_p is set and drawing the last glyph with
3695         DRAW_IMAGE_{RAISED,SUNKEN}.
3697         * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
3699 2001-10-29  Stefan Monnier  <monnier@cs.yale.edu>
3701         * xmenu.c: Include coding.h and charset.h.
3702         (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
3703         (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
3704         (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
3705         Explicitly set wv->help.  Use `TRUE' rather than `True'.
3706         (menu_help_callback): Use empty_string.
3708         * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
3709         (Fx_popup_dialog): Explicitly init f.
3710         (w32_menu_display_help): Use empty_string.
3712 2001-10-29  Richard M. Stallman  <rms@gnu.org>
3714         * fns.c (Frequire): Detect recursive try to require the same
3715         feature 3 or more levels deep, and get error.
3716         (require_unwind): New subroutine.
3717         (require_nesting_list): New variable.
3718         (syms_of_fns): Init and staticpro it.
3720         * print.c (print_object): Clarify indication of insertion type.
3722 2001-10-29  Eli Zaretskii  <eliz@is.elta.co.il>
3724         * coding.c (syms_of_coding): Document that locale-coding-system is
3725         used for decoding input on X.
3727         * window.c (Fscroll_left, Fscroll_right): Doc fix.
3729 2001-10-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3731         * keyboard.c (Finput_pending_p): Fix typo in doc-string.
3732         (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
3734 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
3736         * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
3737         use NO_CURSOR if cursor_in_non_selected_windows is false.
3739         * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
3740         the slant attribute if FRAME is t.
3742         * xfns.c (x_set_internal_border_width): Set frame garbaged
3743         when X window doesn't exist yet.
3745         * xterm.c (x_after_update_window_line): Clear internal border
3746         in different circumstances.
3748         * xterm.c (XTread_socket) <KeyPress>: Don't use
3749         STRING_CHAR_AND_LENGTH if nchars == nbytes.  From Kenichi Handa
3750         <handa@etl.go.jp>.
3752 2001-10-28  Eli Zaretskii  <eliz@is.elta.co.il>
3754         * m/ibms390.h: New file.  From Adam Thornton
3755         <athornton@sinenomine.net>.
3757 2001-10-28  Gerd Moellmann  <gerd@gnu.org>
3759         * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
3761         * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
3762         a loop counter.
3764 2001-10-28  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3766         * emacs.c: Use argv[0] instead of emacs when -t was specified.
3768         * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
3769         keyword].
3770         Fix typos in comments.
3772         * emacs.c (bug_reporting_address): New function.
3773         Use it when displaying usage message.
3775         * minibuf.c (read_minibuf): Remove unused external declaration of
3776         variable `Qread_only'.
3778         * keymap.c (access_keymap): Remove unused variable `charset'.
3780 2001-10-28  Miles Bader  <miles@gnu.org>
3782         * xfaces.c (merge_face_heights): Handle TO being relative as well.
3783         Remove #ifdef'd-out code.
3784         (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
3785         (syms_of_xfaces): Initialize them.
3787 2001-10-27  Jason Rumney  <jasonr@gnu.org>
3789         * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
3790         <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
3791         position using the system caret.
3793         * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
3794         (w32_system_caret_height, w32_system_caret_x)
3795         (w32_system_caret_y): New variables for tracking system caret.
3796         (w32_initialize): Initialize them.
3797         (x_display_and_set_cursor): Make system caret follow the active cursor.
3799         * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
3800         New messages types.
3802         * w32term.c (note_mouse_highlight): Clear old help_echo.
3804 2001-10-27  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3806         * xterm.c: Fix typo in a comment.
3808         * emacs.c: Fix typos in comments.
3809         Remove unnecessary spaces.
3810         Change doc-string comments to `new style' [w/`doc:' keyword].
3811         (USAGE2): Fix typos in usage string.
3813         * xterm.c: Fix typo in a comment.
3815         * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
3816         emacs.c.
3818 2001-10-27  Gerd Moellmann  <gerd@gnu.org>
3820         * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
3821         instead of 1/2 line_height in the heuristic for skipping
3822         farther backward when target_y was not reached.
3824         * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
3825         Display errno only if non-zero.
3826         (sound_warning): New function.
3827         (vox_configure): Don't treat failing to set sample rate as error.
3828         (various places): Improve error messages.
3830 2001-10-26  Eli Zaretskii  <eliz@is.elta.co.il>
3832         * fileio.c (Faccess_file): Run the argument filename through
3833         Fexpand_file_name, before using it.
3835         * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
3836         ring-bell-function.  Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
3838 2001-10-26  Gerd Moellmann  <gerd@gnu.org>
3840         * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
3842         * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
3843         Fix clearing in the case of scroll bars on the right.
3845 2001-10-26  Juanma Barranquero <lektu@terra.es>
3847         * w32gui.h (XImage): Add a dummy typedef.
3849 2001-10-26  Gerd Moellmann  <gerd@gnu.org>
3851         * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
3853 2001-10-25  Eli Zaretskii  <eliz@is.elta.co.il>
3855         * frame.c (Fframe_parameter): Fix last change.
3857         * fileio.c: Revert last change (which removed old commented-out
3858         version of expand-file-name).  Add a comment that explains why
3859         this old version should not be removed.
3861 2001-10-25  Gerd Moellmann  <gerd@gnu.org>
3863         * frame.c (Fframe_parameter): Fix a bug whereby some
3864         ``artificial'' frame parameters, like `minibuffer' were not
3865         obtained by calling Fframe_parameters.
3867         * xterm.c (show_mouse_face): Clean up.  Recognize overwritten
3868         cursor differently.
3870         * xdisp.c (move_it_vertically_backward): Compute line height
3871         differently.  Add heuristic to try to be more compatible to 20.x.
3873 2001-10-25  Stefan Monnier  <monnier@cs.yale.edu>
3875         * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
3877         * editfns.c (text_property_stickiness): Fix Lisp_Object used as
3878         boolean.
3880 2001-10-25  Miles Bader  <miles@gnu.org>
3882         * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
3883         BG is a pointer to a structure, not a structure.
3884         (gif_format, png_format): Add missing commas.
3886 2001-10-24  Richard M. Stallman  <rms@gnu.org>
3888         * xfaces.c (Fface_attributes_as_vector): New function.
3889         (syms_of_xfaces): Defsubr it.
3891 2001-10-24  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3893         * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
3894         variable `area'.
3896 2001-10-25  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3898         * search.c (scan_newline): Remove unused variable `selective_display'.
3900 2001-10-25  Miles Bader  <miles@gnu.org>
3902         * dispextern.h (struct image): Add `background',
3903         `background_valid', and `background_transparent' fields.
3904         (image_background, image_background_transparent): New declarations.
3905         (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
3906         * xfns.c (image_background, image_background_transparent)
3907         (four_corners_best): New functions.
3908         (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
3909         (gs_format): Add `:background' entry.
3910         (lookup_image): Set IMG's background color if specified.
3911         (pbm_load, xbm_load_image, png_load): Set IMG's background field
3912         when appropriate.
3913         (x_clear_image_1): Reset `background_valid' and
3914         `background_transparent_valid' fields.
3915         (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
3916         calculating it here.  Set IMG's background_transparent field.
3917         (enum xpm_keyword_index): Add XPM_BACKGROUND.
3918         (enum png_keyword_index): Add PNG_BACKGROUND.
3919         (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
3920         (enum tiff_keyword_index): Add TIFF_BACKGROUND.
3921         (enum gif_keyword_index): Add GIF_BACKGROUND.
3922         (enum gs_keyword_index): Add GS_BACKGROUND.
3923         (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
3924         Pre-calculate image background color where necessary.
3925         * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
3926         `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
3927         color to use for image glyph reliefs.
3929 2001-10-24  Gerd Moellmann  <gerd@gnu.org>
3931         * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
3932         in full-width rows.
3934         * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
3935         Fix clearing of area not covered by scroll bar.
3937 2001-10-24  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3939         * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
3940         and `real_start'.
3941         (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
3942         (glyph_rect): Remove unused variable `area'.
3944 2001-10-24  Gerd Moellmann  <gerd@gnu.org>
3946         * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
3948         * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
3949         (row_containing_pos): Take additional argument DY.
3950         Treat rows ending in middle of char differently.
3951         (display_line): Handle tabs on window systems differently.
3953         * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
3954         with additional argument.
3956         * dispextern.h (row_containing_pos): Adjust prototype.
3958         * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
3959         (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
3960         (try_window_id, try_window_reusing_current_matrix)
3961         (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
3962         (syms_of_xdisp) [GLYPH_DEBUG]:  DEFVAR_BOOL the variables.
3964 2001-10-24  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
3966         * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
3967         gnuemacs).
3968         (HAVE_BOXES): Fix typo in comment.
3969         (push_menu_pane): Fix typo in comment.
3971         * xdisp.c: (display_prop_string_p): Remove unused local declaration
3972         of `Qwhen'.
3973         (single_display_prop_string_p): Remove unused local declarations
3974         of `Qwhen' and `Qmargin'.
3975         (string_buffer_position): Remove unused variable `around'.
3976         (store_frame_title): Remove unused variable `width'.
3978         * window.c: Don't define max.
3979         (coordinates_in_window): Remove unused variable `uy'.
3981         * widget.c: Don't define max.
3983         * process.c: Don't define max.
3984         (create_process): Remove unused variable `buffer'.
3986 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
3988         * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
3990 2001-10-23  Eli Zaretskii  <eliz@is.elta.co.il>
3992         * xfaces.c (Finternal_set_lisp_face_attribute)
3993         [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
3994         frame is on a windowed display.
3996 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
3998         * dispnew.c (sync_window_with_frame_matrix_rows):
3999         Fix handling of windows which aren't full-width, fix handling
4000         of marginal areas.
4002         * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
4004 2001-10-23  Andreas Schwab  <schwab@suse.de>
4006         * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
4007         LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
4009 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
4011         * xterm.c (x_draw_glyphs): Remove parameters READ_START and
4012         REAL_END.  Notice if cursor gets overwritten.
4013         (notice_overwritten_cursor): Take X positions as parameters.
4014         (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
4015         around call to x_draw_glyphs.
4017 2001-10-23  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4019         * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
4020         instead of C) and usage.
4022         * editfns.c (char-to-string): Fix argument names (use CHAR instead
4023         of C) and usage.
4025         * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
4026         `left', `max_width' and `max_height'.
4028 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
4030         * xdisp.c (display_line): For a tab continued to the next line,
4031         set row's ends_in_middle_of_char_p.
4033 2001-10-22  Gerd Moellmann  <gerd@gnu.org>
4035         * xdisp.c (display_line): Fix computation of continuation lines
4036         width for TABs.
4038 2001-10-22  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4040         * xdisp.c (build_desired_tool_bar_string): Remove unused variable
4041         `Qlaplace'.
4043         * fileio.c: Remove unused code.
4045 2001-10-22  Miles Bader  <miles@gnu.org>
4047         * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
4048         (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
4049         Remove `DOC_STRINGS_IN_COMMENTS' cases.
4051 2001-10-21  Jason Rumney  <jasonr@gnu.org>
4053         * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
4055 2001-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
4057         * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
4058         (Finsert_string): Avoid the multi-line string literals warning.
4060 2001-10-22  Miles Bader  <miles@gnu.org>
4062         * doc.c (Vhelp_manyarg_func_alist): Variable removed.
4063         (Fdocumentation): Don't use it.
4064         (syms_of_doc): Don't initialize it.
4066         * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
4067         * print.c (Fwith_output_to_temp_buffer): Likewise.
4068         * window.c (Fsave_window_excursion): Likewise.
4069         * editfns.c (Fsave_excursion, Fsave_current_buffer)
4070         (Fsave_restriction): Likewise.
4071         * eval.c (Frun_hooks, Frun_hook_with_args)
4072         (Frun_hook_with_args_until_failure)
4073         (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
4074         (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
4075         (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
4076         (Funwind_protect, Fcondition_case): Likewise.
4077         * coding.c (Ffind_operation_coding_system): Likewise.
4078         * keyboard.c (Ftrack_mouse): Likewise.
4080 2001-10-21  Miles Bader  <miles@gnu.org>
4082         * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
4083         (Fmake_hash_table): Add usage: string to doc string.
4084         * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
4085         (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
4086         (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
4087         * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
4088         (Fml_prefix_argument_loop): Likewise.
4090 2001-10-21  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4092         * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
4094         * sysdep.c (init_sys_modes): Change doc-string comments to `new
4095         style' [w/`doc:' keyword].
4097         * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
4098         * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
4099         comments to `new style' [w/`doc:' keyword].
4101 2001-10-21  Jason Rumney  <jasonr@gnu.org>
4103         * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
4105         * w32term.c (remember_mouse_glyph): New function.
4106         (w32_mouse_position): Use it.
4107         (note_mouse_movement): If the mouse moved off the glyph, remember
4108         its new position.
4110         * w32term.h (struct w32_output): Correct spelling of x_compatible.
4111         (w32_display_info): Add mouse_face_overlay.
4113         * w32term.c (notice_overwritten_cursor): Renamed from
4114         note_overwritten_text_cursor.  Rewritten to take glyph widths into
4115         account.
4116         (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
4117         (fast_find_string_pos): New function.
4118         (fast_find_position): Return the correct vpos.  Add parameter
4119         STOP.  In the final row, stop before glyphs having STOP as object.
4120         Don't consider glyphs that are not from a buffer.
4121         (fast_find_position) [0]: Add a presumably more correct version
4122         for after 21.1.
4123         (expose_window_tree, expose_frame): Don't compute intersections here.
4124         (expose_window): Do it here instead.
4125         (expose_window_tree, expose_window, expose_line): Return 1 when
4126         overwriting mouse-face.
4127         (expose_window): If W is the window currently being updated, mark
4128         the frame garbaged.
4129         (expose_frame): If mouse-face was overwritten, redo it.
4130         (x_use_underline_position_properties): New variable.
4131         (syms_of_xterm): DEFVAR_BOOL it.
4132         (x_draw_glyph_string): Add comment to use it in future.
4133         (x_draw_glyph_string): Restore clipping after drawing box.
4134         Fix a computation of the underline position.
4135         (w32_get_glyph_string_clip_rect): Minor cleanup.
4136         (x_fill_stretch_glyph_string): Remove an assertion.
4137         (x_produce_glyphs): Don't convert multibyte characters
4138         to unibyte characters in unibyte buffers.
4139         (cursor_in_mouse_face_p): New function.
4140         (x_draw_stretch_glyph_string): Use it to choose a different GC
4141         when drawing a cursor within highlighted text.  Don't draw
4142         background again if it has already been drawn.
4143         (x_draw_glyph_string_box): Don't draw a full-width
4144         box just because the glyph row's full_width_p flag is set.
4145         (x_draw_glyphs): Fix computation of rightmost x for
4146         full-width rows.
4147         (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
4148         (w32_draw_relief_rect): Extend left shadow to the bottom and left;
4149         change bottom shadow accordingly. Some cleanup.
4150         (x_update_window_end): Handle overwritten mouse face
4151         also for tool bar windows.
4152         (show_mouse_face): Set the glyph row's mouse_face_p flag also when
4153         DRAW is DRAW_IMAGE_RAISED.
4154         (clear_mouse_face): Return 1 if text with mouse face was
4155         actually redrawn.  Make the function static.  Reset
4156         dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
4157         optimize away highlighting if we pass over that same overlay again.
4158         (note_mouse_highlight): Call mouse_face_overlay_overlaps
4159         to detect a case where we have to highlight a different region
4160         despite not having left the currently highlighted region.
4161         Set mouse_face_overlay in the x_display_info.  Avoid changing the
4162         mouse pointer shape when show_mouse_face has already done it, or
4163         there is no need.  Handle mouse-face and help-echo in strings.
4164         (glyph_rect): New function.
4165         (w32_mouse_position): Use it to raise the threshold for mouse
4166         movement event generation.
4167         (w32_initialize_display_info): Initialize the x_display_info's
4168         mouse_face_overlay.
4169         (w32_set_vertical_scroll_bar): Don't clear a zero height
4170         or width area.
4171         (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
4172         a widget to zero height.
4174         * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
4175         Protect unibyte strings created by replacing their multibyte
4176         equivalents in menu_items.
4177         (w32_menu_show): Don't overwrite an item's name with its key
4178         description in case the description is a multibyte string.
4179         (single_submenu): Some cleanup.
4181         * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
4182         (postprocess_image): New function.
4183         (lookup_image): Call it for all image types except PostScript.
4184         (x_kill_gs_process): Call postprocess_image.
4185         (tiff_error_handler, tiff_warning_handler): New functions.
4186         (tiff_load): Install them as handlers.
4187         (x_kill_gs_process): Recognize if someone has cleared the image
4188         cache under us.
4189         (valid_image_p): Protect better against invalid image
4190         specifications.  Previous code could signal an error.
4191         (Fx_hide_tip, Fshow_tip): Doc fix.
4192         (Fv_max_tooltip_size): New variable.
4193         (syns_of_xfns): DEFVAR_LISP it.
4194         (Fx_show_tip): Add parameter TEXT.  Set the tip frame's root
4195         window buffer to *tip* right after creating the frame. Set frame's
4196         window_width.  Use a maximum tooltip size specified by
4197         Vx_max_tooltip_size, if that has valid contents.
4198         (compute_tip_xy): Add parameters WIDTH and HEIGHT.
4199         Make sure the tooltip is completely visible.
4200         (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
4201         (Fx_create_frame): Adjust the frame's height for presence
4202         of the tool bar before calling x_figure_window_size.
4203         (x_set_tool_bar_lines): Clear the tool bar window's current matrix
4204         when the window gets smaller.
4205         (x_set_foreground_color): Set frame's cursor_pixel.
4206         (x_set_foreground_color, x_set_background_color): Cleaned up.
4207         (x_set_font): Handle case of x_new_fontset returning the same name
4208         as before, although there was a change in fontsets.
4210 2001-10-21  Miles Bader  <miles@gnu.org>
4212         * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
4213         (Flogxor): Add usage: string to doc string.
4214         * charset.c (Fstring): Likewise.
4215         * callproc.c (Fcall_process_region, Fcall_process): Likewise.
4216         * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
4218 2001-10-21  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
4220         * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
4222         * alloc.c: Reindent DEFUNs with doc: keywords.
4224         * abbrev.c (Finsert_abbrev_table_description): Reindent.
4226         * frame.c: Change doc-string comments to `new style' [w/`doc:'
4227         keyword].
4229 See ChangeLog.9 for earlier changes.
4231 ;; Local Variables:
4232 ;; coding: iso-2022-7bit
4233 ;; End:
4235     Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4236   Copying and distribution of this file, with or without modification,
4237   are permitted provided the copyright notice and this notice are preserved.