]> git.eshelyaron.com Git - emacs.git/commitdiff
(dired-move-to-filename-regexp): Fix long comment lines
authorGerd Moellmann <gerd@gnu.org>
Wed, 20 Oct 1999 13:55:59 +0000 (13:55 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 20 Oct 1999 13:55:59 +0000 (13:55 +0000)
that were split so that part of the comment appeared as Lisp code.

lisp/ChangeLog
lisp/dired.el

index 4ac1340ff7b47868aeb7125f1b3c998b3b825c74..7da51a8e0c187f3cc6e9b1f5946e73cf372847c4 100644 (file)
@@ -1,3 +1,8 @@
+1999-10-20  Gerd Moellmann  <gerd@gnu.org>
+
+       * dired.el (dired-move-to-filename-regexp): Fix long comment lines
+       that were split so that part of the comment appeared as Lisp code.
+
 1999-10-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
 
        * ps-bdf.el: Doc fix.
index 52d945f1238f75aa77b64d7e25dd2bb974c9e3f4..895c95fc78e5f4076ee530bed4999831abc0fea8 100644 (file)
@@ -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.