aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1994-11-09 05:50:58 +0000
committerKarl Heuer1994-11-09 05:50:58 +0000
commit89961ff8c9407fb3a9ab5d5363602f1c1a7fc6ae (patch)
tree003f2998e176a0810357026462eed1bfe9a2554e
parent5d74f2a65c0e8e67e5933d1f47e2b9413fd84646 (diff)
downloademacs-89961ff8c9407fb3a9ab5d5363602f1c1a7fc6ae.tar.gz
emacs-89961ff8c9407fb3a9ab5d5363602f1c1a7fc6ae.zip
(debugger-list-functions): Set help-mode in *Help* buffer.
-rw-r--r--lisp/emacs-lisp/debug.el5
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."
449 (terpri) 449 (terpri)
450 (setq list (cdr list)))) 450 (setq list (cdr list))))
451 (princ "Note: if you have redefined a function, then it may no longer\n") 451 (princ "Note: if you have redefined a function, then it may no longer\n")
452 (princ "be set to debug on entry, even if it is in the list.")))) 452 (princ "be set to debug on entry, even if it is in the list."))
453 (save-excursion
454 (set-buffer standard-output)
455 (help-mode))))
453 456
454;;; debug.el ends here 457;;; debug.el ends here