aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/info.el30
1 files changed, 20 insertions, 10 deletions
diff --git a/lisp/info.el b/lisp/info.el
index d6a42819799..0ff0741c358 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -151,16 +151,26 @@ Marker points nowhere if file has no tag table.")
151 (".z" . "gunzip") 151 (".z" . "gunzip")
152 (".inf" . nil) 152 (".inf" . nil)
153 ("" . nil)) 153 ("" . nil))
154 '( (".info.Z" . "uncompress") 154 '( (".info.Z". "uncompress")
155 (".info.Y" . "unyabba") 155 (".info.Y". "unyabba")
156 (".info.gz" . "gunzip") 156 (".info.gz". "gunzip")
157 (".info.z" . "gunzip") 157 (".info.z". "gunzip")
158 (".info" . nil) 158 (".info". nil)
159 (".Z" . "uncompress") 159 ("-info.Z". "uncompress")
160 (".Y" . "unyabba") 160 ("-info.Y". "unyabba")
161 (".gz" . "gunzip") 161 ("-info.gz". "gunzip")
162 (".z" . "gunzip") 162 ("-info.z". "gunzip")
163 ("" . nil))) 163 ("-info". nil)
164 ("/index.Z". "uncompress")
165 ("/index.Y". "unyabba")
166 ("/index.gz". "gunzip")
167 ("/index.z". "gunzip")
168 ("/index". nil)
169 (".Z". "uncompress")
170 (".Y". "unyabba")
171 (".gz". "gunzip")
172 (".z". "gunzip")
173 ("". nil)))
164 "List of file name suffixes and associated decoding commands. 174 "List of file name suffixes and associated decoding commands.
165Each entry should be (SUFFIX . STRING); the file is given to 175Each entry should be (SUFFIX . STRING); the file is given to
166the command as standard input. If STRING is nil, no decoding is done. 176the command as standard input. If STRING is nil, no decoding is done.