diff lisp/ange-ftp.el @ 20272:cb48dd203293

(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.
author Paul Eggert <eggert@twinsun.com>
date Mon, 17 Nov 1997 18:55:46 +0000
parents 9823d1d05083
children 5f8d36dfb126
line wrap: on
line diff
--- 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.