diff lisp/eshell/em-pred.el @ 32446:aab90b31807c

Added better remote directory support to Eshell, as well as a few bug fixes. See the ChangeLog.
author John Wiegley <johnw@newartisans.com>
date Fri, 13 Oct 2000 09:02:39 +0000
parents 34b1ab9d583d
children 8e57189d61b4
line wrap: on
line diff
--- a/lisp/eshell/em-pred.el	Fri Oct 13 08:21:20 2000 +0000
+++ b/lisp/eshell/em-pred.el	Fri Oct 13 09:02:39 2000 +0000
@@ -464,7 +464,7 @@
 	(forward-char)
       (setq type ?%)))
   `(lambda (file)
-     (let ((attrs (file-attributes (directory-file-name file))))
+     (let ((attrs (eshell-file-attributes (directory-file-name file))))
        (if attrs
 	   (memq (aref (nth 8 attrs) 0)
 		 ,(if (eq type ?%)
@@ -489,7 +489,7 @@
     (setq amount (string-to-number (match-string 0)))
     (goto-char (match-end 0))
     `(lambda (file)
-       (let ((attrs (file-attributes file)))
+       (let ((attrs (eshell-file-attributes file)))
 	 (if attrs
 	     (,(if (eq qual ?-)
 		   '<
@@ -518,7 +518,7 @@
     (setq amount (* (string-to-number (match-string 0)) quantum))
     (goto-char (match-end 0))
     `(lambda (file)
-       (let ((attrs (file-attributes file)))
+       (let ((attrs (eshell-file-attributes file)))
 	 (if attrs
 	     (,(if (eq qual ?-)
 		   '<