emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dired-duplicates b8fa486b80 22/57: flymake: Fix unused


From: ELPA Syncer
Subject: [elpa] externals/dired-duplicates b8fa486b80 22/57: flymake: Fix unused variables
Date: Sat, 4 Nov 2023 06:58:27 -0400 (EDT)

branch: externals/dired-duplicates
commit b8fa486b80e5a725cd9dc106605533fd3ae4890b
Author: Harald Judt <h.judt@gmx.at>
Commit: Harald Judt <h.judt@gmx.at>

    flymake: Fix unused variables
---
 find-dupes-dired.el | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/find-dupes-dired.el b/find-dupes-dired.el
index ec79a73caf..fbac7558f5 100644
--- a/find-dupes-dired.el
+++ b/find-dupes-dired.el
@@ -109,14 +109,13 @@ keys and a list of size and duplicate files as values."
            do (setf (gethash size same-size-table)
                     (append (gethash size same-size-table) (list f)))
            finally
-           (cl-loop for size being the hash-key in same-size-table using 
(hash-value same-size-files)
+           (cl-loop for same-size-files being the hash-values in 
same-size-table
                     if (> (length same-size-files) 1) do
                     (cl-loop for f in same-size-files
                              for checksum = (find-duplicates-checksum-file f)
                              do (setf (gethash checksum checksum-table)
                                       (append (gethash checksum 
checksum-table) (list f)))))
-           (cl-loop with size
-                    for same-files being the hash-value in checksum-table 
using (hash-key checksum)
+           (cl-loop for same-files being the hash-value in checksum-table 
using (hash-key checksum)
                     do
                     (if (> (length same-files) 1)
                         (setf (gethash checksum checksum-table)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]