diff options
author | Jim Blandy <jimb@redhat.com> | 1992-12-12 15:22:04 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-12-12 15:22:04 +0000 |
commit | 22402b1854dba128bed4e05dfe560c336c2be4c8 (patch) | |
tree | 9e95e11c3978be6328c24923212abb562ba00bc0 /lisp/paths.el | |
parent | 925f786737e88d481e96ec424d9055579e81a74f (diff) | |
download | emacs-22402b1854dba128bed4e05dfe560c336c2be4c8.tar.gz |
Sat Dec 12 03:22:57 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
* paths.el (Info-default-directory-list): The info files are
supposed to be in /usr/local/info these days. Add it to the list
of directories to search.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index d66353a142d..e5011b8d568 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -32,7 +32,8 @@ ;;; Code: (defvar Info-default-directory-list - (list "/usr/local/lib/info/" + (list "/usr/local/info/" + "/usr/local/lib/info/" (expand-file-name "../info/" data-directory)) "List of directories to search for Info documentation files.") |