bug-gnu-emacs
[Top][All Lists]
Advanced

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

Dired on Windows 2000


From: Keisuke Nishida
Subject: Dired on Windows 2000
Date: Sat, 15 Sep 2001 14:21:19 +0900
User-agent: Wanderlust/2.4.1 (Stand By Me) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/21.0.104 (i686-pc-linux-gnu) MULE/5.0 (SAKAKI)

I am using GNU Emacs 21.0.104 on Windoze 2000.  I had a problem
with using Dired because it did not recognize filenames correctly.

The following patch fixes the problem.  Could you apply this patch?

Thanks,
Keisuke Nishida


2001-09-15  Keisuke Nishida  <knishida@nurs.or.jp>

        * dired.el (dired-move-to-filename-regexp): Allow month to be digits.


--- dired.el~   Wed Jun 27 16:48:42 2001
+++ dired.el    Sat Sep 15 14:00:32 2001
@@ -1505,8 +1505,10 @@
         ;; In some locales, month abbreviations are as short as 2 letters,
         ;; and they can be padded on the right with spaces.
         ;; weiand: changed: month ends potentially with . or , or .,
+        ;; changed: month may be represented by digits
 ;;old   (month (concat l l "+ *"))
-        (month (concat l l "+[.]?,? *"))
+;;old   (month (concat l l "+[.]?,? *"))
+        (month (concat "\\(" l l "+[.]?,?\\|1?[0-9]\\) *"))
         ;; Recognize any non-ASCII character.
         ;; The purpose is to match a Kanji character.
         (k "[^\0-\177]")



reply via email to

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