aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/dired-aux.el4
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8bd6dda2edf..1c86eb505f4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12004-07-19 John Paul Wallington <jpw@gnu.org>
2
3 * dired-aux.el (dired-file-set-difference): Don't use `caddr'.
4
12004-07-18 Luc Teirlinck <teirllm@auburn.edu> 52004-07-18 Luc Teirlinck <teirllm@auburn.edu>
2 6
3 * dired-aux.el (dired-do-kill-lines): Expand docstring. 7 * dired-aux.el (dired-do-kill-lines): Expand docstring.
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el
index 9b401b7e41c..6c1a9ad36f0 100644
--- a/lisp/dired-aux.el
+++ b/lisp/dired-aux.el
@@ -163,8 +163,8 @@ condition. Two file items are considered to match if they are equal
163 (unless (let ((list list2)) 163 (unless (let ((list list2))
164 (while (and list 164 (while (and list
165 (not (let* ((file2 (car list)) 165 (not (let* ((file2 (car list))
166 (fa1 (caddr file1)) 166 (fa1 (car (cddr file1)))
167 (fa2 (caddr file2)) 167 (fa2 (car (cddr file2)))
168 (size1 (nth 7 fa1)) 168 (size1 (nth 7 fa1))
169 (size2 (nth 7 fa2)) 169 (size2 (nth 7 fa2))
170 (mtime1 (float-time (nth 5 fa1))) 170 (mtime1 (float-time (nth 5 fa1)))