Function: ange-ftp-add-vms-host
ange-ftp-add-vms-host is an interactive and byte-compiled function
defined in ange-ftp.el.gz.
Signature
(ange-ftp-add-vms-host HOST)
Documentation
Mark HOST as the name of a machine running VMS.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defun ange-ftp-add-vms-host (host)
"Mark HOST as the name of a machine running VMS."
(interactive
(list (read-string "Host: "
(let ((name (or (buffer-file-name) default-directory)))
(and name (car (ange-ftp-ftp-name name)))))))
(if (not (ange-ftp-vms-host host))
(setq ange-ftp-vms-host-regexp
(concat "^" (regexp-quote host) "$"
(and ange-ftp-vms-host-regexp "\\|")
ange-ftp-vms-host-regexp)
ange-ftp-host-cache nil)))