# HG changeset patch # User Gerd Moellmann # Date 984587832 0 # Node ID a37eeb9f04f36a9e943d22d8f61024e157cd1410 # Parent a9485f8e43d6d359647af20c3586d84a2ad3cf6a *** empty log message *** diff -r a9485f8e43d6 -r a37eeb9f04f3 etc/NEWS --- a/etc/NEWS Wed Mar 14 16:36:44 2001 +0000 +++ b/etc/NEWS Wed Mar 14 16:37:12 2001 +0000 @@ -2355,6 +2355,8 @@ When you add a new item, please add it without either +++ or --- so I will know I still need to look at it -- rms. +*** The features `md5' and `overlay' are now provided by default. + *** The special form `save-restriction' now works correctly even if the buffer is widened inside the save-restriction and changes made outside the original restriction. Previously, doing this would cause the saved diff -r a9485f8e43d6 -r a37eeb9f04f3 lisp/ChangeLog --- a/lisp/ChangeLog Wed Mar 14 16:36:44 2001 +0000 +++ b/lisp/ChangeLog Wed Mar 14 16:37:12 2001 +0000 @@ -1,5 +1,7 @@ 2001-03-14 Gerd Moellmann + * bindings.el (features): Add `md5' and `overlay' to the list. + * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is bound before using it. It's not bound when configured without X, for instance. diff -r a9485f8e43d6 -r a37eeb9f04f3 src/ChangeLog --- a/src/ChangeLog Wed Mar 14 16:36:44 2001 +0000 +++ b/src/ChangeLog Wed Mar 14 16:37:12 2001 +0000 @@ -1,5 +1,20 @@ 2001-03-14 Gerd Moellmann + * frame.c (do_switch_frame): Remove unused parameter NO_EVENT, add + FOR_DELETION. Avoid resizing the mini-window of the selected + frame if FOR_DELETION is set. + (Fselect_frame, Fhandle_switch_frame, Fdelete_frame) + (Fmake_frame_invisible): Change calls to do_switch_frame for new + signature. + + * window.c (Fset_window_configuration): Change call to + do_switch_frame to new format. + + * keyboard.c (quit_throw_to_read_char): Change call to + do_switch_frame to new format. + + * lisp.h (do_switch_frame): Change prototype. + * frame.c (Fframe_parameters): In the `buffer-list' frame parameter, store the buffer list of FRAME, not the list of the selected frame.