From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/elisp/decompression.html | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 devdocs/elisp/decompression.html (limited to 'devdocs/elisp/decompression.html') diff --git a/devdocs/elisp/decompression.html b/devdocs/elisp/decompression.html deleted file mode 100644 index 83fa8e9c..00000000 --- a/devdocs/elisp/decompression.html +++ /dev/null @@ -1,10 +0,0 @@ -

Dealing With Compressed Data

When auto-compression-mode is enabled, Emacs automatically uncompresses compressed files when you visit them, and automatically recompresses them if you alter and save them. See Compressed Files in The GNU Emacs Manual.

The above feature works by calling an external executable (e.g., gzip). Emacs can also be compiled with support for built-in decompression using the zlib library, which is faster than calling an external program.

Function: zlib-available-p -

This function returns non-nil if built-in zlib decompression is available.

-
Function: zlib-decompress-region start end &optional allow-partial -

This function decompresses the region between start and end, using built-in zlib decompression. The region should contain data that were compressed with gzip or zlib. On success, the function replaces the contents of the region with the decompressed data. If allow-partial is nil or omitted, then on failure, the function leaves the region unchanged and returns nil. Otherwise, it returns the number of bytes that were not decompressed and replaces the region text by whatever data was successfully decompressed. This function can be called only in unibyte buffers.

-
-

- Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Decompression.html -

-
-- cgit v1.2.3