changeset 4531:899976225848

(texinfo-delete-from-print-queue) (texinfo-tex-buffer): Load tex-mode to get tex-start-shell, etc.
author Richard M. Stallman <rms@gnu.org>
date Tue, 10 Aug 1993 08:24:55 +0000
parents c14a75fce9c9
children c2afed091afb
files lisp/textmodes/texinfo.el
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/texinfo.el	Tue Aug 10 05:53:31 1993 +0000
+++ b/lisp/textmodes/texinfo.el	Tue Aug 10 08:24:55 1993 +0000
@@ -673,6 +673,7 @@
   (interactive)
 
   ;; Make sure TeX shell is running.
+  (require 'tex-mode)
   (if (get-buffer "*tex-shell*")
       (quit-process (get-process "tex-shell") t)
     (tex-start-shell))
@@ -730,6 +731,7 @@
 You are prompted for the job number (use a number shown by a previous
 \\[texinfo-show-tex-print-queue] command)."
   (interactive "nPrinter job number for deletion: ")
+  (require 'tex-mode)
   (if (tex-shell-running)
       (tex-kill-job)
     (tex-start-shell))