]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-move-to-filename-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/dired.el

index ddda0169ef87a5191150ae2a756332a15d45911e..a1c2eba046b543012701f1508185a02020f1b28f 100644 (file)
@@ -1351,17 +1351,17 @@ DIR must be a directory name, not a file name."
 ;;; Functions for finding the file name in a dired buffer line.
 
 (defvar dired-move-to-filename-regexp
-   (let* ((l "[A-Za-z\xa0-\xff]")
-        (k "[^\x00-\xff]")
-        (s " ")
-        (yyyy "[0-9][0-9][0-9][0-9]")
-        (mm "[ 0-1][0-9]")
-        (dd "[ 0-3][0-9]")
-        (HH:MM "[ 0-2][0-9]:[0-5][0-9]")
-        (western (concat "\\(" l l l s dd "\\|" dd s l l l "\\)"
+  (let* ((l "[A-Za-z\xa0-\xff]")
+        (k "[^\x00-\xff]")
+        (s " ")
+        (yyyy "[0-9][0-9][0-9][0-9]")
+        (mm "[ 0-1][0-9]")
+        (dd "[ 0-3][0-9]")
+        (HH:MM "[ 0-2][0-9]:[0-5][0-9]")
+        (western (concat "\\(" l l "+ +" dd "\\|" dd s l l "+ *" "\\)"
                          s "\\(" HH:MM "\\|" s yyyy "\\)"))
-        (japanese (concat mm k " " dd k s "\\(" s HH:MM "\\|" yyyy k "\\)")))
-     (concat s "\\(" western "\\|" japanese "\\)" s))
+        (japanese (concat mm k " " dd k s "\\(" s HH:MM "\\|" yyyy k "\\)")))
+    (concat s "\\(" western "\\|" japanese "\\)" s))
   "Regular expression to match a date and time in a directory listing.
 The default value is designed to recognize dates and times
 regardless of the language.")