mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +00:00
Fix last fix.
This commit is contained in:
parent
7e27df5fd6
commit
4dedde3c4c
1 changed files with 3 additions and 1 deletions
|
|
@ -3311,7 +3311,9 @@ Ask means pop up a menu for the user to select one of copy, move or link."
|
|||
(rename-file to backup-file 0)
|
||||
(dired-relist-entry backup-file))
|
||||
(dired-copy-file from to overwrite)))
|
||||
(t (dired-copy-file from to nil)))
|
||||
(t
|
||||
(let (dired-overwrite-confirmed)
|
||||
(dired-copy-file from to nil))))
|
||||
(dired-relist-entry to)
|
||||
action)
|
||||
((eq action 'move)
|
||||
|
|
|
|||
Loading…
Reference in a new issue