diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-12-22 17:54:39 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 2000-12-22 17:54:39 +0000 |
commit | f2376be5bdfa329d63ce79a39be354c45100a8c9 (patch) | |
tree | ea09ecac09a26a63039a35d1303f7cc124aa7eb6 | |
parent | Update to 0.9.14 + patch1. (diff) |
Fix load-path problem on emacs-19.34(and mule-19.34).
PR: ports/21681
Submitted by: NIIMI Satoshi <sa2c@and.or.jp>
Notes
Notes:
svn path=/head/; revision=36239
-rw-r--r-- | editors/psgml-emacs/files/psgml-startup.el.in | 2 | ||||
-rw-r--r-- | editors/psgml/files/psgml-startup.el.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/editors/psgml-emacs/files/psgml-startup.el.in b/editors/psgml-emacs/files/psgml-startup.el.in index 1a0eb374b2ea..05d2b857fd90 100644 --- a/editors/psgml-emacs/files/psgml-startup.el.in +++ b/editors/psgml-emacs/files/psgml-startup.el.in @@ -3,7 +3,7 @@ ;; -- by shige@FreeBSD.ORG ;; setup load-path -(if (fboundp 'normal-top-level-add-subdirs-to-load-path) +(if (not (fboundp 'normal-top-level-add-subdirs-to-load-path)) (setq load-path (append '( "@@PREFIX@@/@@EMACS_LIBDIR@@/site-lisp/psgml" ) load-path))) diff --git a/editors/psgml/files/psgml-startup.el.in b/editors/psgml/files/psgml-startup.el.in index 1a0eb374b2ea..05d2b857fd90 100644 --- a/editors/psgml/files/psgml-startup.el.in +++ b/editors/psgml/files/psgml-startup.el.in @@ -3,7 +3,7 @@ ;; -- by shige@FreeBSD.ORG ;; setup load-path -(if (fboundp 'normal-top-level-add-subdirs-to-load-path) +(if (not (fboundp 'normal-top-level-add-subdirs-to-load-path)) (setq load-path (append '( "@@PREFIX@@/@@EMACS_LIBDIR@@/site-lisp/psgml" ) load-path))) |