Variable: semantic-flex-syntax-modifications

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

This variable is obsolete since 28.1.

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