Variable: antlr-language-alist

antlr-language-alist is a customizable variable defined in antlr-mode.el.gz.

Value

nil

Documentation

List of ANTLR's supported languages. Variable is UNUSED.

Each element in this list looks like
  (MAJOR-MODE MODELINE-STRING OPTION-VALUE...)

MAJOR-MODE, the major mode of the code in the grammar's actions, is the value of antlr-language if the first group in the string matched by REGEXP in antlr-language-limit-n-regexp is one of the OPTION-VALUEs. An OPTION-VALUE of nil denotes the fallback element. MODELINE-STRING is also displayed in the mode line next to "Antlr".

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(defcustom antlr-language-alist         ; is obsolete now
  nil
  "List of ANTLR's supported languages.  Variable is UNUSED.
Each element in this list looks like
  (MAJOR-MODE MODELINE-STRING OPTION-VALUE...)

MAJOR-MODE, the major mode of the code in the grammar's actions, is the
value of `antlr-language' if the first group in the string matched by
REGEXP in `antlr-language-limit-n-regexp' is one of the OPTION-VALUEs.
An OPTION-VALUE of nil denotes the fallback element.  MODELINE-STRING is
also displayed in the mode line next to \"Antlr\"."
  :type '(sexp :tag "DO NOT CUSTOMIZE" :value nil))