Show
Ignore:
Timestamp:
09/10/05 10:16:00 (3 years ago)
Author:
miyoshi
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/dired.el

    r3809 r3863  
    18611861         ;; Japanese MS-Windows ls-lisp has one-digit months, and 
    18621862         ;; omits the Kanji characters after month and day-of-month. 
     1863         ;; On Mac OS X 10.3, the date format in East Asian locales is 
     1864         ;; day-of-month digits followed by month digits. 
    18631865         (mm "[ 0-1]?[0-9]") 
    1864          (japanese 
    1865           (concat mm l "?" s dd l "?" s "+" 
     1866         (east-asian 
     1867          (concat "\\(" mm l "?" s dd l "?" s "+" 
     1868                  "\\|" dd s mm s "+" "\\)" 
    18661869                  "\\(" HH:MM "\\|" yyyy l "?" "\\)"))) 
    18671870         ;; The "[0-9]" below requires the previous column to end in a digit. 
     
    18731876         ;; drwxr-xr-x  3 jservice  10  1024 Jul  2  1997 esg-host 
    18741877    (concat ".*[0-9][BkKMGTPEZY]?" s 
    1875             "\\(" western "\\|" western-comma "\\|" japanese "\\|" iso "\\)" 
     1878            "\\(" western "\\|" western-comma "\\|" east-asian "\\|" iso "\\)" 
    18761879            s "+")) 
    18771880  "Regular expression to match up to the file name in a directory listing.