* emacs-lisp/assoc.el (aelement): Doc fix.
authorChong Yidong <cyd@stupidchicken.com>
Sat, 23 Jan 2010 22:46:32 +0000 (17:46 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 23 Jan 2010 22:46:32 +0000 (17:46 -0500)
lisp/ChangeLog
lisp/emacs-lisp/assoc.el

index afa01eb..c87a049 100644 (file)
@@ -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>
 
index dd437d7..6069249 100644 (file)
@@ -42,7 +42,8 @@ sorted list."
 
 (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)))