diff options
| -rw-r--r-- | lisp/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/emacs-lisp/assoc.el | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index afa01ebac9f..c87a0495b91 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | 2010-01-23 Chong Yidong <cyd@stupidchicken.com> | 1 | 2010-01-23 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 2 | ||
| 3 | * emacs-lisp/assoc.el (aput, adelete, amake): Use lexical-let (Bug#5450). | 3 | * emacs-lisp/assoc.el (aput, adelete, amake): Use lexical-let (Bug#5450). |
| 4 | (aelement): Doc fix. | ||
| 4 | 5 | ||
| 5 | 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org> | 6 | 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org> |
| 6 | 7 | ||
diff --git a/lisp/emacs-lisp/assoc.el b/lisp/emacs-lisp/assoc.el index dd437d7cb1d..60692495776 100644 --- a/lisp/emacs-lisp/assoc.el +++ b/lisp/emacs-lisp/assoc.el | |||
| @@ -42,7 +42,8 @@ sorted list." | |||
| 42 | 42 | ||
| 43 | (defun aelement (key value) | 43 | (defun aelement (key value) |
| 44 | "Make a list of a cons cell containing car of KEY and cdr of VALUE. | 44 | "Make a list of a cons cell containing car of KEY and cdr of VALUE. |
| 45 | The returned list is suitable as an element of an alist." | 45 | The returned list is suitable for concatanating with an existing |
| 46 | alist, via `nconc'." | ||
| 46 | (list (cons key value))) | 47 | (list (cons key value))) |
| 47 | 48 | ||
| 48 | 49 | ||