diff options
author | Dave Love <fx@gnu.org> | 1999-10-05 11:47:35 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-10-05 11:47:35 +0000 |
commit | bc6262c85036fc9fb7d8f61905a6ea59518d05d8 (patch) | |
tree | 0f3c97aed1ae68e9c844d8f159860186e365a40a /lisp | |
parent | 3c0abb26d3ed871f12cee7acb277bd8daf46b726 (diff) | |
download | emacs-bc6262c85036fc9fb7d8f61905a6ea59518d05d8.tar.gz |
Require jka-compr when compiling.
(Info-suffix-list): Add bzip2 files (non-ms-dos only).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/info.el | 6 |
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 @@ ;;; Code: +(eval-when-compile (require 'jka-compr)) + (defgroup info nil "Info subsystem" :group 'help @@ -148,21 +150,25 @@ Marker points nowhere if file has no tag table.") (".info.Y". "unyabba") (".info.gz". "gunzip") (".info.z". "gunzip") + (".info.bz2" . "bzip2 -dc") (".info". nil) ("-info.Z". "uncompress") ("-info.Y". "unyabba") ("-info.gz". "gunzip") + ("-info.bz2" . "bzip2 -dc") ("-info.z". "gunzip") ("-info". nil) ("/index.Z". "uncompress") ("/index.Y". "unyabba") ("/index.gz". "gunzip") ("/index.z". "gunzip") + ("/index.bz2". "bzip2 -dc") ("/index". nil) (".Z". "uncompress") (".Y". "unyabba") (".gz". "gunzip") (".z". "gunzip") + (".bz2" . "bzip2 -dc") ("". nil))) "List of file name suffixes and associated decoding commands. Each entry should be (SUFFIX . STRING); the file is given to |