aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/net/tramp-adb.el
diff options
context:
space:
mode:
authorStefan Monnier2026-03-09 10:34:05 -0400
committerStefan Monnier2026-03-09 10:34:05 -0400
commit0487d68ab9992be4fa70cfd908909001f71e66af (patch)
tree8c93da3b94717d184f88277e277de949ecb2fb9c /lisp/net/tramp-adb.el
parent798dceb467d4ead092979822f24090c8378f8320 (diff)
downloademacs-scratch/error-API.tar.gz
emacs-scratch/error-API.zip
Diffstat (limited to 'lisp/net/tramp-adb.el')
-rw-r--r--lisp/net/tramp-adb.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/net/tramp-adb.el b/lisp/net/tramp-adb.el
index c20b5df9b59..0184586ba0e 100644
--- a/lisp/net/tramp-adb.el
+++ b/lisp/net/tramp-adb.el
@@ -629,7 +629,8 @@ PRESERVE-UID-GID and PRESERVE-EXTENDED-ATTRIBUTES are completely ignored."
629 (rename-file tmpfile newname ok-if-already-exists) 629 (rename-file tmpfile newname ok-if-already-exists)
630 ((error quit) 630 ((error quit)
631 (delete-file tmpfile) 631 (delete-file tmpfile)
632 (signal (car err) (cdr err)))) 632 ;; FIXME: Maybe `unwind-protect' would be better.
633 (signal err)))
633 634
634 ;; Remote newname. 635 ;; Remote newname.
635 (when (and (file-directory-p newname) 636 (when (and (file-directory-p newname)