diff options
| author | Lars Ingebrigtsen | 2020-10-01 20:03:58 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2020-10-01 20:03:58 +0200 |
| commit | 41dcbeccf3094b7f00f5650080a3b604dca69717 (patch) | |
| tree | e6157b96814b11c2e7cae40d188a8e39fecbf107 | |
| parent | 4997032c05e7929d6f306d5195da7c3accfad79f (diff) | |
| download | emacs-41dcbeccf3094b7f00f5650080a3b604dca69717.tar.gz emacs-41dcbeccf3094b7f00f5650080a3b604dca69717.zip | |
Make aliases introduced in previous patch obsolete
* lisp/emacs-lisp/debug.el (debugger-toggle-locals):
(debug-help-follow): Make reinstated aliases obsolete.
| -rw-r--r-- | lisp/emacs-lisp/debug.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index 14957eae0f2..8cd0bdef648 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el | |||
| @@ -538,7 +538,8 @@ The environment used is the one when entering the activation frame at point." | |||
| 538 | (let ((str (eval-expression-print-format val))) | 538 | (let ((str (eval-expression-print-format val))) |
| 539 | (if str (princ str t)))))))) | 539 | (if str (princ str t)))))))) |
| 540 | 540 | ||
| 541 | (defalias 'debugger-toggle-locals 'backtrace-toggle-locals) | 541 | (define-obsolete-function-alias 'debugger-toggle-locals |
| 542 | 'backtrace-toggle-locals "28.1") | ||
| 542 | 543 | ||
| 543 | 544 | ||
| 544 | (defvar debugger-mode-map | 545 | (defvar debugger-mode-map |
| @@ -634,7 +635,8 @@ Complete list of commands: | |||
| 634 | (buffer-substring (line-beginning-position 0) | 635 | (buffer-substring (line-beginning-position 0) |
| 635 | (line-end-position 0))))) | 636 | (line-end-position 0))))) |
| 636 | 637 | ||
| 637 | (defalias 'debug-help-follow 'backtrace-help-follow-symbol) | 638 | (define-obsolete-function-alias 'debug-help-follow |
| 639 | 'backtrace-help-follow-symbol "28.1") | ||
| 638 | 640 | ||
| 639 | 641 | ||
| 640 | ;; When you change this, you may also need to change the number of | 642 | ;; When you change this, you may also need to change the number of |