Function: TeX-engine-alist

TeX-engine-alist is a byte-compiled function defined in tex.el.

Signature

(TeX-engine-alist)

Documentation

Return an alist of TeX engines.

The function appends the built-in engine specs from TeX-engine-alist-builtin and the user-defined engines from TeX-engine-alist(var)/TeX-engine-alist(fun) and deletes any entries from the built-in part where an entry with the same car exists in the user-defined part.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-engine-alist ()
  "Return an alist of TeX engines.
The function appends the built-in engine specs from
`TeX-engine-alist-builtin' and the user-defined engines from
`TeX-engine-alist' and deletes any entries from the built-in part
where an entry with the same car exists in the user-defined part."
  (TeX-delete-dups-by-car (append TeX-engine-alist TeX-engine-alist-builtin)))