branch: master
commit 14170a45c8cf91a0133960442509197e683c256d
Author: Thierry Volpiatto <thierry.volpia...@gmail.com>
Commit: Thierry Volpiatto <thierry.volpia...@gmail.com>

    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.
---
 dired-async.el |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dired-async.el b/dired-async.el
index a6a1add..d0de789 100644
--- a/dired-async.el
+++ b/dired-async.el
@@ -141,13 +141,13 @@ Should take same args as `message'."
            ;; First send error messages.
            (cond (failures
                   (funcall dired-async-message-function
-                           "%s failed for %d of %d file%s"
+                           "%s failed for %d of %d file%s -- See *Dired log* 
buffer"
                            'dired-async-failures
                            (car operation) (length failures)
                            total (dired-plural-s total)))
                  (skipped
                   (funcall dired-async-message-function
-                           "%s: %d of %d file%s skipped"
+                           "%s: %d of %d file%s skipped -- See *Dired log* 
buffer"
                            'dired-async-failures
                            (car operation) (length skipped) total
                            (dired-plural-s total))))
@@ -241,13 +241,13 @@ ESC or `q' to not overwrite any of the remaining files,
       (unless async-fn-list
         (cond (failures
                (funcall dired-async-message-function
-                        "%s failed for %d of %d file%s"
+                        "%s failed for %d of %d file%s -- See *Dired log* 
buffer"
                         'dired-async-failures
                         operation (length failures)
                         total (dired-plural-s total)))
               (skipped
                (funcall dired-async-message-function
-                        "%s: %d of %d file%s skipped"
+                        "%s: %d of %d file%s skipped -- See *Dired log* buffer"
                         'dired-async-failures
                         operation (length skipped) total
                         (dired-plural-s total)))))

Reply via email to