# HG changeset patch # User Stefan Monnier # Date 1079663831 0 # Node ID bcc27a58f6ac130ceabe1a2d8f4c580ffc23c17a # Parent de3c77f25914fd3e3cd6eda2c96889be2c946156 (Info-default-dirs): Don't ignore last part of I-d-d-l. diff -r de3c77f25914 -r bcc27a58f6ac lisp/info.el --- 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."