From: Paul Eggert Date: Mon, 17 Nov 1997 18:55:46 +0000 (+0000) Subject: (ange-ftp-date-regexp): X-Git-Tag: emacs-20.3~2801 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6291b1f3f9c187834e867b770d31a73fac263346;p=emacs.git (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 --git a/lisp/ange-ftp.el b/lisp/ange-ftp.el index 25469af9d74..a3c6c74c6f6 100644 --- a/lisp/ange-ftp.el +++ b/lisp/ange-ftp.el @@ -2515,7 +2515,7 @@ away in the internal cache." (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.