1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-18 18:05:07 +00:00

(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.
This commit is contained in:
Paul Eggert 1997-11-17 18:55:46 +00:00
parent 32184bdb26
commit 6291b1f3f9

View File

@ -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.