forked from pool/emacs-auctex
33 lines
992 B
Plaintext
33 lines
992 B
Plaintext
--- latex.el
|
|
+++ latex.el 2006-06-29 18:40:59.000000000 +0200
|
|
@@ -1557,6 +1557,7 @@ ELSE as an argument list."
|
|
",")))))
|
|
(if (zerop (length style))
|
|
(setq style LaTeX-default-style))
|
|
+ (TeX-run-style-hooks style)
|
|
(if (not (zerop (length options)))
|
|
(insert LaTeX-optop options LaTeX-optcl))
|
|
(insert TeX-grop style TeX-grcl))
|
|
--- tex-site.el.in
|
|
+++ tex-site.el.in 2006-06-29 18:44:29.000000000 +0200
|
|
@@ -64,6 +64,8 @@ shared by all users of a site."
|
|
:group 'TeX-file
|
|
:type 'directory)
|
|
|
|
+(setq-default TeX-macro-global '("/usr/share/texmf/tex/"))
|
|
+
|
|
(defconst TeX-mode-alist
|
|
'((tex-mode . tex-mode)
|
|
(plain-tex-mode . tex-mode)
|
|
--- tex.el
|
|
+++ tex.el 2006-06-29 18:40:59.000000000 +0200
|
|
@@ -86,7 +86,7 @@
|
|
|
|
;; How to print.
|
|
|
|
-(defcustom TeX-print-command "%(o?)dvips -P%p %r %s"
|
|
+(defcustom TeX-print-command "%(o?)dvips %r -f %s | lpr -P%p"
|
|
"*Command used to print a file.
|
|
|
|
First `%p' is expanded to the printer name, then ordinary expansion is
|