aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/info.el
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2004-03-19 02:37:11 +0000
committerStefan Monnier <[email protected]>2004-03-19 02:37:11 +0000
commita025fccf6052c06a0ba0269e8dbd3c58392b02af (patch)
tree09c52f94d063e508f5a3db01792cb0138e813e5d /lisp/info.el
parente93b2f39b26a656fc6defeb37688e56bc0c79856 (diff)
(Info-default-dirs): Don't ignore last part of I-d-d-l.
Diffstat (limited to 'lisp/info.el')
-rw-r--r--lisp/info.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 3438320beb..773888efa6 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -387,7 +387,9 @@ Do the right thing if the file has been compressed or zipped."
;; version, so we should look there first. `Info-insert-dir'
;; currently expects to find `alternative' first on the list.
(cons alternative
- (reverse (cdr (reverse Info-default-directory-list)))))))
+ ;; Don't drop the last part, it might contain non-Emacs stuff.
+ ;; (reverse (cdr (reverse
+ Info-default-directory-list)))) ;; )))
(defun info-initialize ()
"Initialize `Info-directory-list', if that hasn't been done yet."