diff options
author | Shigeyuki Fukushima <shige@FreeBSD.org> | 1999-08-18 14:03:09 +0000 |
---|---|---|
committer | Shigeyuki Fukushima <shige@FreeBSD.org> | 1999-08-18 14:03:09 +0000 |
commit | a0d65000757b167accd8999c8b73a5eecd58b6bf (patch) | |
tree | 653d868ab41191c005c1f7679389c70745785700 /editors/bitmap/files | |
parent | Bitmap font, 8 dots x 16 dots bitmap font. (diff) |
Bitmap-mule is Package to use bitmap in Mule.
Bitmap-mule has following modules:
- bitmap.el: kernel of bitmap-mule
- po.el: tiny BDF font editor
- smiley-mule.el: smiley-mark encoder/decoder
Diffstat (limited to 'editors/bitmap/files')
-rw-r--r-- | editors/bitmap/files/bitmap-setupel.el.in | 8 | ||||
-rw-r--r-- | editors/bitmap/files/patch-ab | 23 |
2 files changed, 31 insertions, 0 deletions
diff --git a/editors/bitmap/files/bitmap-setupel.el.in b/editors/bitmap/files/bitmap-setupel.el.in new file mode 100644 index 000000000000..925e7dd2bed3 --- /dev/null +++ b/editors/bitmap/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/files/patch-ab b/editors/bitmap/files/patch-ab new file mode 100644 index 000000000000..91cf46b23852 --- /dev/null +++ b/editors/bitmap/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) + |