Function: ange-ftp-fix-dir-name-for-bs2000
ange-ftp-fix-dir-name-for-bs2000 is a byte-compiled function defined
in ange-ftp.el.gz.
Signature
(ange-ftp-fix-dir-name-for-bs2000 DIR-NAME)
Source Code
;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
;; Convert name from UNIX-ish to BS2000 ready for a DIRectory listing.
;; Remember that there are no directories in BS2000.
(defun ange-ftp-fix-dir-name-for-bs2000 (dir-name)
(if (string-equal dir-name "/")
"*" ;; Don't use an empty string here!
(ange-ftp-fix-name-for-bs2000 dir-name)))