summaryrefslogtreecommitdiff
path: root/editors/emacs20-dl/files/patch-lisp::dired.el
diff options
context:
space:
mode:
authorShigeyuki Fukushima <shige@FreeBSD.org>2001-12-07 12:58:20 +0000
committerShigeyuki Fukushima <shige@FreeBSD.org>2001-12-07 12:58:20 +0000
commit0a79545d86713d96c67cf41be0ba57ba7820d3e7 (patch)
treeb751aae7492acc30139418930b5e67e592d6b4a0 /editors/emacs20-dl/files/patch-lisp::dired.el
parentAdd p5-XML-Directory 0.84, a perl module which returns a content of (diff)
Apply linespace patch (taoka).
Apply dired.el patch (yoichi). Submitted by: taoka, yoichi
Diffstat (limited to 'editors/emacs20-dl/files/patch-lisp::dired.el')
-rw-r--r--editors/emacs20-dl/files/patch-lisp::dired.el19
1 files changed, 19 insertions, 0 deletions
diff --git a/editors/emacs20-dl/files/patch-lisp::dired.el b/editors/emacs20-dl/files/patch-lisp::dired.el
new file mode 100644
index 000000000000..79cda88d0d19
--- /dev/null
+++ b/editors/emacs20-dl/files/patch-lisp::dired.el
@@ -0,0 +1,19 @@
+--- lisp/dired.el.orig Tue Nov 30 00:04:12 1999
++++ lisp/dired.el Wed Dec 5 03:15:14 2001
+@@ -1375,6 +1375,7 @@
+ ;; weiand: changed: year potentially unaligned
+ ;;old s "\\(" HH:MM "\\|" s yyyy "\\|" yyyy s "\\)"))
+ s "\\(" HH:MM "\\|" s "?" yyyy "\\|" yyyy s "\\)"))
++ (freebsd-ja (concat s mm "/" dd s "\\(" HH:MM "\\|" s yyyy "\\)"))
+ (japanese (concat mm k s dd k s "\\(" s HH:MM "\\|" yyyy k "\\)")))
+ ;; 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:
+@@ -1382,7 +1383,7 @@
+ ;; The ".*" below finds the last match if there are multiple matches.
+ ;; 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]" s "\\(" western "\\|" japanese "\\)" s))
++ (concat ".*[0-9]" s "\\(" western "\\|" japanese "\\|" freebsd-ja "\\)" s))
+ "Regular expression to match up to the file name in a directory listing.
+ The default value is designed to recognize dates and times
+ regardless of the language.")