comparison lisp/ange-ftp.el @ 14138:9856174aa877

(ange-ftp-name-format): Don't match "/:" or "/.:".
author Karl Heuer <kwzh@gnu.org>
date Wed, 10 Jan 1996 00:16:02 +0000
parents 187735b53d52
children 83f275dcd93a
comparison
equal deleted inserted replaced
14137:a23518a56ba6 14138:9856174aa877
623 ;;;; ------------------------------------------------------------ 623 ;;;; ------------------------------------------------------------
624 ;;;; User customization variables. 624 ;;;; User customization variables.
625 ;;;; ------------------------------------------------------------ 625 ;;;; ------------------------------------------------------------
626 626
627 (defvar ange-ftp-name-format 627 (defvar ange-ftp-name-format
628 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*\\):\\(.*\\)" . (3 2 4)) 628 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4))
629 "*Format of a fully expanded remote file name. 629 "*Format of a fully expanded remote file name.
630 This is a list of the form \(REGEXP HOST USER NAME\), 630 This is a list of the form \(REGEXP HOST USER NAME\),
631 where REGEXP is a regular expression matching 631 where REGEXP is a regular expression matching
632 the full remote name, and HOST, USER, and NAME are the numbers of 632 the full remote name, and HOST, USER, and NAME are the numbers of
633 parenthesized expressions in REGEXP for the components (in that order).") 633 parenthesized expressions in REGEXP for the components (in that order).")