diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-10-27 15:02:06 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-10-27 15:02:06 +0000 |
commit | 3e020e02aa77155d6ab58b55cf8efdd781898711 (patch) | |
tree | 469ffed6e94b69d67601c776fe21c26ff02c451e /lisp/eshell/em-unix.el | |
parent | dff3f9e1b8fbf5d1c01304d3d8b778723f669714 (diff) | |
download | emacs-3e020e02aa77155d6ab58b55cf8efdd781898711.tar.gz |
(eshell-du-sum-directory): Don't use directory-sep-char.
Diffstat (limited to 'lisp/eshell/em-unix.el')
-rw-r--r-- | lisp/eshell/em-unix.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el index ce30cec6604..d932916d8c9 100644 --- a/lisp/eshell/em-unix.el +++ b/lisp/eshell/em-unix.el @@ -799,7 +799,7 @@ external command." (size 0.0)) (while entries (unless (string-match "\\`\\.\\.?\\'" (caar entries)) - (let* ((entry (concat path (char-to-string directory-sep-char) + (let* ((entry (concat path "/" (caar entries))) (symlink (and (stringp (cadr (car entries))) (cadr (car entries))))) |