]> git.eshelyaron.com Git - emacs.git/commitdiff
* 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 afa01ebac9f1616ace5f3ddeaa3957e4719eb776..c87a0495b9148a175a4ace317a5303d32ff4cc8d 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 dd437d7cb1d2dcf41d81fe41979c6994d32cb0ae..60692495776c15d155b8fb2f566f525a4195f499 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)))