diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2010-01-23 17:46:32 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-01-23 17:46:32 -0500 |
commit | 245e0fafb7c1cde6fb9ea580008249b7c09f8f12 (patch) | |
tree | 4b15021b8ae9465b2e9c11b2df74e0ebdb7b955e /lisp | |
parent | 064eee0324df9b7d0d320e523ced87478dc3a849 (diff) | |
download | emacs-245e0fafb7c1cde6fb9ea580008249b7c09f8f12.tar.gz emacs-245e0fafb7c1cde6fb9ea580008249b7c09f8f12.tar.bz2 emacs-245e0fafb7c1cde6fb9ea580008249b7c09f8f12.zip |
* emacs-lisp/assoc.el (aelement): Doc fix.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 1 | ||||
-rw-r--r-- | lisp/emacs-lisp/assoc.el | 3 |
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 @@ 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> 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))) |