diff options
Diffstat (limited to 'lisp/paths.el')
| -rw-r--r-- | lisp/paths.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 4d7e3718be2..a0d5cc7775d 100644 --- a/lisp/paths.el +++ b/lisp/paths.el | |||
| @@ -37,7 +37,12 @@ | |||
| 37 | ;; call custom-initialize-delay on it. | 37 | ;; call custom-initialize-delay on it. |
| 38 | (defcustom Info-default-directory-list | 38 | (defcustom Info-default-directory-list |
| 39 | (let* ((config-dir | 39 | (let* ((config-dir |
| 40 | (file-name-as-directory configure-info-directory)) | 40 | (file-name-as-directory |
| 41 | ;; Self-contained NS build with info/ in the app-bundle. | ||
| 42 | (or (and (featurep 'ns) | ||
| 43 | (let ((dir (expand-file-name "../info" data-directory))) | ||
| 44 | (if (file-directory-p dir) dir))) | ||
| 45 | configure-info-directory))) | ||
| 41 | (prefixes | 46 | (prefixes |
| 42 | ;; Directory trees in which to look for info subdirectories | 47 | ;; Directory trees in which to look for info subdirectories |
| 43 | (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) | 48 | (prune-directory-list '("/usr/local/" "/usr/" "/opt/" "/"))) |