aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-01-23 19:58:14 -0800
committerGlenn Morris2010-01-23 19:58:14 -0800
commitac59f99d910bf80135b647892636fa9a3135d55e (patch)
tree49bb03d0fe099565e1bf406559c8de39119a48c8
parent741701037aa9ac7f2c79afc76003968f78050967 (diff)
downloademacs-ac59f99d910bf80135b647892636fa9a3135d55e.tar.gz
emacs-ac59f99d910bf80135b647892636fa9a3135d55e.zip
(aelement): Fix typo in previous.
-rw-r--r--lisp/emacs-lisp/assoc.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/assoc.el b/lisp/emacs-lisp/assoc.el
index 60692495776..ccab5d90c09 100644
--- a/lisp/emacs-lisp/assoc.el
+++ b/lisp/emacs-lisp/assoc.el
@@ -1,7 +1,7 @@
1;;; assoc.el --- insert/delete/sort functions on association lists 1;;; assoc.el --- insert/delete/sort functions on association lists
2 2
3;; Copyright (C) 1996, 2001, 2002, 2003, 2004, 2005, 3;; Copyright (C) 1996, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 4;; 2009, 2010 Free Software Foundation, Inc.
5 5
6;; Author: Barry A. Warsaw <bwarsaw@cen.com> 6;; Author: Barry A. Warsaw <bwarsaw@cen.com>
7;; Keywords: extensions 7;; Keywords: extensions
@@ -42,7 +42,7 @@ 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 for concatanating with an existing 45The returned list is suitable for concatenating with an existing
46alist, via `nconc'." 46alist, via `nconc'."
47 (list (cons key value))) 47 (list (cons key value)))
48 48