diff options
author | sada <sada@FreeBSD.org> | 1999-08-16 21:59:54 +0000 |
---|---|---|
committer | sada <sada@FreeBSD.org> | 1999-08-16 21:59:54 +0000 |
commit | 70500443983012d18f5cffed2f426629946301a1 (patch) | |
tree | c177b83d2d85da3d69ba7696455cdf0652c50f1f /mail/wanderlust/files | |
parent | 3ac02651d0984f76e371059f4319584bf1abd0cb (diff) | |
download | FreeBSD-ports-70500443983012d18f5cffed2f426629946301a1.zip FreeBSD-ports-70500443983012d18f5cffed2f426629946301a1.tar.gz |
Add 'load "mime-setup"' statements into each startup.el .
Submitted by: MANTANI Nobutaka <nobutaka@nobutaka.com>
Diffstat (limited to 'mail/wanderlust/files')
4 files changed, 5 insertions, 2 deletions
diff --git a/mail/wanderlust/files/wanderlust-startup.emacs.el.tmpl b/mail/wanderlust/files/wanderlust-startup.emacs.el.tmpl index dd99472..19dbd53 100644 --- a/mail/wanderlust/files/wanderlust-startup.emacs.el.tmpl +++ b/mail/wanderlust/files/wanderlust-startup.emacs.el.tmpl @@ -4,6 +4,7 @@ (require 'semi-setupel) (require 'flim-setupel) (require 'apel-setupel) +(load "mime-setup") (setq wl-summary-weekday-name-lang "en") (setq wl-thread-indent-level 2) (setq wl-thread-have-younger-brother-str "+") diff --git a/mail/wanderlust/files/wanderlust-startup.emacs20.el.tmpl b/mail/wanderlust/files/wanderlust-startup.emacs20.el.tmpl index c2d84c0..746d661 100644 --- a/mail/wanderlust/files/wanderlust-startup.emacs20.el.tmpl +++ b/mail/wanderlust/files/wanderlust-startup.emacs20.el.tmpl @@ -1,4 +1,4 @@ (autoload 'wl "wl" "Wanderlust" t) (autoload 'wl-draft "wl" "Write draft with Wanderlust." t) -(setq load-path (cons "%%PREFIX%%/%%EMACS_LIBDIR%%/site-lisp/wanderlust" load-path)) +(load "mime-setup") (provide 'wanderlust-startup) diff --git a/mail/wanderlust/files/wanderlust-startup.mule.el.tmpl b/mail/wanderlust/files/wanderlust-startup.mule.el.tmpl index e9b2851..d827fe9 100644 --- a/mail/wanderlust/files/wanderlust-startup.mule.el.tmpl +++ b/mail/wanderlust/files/wanderlust-startup.mule.el.tmpl @@ -4,4 +4,5 @@ (require 'semi-setupel) (require 'flim-setupel) (require 'apel-setupel) +(load "mime-setup") (provide 'wanderlust-startup) diff --git a/mail/wanderlust/files/wanderlust-startup.xemacs20.el.tmpl b/mail/wanderlust/files/wanderlust-startup.xemacs20.el.tmpl index c63e3b5..6c427dc 100644 --- a/mail/wanderlust/files/wanderlust-startup.xemacs20.el.tmpl +++ b/mail/wanderlust/files/wanderlust-startup.xemacs20.el.tmpl @@ -1,7 +1,8 @@ (autoload 'wl "wl" "Wanderlust" t) (autoload 'wl-draft "wl" "Write draft with Wanderlust." t) -(load "browse-url") (setq load-path (cons "%%PREFIX%%/%%EMACS_VER_LIBDIR%%/site-lisp/emu" load-path)) +(load "browse-url") +(load "mime-setup") (setq wl-icon-dir "%%PREFIX%%/%%EMACS_LIBDIR%%/etc/wanderlust") (setq wl-summary-weekday-name-lang "en") (setq wl-thread-indent-level 2) |