[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm ced8c888a6 2/4: Fix docstring and error message in he
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm ced8c888a6 2/4: Fix docstring and error message in helm-ff-mcp |
Date: |
Sun, 25 Aug 2024 03:59:56 -0400 (EDT) |
branch: elpa/helm
commit ced8c888a694e3c0c7510f94753a116681808365
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Fix docstring and error message in helm-ff-mcp
---
helm-files.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/helm-files.el b/helm-files.el
index d8202f2634..2a728a83e9 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -6537,7 +6537,7 @@ list."
"Copy the car of marked candidates to the remaining marked candidates.
The car of marked should be a regular file and the rest of marked (cdr) should
-be directories."
+be existing directories."
(let* ((mkd (helm-marked-candidates))
(file (car mkd))
(targets (cdr mkd))
@@ -6546,7 +6546,7 @@ be directories."
(cl-assert (file-regular-p file) nil (format "ERROR: Not a regular file
`%s'" file))
(cl-assert targets nil (format "ERROR: No destination specified for file
`%s'" file))
(cl-assert (cl-loop for f in targets always (file-directory-p f)) nil
- "ERROR: Destinations must be directories")
+ "ERROR: Destinations must be existing directories")
(when targets
(cl-loop with yes-for-all
for dest in targets