Function: tramp-handle-file-symlink-p
tramp-handle-file-symlink-p is a byte-compiled function defined in
tramp.el.gz.
Signature
(tramp-handle-file-symlink-p FILENAME)
Documentation
Like file-symlink-p for Tramp files.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defun tramp-handle-file-symlink-p (filename)
"Like `file-symlink-p' for Tramp files."
(let ((x (file-attribute-type (file-attributes filename))))
(and (stringp x) x)))