aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2007-01-18 16:09:06 +0000
committerChong Yidong2007-01-18 16:09:06 +0000
commit41a1027e9ead8ce9c0d0f1f3a9e459d3ca071565 (patch)
tree7055e6836fbbde92d6f58635b8362bf3e5d58fc6
parentcd4496efc898253c6cd5fe9f3ee54b158f7420f3 (diff)
downloademacs-41a1027e9ead8ce9c0d0f1f3a9e459d3ca071565.tar.gz
emacs-41a1027e9ead8ce9c0d0f1f3a9e459d3ca071565.zip
(Info-default-dirs): Change default info dir to
share/info.
-rw-r--r--lisp/info.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 880b659faa6..74183046031 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -463,12 +463,12 @@ Do the right thing if the file has been compressed or zipped."
463 (expand-file-name "info/" installation-directory) 463 (expand-file-name "info/" installation-directory)
464 (if invocation-directory 464 (if invocation-directory
465 (let ((infodir (expand-file-name 465 (let ((infodir (expand-file-name
466 "../info/" 466 "../share/info/"
467 invocation-directory))) 467 invocation-directory)))
468 (if (file-exists-p infodir) 468 (if (file-exists-p infodir)
469 infodir 469 infodir
470 (setq infodir (expand-file-name 470 (setq infodir (expand-file-name
471 "../../../info/" 471 "../../../share/info/"
472 invocation-directory)) 472 invocation-directory))
473 (and (file-exists-p infodir) 473 (and (file-exists-p infodir)
474 infodir)))))) 474 infodir))))))