Mercurial > emacs
comparison lisp/emacs-lisp/assoc.el @ 88155:d7ddb3e565de
sync with trunk
author | Henrik Enberg <henrik.enberg@telia.com> |
---|---|
date | Mon, 16 Jan 2006 00:03:54 +0000 |
parents | 83f275dcd93a |
children |
comparison
equal
deleted
inserted
replaced
88154:8ce476d3ba36 | 88155:d7ddb3e565de |
---|---|
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 Free Software Foundation, Inc. | 3 ;; Copyright (C) 1996, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
4 | 4 |
5 ;; Author: Barry A. Warsaw <bwarsaw@cen.com> | 5 ;; Author: Barry A. Warsaw <bwarsaw@cen.com> |
6 ;; Keywords: extensions | 6 ;; Keywords: extensions |
7 | 7 |
8 ;; This file is part of GNU Emacs. | 8 ;; This file is part of GNU Emacs. |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18 ;; GNU General Public License for more details. | 18 ;; GNU General Public License for more details. |
19 | 19 |
20 ;; You should have received a copy of the GNU General Public License | 20 ;; You should have received a copy of the GNU General Public License |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02111-1307, USA. | 23 ;; Boston, MA 02110-1301, USA. |
24 | 24 |
25 ;;; Commentary: | 25 ;;; Commentary: |
26 | 26 |
27 ;; Association list utilities providing insertion, deletion, sorting | 27 ;; Association list utilities providing insertion, deletion, sorting |
28 ;; fetching off key-value pairs in association lists. | 28 ;; fetching off key-value pairs in association lists. |
135 (aput alist-symbol keycar valcar)))) | 135 (aput alist-symbol keycar valcar)))) |
136 (eval alist-symbol)) | 136 (eval alist-symbol)) |
137 | 137 |
138 (provide 'assoc) | 138 (provide 'assoc) |
139 | 139 |
140 ;;; arch-tag: 3e58bd89-d912-4b74-a0dc-6ed9735922bc | |
140 ;;; assoc.el ends here | 141 ;;; assoc.el ends here |