[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/async aa7a29aaf8: Fix previous commit where operation i
|
From: |
ELPA Syncer |
|
Subject: |
[elpa] externals/async aa7a29aaf8: Fix previous commit where operation is a capitalized string |
|
Date: |
Sun, 5 Nov 2023 03:57:21 -0500 (EST) |
branch: externals/async
commit aa7a29aaf8de4a82af4c5ed98391349911566d26
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Fix previous commit where operation is a capitalized string
and not a symbol.
---
dired-async.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dired-async.el b/dired-async.el
index d3e4ee77db..7fbdf25924 100644
--- a/dired-async.el
+++ b/dired-async.el
@@ -308,11 +308,11 @@ ESC or `q' to not overwrite any of the remaining files,
(error "Cannot copy `%s' into its subdirectory `%s'"
from to)))
;; Skip file if it is too large.
- (if (and (memq operation '(copy rename))
+ (if (and (member operation '("Copy" "Rename"))
(eq (dired-async--abort-if-file-too-large
(file-attribute-size
(file-attributes (file-truename from)))
- (symbol-name operation) from)
+ (downcase operation) from)
'abort))
(push from skipped)
(if overwrite
| [Prev in Thread] |
Current Thread |
[Next in Thread] |
- [elpa] externals/async aa7a29aaf8: Fix previous commit where operation is a capitalized string,
ELPA Syncer <=