From 6291b1f3f9c187834e867b770d31a73fac263346 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 17 Nov 1997 18:55:46 +0000 Subject: [PATCH] (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. --- lisp/ange-ftp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.2