mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
* lisp/net/tramp-sh.el (tramp-inline-compress-start-size): Set nil on w32.
This commit is contained in:
parent
7d6eeef682
commit
c6775bc9ca
1 changed files with 3 additions and 1 deletions
|
|
@ -41,12 +41,14 @@
|
||||||
(defvar vc-hg-program)
|
(defvar vc-hg-program)
|
||||||
|
|
||||||
;;;###tramp-autoload
|
;;;###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.
|
"The minimum size of compressing where inline transfer.
|
||||||
When inline transfer, compress transferred data of file
|
When inline transfer, compress transferred data of file
|
||||||
whose size is this value or above (up to `tramp-copy-size-limit').
|
whose size is this value or above (up to `tramp-copy-size-limit').
|
||||||
If it is nil, no compression at all will be applied."
|
If it is nil, no compression at all will be applied."
|
||||||
:group 'tramp
|
:group 'tramp
|
||||||
|
:version "26.3"
|
||||||
:type '(choice (const nil) integer))
|
:type '(choice (const nil) integer))
|
||||||
|
|
||||||
;;;###tramp-autoload
|
;;;###tramp-autoload
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue