Function: tramp-action-confirm-message

tramp-action-confirm-message is a byte-compiled function defined in tramp.el.gz.

Signature

(tramp-action-confirm-message PROC VEC)

Documentation

Return RET in order to confirm the message.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-action-confirm-message (_proc vec)
  "Return RET in order to confirm the message."
  (with-current-buffer (tramp-get-connection-buffer vec)
    (tramp-message vec 6 "\n%s" (buffer-string)))
  (tramp-send-string vec tramp-local-end-of-line)
  t)