Function: semantic-lex-default-action

semantic-lex-default-action is a byte-compiled function defined in lex.el.gz.

Signature

(semantic-lex-default-action)

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"))