DIRED-MARK-FILES! should have used DIRED-PATHNAME rather than
authorChris Hanson <org/chris-hanson/cph>
Sat, 1 Apr 2000 02:09:10 +0000 (02:09 +0000)
committerChris Hanson <org/chris-hanson/cph>
Sat, 1 Apr 2000 02:09:10 +0000 (02:09 +0000)
reproducing its functionality.

v7/src/edwin/dired.scm

index b6146cf664694ae207caa5701d78808d4c5c7659..27e9b99ea0b8921691d1d3109eb2ad6bfd3c0bf7 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: dired.scm,v 1.179 2000/03/31 20:09:50 cph Exp $
+;;; $Id: dired.scm,v 1.180 2000/04/01 02:09:10 cph Exp $
 ;;;
 ;;; Copyright (c) 1986, 1989-2000 Massachusetts Institute of Technology
 ;;;
@@ -870,8 +870,7 @@ Actions controlled by variables list-directory-brief-switches
   (let ((directory (buffer-default-directory buffer)))
     (for-each-file-line buffer
       (lambda (lstart)
-       (if (predicate
-            (merge-pathnames (dired-filename-string lstart) directory))
+       (if (predicate (dired-pathname lstart))
            (dired-mark-1 lstart dired-marker-char))))))
 
 (define (dired-marked-files #!optional mark marker-char)