# HG changeset patch # User Richard M. Stallman # Date 753834118 0 # Node ID 25c2db35fe1ee9245e4aa3c68a3535677cffbeb7 # Parent 73a1b31b673fd99915bad0997363da5f2b99f446 (texinfo-tex-region): Use tex-send-command to do commands. (texinfo-tex-buffer, texinfo-texindex, texinfo-tex-print): Likewise. (texinfo-delete-from-print-queue, texinfo-quit-job): Likewise. diff -r 73a1b31b673f -r 25c2db35fe1e lisp/textmodes/texinfo.el --- a/lisp/textmodes/texinfo.el Sat Nov 20 22:21:30 1993 +0000 +++ b/lisp/textmodes/texinfo.el Sat Nov 20 22:21:58 1993 +0000 @@ -673,10 +673,8 @@ )) (tex-set-buffer-directory "*tex-shell*" zap-directory) - (send-string "tex-shell" (concat tex-shell-cd-command " " - zap-directory "\n")) - (send-string "tex-shell" (concat texinfo-tex-command " " - tex-out-file "\n"))) + (tex-send-command tex-shell-cd-command zap-directory) + (tex-send-command texinfo-tex-command tex-out-file)) (tex-recenter-output-buffer 0)) (defun texinfo-tex-buffer () @@ -696,12 +694,9 @@ (setq tex-zap-file buffer-file-name) - (send-string "tex-shell" - (concat tex-shell-cd-command - " " (file-name-directory tex-zap-file) "\n")) + (tex-send-command tex-shell-cd-command (file-name-directory tex-zap-file)) - (send-string "tex-shell" - (concat texinfo-texi2dvi-command " " tex-zap-file "\n")) + (tex-send-command texinfo-texi2dvi-command tex-zap-file) (tex-recenter-output-buffer 0)) @@ -711,9 +706,7 @@ This runs the shell command defined by `texinfo-texindex-command'." (interactive) (require 'tex-mode) - (send-string "tex-shell" - (concat texinfo-texindex-command - " " tex-zap-file ".??" "\n")) + (tex-send-command texinfo-texindex-command (concat tex-zap-file ".??")) (tex-recenter-output-buffer nil)) (defun texinfo-tex-print () @@ -721,9 +714,7 @@ This runs the shell command defined by `tex-dvi-print-command'." (interactive) (require 'tex-mode) - (send-string "tex-shell" - (concat tex-dvi-print-command - " " tex-zap-file ".dvi" "\n")) + (tex-send-command tex-dvi-print-command (concat tex-zap-file ".dvi")) (tex-recenter-output-buffer nil)) (defun texinfo-quit-job () @@ -731,11 +722,7 @@ (interactive) (if (not (get-process "tex-shell")) (error "No TeX shell running")) - (save-excursion - (set-buffer (get-buffer "*tex-shell*")) - (goto-char (point-max)) - (insert "x") - (comint-send-input))) + (tex-send-command "x")) (defun texinfo-delete-from-print-queue (job-number) "Delete job from the line printer spooling queue. @@ -746,11 +733,7 @@ (if (tex-shell-running) (tex-kill-job) (tex-start-shell)) - (send-string "tex-shell" - (concat - texinfo-delete-from-print-queue-command - " " - job-number"\n")) + (tex-send-command texinfo-delete-from-print-queue-command job-number) (tex-recenter-output-buffer nil)) (provide 'texinfo)