(eshell-shuffle-files): Compare inodes with
`equal' instead of `=', since they can be cons cells. From Nils Goesche <cartan@cartan.de>.
This commit is contained in:
parent
65ee3bf5bf
commit
1f9581b61c
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2001-09-10 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* eshell/em-unix.el (eshell-shuffle-files): Compare inodes with
|
||||
`equal' instead of `=', since they can be cons cells. From Nils
|
||||
Goesche <cartan@cartan.de>.
|
||||
|
||||
2001-09-10 Andre Spiegel <spiegel@gnu.org>
|
||||
|
||||
* vc.el (vc-annotate): Rewrote doc string.
|
||||
|
|
|
@ -342,7 +342,7 @@ Remove the DIRECTORY(ies), if they are empty.")
|
|||
(eq system-type 'ms-dos))
|
||||
(setq attr (eshell-file-attributes (car files)))
|
||||
(nth 10 attr-target) (nth 10 attr)
|
||||
(= (nth 10 attr-target) (nth 10 attr))
|
||||
(equal (nth 10 attr-target) (nth 10 attr))
|
||||
(nth 11 attr-target) (nth 11 attr)
|
||||
(= (nth 11 attr-target) (nth 11 attr)))
|
||||
(eshell-error (format "%s: `%s' and `%s' are the same file\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue