diff options
Diffstat (limited to 'editors/bitmap-mule/files')
-rw-r--r-- | editors/bitmap-mule/files/bitmap-setupel.el.in | 8 | ||||
-rw-r--r-- | editors/bitmap-mule/files/patch-ab | 23 |
2 files changed, 31 insertions, 0 deletions
diff --git a/editors/bitmap-mule/files/bitmap-setupel.el.in b/editors/bitmap-mule/files/bitmap-setupel.el.in new file mode 100644 index 000000000000..925e7dd2bed3 --- /dev/null +++ b/editors/bitmap-mule/files/bitmap-setupel.el.in @@ -0,0 +1,8 @@ +;; +;; @(#)bitmap-setupel.el -- bitmap mule load-path setup elisp file. +;; -- by shige@FreeBSD.ORG + +(setq load-path (append '( + "@@PREFIX@@/@@EMACS_LIBDIR@@/site-lisp/bitmap" + ) load-path)) +(provide 'bitmap-setupel) diff --git a/editors/bitmap-mule/files/patch-ab b/editors/bitmap-mule/files/patch-ab new file mode 100644 index 000000000000..91cf46b23852 --- /dev/null +++ b/editors/bitmap-mule/files/patch-ab @@ -0,0 +1,23 @@ +--- BITMAP-CFG.orig Sun Dec 27 23:11:27 1998 ++++ BITMAP-CFG Sun Dec 27 23:16:00 1998 +@@ -16,11 +16,15 @@ + (add-to-list 'load-path + (expand-file-name "../../site-lisp/apel" data-directory)) + +-(when (boundp 'LISPDIR) +- (add-to-list 'default-load-path LISPDIR) +- (add-to-list 'load-path LISPDIR) +- (add-to-list 'load-path (expand-file-name "apel" LISPDIR)) +- ) ++(if (boundp 'LISPDIR) ++ (progn ++ (add-to-list 'default-load-path LISPDIR) ++ (add-to-list 'load-path LISPDIR) ++ (add-to-list 'load-path (expand-file-name "apel" LISPDIR)) ++ )) ++ ++(if (not (fboundp 'normal-top-level-add-subdirs-to-load-path)) ++ (require 'apel-setupel)) + + (require 'install) + |