Function: scheme-debugger-mode
scheme-debugger-mode is a byte-compiled function defined in
xscheme.el.gz.
Signature
(scheme-debugger-mode)
Documentation
Major mode for executing the Scheme debugger.
Like scheme-mode except that the evaluation commands
are disabled, and characters that would normally be self inserting are
sent to the Scheme process instead. Typing ? will show you which
characters perform useful functions.
Commands:
C-M-q indent-sexp
C-c C-b xscheme-send-breakpoint-interrupt
C-c C-c xscheme-send-control-g-interrupt
C-c C-s xscheme-select-process-buffer
C-c C-u xscheme-send-control-u-interrupt
C-c C-x xscheme-send-control-x-interrupt
DEL backward-delete-char-untabify
..\x3FFFFF scheme-debugger-self-insert
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/xscheme.el.gz
;;;; Debugger Mode
(defun scheme-debugger-mode ()
"Major mode for executing the Scheme debugger.
Like `scheme-mode' except that the evaluation commands
are disabled, and characters that would normally be self inserting are
sent to the Scheme process instead. Typing ? will show you which
characters perform useful functions.
Commands:
\\{scheme-debugger-mode-map}"
(error "Invalid entry to scheme-debugger-mode"))