Mercurial > hg > xemacs-beta
changeset 1526:8b284a83dd90
[xemacs-hg @ 2003-06-13 00:11:16 by adrian]
xemacs-21.5: Fix xemacs.exe is in a strange place? on 'windows-nt
-------------------- ChangeLog entries follow: --------------------
lisp/ChangeLog addition:
2003-06-13 Adrian Aichner <adrian@xemacs.org>
* setup-paths.el (paths-emacs-root-p): Don't insist in lib-src
directory on 'windows-nt, which currently does not have it.
author | adrian |
---|---|
date | Fri, 13 Jun 2003 00:11:16 +0000 |
parents | a014bbc989c9 |
children | 87145d26047a |
files | lisp/ChangeLog lisp/setup-paths.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Fri Jun 13 00:08:41 2003 +0000 +++ b/lisp/ChangeLog Fri Jun 13 00:11:16 2003 +0000 @@ -1,3 +1,8 @@ +2003-06-13 Adrian Aichner <adrian@xemacs.org> + + * setup-paths.el (paths-emacs-root-p): Don't insist in lib-src + directory on 'windows-nt, which currently does not have it. + 2003-06-11 Adrian Aichner <adrian@xemacs.org> * font-lock.el (lisp-font-lock-keywords-1): Only NAME, not NAME(
--- a/lisp/setup-paths.el Fri Jun 13 00:08:41 2003 +0000 +++ b/lisp/setup-paths.el Fri Jun 13 00:11:16 2003 +0000 @@ -123,7 +123,7 @@ ;; don't exist. instead, xemacs.mak points configure-lisp-directory and ;; configure-data-directory at the right places. (and - (or configure-exec-directory (paths-file-readable-directory-p (paths-construct-path (list directory "lib-src")))) + (or configure-exec-directory (paths-file-readable-directory-p (paths-construct-path (list directory "lib-src"))) (eq system-type 'windows-nt)) (or configure-lisp-directory (paths-file-readable-directory-p (paths-construct-path (list directory "lisp")))) (or configure-data-directory (paths-file-readable-directory-p (paths-construct-path (list directory "etc")))))))