emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 c6775bc: * lisp/net/tramp-sh.el (tramp-inline-com


From: Michael Albinus
Subject: [Emacs-diffs] emacs-26 c6775bc: * lisp/net/tramp-sh.el (tramp-inline-compress-start-size): Set nil on w32.
Date: Wed, 10 Jul 2019 04:34:10 -0400 (EDT)

branch: emacs-26
commit c6775bc9ca9d321bda258e812198a37d29947aff
Author: Michael Albinus <address@hidden>
Commit: Michael Albinus <address@hidden>

    * lisp/net/tramp-sh.el (tramp-inline-compress-start-size): Set nil on w32.
---
 lisp/net/tramp-sh.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index 6e868aa..18ae295 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -41,12 +41,14 @@
 (defvar vc-hg-program)
 
 ;;;###tramp-autoload
-(defcustom tramp-inline-compress-start-size 4096
+(defcustom tramp-inline-compress-start-size
+  (unless (memq system-type '(windows-nt)) 4096)
   "The minimum size of compressing where inline transfer.
 When inline transfer, compress transferred data of file
 whose size is this value or above (up to `tramp-copy-size-limit').
 If it is nil, no compression at all will be applied."
   :group 'tramp
+  :version "26.3"
   :type '(choice (const nil) integer))
 
 ;;;###tramp-autoload



reply via email to

[Prev in Thread] Current Thread [Next in Thread]