diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-05-28 19:46:06 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-05-28 19:46:06 +0000 |
commit | 540dde41b783dc4c15a74170cfd2bc8b1176620a (patch) | |
tree | 219692dafaff6d53970e25fc2ed4648f5e838869 /lisp/paths.el | |
parent | 5a10f69338e0a2a59306dd3899feea475607bbb6 (diff) | |
download | emacs-540dde41b783dc4c15a74170cfd2bc8b1176620a.tar.gz |
Fix up previous change.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 6f4975f3394..46ebbc6c6e1 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -33,10 +33,10 @@ (defvar Info-default-directory-list (let ((start (list "/usr/local/info/" - "/usr/local/lib/info/" - configure-info-directory))) - (or (member configure-info-directory start) - (setq start (nconc start (list configure-info-directory)))) + "/usr/local/lib/info/")) + (configdir (file-name-as-directory configure-info-directory))) + (or (member configdir start) + (setq start (nconc start (list configdir)))) (or (member (expand-file-name "../info/" data-directory) start) (setq start (nconc start |