From: Glenn Morris Date: Tue, 4 Mar 2008 03:48:53 +0000 (+0000) Subject: (tex-cmd-bibtex-args): Add :version and :group. X-Git-Tag: emacs-pretest-23.0.90~7477 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=56b654bb5d98c5545340b577a1a8eb5a41c9d307;p=emacs.git (tex-cmd-bibtex-args): Add :version and :group. --- 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!