diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2019-09-23 17:35:03 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2019-09-23 17:35:03 +0200 |
commit | babc595909922201ca92f1bbcc03ae6b7964c1a9 (patch) | |
tree | 33f479996185a3dc95ab24f7cccc4d4e7af357f8 /lisp/dired-aux.el | |
parent | 3f45c14035ea194e44cf06bf5a416b731fd420a9 (diff) | |
download | emacs-babc595909922201ca92f1bbcc03ae6b7964c1a9.tar.gz |
* lisp/dired-aux.el (dired-copy-file-recursive): Make prompt clearer.
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r-- | lisp/dired-aux.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index a321247b0b6..bfc37c5cdef 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -1609,7 +1609,7 @@ If `ask', ask for user confirmation." (if (and recursive (eq t (file-attribute-type attrs)) (or (eq recursive 'always) - (yes-or-no-p (format "Recursive copies of %s? " from)))) + (yes-or-no-p (format "Copy %s recursively? " from)))) (copy-directory from to preserve-time) (or top (dired-handle-overwrite to)) (condition-case err |