aboutsummaryrefslogtreecommitdiffstats
path: root/src/decompress.c
diff options
context:
space:
mode:
authorJoakim Verona2013-08-16 07:26:31 +0200
committerJoakim Verona2013-08-16 07:26:31 +0200
commit55dff340dfea1812fb55d27428ae708f094cb7a2 (patch)
treed9d2e8615704ed0930c154dc60466693ad4d8955 /src/decompress.c
parent6d2a4fc753d8533b4124fe59432bf4991c1db6b7 (diff)
parent526e5233cc0e2375798bdc79329a893302fdfb4b (diff)
downloademacs-55dff340dfea1812fb55d27428ae708f094cb7a2.tar.gz
emacs-55dff340dfea1812fb55d27428ae708f094cb7a2.zip
merge from trunk
Diffstat (limited to 'src/decompress.c')
-rw-r--r--src/decompress.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decompress.c b/src/decompress.c
index b4e122c3ba8..0212354fc8f 100644
--- a/src/decompress.c
+++ b/src/decompress.c
@@ -164,7 +164,7 @@ This function can be called only in unibyte buffers. */)
164 stream.avail_in = 0; 164 stream.avail_in = 0;
165 stream.next_in = Z_NULL; 165 stream.next_in = Z_NULL;
166 166
167 /* The magic number 32 apparently means "autodect both the gzip and 167 /* The magic number 32 apparently means "autodetect both the gzip and
168 zlib formats" according to zlib.h. */ 168 zlib formats" according to zlib.h. */
169 if (fn_inflateInit2 (&stream, MAX_WBITS + 32) != Z_OK) 169 if (fn_inflateInit2 (&stream, MAX_WBITS + 32) != Z_OK)
170 return Qnil; 170 return Qnil;