aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-03-04 03:48:53 +0000
committerGlenn Morris2008-03-04 03:48:53 +0000
commit56b654bb5d98c5545340b577a1a8eb5a41c9d307 (patch)
tree8c5fd8a7b14ddbc2e790f3447603f7f9473f5470
parentf4a3cc44334f7b0a8a09723956f58771472ae9f6 (diff)
downloademacs-56b654bb5d98c5545340b577a1a8eb5a41c9d307.tar.gz
emacs-56b654bb5d98c5545340b577a1a8eb5a41c9d307.zip
(tex-cmd-bibtex-args): Add :version and :group.
-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."
1975 1975
1976(defcustom tex-cmd-bibtex-args "--min-crossref=100" 1976(defcustom tex-cmd-bibtex-args "--min-crossref=100"
1977 "Extra args to pass to `bibtex' by default." 1977 "Extra args to pass to `bibtex' by default."
1978 :type 'string) 1978 :type 'string
1979 :version "23.1"
1980 :group 'tex-run)
1979 1981
1980(defun tex-format-cmd (format fspec) 1982(defun tex-format-cmd (format fspec)
1981 "Like `format-spec' but adds user-specified args to the command. 1983 "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."
1990 (concat prefix cmd 1992 (concat prefix cmd
1991 (if extra-args (concat " " extra-args)) 1993 (if extra-args (concat " " extra-args))
1992 " " (format-spec args fspec))))) 1994 " " (format-spec args fspec)))))
1993 1995
1994(defun tex-compile-default (fspec) 1996(defun tex-compile-default (fspec)
1995 "Guess a default command given the `format-spec' FSPEC." 1997 "Guess a default command given the `format-spec' FSPEC."
1996 ;; TODO: Learn to do latex+dvips! 1998 ;; TODO: Learn to do latex+dvips!