Function: tex-feed-input

tex-feed-input is an interactive and byte-compiled function defined in tex-mode.el.gz.

Signature

(tex-feed-input)

Documentation

Send input to the tex shell process.

In the tex buffer this can be used to continue an interactive tex run. In the tex shell buffer this command behaves like comint-send-input.

Probably introduced at or before Emacs version 20.4.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
(defun tex-feed-input ()
  "Send input to the tex shell process.
In the tex buffer this can be used to continue an interactive tex run.
In the tex shell buffer this command behaves like `comint-send-input'."
  (interactive)
  (set-buffer (tex-shell-buf))
  (comint-send-input)
  (tex-recenter-output-buffer nil))