Function: hpath:remote-available-p
hpath:remote-available-p is a byte-compiled function defined in
hpath.el.
Signature
(hpath:remote-available-p)
Documentation
Return non-nil if a remote file access package is available, nil otherwise.
Return the symbol for the appropriate package to require/use.
Either the package must have been loaded already or under versions of Emacs
19 and above, it must be set for autoloading via file-name-handler-alist,
in which case, it is loaded here.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hpath.el
(defun hpath:remote-available-p ()
"Return non-nil if a remote file access package is available, nil otherwise.
Return the symbol for the appropriate package to require/use.
Either the package must have been loaded already or under versions of Emacs
19 and above, it must be set for autoloading via `file-name-handler-alist',
in which case, it is loaded here."
(cond ((featurep 'tramp) 'tramp)
((featurep 'efs) 'efs)
((featurep 'ange-ftp) 'ange-ftp)
((boundp 'file-name-handler-alist) ; GNU Emacs
(cond ((or (rassq 'tramp-file-name-handler file-name-handler-alist)
(rassq 'tramp-autoload-file-name-handler file-name-handler-alist))
(require 'tramp))
((rassq 'efs-file-handler-function file-name-handler-alist)
(require 'efs))
((rassq 'ange-ftp-hook-function file-name-handler-alist)
(require 'ange-ftp))))))