]> git.eshelyaron.com Git - emacs.git/commitdiff
(ange-ftp-date-regexp):
authorPaul Eggert <eggert@twinsun.com>
Mon, 17 Nov 1997 18:55:46 +0000 (18:55 +0000)
committerPaul Eggert <eggert@twinsun.com>
Mon, 17 Nov 1997 18:55:46 +0000 (18:55 +0000)
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

index 25469af9d7433ae26b62184bb12feadd8c5ea8b1..a3c6c74c6f68482c3b1b0971c3abf40d0e5ac47f 100644 (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.