Mercurial > emacs
comparison lisp/info.el @ 25869:620e4683a89e
Require jka-compr when compiling.
(Info-suffix-list): Add bzip2 files (non-ms-dos only).
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 05 Oct 1999 11:47:35 +0000 |
parents | c3cb1d841464 |
children | 7c9c789fc167 |
comparison
equal
deleted
inserted
replaced
25868:5b140e9ad7ef | 25869:620e4683a89e |
---|---|
26 ;;; Commentary: | 26 ;;; Commentary: |
27 | 27 |
28 ;; Note that nowadays we expect info files to be made using makeinfo. | 28 ;; Note that nowadays we expect info files to be made using makeinfo. |
29 | 29 |
30 ;;; Code: | 30 ;;; Code: |
31 | |
32 (eval-when-compile (require 'jka-compr)) | |
31 | 33 |
32 (defgroup info nil | 34 (defgroup info nil |
33 "Info subsystem" | 35 "Info subsystem" |
34 :group 'help | 36 :group 'help |
35 :group 'docs) | 37 :group 'docs) |
146 ("" . nil)) | 148 ("" . nil)) |
147 '( (".info.Z". "uncompress") | 149 '( (".info.Z". "uncompress") |
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. |
168 Each entry should be (SUFFIX . STRING); the file is given to | 174 Each entry should be (SUFFIX . STRING); the file is given to |
169 the command as standard input. If STRING is nil, no decoding is done. | 175 the command as standard input. If STRING is nil, no decoding is done. |
170 Because the SUFFIXes are tried in order, the empty string should | 176 Because the SUFFIXes are tried in order, the empty string should |