Mercurial > emacs
changeset 6817:51ff777c8fd6
(dired-move-to-filename-regexp): Match the year or time.
(dired-move-to-filename): Simplify the code for that.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 12 Apr 1994 03:15:37 +0000 |
parents | 46ea2fa4a4c5 |
children | 6a9b0b5399ce |
files | lisp/dired.el |
diffstat | 1 files changed, 5 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/dired.el Tue Apr 12 01:55:59 1994 +0000 +++ b/lisp/dired.el Tue Apr 12 03:15:37 1994 +0000 @@ -1145,7 +1145,7 @@ ;;; 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]+" + "\\(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.") ;; Move to first char of filename on this line. @@ -1154,13 +1154,10 @@ ;; This is the UNIX version. (or eol (setq eol (progn (end-of-line) (point)))) (beginning-of-line) - (or (if (re-search-forward dired-move-to-filename-regexp eol t) - (progn - (goto-char (match-end 0)) - (if (= 7 (skip-chars-forward " 0-9:" (+ (point) 7))) - (point)))) - (if raise-error - (error "No file on this line")))) + (if (re-search-forward dired-move-to-filename-regexp eol t) + (goto-char (match-end 0)) + (if raise-error + (error "No file on this line")))) (defun dired-move-to-end-of-filename (&optional no-error) ;; Assumes point is at beginning of filename,