aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-03-15 19:59:06 +0000
committerGerd Moellmann2000-03-15 19:59:06 +0000
commit699238d9cdbc91c859d3c96243664a0657f81e63 (patch)
tree9ffb08db5ca1964fc5a2407135339c9b04e381fb
parenta1c5aa96e21c34036ca6915773ee18148e08bb3b (diff)
downloademacs-699238d9cdbc91c859d3c96243664a0657f81e63.tar.gz
emacs-699238d9cdbc91c859d3c96243664a0657f81e63.zip
*** empty log message ***
-rw-r--r--etc/NEWS16
-rw-r--r--src/ChangeLog14
2 files changed, 26 insertions, 4 deletions
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.
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
12compiled with Emacs. Set `load-dangerous-libraries' to t to change
13this behavior.
14
15The reason for this change is an incompatible change in XEmacs' byte
16compiler. Files compiled with XEmacs can contain byte codes that let
17Emacs 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
14whether Emacs should run in synchronous mode. Synchronous mode 22whether Emacs should run in synchronous mode. Synchronous mode
@@ -16,7 +24,7 @@ is useful for debugging X problems.
16 24
17Example: 25Example:
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
22visual Emacs should use. The resource's value should be a string of 30visual Emacs should use. The resource's value should be a string of
@@ -42,7 +50,7 @@ visual.
42 50
43Example: 51Example:
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',
48specifies that Emacs should use a private colormap if it is using the 56specifies that Emacs should use a private colormap if it is using the
@@ -51,7 +59,7 @@ resource values are `true' or `on'.
51 59
52Example: 60Example:
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
57the --without-pop configure option, should that be necessary. 65the --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 @@
12000-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
12000-03-14 Gerd Moellmann <gerd@gnu.org> 152000-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.