123456789101112131415161718192021222324 |
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;; -*- coding: utf-8-unix -*-
- ;; FSF Emacs 23 用 Vine Linux Wanderlust 設定
- ;; Munehiro Yamamoto <munepi@vinelinux.org>
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- (autoload 'wl "wl" "Wanderlust" t)
- (autoload 'wl-other-frame "wl" "Wanderlust on new frame." t)
- (autoload 'wl-draft "wl" "Write draft with Wanderlust." t)
- ;;; デフォルトの Web ブラウザ
- (setq browse-url-browser-function (quote browse-url-firefox))
- ;;; Bug#419187: wl: smtp-end-of-line is void
- ;;; from http://www.nabble.com/Bug-419187%3A-wl%3A-smtp-end-of-line-is-void-to9991482.html
- (setq smtp-end-of-line "\n")
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- (provide 'vine-default-wl)
- ;; Local Variables:
- ;; mode: emacs-lisp
- ;; End:
|