# HG changeset patch # User Miles Bader # Date 976852393 0 # Node ID 55d48e21474461cb6efe38320eab02a19892eb28 # Parent 687a5430c1052fe1d4ba86bcd126be1f263e1c04 (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. diff -r 687a5430c105 -r 55d48e214744 lisp/paths.el --- a/lisp/paths.el Fri Dec 15 03:18:26 2000 +0000 +++ b/lisp/paths.el Fri Dec 15 03:53:13 2000 +0000 @@ -85,7 +85,7 @@ ;; 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.