Variable: texinfo-syntax-propertize-function
texinfo-syntax-propertize-function is a variable defined in
texinfo.el.gz.
Value
#[514 "b\210`W\205D\300\301\302#\205D\303\224\203\"\304\303\224\303\225\305\306$\210\202\307\224\2033\304\307\224\307\225\305\310$\210\202\311\224\203\304\311\224\311\225\305\312$\210\202\207"
[re-search-forward "\\(@\\)c\\(omment\\)?\\>\\|^\\(@\\)ignore\\>\\|^@end ignore\\(\n\\)" t 1 put-text-property syntax-table
(11)
3
(2097163)
4
(2097164)]
7 "\n\n(fn START END)"]
Documentation
Syntactic keywords to catch comment delimiters in texinfo-mode.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defconst texinfo-syntax-propertize-function
(syntax-propertize-rules
("\\(@\\)c\\(omment\\)?\\>" (1 "<"))
("^\\(@\\)ignore\\>" (1 "< b"))
("^@end ignore\\(\n\\)" (1 "> b")))
"Syntactic keywords to catch comment delimiters in `texinfo-mode'.")