# HG changeset patch # User Paul Eggert # Date 879792946 0 # Node ID cb48dd203293683f4b91b346712046aa6a44f7f9 # Parent cda75058a3c00f73ad422b6ec959afdaf783d699 (ange-ftp-date-regexp): Allow month names of length 2 and up, with varying white space afterwards; e.g. Solaris 2.6 "es" locale uses "ab" for April and "fbro" for February. diff -r cda75058a3c0 -r cb48dd203293 lisp/ange-ftp.el --- a/lisp/ange-ftp.el Mon Nov 17 18:55:46 1997 +0000 +++ b/lisp/ange-ftp.el Mon Nov 17 18:55:46 1997 +0000 @@ -2515,7 +2515,7 @@ (s " ") (mm "[ 0-1][0-9]") (dd "[ 0-3][0-9]") - (western (concat "\\(" l l l s dd "\\|" dd s l l l "\\)")) + (western (concat "\\(" l l "+ +" dd "\\|" dd s l l "+" "\\)")) (japanese (concat mm k s dd k))) (concat s "\\(" western "\\|" japanese "\\)" s)) "Regular expression to recognize the date in a directory listing.