'(wl-draft-config-exec).
* wl-draft.el (wl-draft-send): Don't call `wl-draft-config-exec'
explicitly.
(wl-draft): Set `wl-draft-config-exec-flag' before running
`wl-mail-setup-hook'.
* wl-xmas.el (toplevel): Add `wl-plugged-init-icons' and
`wl-biff-init-icons' to `wl-init-hook' instead of
`wl-make-plugged-hook'.
(Because if `wl-draft' command is invoked at first,
they are not initialized)
Updated copyright notice.
* wl-e21.el (toplevel): Ditto;
* wl-demo.el (toplevel): Updated copyright notice.
* wl-address.el (toplevel): Ditto.
* wl-draft.el (toplevel): Ditto.
* wl-version.el (toplevel): Ditto.
* wl-folder.el (toplevel): Ditto.
* wl-summary.el (toplevel): Ditto.
* wl-thread.el (toplevel): Ditto.
* wl-util.el (toplevel): Ditto.
* wl-vars.el (toplevel): Ditto.
* wl.el (toplevel): Ditto.
+2000-10-31 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl-vars.el (wl-draft-send-hook): Changed default value to
+ '(wl-draft-config-exec).
+
+ * wl-draft.el (wl-draft-send): Don't call `wl-draft-config-exec'
+ explicitly.
+ (wl-draft): Set `wl-draft-config-exec-flag' before running
+ `wl-mail-setup-hook'.
+
+ * wl-xmas.el (toplevel): Add `wl-plugged-init-icons' and
+ `wl-biff-init-icons' to `wl-init-hook' instead of
+ `wl-make-plugged-hook'.
+ (Because if `wl-draft' command is invoked at first,
+ they are not initialized)
+ Updated copyright notice.
+
+ * wl-e21.el (toplevel): Ditto;
+
+ * wl-demo.el (toplevel): Updated copyright notice.
+ * wl-address.el (toplevel): Ditto.
+ * wl-draft.el (toplevel): Ditto.
+ * wl-version.el (toplevel): Ditto.
+ * wl-folder.el (toplevel): Ditto.
+ * wl-summary.el (toplevel): Ditto.
+ * wl-thread.el (toplevel): Ditto.
+ * wl-util.el (toplevel): Ditto.
+ * wl-vars.el (toplevel): Ditto.
+ * wl.el (toplevel): Ditto.
+
2000-10-30 Yuuichi Teranishi <teranisi@gohome.org>
* wl-highlight.el (wl-highlight-message): Fixed problem of
;;; wl-address.el -- Tiny address management for Wanderlust.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
-
+;; Shun-ichi GOTO <gotoh@taiyo.co.jp>
+;; Takeshi Chiba <chiba@d3.bs1.fc.nec.co.jp>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; Shun-ichi GOTO <gotoh@taiyo.co.jp>
+;; Takeshi Chiba <chiba@d3.bs1.fc.nec.co.jp>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
;;; wl-demo.el -- Opening demo on Wanderlust.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Copyright 2000 Katsumi Yamaoka <yamaoka@jpl.org>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; Katsumi Yamaoka <yamaoka@jpl.org>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
;;; wl-draft.el -- Message draft mode for Wanderlust.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
"Send current draft message.
If optional argument is non-nil, current draft buffer is killed"
(interactive)
- (wl-draft-config-exec)
+ ;; Don't call this explicitly.
+ ;; Added to 'wl-draft-send-hook (by teranisi)
+ ;; (wl-draft-config-exec)
(run-hooks 'wl-draft-send-hook)
(when (or (not wl-interactive-send)
(y-or-n-p "Send current draft. OK?"))
(wl-draft-overload-functions)
(wl-highlight-headers 'for-draft)
(goto-char (point-min))
+ (setq wl-draft-config-exec-flag t)
(if (interactive-p)
(run-hooks 'wl-mail-setup-hook))
(wl-user-agent-compose-internal) ;; user-agent
(mail-position-on-field "To"))
(t
(goto-char (point-max))))
- (setq wl-draft-config-exec-flag t)
(setq wl-draft-buffer-cur-summary-buffer (or summary-buf
(get-buffer
wl-summary-buffer-name)))
;;; wl-e21.el -- Wanderlust modules for Emacs 21.
-;; Copyright 2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Copyright 2000 Katsumi Yamaoka <yamaoka@jpl.org>
+;; Yuuichi Teranishi <teranisi@gohome.org>
;; Author: Katsumi Yamaoka <yamaoka@jpl.org>
;; Keywords: mail, net news
(add-hook 'wl-folder-mode-hook 'wl-setup-folder)
(add-hook 'wl-folder-mode-hook 'wl-folder-init-icons)
-(add-hook 'wl-make-plugged-hook 'wl-biff-init-icons)
-(add-hook 'wl-make-plugged-hook 'wl-plugged-init-icons)
+(add-hook 'wl-init-hook 'wl-biff-init-icons)
+(add-hook 'wl-init-hook 'wl-plugged-init-icons)
+;; (add-hook 'wl-make-plugged-hook 'wl-biff-init-icons)
+;; (add-hook 'wl-make-plugged-hook 'wl-plugged-init-icons)
(add-hook 'wl-summary-mode-hook 'wl-setup-summary)
;;; wl-folder.el -- Folder mode for Wanderlust.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
;;; wl-summary.el -- Summary mode for Wanderlust.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
+;; Copyright 1999,2000 TSUMURA Tomoaki <tsumura@kuis.kyoto-u.ac.jp>
+;; Copyright 1999,2000 Kenichi OKADA <okada@opaopa.org>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
+;; TSUMURA Tomoaki <tsumura@kuis.kyoto-u.ac.jp>
+;; Kenichi OKADA <okada@opaopa.org>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
;;; wl-thread.el -- Thread display modules for Wanderlust.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
;;; wl-util.el -- Utility modules for Wanderlust.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Copyright 2000 A. SAGATA <sagata@nttvdt.hil.ntt.co.jp>
+;; Katsumi Yamaoka <yamaoka@jpl.org>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; A. SAGATA <sagata@nttvdt.hil.ntt.co.jp>
+;; Katsumi Yamaoka <yamaoka@jpl.org>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
;;; wl-vars.el -- Variable definitions for Wanderlust.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
"A hook called when Draft is prepared.")
(defvar wl-draft-reedit-hook nil
"A hook called when Draft is re-edited.")
-(defvar wl-draft-send-hook nil
+(defvar wl-draft-send-hook '(wl-draft-config-exec)
"A hook called on the draft editing buffer before sending process starts.")
(defvar wl-mail-send-pre-hook nil
"A hook called just before the mail sending process starts.")
;;; wl-version.el -- Version information for Wanderlust.
;; Copyright 2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Copyright 2000 TAKAHASHI Kaoru <kaoru@kaisei.org>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; TAKAHASHI Kaoru <kaoru@kaisei.org>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
;;; wl-xmas.el -- Wanderlust modules for XEmacsen.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Copyright 2000 Katsumi Yamaoka <yamaoka@jpl.org>
-;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; Author: Yuuichi Teranishi <teranisi@gohome.org>,
+;; Katsumi Yamaoka <yamaoka@jpl.org>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
(add-hook 'wl-folder-mode-hook 'wl-setup-folder)
(add-hook 'wl-folder-mode-hook 'wl-folder-init-icons)
-(add-hook 'wl-make-plugged-hook 'wl-biff-init-icons)
-(add-hook 'wl-make-plugged-hook 'wl-plugged-init-icons)
+(add-hook 'wl-init-hook 'wl-biff-init-icons)
+(add-hook 'wl-init-hook 'wl-plugged-init-icons)
+;; (add-hook 'wl-make-plugged-hook 'wl-biff-init-icons)
+;; (add-hook 'wl-make-plugged-hook 'wl-plugged-init-icons)
(add-hook 'wl-summary-mode-hook 'wl-setup-summary)
;;; wl.el -- Wanderlust bootstrap.
;; Copyright 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Author: Yuuichi Teranishi <teranisi@gohome.org>
+;; Masahiro MURATA <muse@ba2.so-net.ne.jp>
;; Keywords: mail, net news
;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).