summaryrefslogtreecommitdiff
path: root/lisp/textmodes/tex-mode.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/textmodes/tex-mode.el')
-rw-r--r--lisp/textmodes/tex-mode.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index a4067830475..ff19e602426 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -1975,7 +1975,9 @@ FILE is typically the output DVI or PDF file."
(defcustom tex-cmd-bibtex-args "--min-crossref=100"
"Extra args to pass to `bibtex' by default."
- :type 'string)
+ :type 'string
+ :version "23.1"
+ :group 'tex-run)
(defun tex-format-cmd (format fspec)
"Like `format-spec' but adds user-specified args to the command.
@@ -1990,7 +1992,7 @@ Only applies the FSPEC to the args part of FORMAT."
(concat prefix cmd
(if extra-args (concat " " extra-args))
" " (format-spec args fspec)))))
-
+
(defun tex-compile-default (fspec)
"Guess a default command given the `format-spec' FSPEC."
;; TODO: Learn to do latex+dvips!