summaryrefslogtreecommitdiff
path: root/src/emacs.c
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen <larsi@gnus.org>2013-08-11 21:43:36 +0200
committerLars Magne Ingebrigtsen <larsi@gnus.org>2013-08-11 21:43:36 +0200
commit313546eb796f4588c1c9af60f08f2bd122ef0bdb (patch)
tree011785b2e4c70e7f0ec25e28ff752e4279f2a97d /src/emacs.c
parentf90e3ebd13de8169ada56274f3abaa1ea8dc6d05 (diff)
downloademacs-313546eb796f4588c1c9af60f08f2bd122ef0bdb.tar.gz
Add zlib support via the `decompress-gzipped-region' function
This adds a new file, src/decompress.c, as well as tests for the presence of -lz.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 23aef6a2b65..3c80d3ed753 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1406,6 +1406,10 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem
syms_of_xml ();
#endif
+#ifdef HAVE_ZLIB
+ syms_of_decompress ();
+#endif
+
syms_of_menu ();
#ifdef HAVE_NTGUI