Function: org-babel-comint-input-command
org-babel-comint-input-command is a byte-compiled function defined in
ob-comint.el.gz.
Signature
(org-babel-comint-input-command BUFFER CMD)
Documentation
Pass CMD to BUFFER.
The input will not be echoed.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ob-comint.el.gz
(defun org-babel-comint-input-command (buffer cmd)
"Pass CMD to BUFFER.
The input will not be echoed."
(org-babel-comint-in-buffer buffer
(goto-char (process-mark (get-buffer-process buffer)))
(insert cmd)
(comint-send-input)
(org-babel-comint-wait-for-output buffer)))