]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve fix of debbugs:20634 in tramp-sh.el
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 25 May 2015 18:31:54 +0000 (20:31 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 25 May 2015 18:31:54 +0000 (20:31 +0200)
lisp/net/tramp-sh.el

index f2d7d86fa680b3f1682015b5a23be36f1bdea9da..493f3d11e5bbf98a34bbab72924eb0173c4c4194 100644 (file)
@@ -2129,9 +2129,10 @@ KEEP-DATE is non-nil if NEWNAME should have the same timestamp as FILENAME."
   (let ((coding-system-for-read 'binary)
        (coding-system-for-write 'binary)
        (jka-compr-inhibit t)
+       (inhibit-file-name-operation 'write-region)
        (inhibit-file-name-handlers
-        (cons epa-file-handler
-               (remq 'tramp-file-name-handler inhibit-file-name-handlers))))
+        (cons 'epa-file-handler
+              (remq 'tramp-file-name-handler inhibit-file-name-handlers))))
     (with-temp-file newname
       (set-buffer-multibyte nil)
       (insert-file-contents-literally filename)))
@@ -3754,9 +3755,11 @@ Only send the definition if it has not already been done."
         (tramp-get-connection-process vec) "scripts" (cons name scripts))))))
 
 (defun tramp-set-auto-save ()
-  (when (and ;; ange-ftp has its own auto-save mechanism
+  (when (and ;; ange-ftp has its own auto-save mechanism.
             (eq (tramp-find-foreign-file-name-handler (buffer-file-name))
                 'tramp-sh-file-name-handler)
+             ;; epa has its own auto-save mechanism.
+             (not epa-file-inhibit-auto-save)
              auto-save-default)
     (auto-save-mode 1)))
 (add-hook 'find-file-hooks 'tramp-set-auto-save t)