# HG changeset patch # User Gerd Moellmann # Date 969536949 0 # Node ID db5ea3d2a1b4408aedd13216b2af2eb83d8c5d27 # Parent b148beb5951141f8c026ef88191ba1022a9b5f46 *** empty log message *** diff -r b148beb59511 -r db5ea3d2a1b4 etc/NEWS --- a/etc/NEWS Thu Sep 21 11:48:48 2000 +0000 +++ b/etc/NEWS Thu Sep 21 11:49:09 2000 +0000 @@ -93,6 +93,13 @@ set to suppress warnings ``X and Y are the same file'' when visiting a file that is already visited under a different name. +** The new user-option `electric-help-shrink-window' can be set to +nil to prevent adjusting the help window size to the buffer size. + +** Emacs now checks for recursive loads of Lisp files. If the +recursion depth exceeds `recursive-load-depth-limit', an error is +signaled. + ** The Strokes package has been updated. If your Emacs has XPM support, you can use it for pictographic editing. In Strokes mode, use C-mouse-2 to compose a complex stoke and insert it into the diff -r b148beb59511 -r db5ea3d2a1b4 src/ChangeLog --- a/src/ChangeLog Thu Sep 21 11:48:48 2000 +0000 +++ b/src/ChangeLog Thu Sep 21 11:49:09 2000 +0000 @@ -1,5 +1,10 @@ 2000-09-21 Gerd Moellmann + * process.c (process_sent_to): New variable. + (send_process): Workaround for a crash on sparc-sun-solaris-2.6 + with GCC 2.95.2 caused by a parameter being clobbered by longjmp. + Declare more parameters volatile. + * lread.c (Vrecursive_load_depth_limit): New variable. (Fload): Check recursive loads whose recursion depth exceeds Vrecursive_load_depth_limit.