Function: data-debug-mode
data-debug-mode is an interactive and byte-compiled function defined
in data-debug.el.gz.
Signature
(data-debug-mode)
Documentation
Major-mode for the Analyzer debugger.
- negative-argument
0 digit-argument
1 digit-argument
2 digit-argument
3 digit-argument
4 digit-argument
5 digit-argument
6 digit-argument
7 digit-argument
8 digit-argument
9 digit-argument
<mouse-2> data-debug-expand-or-contract-mouse
N data-debug-next-expando
P data-debug-prev-expando
RET data-debug-expand-or-contract
SPC data-debug-expand-or-contract
SPC..~ undefined
n data-debug-next
p data-debug-prev
This mode runs the hook data-debug-mode-hook, as the final or
penultimate step during initialization.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/data-debug.el.gz
(define-derived-mode data-debug-mode fundamental-mode "DATA-DEBUG"
"Major-mode for the Analyzer debugger.
\\{data-debug-mode-map}"
(setq comment-start ";;"
comment-end ""
buffer-read-only t)
(setq-local comment-start-skip
"\\(\\(^\\|[^\\\n]\\)\\(\\\\\\\\\\)*\\);+ *")
(buffer-disable-undo)
(setq-local font-lock-global-modes nil)
(font-lock-mode -1))