Variable: semantic-lex-default-action
semantic-lex-default-action is a variable defined in lex.el.gz.
Value
(t
(error "Unmatched Text during Lexical Analysis"))
Documentation
The default action when no other lexical actions match text.
This action will just throw an error.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
;;; Analyzers
;;
;; Pre-defined common analyzers.
;;
(define-lex-analyzer semantic-lex-default-action
"The default action when no other lexical actions match text.
This action will just throw an error."
t
(error "Unmatched Text during Lexical Analysis"))