diff options
| author | Gerd Moellmann | 2000-03-15 19:59:06 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-15 19:59:06 +0000 |
| commit | 699238d9cdbc91c859d3c96243664a0657f81e63 (patch) | |
| tree | 9ffb08db5ca1964fc5a2407135339c9b04e381fb | |
| parent | a1c5aa96e21c34036ca6915773ee18148e08bb3b (diff) | |
| download | emacs-699238d9cdbc91c859d3c96243664a0657f81e63.tar.gz emacs-699238d9cdbc91c859d3c96243664a0657f81e63.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 16 | ||||
| -rw-r--r-- | src/ChangeLog | 14 |
2 files changed, 26 insertions, 4 deletions
| @@ -8,7 +8,15 @@ For older news, see the file ONEWS. | |||
| 8 | 8 | ||
| 9 | * Installation Changes in Emacs 21.1 | 9 | * Installation Changes in Emacs 21.1 |
| 10 | 10 | ||
| 11 | ** There are two new resources for colormap handling under X. | 11 | ** Emacs now refuses to load compiled Lisp files which weren't |
| 12 | compiled with Emacs. Set `load-dangerous-libraries' to t to change | ||
| 13 | this behavior. | ||
| 14 | |||
| 15 | The reason for this change is an incompatible change in XEmacs' byte | ||
| 16 | compiler. Files compiled with XEmacs can contain byte codes that let | ||
| 17 | Emacs dump core. | ||
| 18 | |||
| 19 | ** New X resources recognized | ||
| 12 | 20 | ||
| 13 | *** The X resource `synchronous', class `Synchronous', specifies | 21 | *** The X resource `synchronous', class `Synchronous', specifies |
| 14 | whether Emacs should run in synchronous mode. Synchronous mode | 22 | whether Emacs should run in synchronous mode. Synchronous mode |
| @@ -16,7 +24,7 @@ is useful for debugging X problems. | |||
| 16 | 24 | ||
| 17 | Example: | 25 | Example: |
| 18 | 26 | ||
| 19 | emacs.synchronous: true | 27 | emacs.synchronous: true |
| 20 | 28 | ||
| 21 | *** The X resource `visualClass, class `VisualClass', specifies the | 29 | *** The X resource `visualClass, class `VisualClass', specifies the |
| 22 | visual Emacs should use. The resource's value should be a string of | 30 | visual Emacs should use. The resource's value should be a string of |
| @@ -42,7 +50,7 @@ visual. | |||
| 42 | 50 | ||
| 43 | Example: | 51 | Example: |
| 44 | 52 | ||
| 45 | emacs.visualClass: TrueColor-8 | 53 | emacs.visualClass: TrueColor-8 |
| 46 | 54 | ||
| 47 | *** The X resource `privateColormap', class `PrivateColormap', | 55 | *** The X resource `privateColormap', class `PrivateColormap', |
| 48 | specifies that Emacs should use a private colormap if it is using the | 56 | specifies that Emacs should use a private colormap if it is using the |
| @@ -51,7 +59,7 @@ resource values are `true' or `on'. | |||
| 51 | 59 | ||
| 52 | Example: | 60 | Example: |
| 53 | 61 | ||
| 54 | emacs.privateColormap: true | 62 | emacs.privateColormap: true |
| 55 | 63 | ||
| 56 | ** `movemail' defaults to supporting POP. You can turn this off using | 64 | ** `movemail' defaults to supporting POP. You can turn this off using |
| 57 | the --without-pop configure option, should that be necessary. | 65 | 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 @@ | |||
| 1 | 2000-03-15 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * minibuf.c (Fminibuffer_complete): Set point to ZV if finding | ||
| 4 | a sole completion. | ||
| 5 | |||
| 6 | * process.c (send_process): Add a hint that the function | ||
| 7 | can call Lisp code to its comment. | ||
| 8 | |||
| 9 | * lread.c (load_dangerous_libraries): New variable. | ||
| 10 | (Vbytecomp_version_regexp): New variable. | ||
| 11 | (safe_to_load_p): New function. | ||
| 12 | (Fload): Handle files not compiled with Emacs specially. | ||
| 13 | (syms_of_lread): New Lisp variable load-dangerous-libraries. | ||
| 14 | |||
| 1 | 2000-03-14 Gerd Moellmann <gerd@gnu.org> | 15 | 2000-03-14 Gerd Moellmann <gerd@gnu.org> |
| 2 | 16 | ||
| 3 | * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon. | 17 | * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon. |