aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/info.el18
1 files changed, 10 insertions, 8 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 8176ce6934d..742a992bf9a 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -81,14 +81,16 @@ Marker points nowhere if file has no tag table.")
81(defvar Info-index-alternatives nil 81(defvar Info-index-alternatives nil
82 "List of possible matches for last Info-index command.") 82 "List of possible matches for last Info-index command.")
83 83
84(defvar Info-suffix-list '( ("" . nil) 84(defvar Info-suffix-list '( ("" . nil)
85 (".info" . nil) 85 (".info" . nil)
86 (".Z" . "uncompress") 86 (".Z" . "uncompress")
87 (".Y" . "unyabba") 87 (".Y" . "unyabba")
88 (".z" . "gunzip") 88 (".gz" . "gunzip")
89 (".info.Z" . "uncompress") 89 (".z" . "gunzip")
90 (".info.Y" . "unyabba") 90 (".info.Z" . "uncompress")
91 (".info.z" . "gunzip")) 91 (".info.Y" . "unyabba")
92 (".info.gz" . "gunzip")
93 (".info.z" . "gunzip"))
92 "List of file name suffixes and associated decoding commands. 94 "List of file name suffixes and associated decoding commands.
93Each entry should be (SUFFIX . STRING); the file is given to 95Each entry should be (SUFFIX . STRING); the file is given to
94the command as standard input. If STRING is nil, no decoding is done.") 96the command as standard input. If STRING is nil, no decoding is done.")