Function: TeX-expand-list

TeX-expand-list is a byte-compiled function defined in tex.el.

Signature

(TeX-expand-list)

Documentation

Complete list of expansion strings for TeX command names.

Concatenate TeX-expand-list(var)/TeX-expand-list(fun) and TeX-expand-list-builtin making sure "%p" is the first entry.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-expand-list ()
  "Complete list of expansion strings for TeX command names.

Concatenate `TeX-expand-list' and `TeX-expand-list-builtin' making
sure \"%p\" is the first entry."
  (append
   ;; %p must be the first entry, see `TeX-print-command'.
   '(("%p" TeX-printer-query))
   TeX-expand-list
   TeX-expand-list-builtin))