diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-12-17 18:43:10 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-12-17 18:43:10 +0000 |
commit | f3636ea7be3ecd3b41bbac0948c4ac2a39d5ec05 (patch) | |
tree | 8942834e79e672921f7d8c0cd5c35d1011f1d684 /lisp/dired.el | |
parent | 5a908498572c760273ce9773142968f59be81823 (diff) | |
download | emacs-f3636ea7be3ecd3b41bbac0948c4ac2a39d5ec05.tar.gz |
(dired-move-to-filename-regexp): Recognize various languages.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index 528900aabd1..4ba832a7ffe 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -1305,8 +1305,9 @@ Optional arg GLOBAL means to replace all matches." ;;; Functions for finding the file name in a dired buffer line. (defvar dired-move-to-filename-regexp - "\\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct\\|Nov\\|Dec\\)[ ]+[0-9]+ [ 0-9][0-9][:0-9][0-9][ 0-9] " - "Regular expression to match a month abbreviation followed by a number.") + " [A-Za-z\xa0-\xff][A-Za-z\xa0-\xff][A-Za-z\xa0-\xff] [0-3 ][0-9]\ + [ 0-9][0-9][:0-9][0-9][ 0-9] " + "Regular expression to match a month abbreviation followed date/time.") (defconst dired-standard-move-to-filename-regexp "\\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct\\|Nov\\|Dec\\)[ ]+[0-9]+ [ 0-9][0-9][:0-9][0-9][ 0-9] " |