From 245e0fafb7c1cde6fb9ea580008249b7c09f8f12 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sat, 23 Jan 2010 17:46:32 -0500 Subject: [PATCH] * emacs-lisp/assoc.el (aelement): Doc fix. --- lisp/ChangeLog | 1 + lisp/emacs-lisp/assoc.el | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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))) -- 2.39.5