diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-11-09 05:50:58 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-11-09 05:50:58 +0000 |
commit | 89961ff8c9407fb3a9ab5d5363602f1c1a7fc6ae (patch) | |
tree | 003f2998e176a0810357026462eed1bfe9a2554e /lisp/emacs-lisp | |
parent | 5d74f2a65c0e8e67e5933d1f47e2b9413fd84646 (diff) | |
download | emacs-89961ff8c9407fb3a9ab5d5363602f1c1a7fc6ae.tar.gz emacs-89961ff8c9407fb3a9ab5d5363602f1c1a7fc6ae.tar.bz2 emacs-89961ff8c9407fb3a9ab5d5363602f1c1a7fc6ae.zip |
(debugger-list-functions): Set help-mode in *Help* buffer.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/debug.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/debug.el b/lisp/emacs-lisp/debug.el index f8d2940c0e6..94695b9c51b 100644 --- a/lisp/emacs-lisp/debug.el +++ b/lisp/emacs-lisp/debug.el @@ -449,6 +449,9 @@ If argument is nil or an empty string, cancel for all functions." (terpri) (setq list (cdr list)))) (princ "Note: if you have redefined a function, then it may no longer\n") - (princ "be set to debug on entry, even if it is in the list.")))) + (princ "be set to debug on entry, even if it is in the list.")) + (save-excursion + (set-buffer standard-output) + (help-mode)))) ;;; debug.el ends here |