diff options
| -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 @@ | |||
| 33 | 33 | ||
| 34 | (defvar Info-default-directory-list | 34 | (defvar Info-default-directory-list |
| 35 | (let ((start (list "/usr/local/info/" | 35 | (let ((start (list "/usr/local/info/" |
| 36 | "/usr/local/lib/info/" | 36 | "/usr/local/lib/info/")) |
| 37 | configure-info-directory))) | 37 | (configdir (file-name-as-directory configure-info-directory))) |
| 38 | (or (member configure-info-directory start) | 38 | (or (member configdir start) |
| 39 | (setq start (nconc start (list configure-info-directory)))) | 39 | (setq start (nconc start (list configdir)))) |
| 40 | (or (member (expand-file-name "../info/" data-directory) start) | 40 | (or (member (expand-file-name "../info/" data-directory) start) |
| 41 | (setq start | 41 | (setq start |
| 42 | (nconc start | 42 | (nconc start |