diff options
| author | Stefan Monnier | 2012-04-26 20:30:56 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2012-04-26 20:30:56 -0400 |
| commit | 797e6e88e9cfae3c03287ef198223e7152da7c33 (patch) | |
| tree | 41d6f33b1382bf0c4bd550058163899c6f3640f0 | |
| parent | 36d55cd47912cf633a9f72567a9b9118f4f22776 (diff) | |
| download | emacs-797e6e88e9cfae3c03287ef198223e7152da7c33.tar.gz emacs-797e6e88e9cfae3c03287ef198223e7152da7c33.zip | |
* emacs-lisp/assoc.el: Move to obsolete/.
| -rw-r--r-- | etc/NEWS | 5 | ||||
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/obsolete/assoc.el (renamed from lisp/emacs-lisp/assoc.el) | 1 |
3 files changed, 10 insertions, 0 deletions
| @@ -144,6 +144,11 @@ server properties. | |||
| 144 | 144 | ||
| 145 | ** Obsolete packages: | 145 | ** Obsolete packages: |
| 146 | 146 | ||
| 147 | *** assoc.el | ||
| 148 | In most cases, assoc+member+push+delq work just as well. | ||
| 149 | And in any case it's just a terrible package: ugly semantics, terrible | ||
| 150 | inefficiency, and not namespace-clean. | ||
| 151 | |||
| 147 | *** mailpost.el | 152 | *** mailpost.el |
| 148 | 153 | ||
| 149 | *** mouse-sel.el | 154 | *** mouse-sel.el |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 87b525d7e66..9afa98fc2fe 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-04-27 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/assoc.el: Move to obsolete/. | ||
| 4 | |||
| 1 | 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2012-04-26 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352). | 7 | * emacs-lisp/assoc.el (aget): Fix dynamic-scoping issue (bug#11352). |
diff --git a/lisp/emacs-lisp/assoc.el b/lisp/obsolete/assoc.el index 8e6f7711d5b..d0738dfeb2c 100644 --- a/lisp/emacs-lisp/assoc.el +++ b/lisp/obsolete/assoc.el | |||
| @@ -4,6 +4,7 @@ | |||
| 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 | ;; Obsolete-since: 24.2 | ||
| 7 | 8 | ||
| 8 | ;; This file is part of GNU Emacs. | 9 | ;; This file is part of GNU Emacs. |
| 9 | 10 | ||