comparison lisp/textmodes/tex-mode.el @ 584:4cd7543be581

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Mon, 16 Mar 1992 20:39:07 +0000
parents 2ca8cdb96a9f
children fec3f9a1e3e5
comparison
equal deleted inserted replaced
583:3c0c1cd8428a 584:4cd7543be581
31 ;; uses nroff. 31 ;; uses nroff.
32 ;; 32 ;;
33 ;; The code for finding matching $ needs to be fixed. 33 ;; The code for finding matching $ needs to be fixed.
34 34
35 (require 'oshell) 35 (require 'oshell)
36 (provide 'tex-mode)
37
38 (defvar tex-directory "./" 36 (defvar tex-directory "./"
39 "*Directory in which to run TeX subjob. Temporary files are created here.") 37 "*Directory in which to run TeX subjob. Temporary files are created here.")
40 38
41 (defvar tex-run-command "tex" 39 (defvar tex-run-command "tex"
42 "*Command used to run TeX subjob. 40 "*Command used to run TeX subjob.
801 (send-string "tex-shell" (concat tex-shell-cd-command " " file-dir "\n")) 799 (send-string "tex-shell" (concat tex-shell-cd-command " " file-dir "\n"))
802 (send-string "tex-shell" 800 (send-string "tex-shell"
803 (concat tex-bibtex-command " \"" tex-out-file "\"\n"))) 801 (concat tex-bibtex-command " \"" tex-out-file "\"\n")))
804 (tex-recenter-output-buffer 0)) 802 (tex-recenter-output-buffer 0))
805 803
804 (provide 'tex-mode)
805