diff options
author | Miles Bader <miles@gnu.org> | 2000-12-15 03:54:32 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2000-12-15 03:54:32 +0000 |
commit | b6348438a2d55098fc7b356f4b7ef4628bafe692 (patch) | |
tree | a8cba0df04609a17df54d449dd542ee9d381f68a /lisp/paths.el | |
parent | 4385f1b08d0fbeb31727b559b1d6c4e87dda5c42 (diff) | |
download | emacs-b6348438a2d55098fc7b356f4b7ef4628bafe692.tar.gz |
(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.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index a9313205aed..6648898464c 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -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. |