From: Gerd Moellmann Date: Thu, 21 Sep 2000 11:49:09 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-21.0.90~1454 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=42ac0ae5f3d53713d8b8e7b1c27f502447d167dd;p=emacs.git *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index a237261220c..35754566997 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -93,6 +93,13 @@ on. 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 --git a/src/ChangeLog b/src/ChangeLog index deb65d088d2..26b9bf3d754 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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.