From: Gerd Moellmann Date: Wed, 15 Mar 2000 19:59:06 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-21.0.90~4630 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=699238d9cdbc91c859d3c96243664a0657f81e63;p=emacs.git *** empty log message *** --- diff --git a/etc/NEWS b/etc/NEWS index 5a2d7dd6210..b261d4cb86c 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -8,7 +8,15 @@ For older news, see the file ONEWS. * Installation Changes in Emacs 21.1 -** There are two new resources for colormap handling under X. +** Emacs now refuses to load compiled Lisp files which weren't +compiled with Emacs. Set `load-dangerous-libraries' to t to change +this behavior. + +The reason for this change is an incompatible change in XEmacs' byte +compiler. Files compiled with XEmacs can contain byte codes that let +Emacs dump core. + +** New X resources recognized *** The X resource `synchronous', class `Synchronous', specifies whether Emacs should run in synchronous mode. Synchronous mode @@ -16,7 +24,7 @@ is useful for debugging X problems. Example: - emacs.synchronous: true + emacs.synchronous: true *** The X resource `visualClass, class `VisualClass', specifies the visual Emacs should use. The resource's value should be a string of @@ -42,7 +50,7 @@ visual. Example: - emacs.visualClass: TrueColor-8 + emacs.visualClass: TrueColor-8 *** The X resource `privateColormap', class `PrivateColormap', specifies that Emacs should use a private colormap if it is using the @@ -51,7 +59,7 @@ resource values are `true' or `on'. Example: - emacs.privateColormap: true + emacs.privateColormap: true ** `movemail' defaults to supporting POP. You can turn this off using the --without-pop configure option, should that be necessary. diff --git a/src/ChangeLog b/src/ChangeLog index 5a609b263ee..097e72d13ae 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,17 @@ +2000-03-15 Gerd Moellmann + + * minibuf.c (Fminibuffer_complete): Set point to ZV if finding + a sole completion. + + * process.c (send_process): Add a hint that the function + can call Lisp code to its comment. + + * lread.c (load_dangerous_libraries): New variable. + (Vbytecomp_version_regexp): New variable. + (safe_to_load_p): New function. + (Fload): Handle files not compiled with Emacs specially. + (syms_of_lread): New Lisp variable load-dangerous-libraries. + 2000-03-14 Gerd Moellmann * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon.