vine-default-wl.el 854 B

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