summaryrefslogtreecommitdiff
path: root/lisp/textmodes/tex-mode.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-03-04 03:48:53 +0000
committerGlenn Morris <rgm@gnu.org>2008-03-04 03:48:53 +0000
commit56b654bb5d98c5545340b577a1a8eb5a41c9d307 (patch)
tree8c5fd8a7b14ddbc2e790f3447603f7f9473f5470 /lisp/textmodes/tex-mode.el
parentf4a3cc44334f7b0a8a09723956f58771472ae9f6 (diff)
downloademacs-56b654bb5d98c5545340b577a1a8eb5a41c9d307.tar.gz
emacs-56b654bb5d98c5545340b577a1a8eb5a41c9d307.tar.bz2
emacs-56b654bb5d98c5545340b577a1a8eb5a41c9d307.zip
(tex-cmd-bibtex-args): Add :version and :group.
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!