diff options
| author | Daniel Colascione | 2015-03-01 23:57:51 -0800 |
|---|---|---|
| committer | Daniel Colascione | 2015-03-02 15:42:09 -0800 |
| commit | f6b5db6c45b773f86e203368aee9153ec8527205 (patch) | |
| tree | 360651305d19be6356d2912d29bbaad88f4529f9 /etc | |
| parent | 9d8d0658147dfe5a90e2fb07ff666f35b1162d6e (diff) | |
| download | emacs-f6b5db6c45b773f86e203368aee9153ec8527205.tar.gz emacs-f6b5db6c45b773f86e203368aee9153ec8527205.zip | |
Add support for generators
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 78f7e34..e7d79d5 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,8 @@
+2015-03-02 Daniel Colascione <dancol@dancol.org>
+
+ * control.texi (Generators): New section
+ * elisp.text: Reference new section.
+
2015-02-28 Eli Zaretskii <eliz@gnu.org>
* searching.texi (Char Classes): Update the documentation of
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 448c7f2..4e9c119 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,7 @@
+2015-03-02 Daniel Colascione <dancol@dancol.org>
+
+ * cl.texi (Iteration Clauses): Mention iterator support.
+
2015-02-25 Tassilo Horn <tsdh@gnu.org>
* reftex.texi (Multifile Documents): Document
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7ce2e81..4ab4406 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,8 @@
2015-03-02 Daniel Colascione <dancol@dancol.org>
- * vc/vc.el (vc-responsible-backend): Add autoload cooking for
+ * emacs-lisp/generator.el: New file.
+
+ * vc/vc.el (vc-responsible-backend): Add autoload cookie for
`vc-responsible-backend'.
2015-03-01 Michael Albinus <michael.albinus@gmx.de>
diff --git a/test/ChangeLog b/test/ChangeLog
index 684e98f..64ad851 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,5 +1,7 @@
2015-03-02 Daniel Colascione <dancol@dancol.org>
+ * automated/generator-tests.el: New tests
+
* automated/finalizer-tests.el (finalizer-basic)
(finalizer-circular-reference, finalizer-cross-reference)
(finalizer-error): New tests.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
| @@ -621,6 +621,8 @@ word syntax, use `\sw' instead. | |||
| 621 | 621 | ||
| 622 | * Lisp Changes in Emacs 25.1 | 622 | * Lisp Changes in Emacs 25.1 |
| 623 | 623 | ||
| 624 | ** Emacs Lisp now supports generators. | ||
| 625 | |||
| 624 | ** New finalizer facility for running code when objects | 626 | ** New finalizer facility for running code when objects |
| 625 | become unreachable. | 627 | become unreachable. |
| 626 | 628 | ||