Variable: tex-first-line-header-regexp

tex-first-line-header-regexp is a customizable variable defined in tex-mode.el.gz.

Value

nil

Documentation

Regexp for matching a first line which tex-region should include.

If this is non-nil, it should be a regular expression string; if it matches the first line of the file, tex-region always includes the first line in the TeX run.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
;;;###autoload
(defcustom tex-first-line-header-regexp nil
  "Regexp for matching a first line which `tex-region' should include.
If this is non-nil, it should be a regular expression string;
if it matches the first line of the file,
`tex-region' always includes the first line in the TeX run."
  :type '(choice (const :tag "None" nil)
                 regexp)
  :group 'tex-file)