Function: tramp-get-connection-buffer

tramp-get-connection-buffer is an autoloaded and byte-compiled function defined in tramp.el.gz.

Signature

(tramp-get-connection-buffer VEC &optional DONT-CREATE)

Documentation

Get the connection buffer to be used for VEC.

Unless DONT-CREATE, the buffer is created when it doesn't exist yet. In case a second asynchronous communication has been started, it is different from tramp-get-buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
;;;###tramp-autoload
(defun tramp-get-connection-buffer (vec &optional dont-create)
  "Get the connection buffer to be used for VEC.
Unless DONT-CREATE, the buffer is created when it doesn't exist yet.
In case a second asynchronous communication has been started, it is different
from `tramp-get-buffer'."
  (or (tramp-get-connection-property vec " process-buffer")
      (tramp-get-buffer vec dont-create)))