diff options
author | shige <shige@FreeBSD.org> | 2000-12-23 01:54:39 +0800 |
---|---|---|
committer | shige <shige@FreeBSD.org> | 2000-12-23 01:54:39 +0800 |
commit | 399f1ea7497f3b0307bf093b4d87336db5a1f9c0 (patch) | |
tree | 10544417b3d18202660cd2d071afd6f90bcee3fb /editors/psgml/files | |
parent | 7202cd994e7e82cfe285bcadccc74375e151b495 (diff) | |
download | freebsd-ports-gnome-399f1ea7497f3b0307bf093b4d87336db5a1f9c0.tar.gz freebsd-ports-gnome-399f1ea7497f3b0307bf093b4d87336db5a1f9c0.tar.zst freebsd-ports-gnome-399f1ea7497f3b0307bf093b4d87336db5a1f9c0.zip |
Fix load-path problem on emacs-19.34(and mule-19.34).
PR: ports/21681
Submitted by: NIIMI Satoshi <sa2c@and.or.jp>
Diffstat (limited to 'editors/psgml/files')
-rw-r--r-- | editors/psgml/files/psgml-startup.el.in | 2 |
1 files changed, 1 insertions, 1 deletions
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))) |