(Info-suffix-list): Handle .gz suffix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 3 Jun 1993 03:54:55 +0000 (03:54 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 3 Jun 1993 03:54:55 +0000 (03:54 +0000)
lisp/info.el

index 8176ce6..742a992 100644 (file)
@@ -81,14 +81,16 @@ Marker points nowhere if file has no tag table.")
 (defvar Info-index-alternatives nil
   "List of possible matches for last Info-index command.")
 
-(defvar Info-suffix-list '( (""        . nil)
-                           (".info"   . nil)
-                           (".Z"      . "uncompress")
-                           (".Y"      . "unyabba")
-                           (".z"      . "gunzip")
-                           (".info.Z" . "uncompress")
-                           (".info.Y" . "unyabba")
-                           (".info.z" . "gunzip"))
+(defvar Info-suffix-list '( (""         . nil)
+                           (".info"    . nil)
+                           (".Z"       . "uncompress")
+                           (".Y"       . "unyabba")
+                           (".gz"      . "gunzip")
+                           (".z"       . "gunzip")
+                           (".info.Z"  . "uncompress")
+                           (".info.Y"  . "unyabba")
+                           (".info.gz" . "gunzip")
+                           (".info.z"  . "gunzip"))
   "List of file name suffixes and associated decoding commands.
 Each entry should be (SUFFIX . STRING); the file is given to
 the command as standard input.  If STRING is nil, no decoding is done.")