# HG changeset patch # User Glenn Morris # Date 1204602533 0 # Node ID edefaec61bcf0ff859e78df538d3238c769c9150 # Parent 5f5f07a5c076afc537004051245b9e088918c183 (tex-cmd-bibtex-args): Add :version and :group. diff -r 5f5f07a5c076 -r edefaec61bcf lisp/textmodes/tex-mode.el --- a/lisp/textmodes/tex-mode.el Mon Mar 03 22:29:12 2008 +0000 +++ b/lisp/textmodes/tex-mode.el Tue Mar 04 03:48:53 2008 +0000 @@ -1975,7 +1975,9 @@ (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 @@ (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!