Mercurial > emacs
changeset 106964:6c7e1a272e9e
* emacs-lisp/assoc.el (aelement): Doc fix.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sat, 23 Jan 2010 17:46:32 -0500 |
parents | a1f2277cc409 |
children | 2eca6c2d9334 |
files | lisp/ChangeLog lisp/emacs-lisp/assoc.el |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sat Jan 23 17:44:03 2010 -0500 +++ b/lisp/ChangeLog Sat Jan 23 17:46:32 2010 -0500 @@ -1,6 +1,7 @@ 2010-01-23 Chong Yidong <cyd@stupidchicken.com> * emacs-lisp/assoc.el (aput, adelete, amake): Use lexical-let (Bug#5450). + (aelement): Doc fix. 2010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
--- a/lisp/emacs-lisp/assoc.el Sat Jan 23 17:44:03 2010 -0500 +++ b/lisp/emacs-lisp/assoc.el Sat Jan 23 17:46:32 2010 -0500 @@ -42,7 +42,8 @@ (defun aelement (key value) "Make a list of a cons cell containing car of KEY and cdr of VALUE. -The returned list is suitable as an element of an alist." +The returned list is suitable for concatanating with an existing +alist, via `nconc'." (list (cons key value)))