Fix load-path problem on emacs-19.34(and mule-19.34).

PR:		ports/21681
Submitted by:	NIIMI Satoshi <sa2c@and.or.jp>
This commit is contained in:
Shigeyuki Fukushima 2000-12-22 17:54:39 +00:00
parent 01370992c6
commit f2376be5bd
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=36239
2 changed files with 2 additions and 2 deletions

View File

@ -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)))

View File

@ -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)))