changeset 3442:ef8ca321d049

(Info-suffix-list): Handle .gz suffix.
author Richard M. Stallman <rms@gnu.org>
date Thu, 03 Jun 1993 03:54:55 +0000
parents 72ea04cee4f1
children 7a15b35366f8
files lisp/info.el
diffstat 1 files changed, 10 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/info.el	Thu Jun 03 03:53:33 1993 +0000
+++ b/lisp/info.el	Thu Jun 03 03:54:55 1993 +0000
@@ -81,14 +81,16 @@
 (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.")