]> git.eshelyaron.com Git - emacs.git/commitdiff
(Info-suffix-list): Accept -info as suffix;
authorRichard M. Stallman <rms@gnu.org>
Sat, 24 May 1997 21:27:29 +0000 (21:27 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 24 May 1997 21:27:29 +0000 (21:27 +0000)
also accept a subdir with a file called `index'.

lisp/info.el

index d6a42819799e12dc16bc8e79dec8dc61a13326cc..0ff0741c3583b24f04a9e5e74dc059d6c1cf3813 100644 (file)
@@ -151,16 +151,26 @@ Marker points nowhere if file has no tag table.")
         (".z"       . "gunzip")
         (".inf"     . nil)
         (""         . nil))
-    '( (".info.Z"  . "uncompress")
-       (".info.Y"  . "unyabba")
-       (".info.gz" . "gunzip")
-       (".info.z"  . "gunzip")
-       (".info"    . nil)
-       (".Z"       . "uncompress")
-       (".Y"       . "unyabba")
-       (".gz"      . "gunzip")
-       (".z"       . "gunzip")
-       (""         . nil)))
+    '( (".info.Z".    "uncompress")
+       (".info.Y".    "unyabba")
+       (".info.gz".   "gunzip")
+       (".info.z".    "gunzip")
+       (".info".      nil)
+       ("-info.Z".   "uncompress")
+       ("-info.Y".   "unyabba")
+       ("-info.gz".  "gunzip")
+       ("-info.z".   "gunzip")
+       ("-info".     nil)
+       ("/index.Z".   "uncompress")
+       ("/index.Y".   "unyabba")
+       ("/index.gz".  "gunzip")
+       ("/index.z".   "gunzip")
+       ("/index".     nil)
+       (".Z".         "uncompress")
+       (".Y".         "unyabba")
+       (".gz".        "gunzip")
+       (".z".         "gunzip")
+       ("".           nil)))
   "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.