diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-20 09:48:28 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-10-20 09:48:28 +0200 |
commit | cea9577b7d6fcf01599afd48078f8ff1defb1297 (patch) | |
tree | b820c48d420363c6724e2b830ba428171d6eb88a /lisp/emacs-lisp/debug.el | |
parent | 19f72110fc448e58dcd2d867d1db1fc547b790f2 (diff) | |
download | emacs-cea9577b7d6fcf01599afd48078f8ff1defb1297.tar.gz emacs-cea9577b7d6fcf01599afd48078f8ff1defb1297.tar.bz2 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).
Diffstat (limited to 'lisp/emacs-lisp/debug.el')
-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." (push s funs)))) funs)) +(defalias 'edebug-cancel-debug-on-entry #'cancel-debug-on-entry) + ;;;###autoload (defun cancel-debug-on-entry (&optional function) "Undo effect of \\[debug-on-entry] on FUNCTION. |