Function: tramp-make-tramp-hop-name

tramp-make-tramp-hop-name is a byte-compiled function defined in tramp.el.gz.

Signature

(tramp-make-tramp-hop-name VEC)

Documentation

Construct a Tramp hop name from VEC.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-make-tramp-hop-name (vec)
  "Construct a Tramp hop name from VEC."
  (replace-regexp-in-string
   tramp-prefix-regexp ""
   (replace-regexp-in-string
    (concat tramp-postfix-host-regexp "$") tramp-postfix-hop-format
    (tramp-make-tramp-file-name vec 'noloc))))