diff options
| author | Stefan Kangas | 2019-11-05 15:45:22 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2019-11-05 15:49:29 +0100 |
| commit | d76bc06abc38e8b6489c7e526711a87fb5450784 (patch) | |
| tree | e2be915bed29a8d6c1b65915efa9aebf7da4556b | |
| parent | d270d7d4ad8693202777ce29363947d38899bf6c (diff) | |
| download | emacs-d76bc06abc38e8b6489c7e526711a87fb5450784.tar.gz emacs-d76bc06abc38e8b6489c7e526711a87fb5450784.zip | |
Declare unused macro package--push obsolete
* lisp/emacs-lisp/package.el (package--push): Declare obsolete.
| -rw-r--r-- | lisp/emacs-lisp/package.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 8c8e86aead9..80ffdc30195 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -2773,6 +2773,7 @@ Letters do not insert themselves; instead, they are commands. | |||
| 2773 | "Convenience macro for `package-menu--generate'. | 2773 | "Convenience macro for `package-menu--generate'. |
| 2774 | If the alist stored in the symbol LISTNAME lacks an entry for a | 2774 | If the alist stored in the symbol LISTNAME lacks an entry for a |
| 2775 | package PKG-DESC, add one. The alist is keyed with PKG-DESC." | 2775 | package PKG-DESC, add one. The alist is keyed with PKG-DESC." |
| 2776 | (declare (obsolete nil "27.1")) | ||
| 2776 | `(unless (assoc ,pkg-desc ,listname) | 2777 | `(unless (assoc ,pkg-desc ,listname) |
| 2777 | ;; FIXME: Should we move status into pkg-desc? | 2778 | ;; FIXME: Should we move status into pkg-desc? |
| 2778 | (push (cons ,pkg-desc ,status) ,listname))) | 2779 | (push (cons ,pkg-desc ,status) ,listname))) |