aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJoakim Verona2015-02-08 21:55:28 +0100
committerJoakim Verona2015-02-08 21:55:28 +0100
commit5e1d5ef39ca0d2fbff26d659f2ec6ce863b14529 (patch)
tree860e0d53399626aee6249ebb5f972879f403b228 /etc
parent148262ce3db990ed16989341345e232570b3a338 (diff)
parent7d631aa0ffab875e4979727f632703ad5b4100a2 (diff)
downloademacs-xwidget.tar.gz
emacs-xwidget.zip
merge masterxwidget
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/GNUS-NEWS2
-rw-r--r--etc/NEWS8
3 files changed, 13 insertions, 1 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 37031890945..1fcea545a73 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12015-02-08 Artur Malabarba <bruce.connor.am@gmail.com>
2
3 * NEWS: Document `comment-line'.
4
12015-02-03 Artur Malabarba <bruce.connor.am@gmail.com> 52015-02-03 Artur Malabarba <bruce.connor.am@gmail.com>
2 6
3 * NEWS: Document package.el's improved dependency-handling. 7 * NEWS: Document package.el's improved dependency-handling.
diff --git a/etc/GNUS-NEWS b/etc/GNUS-NEWS
index 4f311e3d9b5..ee3584fdb82 100644
--- a/etc/GNUS-NEWS
+++ b/etc/GNUS-NEWS
@@ -9,6 +9,8 @@ For older news, see Gnus info node "New Features".
9 9
10* New features 10* New features
11 11
12** nnimap can request and use the Gmail "X-GM-LABELS".
13
12** New package `gnus-notifications.el' can send notifications when you 14** New package `gnus-notifications.el' can send notifications when you
13 receive new messages. 15 receive new messages.
14 16
diff --git a/etc/NEWS b/etc/NEWS
index 72e23562868..4c7160ebca6 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -53,7 +53,7 @@ build with 'make V=1'.
53group instead of a user if its argument is prefixed by ':' (a colon). 53group instead of a user if its argument is prefixed by ':' (a colon).
54This will cause the game score files in ${localstatedir}/games/emacs 54This will cause the game score files in ${localstatedir}/games/emacs
55to be owned by that group, and the helper program for updating them to 55to be owned by that group, and the helper program for updating them to
56be installed setgid. 56be installed setgid. The option now defaults to the 'games' group.
57 57
58--- 58---
59** The `grep-changelog' script (and its manual page) are no longer included. 59** The `grep-changelog' script (and its manual page) are no longer included.
@@ -66,6 +66,8 @@ so if you want to use it, you can always take a copy from an older Emacs.
66 66
67* Changes in Emacs 25.1 67* Changes in Emacs 25.1
68 68
69** New command `comment-line' bound to `C-x C-;'.
70
69** New function `custom-prompt-customize-unsaved-options' checks for 71** New function `custom-prompt-customize-unsaved-options' checks for
70unsaved customizations and prompts user to customize (if found). 72unsaved customizations and prompts user to customize (if found).
71 73
@@ -599,6 +601,10 @@ in languages like German where downcasing rules depend on grammar.
599 601
600* Lisp Changes in Emacs 25.1 602* Lisp Changes in Emacs 25.1
601 603
604** lexical closures can use (:documentation <form>) to build their docstring.
605It should be placed right where the docstring would be, and <form> is then
606evaluated (and should return a string) when the closure is built.
607
602** define-inline provides a new way to define inlinable functions. 608** define-inline provides a new way to define inlinable functions.
603 609
604** New function macroexpand-1 to perform a single step of macroexpansion. 610** New function macroexpand-1 to perform a single step of macroexpansion.