# HG changeset patch # User Gerd Moellmann # Date 940427400 0 # Node ID 64f5595ba1fbe0edc0760ac54505c02252142f9b # Parent 6b5aacec5ace18f16518fab99a13506273d41c26 (dired-move-to-filename-regexp): Fix long comment lines that were split so that part of the comment appeared as Lisp code. diff -r 6b5aacec5ace -r 64f5595ba1fb lisp/dired.el --- a/lisp/dired.el Wed Oct 20 10:41:43 1999 +0000 +++ b/lisp/dired.el Wed Oct 20 13:50:00 1999 +0000 @@ -1410,14 +1410,11 @@ 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.