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
9eb53591
Commit
9eb53591
authored
Sep 24, 1999
by
Phillip Rulon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(info-initialize): Don't test existence of ALTERNATIVE
if we know for some other reason it should not be used.
parent
020e8fdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/info.el
lisp/info.el
+2
-2
No files found.
lisp/info.el
View file @
9eb53591
...
...
@@ -256,7 +256,6 @@ Do the right thing if the file has been compressed or zipped."
;; Uninstalled, builddir == srcdir
(setq alternative source))
(if (or (member alternative Info-default-directory-list)
(not (file-exists-p alternative))
;; On DOS/NT, we use movable executables always,
;; and we must always find the Info dir at run time.
(if (memq system-type '(ms-dos windows-nt))
...
...
@@ -265,7 +264,8 @@ Do the right thing if the file has been compressed or zipped."
;; only if we used it for exec-directory also.
(not (string= exec-directory
(expand-file-name "lib-src/"
installation-directory)))))
installation-directory))))
(not (file-exists-p alternative)))
Info-default-directory-list
;; `alternative' contains the Info files that came with this
;; version, so we should look there first. `Info-insert-dir'
...
...
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