diff options
| author | Nicolas Petton | 2015-03-25 09:21:14 +0100 |
|---|---|---|
| committer | Nicolas Petton | 2015-03-25 09:21:14 +0100 |
| commit | d46f31b4b2b0c56f2708e3225eb9fa973441e696 (patch) | |
| tree | 06cd0c57233997db9cfdcbc15a7efd531f231d00 | |
| parent | dcac0090daa378d8db5c63b586c8ea664132a8ce (diff) | |
| download | emacs-d46f31b4b2b0c56f2708e3225eb9fa973441e696.tar.gz emacs-d46f31b4b2b0c56f2708e3225eb9fa973441e696.zip | |
* lisp/emacs-lisp/seq.el: Documentation improvements
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/seq.el | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 72a45d0ca7a..4fb1999e3e9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2015-03-25 Nicolas Petton <nicolas@petton.fr> | ||
| 2 | |||
| 3 | * emacs-lisp/seq.el: Documentation improvements. | ||
| 4 | |||
| 1 | 2015-03-25 Glenn Morris <rgm@gnu.org> | 5 | 2015-03-25 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * net/browse-url.el (browse-url-browser-function) | 7 | * net/browse-url.el (browse-url-browser-function) |
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index 59b91408d09..c5f5906e7e5 100644 --- a/lisp/emacs-lisp/seq.el +++ b/lisp/emacs-lisp/seq.el | |||
| @@ -33,8 +33,8 @@ | |||
| 33 | ;; | 33 | ;; |
| 34 | ;; All provided functions work on lists, strings and vectors. | 34 | ;; All provided functions work on lists, strings and vectors. |
| 35 | ;; | 35 | ;; |
| 36 | ;; Functions taking a predicate or a function iterating over the | 36 | ;; Functions taking a predicate or iterating over a sequence using a |
| 37 | ;; sequence as argument take the function as their first argument and | 37 | ;; function as argument take the function as their first argument and |
| 38 | ;; the sequence as their second argument. All other functions take | 38 | ;; the sequence as their second argument. All other functions take |
| 39 | ;; the sequence as their first argument. | 39 | ;; the sequence as their first argument. |
| 40 | ;; | 40 | ;; |