aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJoakim Verona2015-01-11 18:40:21 +0100
committerJoakim Verona2015-01-11 18:40:21 +0100
commitcc7cb20d6abc0f862e5513b24831bba0eaecaa5f (patch)
treeafc2fc05401504aa0c28699dc3bc155c5b0d7f58 /etc
parentd972b504f30ff4300ba368940751e8736dddf0b4 (diff)
parent9a57bda31569294ecaf8138a06e5edda9c0d87e3 (diff)
downloademacs-cc7cb20d6abc0f862e5513b24831bba0eaecaa5f.tar.gz
emacs-cc7cb20d6abc0f862e5513b24831bba0eaecaa5f.zip
merge master, fix conflicts
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog9
-rw-r--r--etc/NEWS24
-rw-r--r--etc/NEWS.243
3 files changed, 27 insertions, 9 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index c72c560ec9c..20f88bdecc3 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,12 @@
12015-01-11 Paul Eggert <eggert@cs.ucla.edu>
2
3 Default to 'configure --enable-silent-rules'
4 * NEWS: Document this.
5
62015-01-10 Daniel Colascione <dancol@dancol.org>
7
8 * NEWS: Fix typo
9
12015-01-04 Paul Eggert <eggert@cs.ucla.edu> 102015-01-04 Paul Eggert <eggert@cs.ucla.edu>
2 11
3 batch write-region no longer says "Wrote FOO" 12 batch write-region no longer says "Wrote FOO"
diff --git a/etc/NEWS b/etc/NEWS
index ac42a9ff6dc..b3267e1ce60 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -40,8 +40,10 @@ or by sticking with Emacs 24.4.
40** The configure option `--with-pkg-config-prog' has been removed. 40** The configure option `--with-pkg-config-prog' has been removed.
41Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to. 41Use './configure PKG_CONFIG=/full/name/of/pkg-config' if you need to.
42 42
43** The configure option '--enable-silent-rules' and the command 43** The configure option '--enable-silent-rules' is now the default,
44'make V=0' now do a better job of suppressing chatter. 44and silent rules are now quieter. To get the old behavior where
45'make' chatters a lot, configure with '--disable-silent-rules' or
46build with 'make V=1'.
45 47
46--- 48---
47** The `grep-changelog' script (and its manual page) are no longer included. 49** The `grep-changelog' script (and its manual page) are no longer included.
@@ -141,10 +143,6 @@ this has no effect.
141** A new text property `inhibit-read-only' can be used in read-only 143** A new text property `inhibit-read-only' can be used in read-only
142buffers to allow certain parts of the text to be writable. 144buffers to allow certain parts of the text to be writable.
143 145
144** A new function `file-tree-walk' allows to apply a certain action
145to all the files and subdirectories of a directory, similarly to the C
146library function `ftw'.
147
148** A new function `directory-files-recursively' returns all matching 146** A new function `directory-files-recursively' returns all matching
149files (recursively) under a directory. 147files (recursively) under a directory.
150 148
@@ -166,6 +164,8 @@ characters, which can be used for geometry-related calculations.
166 164
167* Editing Changes in Emacs 25.1 165* Editing Changes in Emacs 25.1
168 166
167** Unicode names entered via C-x 8 RET now use substring completion by default.
168
169** New minor mode global-eldoc-mode is enabled by default. 169** New minor mode global-eldoc-mode is enabled by default.
170 170
171** Emacs now supports "bracketed paste mode" when running on a terminal 171** Emacs now supports "bracketed paste mode" when running on a terminal
@@ -191,10 +191,16 @@ Unicode standards.
191 191
192When you invoke `shell' interactively, the *shell* buffer will now 192When you invoke `shell' interactively, the *shell* buffer will now
193display in a new window. However, you can customize this behavior via 193display in a new window. However, you can customize this behavior via
194the new `shell-display-buffer-actions' variable. For example, to get 194the `display-buffer-alist' variable. For example, to get
195the old behavior -- *shell* buffer displays in current window -- use 195the old behavior -- *shell* buffer displays in current window -- use
196(setq shell-display-buffer-actions '(display-buffer-same-window)). 196(add-to-list 'display-buffer-alist
197 '("^\\*shell\\*$" . (display-buffer-same-window))).
198
197 199
200** EIEIO
201*** The <class>-list-p and <class>-child-p functions are declared obsolete.
202*** The <class> variables are declared obsolete.
203*** The <initarg> variables are declared obsolete.
198** ido 204** ido
199*** New command `ido-bury-buffer-at-head' bound to C-S-b 205*** New command `ido-bury-buffer-at-head' bound to C-S-b
200Bury the buffer at the head of `ido-matches', analogous to how C-k 206Bury the buffer at the head of `ido-matches', analogous to how C-k
@@ -607,7 +613,7 @@ Horizontal scroll bars are turned off by default.
607 `scroll-bar-height'. 613 `scroll-bar-height'.
608 614
609+++ 615+++
610** The height of a frame's menu and tool bar are no more counted in the 616** The height of a frame's menu and tool bar are no longer counted in the
611frame's text height. This means that the text height stands only for 617frame's text height. This means that the text height stands only for
612the height of the frame's root window plus that of the echo area (if 618the height of the frame's root window plus that of the echo area (if
613present). This was already the behavior for frames with external tool 619present). This was already the behavior for frames with external tool
diff --git a/etc/NEWS.24 b/etc/NEWS.24
index c33b337a1e1..ae0d402a3d5 100644
--- a/etc/NEWS.24
+++ b/etc/NEWS.24
@@ -27,6 +27,9 @@ otherwise leave it unmarked.
27--- 27---
28** The default value of `history-length' has increased to 100. 28** The default value of `history-length' has increased to 100.
29 29
30+++
31** `redisplay-dont-pause' is declared as obsolete.
32
30 33
31* Changes in Specialized Modes and Packages in Emacs 24.5 34* Changes in Specialized Modes and Packages in Emacs 24.5
32 35