Function: semantic-lex-debug
semantic-lex-debug is an interactive and byte-compiled function
defined in lex.el.gz.
Signature
(semantic-lex-debug ARG)
Documentation
Debug the semantic lexer in the current buffer.
Argument ARG specifies of the analyze the whole buffer, or start at point.
While engaged, each token identified by the lexer will be highlighted
in the target buffer A description of the current token will be
displayed in the minibuffer. Press SPC to move to the next lexical token.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
(defun semantic-lex-debug (arg)
"Debug the semantic lexer in the current buffer.
Argument ARG specifies of the analyze the whole buffer, or start at point.
While engaged, each token identified by the lexer will be highlighted
in the target buffer A description of the current token will be
displayed in the minibuffer. Press SPC to move to the next lexical token."
(interactive "P")
(require 'semantic/debug)
(let ((semantic-lex-debug t))
(semantic-lex-test arg)))