changeset 54435:bcc27a58f6ac

(Info-default-dirs): Don't ignore last part of I-d-d-l.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 19 Mar 2004 02:37:11 +0000
parents de3c77f25914
children a4175dcaf506
files lisp/info.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/info.el	Fri Mar 19 02:34:39 2004 +0000
+++ b/lisp/info.el	Fri Mar 19 02:37:11 2004 +0000
@@ -387,7 +387,9 @@
       ;; 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."