[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)
- [elpa] externals/dired-duplicates cab41ca722 08/57: Remove commented test calls, (continued)
- [elpa] externals/dired-duplicates cab41ca722 08/57: Remove commented test calls, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates c2cb23cd0c 07/57: Allow sorting by filesize in ascending or descending order, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 194d22be42 10/57: Reformat custom value definitions, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 0d71465d6a 13/57: Make the use of the dummy separator file optional, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates b8df43a6a2 12/57: Always properly clean up separator file, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 6ba3c3bfee 11/57: Fix custom definition of find-dupes-size-comparison-function, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 40402013cd 14/57: Fix find-dupes--duplicate-files docstring, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 2f9735e213 15/57: Implement applying custom file filter functions, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 76aef0a5bc 19/57: Rename package to find-duplicates, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates c94b14724a 21/57: flymake: Fix docstrings issues, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates b8fa486b80 22/57: flymake: Fix unused variables,
ELPA Syncer <=
- [elpa] externals/dired-duplicates 86a12647a5 23/57: flymake: Fix unknown and deprecated function warnings, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 193e498e5d 25/57: Fix indentation and find-duplicates-with-separator-file macro var names, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 0dc415a2b1 28/57: Rename source file to match package name, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates ad2855a5e0 29/57: Add package information and GPL-3 license, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 6508b208e2 30/57: Add option to search directories recursively or not, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 03ad95f3a9 31/57: Add README.org, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 4cfe600a15 36/57: Use user-error instead of error in find-duplicates-checksum-file, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates b4a7b0a3e7 38/57: Lower required emacs version to 27.1, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 31c1aa8880 40/57: Rename all occurrences of find-duplicates to dired-duplicates, ELPA Syncer, 2023/11/04
- [elpa] externals/dired-duplicates 6df828caac 41/57: README.org: Add more detailed explanations, ELPA Syncer, 2023/11/04