From: Chong Yidong Date: Sat, 23 Jan 2010 22:46:32 +0000 (-0500) Subject: * emacs-lisp/assoc.el (aelement): Doc fix. X-Git-Tag: emacs-pretest-23.1.92~30^2~3^2~11 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=245e0fafb7c1cde6fb9ea580008249b7c09f8f12;p=emacs.git * emacs-lisp/assoc.el (aelement): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index afa01ebac9f..c87a0495b91 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --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." (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)))