summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShigeyuki Fukushima <shige@FreeBSD.org>2000-12-22 17:54:39 +0000
committerShigeyuki Fukushima <shige@FreeBSD.org>2000-12-22 17:54:39 +0000
commitf2376be5bdfa329d63ce79a39be354c45100a8c9 (patch)
treeea09ecac09a26a63039a35d1303f7cc124aa7eb6
parentUpdate 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.in2
-rw-r--r--editors/psgml/files/psgml-startup.el.in2
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)))