diff lisp/ange-ftp.el @ 20222:9823d1d05083

(ange-ftp-date-regexp): Handle Japanese-format dates. In Western dates, accept month name and day-of-month in either order.
author Paul Eggert <eggert@twinsun.com>
date Fri, 07 Nov 1997 23:32:50 +0000
parents d5c245242a88
children cb48dd203293
line wrap: on
line diff
--- a/lisp/ange-ftp.el	Fri Nov 07 23:32:50 1997 +0000
+++ b/lisp/ange-ftp.el	Fri Nov 07 23:32:50 1997 +0000
@@ -2510,9 +2510,16 @@
 ;;;; ------------------------------------------------------------
 
 (defconst ange-ftp-date-regexp
-  " [A-Za-z\xa0-\xff][A-Za-z\xa0-\xff][A-Za-z\xa0-\xff] [0-3 ][0-9] "
+  (let* ((l "[A-Za-z\xa0-\xff]")
+	 (k "[^\x00-\xff]")
+	 (s " ")
+	 (mm "[ 0-1][0-9]")
+	 (dd "[ 0-3][0-9]")
+	 (western (concat "\\(" l l l s dd "\\|" dd s l l l "\\)"))
+	 (japanese (concat mm k s dd k)))
+    (concat s "\\(" western "\\|" japanese "\\)" s))
   "Regular expression to recognize the date in a directory listing.
-This regular expression is designed to recognize month names
+This regular expression is designed to recognize dates
 regardless of the language.")
 
 (defvar ange-ftp-add-file-entry-alist nil