# HG changeset patch # User Richard M. Stallman # Date 739079695 0 # Node ID ef8ca321d0493e2bbc97516e9491df4630b25872 # Parent 72ea04cee4f12e8d508d6b4a948111d97ddab9e7 (Info-suffix-list): Handle .gz suffix. diff -r 72ea04cee4f1 -r ef8ca321d049 lisp/info.el --- 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.")