summaryrefslogtreecommitdiff
path: root/lisp/dired.el
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>1999-10-20 13:55:59 +0000
committerGerd Moellmann <gerd@gnu.org>1999-10-20 13:55:59 +0000
commit42afed7ca43ace4fcb7e2a5eb48aaf007866ae24 (patch)
tree413c7b6f62279723758406ecb333b5d765183ea6 /lisp/dired.el
parent1bac2ebbe234d5f3a902ba0ed0bf3c562e200758 (diff)
downloademacs-42afed7ca43ace4fcb7e2a5eb48aaf007866ae24.tar.gz
(dired-move-to-filename-regexp): Fix long comment lines
that were split so that part of the comment appeared as Lisp code.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r--lisp/dired.el9
1 files changed, 3 insertions, 6 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index 52d945f1238..895c95fc78e 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -1410,14 +1410,11 @@ DIR must be a directory name, not a file name."
s "\\(" HH:MM "\\|" s "?" yyyy "\\|" yyyy s
"\\)"))
(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.
+ ;; 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:
;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README
- ;; The ".*" below finds the last match if there are multiple
-matches.
- ;; This avoids recognizing `jservice 10 1024' as a date in the
-line:
+ ;; 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))
"Regular expression to match up to the file name in a directory listing.