aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/emacs-lisp/assoc.el3
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index afa01ebac9f..c87a0495b91 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,6 +1,7 @@
12010-01-23 Chong Yidong <cyd@stupidchicken.com> 12010-01-23 Chong Yidong <cyd@stupidchicken.com>
2 2
3 * emacs-lisp/assoc.el (aput, adelete, amake): Use lexical-let (Bug#5450). 3 * emacs-lisp/assoc.el (aput, adelete, amake): Use lexical-let (Bug#5450).
4 (aelement): Doc fix.
4 5
52010-01-23 Stephen Leake <stephen_leake@member.fsf.org> 62010-01-23 Stephen Leake <stephen_leake@member.fsf.org>
6 7
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."
42 42
43(defun aelement (key value) 43(defun aelement (key value)
44 "Make a list of a cons cell containing car of KEY and cdr of VALUE. 44 "Make a list of a cons cell containing car of KEY and cdr of VALUE.
45The returned list is suitable as an element of an alist." 45The returned list is suitable for concatanating with an existing
46alist, via `nconc'."
46 (list (cons key value))) 47 (list (cons key value)))
47 48
48 49