Variable: data-debug-mode-abbrev-table
data-debug-mode-abbrev-table is a variable defined in
data-debug.el.gz.
Value
#<obarray n=1>
Documentation
Abbrev table for data-debug-mode.
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))