From 4d31bfee3e1e36a4bfb0f8b92a14238a16b8f009 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 3 Jun 1993 03:54:55 +0000 Subject: [PATCH] (Info-suffix-list): Handle .gz suffix. --- lisp/info.el | 18 ++++++++++-------- 1 file 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.") (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.")