Function: tramp-get-goa-account

tramp-get-goa-account is a byte-compiled function defined in tramp-gvfs.el.gz.

Signature

(tramp-get-goa-account VEC)

Documentation

Transform VEC into a tramp-goa-account structure.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
;; GNOME Online Accounts functions.

(defun tramp-get-goa-account (vec)
  "Transform VEC into a `tramp-goa-account' structure."
  (when (tramp-file-name-p vec)
    (make-tramp-goa-account
     :method (tramp-file-name-method vec)
     :user (tramp-file-name-user vec)
     :host (tramp-file-name-host vec)
     :port (tramp-file-name-port vec))))