changeset 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 cda75058a3c0
children f451d46a8c68
files lisp/ange-ftp.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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.