(Info-default-directory-list): Don't delete configure-info-directory
authorMiles Bader <miles@gnu.org>
Fri, 15 Dec 2000 03:54:32 +0000 (03:54 +0000)
committerMiles Bader <miles@gnu.org>
Fri, 15 Dec 2000 03:54:32 +0000 (03:54 +0000)
from the list of standard info directories when appending it to the
end -- their order is important.

lisp/ChangeLog
lisp/paths.el

index 9a803c2..b1d35e2 100644 (file)
@@ -1,5 +1,10 @@
 2000-12-15  Miles Bader  <miles@gnu.org>
 
+       * paths.el (Info-default-directory-list): Don't delete
+       configure-info-directory from the list of standard info
+       directories when appending it to the end -- their order is
+       important.
+
        * faces.el (read-face-attribute): If there's no entry for the
        user's input in VALID, just use it as-is (this will often result
        in an error, but it may be OK for e.g. colors using hexadecimal
index a931320..6648898 100644 (file)
@@ -85,7 +85,7 @@ comparision."
     ;; so make sure that experimental version's Info files override
     ;; the ones in standard directories.
     (if (member config-dir standard-info-dirs)
-       (nconc (delete config-dir standard-info-dirs) config)
+       (nconc standard-info-dirs config)
       (cons config-dir standard-info-dirs)))
   "Default list of directories to search for Info documentation files.
 They are searched in the order they are given in the list.