Variable: plain-TeX-auto-regexp-list

plain-TeX-auto-regexp-list is a variable defined in tex.el.

Value

(("\\\\\\(?:def\\|let\\)\\\\\\(\\(?:[a-zA-Z]\\|\\cj\\)+\\)[^a-zA-Z@]"
  1 TeX-auto-symbol-check)
 ("\\\\\\(?:chardef\\|font\\|mathchardef\\|new\\(?:count\\|dimen\\|font\\|\\(?:mu\\)?skip\\)\\){?\\\\\\(\\(?:[a-zA-Z]\\|\\cj\\)+\\)}?[^a-zA-Z@]"
  1 TeX-auto-symbol)
 ("\\\\typein\\[\\\\\\(\\(?:[a-zA-Z]\\|\\cj\\)+\\)\\]" 1
  TeX-auto-symbol)
 ("\\\\input +\\([^#}%\"\\\n
]+?\\)\\(?:\\.[^#}%/\"\\.\n
]+\\)?" 1
  TeX-auto-file))

Documentation

List of regular expression matching common plain TeX macro definitions.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defvar plain-TeX-auto-regexp-list
  (let ((token TeX-token-char))
    `((,(concat "\\\\\\(?:def\\|let\\)\\\\\\(" token "+\\)[^a-zA-Z@]")
       1 TeX-auto-symbol-check)
      (,(concat "\\\\"
                (regexp-opt '("font" "newfont" "chardef" "mathchardef"
                              "newcount" "newdimen" "newmuskip" "newskip"))
                "{?\\\\\\(" token "+\\)}?[^a-zA-Z@]")
       1 TeX-auto-symbol)
      (,(concat "\\\\typein\\[\\\\\\(" token "+\\)\\]") 1 TeX-auto-symbol)
      ("\\\\input +\\([^#}%\"\\\n\r]+?\\)\\(?:\\.[^#}%/\"\\.\n\r]+\\)?"
       1 TeX-auto-file)))
  "List of regular expression matching common plain TeX macro definitions.")