summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/assoc.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2010-01-23 17:46:32 -0500
committerChong Yidong <cyd@stupidchicken.com>2010-01-23 17:46:32 -0500
commit245e0fafb7c1cde6fb9ea580008249b7c09f8f12 (patch)
tree4b15021b8ae9465b2e9c11b2df74e0ebdb7b955e /lisp/emacs-lisp/assoc.el
parent064eee0324df9b7d0d320e523ced87478dc3a849 (diff)
downloademacs-245e0fafb7c1cde6fb9ea580008249b7c09f8f12.tar.gz
emacs-245e0fafb7c1cde6fb9ea580008249b7c09f8f12.tar.bz2
emacs-245e0fafb7c1cde6fb9ea580008249b7c09f8f12.zip
* emacs-lisp/assoc.el (aelement): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp/assoc.el')
-rw-r--r--lisp/emacs-lisp/assoc.el3
1 files changed, 2 insertions, 1 deletions
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)))