emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/dired.el


From: YAMAMOTO Mitsuharu
Subject: [Emacs-diffs] Changes to emacs/lisp/dired.el
Date: Wed, 31 Aug 2005 04:33:26 -0400

Index: emacs/lisp/dired.el
diff -c emacs/lisp/dired.el:1.326 emacs/lisp/dired.el:1.327
*** emacs/lisp/dired.el:1.326   Thu Aug 18 11:28:59 2005
--- emacs/lisp/dired.el Wed Aug 31 08:33:25 2005
***************
*** 1860,1868 ****
         (western-comma (concat month s "+" dd "," s "+" yyyy))
         ;; Japanese MS-Windows ls-lisp has one-digit months, and
         ;; omits the Kanji characters after month and day-of-month.
         (mm "[ 0-1]?[0-9]")
!        (japanese
!         (concat mm l "?" s dd l "?" s "+"
                  "\\(" HH:MM "\\|" yyyy l "?" "\\)")))
         ;; The "[0-9]" below requires the previous column to end in a digit.
         ;; This avoids recognizing `1 may 1997' as a date in the line:
--- 1860,1871 ----
         (western-comma (concat month s "+" dd "," s "+" yyyy))
         ;; Japanese MS-Windows ls-lisp has one-digit months, and
         ;; omits the Kanji characters after month and day-of-month.
+        ;; On Mac OS X 10.3, the date format in East Asian locales is
+        ;; day-of-month digits followed by month digits.
         (mm "[ 0-1]?[0-9]")
!        (east-asian
!         (concat "\\(" mm l "?" s dd l "?" s "+"
!                 "\\|" dd s mm s "+" "\\)"
                  "\\(" HH:MM "\\|" yyyy l "?" "\\)")))
         ;; The "[0-9]" below requires the previous column to end in a digit.
         ;; This avoids recognizing `1 may 1997' as a date in the line:
***************
*** 1872,1878 ****
         ;; This avoids recognizing `jservice  10  1024' as a date in the line:
         ;; drwxr-xr-x  3 jservice  10  1024 Jul  2  1997 esg-host
      (concat ".*[0-9][BkKMGTPEZY]?" s
!           "\\(" western "\\|" western-comma "\\|" japanese "\\|" iso "\\)"
            s "+"))
    "Regular expression to match up to the file name in a directory listing.
  The default value is designed to recognize dates and times
--- 1875,1881 ----
         ;; This avoids recognizing `jservice  10  1024' as a date in the line:
         ;; drwxr-xr-x  3 jservice  10  1024 Jul  2  1997 esg-host
      (concat ".*[0-9][BkKMGTPEZY]?" s
!           "\\(" western "\\|" western-comma "\\|" east-asian "\\|" iso "\\)"
            s "+"))
    "Regular expression to match up to the file name in a directory listing.
  The default value is designed to recognize dates and times




reply via email to

[Prev in Thread] Current Thread [Next in Thread]