Variable: semantic-lex-syntax-modifications

semantic-lex-syntax-modifications is a buffer-local variable defined in lex.el.gz.

Documentation

Changes to the syntax table for this buffer.

These changes are active only while the buffer is being flexed. This is a list where each element has the form:
  (CHAR CLASS)
CHAR is the char passed to modify-syntax-entry, and CLASS is the string also passed to modify-syntax-entry to define what syntax class CHAR has.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/lex.el.gz
(defvar-local semantic-lex-syntax-modifications nil
  "Changes to the syntax table for this buffer.
These changes are active only while the buffer is being flexed.
This is a list where each element has the form:
  (CHAR CLASS)
CHAR is the char passed to `modify-syntax-entry',
and CLASS is the string also passed to `modify-syntax-entry' to define
what syntax class CHAR has.")