Function: ange-ftp-ftp-name-component

ange-ftp-ftp-name-component is a macro defined in ange-ftp.el.gz.

Signature

(ange-ftp-ftp-name-component N NS NAME)

Documentation

Extract the Nth FTP file name component from NS.

Source Code

;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
;;;; ------------------------------------------------------------
;;;; Remote file name syntax support.
;;;; ------------------------------------------------------------

(defmacro ange-ftp-ftp-name-component (n ns name)
  "Extract the Nth FTP file name component from NS."
  `(let ((elt (nth ,n ,ns)))
     (match-string elt ,name)))