aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-02-28 14:14:25 -0500
committerGlenn Morris2014-02-28 14:14:25 -0500
commit81a157531f5b5bb8d09d67996e55eb423b42d94f (patch)
tree27ffbcf8e7a13c9f87d5e4fb12faba9acd620fe0
parent53f6cda8e61f0fcaa5297f372b249ed41d9c0a13 (diff)
downloademacs-81a157531f5b5bb8d09d67996e55eb423b42d94f.tar.gz
emacs-81a157531f5b5bb8d09d67996e55eb423b42d94f.zip
* etc/NEWS: Minor edits
-rw-r--r--etc/NEWS27
1 files changed, 17 insertions, 10 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 895b466dc0b..4f3499e2728 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -24,17 +24,24 @@ otherwise leave it unmarked.
24 24
25* Installation Changes in Emacs 24.4 25* Installation Changes in Emacs 24.4
26 26
27---
27** Emacs can now be compiled with ACL support. 28** Emacs can now be compiled with ACL support.
28This happens by default if a suitable support library is found at 29This happens by default if a suitable support library is found at
29build time, like libacl on GNU/Linux. To prevent this, use the 30build time, like libacl on GNU/Linux. To prevent this, use the
30configure option `--disable-acl'. 31configure option `--disable-acl'. See below for related features.
31FIXME? Should be --without-acl?
32 32
33---
33** Emacs can now be compiled with file notification support. 34** Emacs can now be compiled with file notification support.
34This happens by default if a suitable system library is found at 35This happens by default if a suitable system library is found at
35build time. To prevent this, use the configure option 36build time. To prevent this, use the configure option
36`--without-file-notification'. See below for file-notify features. 37`--without-file-notification'. See below for file-notify features.
37FIXME? This feature is not available for the Nextstep port. (?) 38This feature is not available for the Nextstep port.
39
40---
41** Emacs can now be compiled with zlib support.
42This happens by default if zlib is present, which it normally is.
43To prevent this, use the configure option `--without-zlib'.
44This provides the function `zlib-decompress-region'; see below for details.
38 45
39--- 46---
40** The configure option `--without-compress-info' has been generalized, 47** The configure option `--without-compress-info' has been generalized,
@@ -49,14 +56,9 @@ It is no longer needed, as the crt*.o files are no longer linked specially.
49** Directories passed to configure option `--enable-locallisppath' are 56** Directories passed to configure option `--enable-locallisppath' are
50no longer created during installation. 57no longer created during installation.
51 58
52** Emacs can be compiled with zlib support.
53If this library is present (which it normally is on most systems), the
54function `zlib-decompress-region' becomes available, which can
55decompress gzip- and zlib-format compressed data.
56
57--- 59---
58** Emacs for NS (Mac OS X, GNUstep) can be built with ImageMagick support. 60** Emacs for NS (Mac OS X, GNUstep) can be built with ImageMagick support.
59This requires pkg-config to be available at configure time. 61This requires pkg-config to be available at build time.
60 62
61 63
62* Startup Changes in Emacs 24.4 64* Startup Changes in Emacs 24.4
@@ -89,6 +91,9 @@ to set up the initial buffer.
89 91
90* Changes in Emacs 24.4 92* Changes in Emacs 24.4
91 93
94** New function `zlib-decompress-region', which decompresses gzip- and
95zlib-format compressed data using built-in zlib support, if available.
96
92+++ 97+++
93** New option `gnutls-verify-error', if non-nil, means that Emacs 98** New option `gnutls-verify-error', if non-nil, means that Emacs
94should reject SSL/TLS certificates that GnuTLS determines as invalid. 99should reject SSL/TLS certificates that GnuTLS determines as invalid.
@@ -117,7 +122,9 @@ a new major mode, with read-only status. Any code that might create
117the *Messages* buffer should call the function `messages-buffer' to do 122the *Messages* buffer should call the function `messages-buffer' to do
118so and set up the mode. 123so and set up the mode.
119 124
120** Emacs now supports ACLs (access control lists). 125** Emacs can now support ACLs (access control lists).
126This requires a suitable support library to be found at build time.
127
121+++ 128+++
122*** Emacs preserves the ACL entries of files when backing up. 129*** Emacs preserves the ACL entries of files when backing up.
123+++ 130+++