Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
a70dc410
Commit
a70dc410
authored
May 24, 1997
by
Richard M. Stallman
Browse files
(Info-suffix-list): Accept -info as suffix;
also accept a subdir with a file called `index'.
parent
5ccb13ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
10 deletions
+20
-10
lisp/info.el
lisp/info.el
+20
-10
No files found.
lisp/info.el
View file @
a70dc410
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment