# HG changeset patch # User Chong Yidong # Date 1264286792 18000 # Node ID 6c7e1a272e9ee90975883079fd1b3a9abb2a0eaa # Parent a1f2277cc4097705e9b2a47dcb73bf22e32a8943 * emacs-lisp/assoc.el (aelement): Doc fix. diff -r a1f2277cc409 -r 6c7e1a272e9e lisp/ChangeLog --- 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 * emacs-lisp/assoc.el (aput, adelete, amake): Use lexical-let (Bug#5450). + (aelement): Doc fix. 2010-01-23 Stephen Leake diff -r a1f2277cc409 -r 6c7e1a272e9e lisp/emacs-lisp/assoc.el --- 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)))