aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love1999-10-05 11:47:35 +0000
committerDave Love1999-10-05 11:47:35 +0000
commitbc6262c85036fc9fb7d8f61905a6ea59518d05d8 (patch)
tree0f3c97aed1ae68e9c844d8f159860186e365a40a
parent3c0abb26d3ed871f12cee7acb277bd8daf46b726 (diff)
downloademacs-bc6262c85036fc9fb7d8f61905a6ea59518d05d8.tar.gz
emacs-bc6262c85036fc9fb7d8f61905a6ea59518d05d8.zip
Require jka-compr when compiling.
(Info-suffix-list): Add bzip2 files (non-ms-dos only).
-rw-r--r--lisp/info.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 29d8e1e9fa3..86ff87f4e6f 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -29,6 +29,8 @@
29 29
30;;; Code: 30;;; Code:
31 31
32(eval-when-compile (require 'jka-compr))
33
32(defgroup info nil 34(defgroup info nil
33 "Info subsystem" 35 "Info subsystem"
34 :group 'help 36 :group 'help
@@ -148,21 +150,25 @@ Marker points nowhere if file has no tag table.")
148 (".info.Y". "unyabba") 150 (".info.Y". "unyabba")
149 (".info.gz". "gunzip") 151 (".info.gz". "gunzip")
150 (".info.z". "gunzip") 152 (".info.z". "gunzip")
153 (".info.bz2" . "bzip2 -dc")
151 (".info". nil) 154 (".info". nil)
152 ("-info.Z". "uncompress") 155 ("-info.Z". "uncompress")
153 ("-info.Y". "unyabba") 156 ("-info.Y". "unyabba")
154 ("-info.gz". "gunzip") 157 ("-info.gz". "gunzip")
158 ("-info.bz2" . "bzip2 -dc")
155 ("-info.z". "gunzip") 159 ("-info.z". "gunzip")
156 ("-info". nil) 160 ("-info". nil)
157 ("/index.Z". "uncompress") 161 ("/index.Z". "uncompress")
158 ("/index.Y". "unyabba") 162 ("/index.Y". "unyabba")
159 ("/index.gz". "gunzip") 163 ("/index.gz". "gunzip")
160 ("/index.z". "gunzip") 164 ("/index.z". "gunzip")
165 ("/index.bz2". "bzip2 -dc")
161 ("/index". nil) 166 ("/index". nil)
162 (".Z". "uncompress") 167 (".Z". "uncompress")
163 (".Y". "unyabba") 168 (".Y". "unyabba")
164 (".gz". "gunzip") 169 (".gz". "gunzip")
165 (".z". "gunzip") 170 (".z". "gunzip")
171 (".bz2" . "bzip2 -dc")
166 ("". nil))) 172 ("". nil)))
167 "List of file name suffixes and associated decoding commands. 173 "List of file name suffixes and associated decoding commands.
168Each entry should be (SUFFIX . STRING); the file is given to 174Each entry should be (SUFFIX . STRING); the file is given to