Variable: ange-ftp-fix-name-func-alist
ange-ftp-fix-name-func-alist is a variable defined in ange-ftp.el.gz.
Value
((bs2000 . ange-ftp-fix-name-for-bs2000)
(cms . ange-ftp-fix-name-for-cms) (mts . ange-ftp-fix-name-for-mts)
(vms . ange-ftp-fix-name-for-vms))
Documentation
Alist saying how to convert file name to the host's syntax.
Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can change a UNIX file name into a name more suitable for a host of type TYPE.
Source Code
;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
;; It would be nice to abstract the functions ange-ftp-TYPE-host and
;; ange-ftp-add-TYPE-host. The trick is to abstract these functions
;; without sacrificing speed. Also, having separate variables
;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to
;; set an alist to indicate that a host is of a given type. Even with
;; automatic host type recognition, setting a regexp is still a good idea
;; (for efficiency) if you log into a particular non-UNIX host frequently.
(defvar ange-ftp-fix-name-func-alist nil
"Alist saying how to convert file name to the host's syntax.
Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can
change a UNIX file name into a name more suitable for a host of type TYPE.")