diff options
| author | Lars Ingebrigtsen | 2019-10-20 09:48:28 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2019-10-20 09:48:28 +0200 |
| commit | cea9577b7d6fcf01599afd48078f8ff1defb1297 (patch) | |
| tree | b820c48d420363c6724e2b830ba428171d6eb88a | |
| parent | 19f72110fc448e58dcd2d867d1db1fc547b790f2 (diff) | |
| download | emacs-cea9577b7d6fcf01599afd48078f8ff1defb1297.tar.gz emacs-cea9577b7d6fcf01599afd48078f8ff1defb1297.zip | |
Add an edebug-cancel-debug-on-entry alias
* lisp/emacs-lisp/debug.el (edebug-cancel-debug-on-entry): Add an
alias for easier discoverability (bug#10806).
| -rw-r--r-- | lisp/emacs-lisp/debug.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index f711971c181..65e02b5eef1 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el | |||
| @@ -683,6 +683,8 @@ Redefining FUNCTION also cancels it." | |||
| 683 | (push s funs)))) | 683 | (push s funs)))) |
| 684 | funs)) | 684 | funs)) |
| 685 | 685 | ||
| 686 | (defalias 'edebug-cancel-debug-on-entry #'cancel-debug-on-entry) | ||
| 687 | |||
| 686 | ;;;###autoload | 688 | ;;;###autoload |
| 687 | (defun cancel-debug-on-entry (&optional function) | 689 | (defun cancel-debug-on-entry (&optional function) |
| 688 | "Undo effect of \\[debug-on-entry] on FUNCTION. | 690 | "Undo effect of \\[debug-on-entry] on FUNCTION. |