# HG changeset patch # User Glenn Morris # Date 1264305494 28800 # Node ID f611f11aaf1fdccf6191e4196dc1282f78852b85 # Parent 5824bdf042872062b24927232e0f7fab0751b5d9 (aelement): Fix typo in previous. diff -r 5824bdf04287 -r f611f11aaf1f lisp/emacs-lisp/assoc.el --- a/lisp/emacs-lisp/assoc.el Sat Jan 23 15:25:25 2010 -0800 +++ b/lisp/emacs-lisp/assoc.el Sat Jan 23 19:58:14 2010 -0800 @@ -1,7 +1,7 @@ ;;; assoc.el --- insert/delete/sort functions on association lists -;; Copyright (C) 1996, 2001, 2002, 2003, 2004, 2005, -;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +;; Copyright (C) 1996, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, +;; 2009, 2010 Free Software Foundation, Inc. ;; Author: Barry A. Warsaw ;; Keywords: extensions @@ -42,7 +42,7 @@ (defun aelement (key value) "Make a list of a cons cell containing car of KEY and cdr of VALUE. -The returned list is suitable for concatanating with an existing +The returned list is suitable for concatenating with an existing alist, via `nconc'." (list (cons key value)))