diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2020-07-31 06:02:30 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2020-07-31 06:02:30 +0200 |
commit | 7899fa43095f63845d471398c5229147d6f6c100 (patch) | |
tree | cd2d594c8ea426e229d04991eb0670d25655d35b /lisp/emacs-lisp | |
parent | f7a916a618955d38b1ee08a78b309fb97f5250cc (diff) | |
download | emacs-7899fa43095f63845d471398c5229147d6f6c100.tar.gz emacs-7899fa43095f63845d471398c5229147d6f6c100.tar.bz2 emacs-7899fa43095f63845d471398c5229147d6f6c100.zip |
Declare some ancient compat aliases obsolete (Bug#41328)
* lisp/comint.el (comint-read-noecho):
* lisp/emacs-lisp/edebug.el (edebug-all-defuns):
* lisp/man.el (manual-entry):
* lisp/vc/log-edit.el (vc-log-mode-map, vc-log-entry-mode): Declare
ancient backwards-compatibility aliases and functions obsolete. The
oldest in this list was added in 1992, and the most recent in 2004.
* lisp/net/telnet.el (telnet-initial-filter): Don't use
`comint-read-noecho'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 78461185d3a..a565e8f6dcb 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -555,7 +555,7 @@ already is one.)" ;; Compatibility with old versions. -(defalias 'edebug-all-defuns 'edebug-all-defs) +(define-obsolete-function-alias 'edebug-all-defuns #'edebug-all-defs "28.1") ;;;###autoload (defun edebug-all-defs () |