Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
718b4478
Commit
718b4478
authored
Jun 21, 1994
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Info-directory-list): For msdos, don't check for
exec-directory != ../lib-src (since we use wrapped binaries).
parent
8d45a19e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
lisp/info.el
lisp/info.el
+9
-4
No files found.
lisp/info.el
View file @
718b4478
...
...
@@ -65,10 +65,15 @@ in paths.el.")
(
nreverse
list
))
(
if
(
or
(
member
sibling
Info-default-directory-list
)
(
not
(
file-exists-p
sibling
))
;; Use invocation-directory for Info only if we used it for
;; exec-directory also.
(
not
(
string=
exec-directory
(
expand-file-name
"../lib-src/"
(
invocation-directory
)))))
;; On MS-DOS, we use movable executables always,
;; and we must always find the Info dir at run time.
(
if
(
eq
system-type
'ms-dos
)
nil
;; Use invocation-directory for Info only if we used it for
;; exec-directory also.
(
not
(
string=
exec-directory
(
expand-file-name
"../lib-src/"
(
invocation-directory
))))))
Info-default-directory-list
(
reverse
(
cons
sibling
(
cdr
(
reverse
Info-default-directory-list
)))))))
"List of directories to search for Info documentation files.
...
...
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