Skip to content

Commit 14170a4

Browse files
author
Thierry Volpiatto
committed
Add more info in mode-line on failures.
* dired-async.el (dired-async-after-file-create): Mention dired log buffer. (dired-async-create-files): Mention dired log buffer.
1 parent 228ec4b commit 14170a4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dired-async.el

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ Should take same args as `message'."
141141
;; First send error messages.
142142
(cond (failures
143143
(funcall dired-async-message-function
144-
"%s failed for %d of %d file%s"
144+
"%s failed for %d of %d file%s -- See *Dired log* buffer"
145145
'dired-async-failures
146146
(car operation) (length failures)
147147
total (dired-plural-s total)))
148148
(skipped
149149
(funcall dired-async-message-function
150-
"%s: %d of %d file%s skipped"
150+
"%s: %d of %d file%s skipped -- See *Dired log* buffer"
151151
'dired-async-failures
152152
(car operation) (length skipped) total
153153
(dired-plural-s total))))
@@ -241,13 +241,13 @@ ESC or `q' to not overwrite any of the remaining files,
241241
(unless async-fn-list
242242
(cond (failures
243243
(funcall dired-async-message-function
244-
"%s failed for %d of %d file%s"
244+
"%s failed for %d of %d file%s -- See *Dired log* buffer"
245245
'dired-async-failures
246246
operation (length failures)
247247
total (dired-plural-s total)))
248248
(skipped
249249
(funcall dired-async-message-function
250-
"%s: %d of %d file%s skipped"
250+
"%s: %d of %d file%s skipped -- See *Dired log* buffer"
251251
'dired-async-failures
252252
operation (length skipped) total
253253
(dired-plural-s total)))))

0 commit comments

Comments
 (0)