Function: tex-expl-buffer-parse
tex-expl-buffer-parse is a byte-compiled function defined in
tex-mode.el.gz.
Signature
(tex-expl-buffer-parse)
Documentation
Identify buffers using expl3 syntax throughout.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
(defun tex-expl-buffer-parse ()
"Identify buffers using expl3 syntax throughout."
(save-excursion
(goto-char (point-min))
(when (tex-search-noncomment
(re-search-forward
"\\\\\\(?:ExplFile\\|ProvidesExpl\\|__xparse_file\\)"
nil t))
(setq tex-expl-buffer-p t))))