mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 16:51:06 -07:00
* net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
overwriting when NEWNAME is a local file.
This commit is contained in:
parent
0c61d9814b
commit
da1975d727
3 changed files with 13 additions and 5 deletions
|
|
@ -4,6 +4,8 @@
|
|||
dbus-call-method.
|
||||
(Receiving Method Calls): The timeout can be set by the calling client.
|
||||
|
||||
* trampver.texi: Update release number.
|
||||
|
||||
2008-03-29 Reiner Steib <Reiner.Steib@gmx.de>
|
||||
|
||||
* gnus.texi (Top): Fix version. Add SASL.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,10 @@
|
|||
2008-03-30 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
|
||||
overwriting when NEWNAME is a local file.
|
||||
|
||||
* net/trampver.el: Update release number.
|
||||
|
||||
2008-03-30 Alexandre Julliard <julliard@winehq.org>
|
||||
|
||||
* vc-git.el: Make vc-status display information about copies,
|
||||
|
|
|
|||
|
|
@ -2955,11 +2955,10 @@ and `rename'. FILENAME and NEWNAME must be absolute file names."
|
|||
(let ((t1 (tramp-tramp-file-p filename))
|
||||
(t2 (tramp-tramp-file-p newname)))
|
||||
|
||||
(unless ok-if-already-exists
|
||||
(when (and t2 (file-exists-p newname))
|
||||
(with-parsed-tramp-file-name newname nil
|
||||
(tramp-error
|
||||
v 'file-already-exists "File %s already exists" newname))))
|
||||
(when (and (not ok-if-already-exists) (file-exists-p newname))
|
||||
(with-parsed-tramp-file-name (if t1 filename newname) nil
|
||||
(tramp-error
|
||||
v 'file-already-exists "File %s already exists" newname)))
|
||||
|
||||
(prog1
|
||||
(cond
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue