Function: TeX-arg-file
TeX-arg-file is a byte-compiled function defined in latex.el.
Signature
(TeX-arg-file OPTIONAL &optional PROMPT)
Documentation
Prompt for a filename in the current directory.
If OPTIONAL is non-nil, insert the resulting value as an optional argument, otherwise as a mandatory one. Use PROMPT as the prompt string.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun TeX-arg-file (optional &optional prompt)
"Prompt for a filename in the current directory.
If OPTIONAL is non-nil, insert the resulting value as an optional
argument, otherwise as a mandatory one. Use PROMPT as the prompt
string."
(TeX-argument-insert (read-file-name (TeX-argument-prompt optional
prompt "File")
"" "" nil)
optional))