]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/net/tramp-sh.el (tramp-inline-compress-start-size): Set nil on w32.
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 10 Jul 2019 08:34:02 +0000 (10:34 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Wed, 10 Jul 2019 08:34:02 +0000 (10:34 +0200)
lisp/net/tramp-sh.el

index 6e868aa1fc65f67bb8b1988e87c2283aee7978de..18ae2951084fea291d7f022f9f1d4d220ac0c44b 100644 (file)
 (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