diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-21 07:39:49 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-21 07:39:49 +0000 |
commit | 131cd97388c78909b13a26c3ce289bbf3c007b7f (patch) | |
tree | d22f5aaa16546b9e90fc0a35df15ff1dc17c67e9 /editors/emacs23/files/patch-lisp_dired.el | |
parent | Update pkg-message to match the current state of the default version (diff) |
Move the ancient emacs 19.x port from editors/emacs to
editors/emacs19, and update the main emacs port to 21.x by copying from
editors/emacs21. Retire the editors/emacs21 port.
PR: ports/24983
Notes
Notes:
svn path=/head/; revision=104813
Diffstat (limited to 'editors/emacs23/files/patch-lisp_dired.el')
-rw-r--r-- | editors/emacs23/files/patch-lisp_dired.el | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/editors/emacs23/files/patch-lisp_dired.el b/editors/emacs23/files/patch-lisp_dired.el new file mode 100644 index 000000000000..93a4f6f3188a --- /dev/null +++ b/editors/emacs23/files/patch-lisp_dired.el @@ -0,0 +1,19 @@ +--- lisp/dired.el.orig Fri Feb 7 20:48:13 2003 ++++ lisp/dired.el Fri Mar 21 18:08:54 2003 +@@ -1535,6 +1535,7 @@ + "\\|" yyyy s s "?" + "\\|" s "?" yyyy + "\\)")) ++ (freebsd-ja (concat s mm "\\(" s "\\|/\\)" dd s "\\(" HH:MM "\\|" s yyyy "\\)")) + (japanese + (concat mm k "?" s dd k "?" s "+" + "\\(" HH:MM "\\|" yyyy k "?" "\\)"))) +@@ -1546,7 +1547,7 @@ + ;; 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][kKMGTPEZY]?" +- s "\\(" western "\\|" japanese "\\|" iso "\\)" s)) ++ s "\\(" western "\\|" freebsd-ja "\\|" 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 + regardless of the language.") |