Function: ange-ftp-expand-symlink
ange-ftp-expand-symlink is a byte-compiled function defined in
ange-ftp.el.gz.
Signature
(ange-ftp-expand-symlink FILE DIR)
Source Code
;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defun ange-ftp-expand-symlink (file dir)
(let ((res (if (file-name-absolute-p file)
(ange-ftp-replace-name-component dir file)
(expand-file-name file dir))))
(if (file-symlink-p res)
(ange-ftp-expand-symlink
(ange-ftp-get-file-entry res)
(file-name-directory (directory-file-name res)))
res)))