* wl-action.el (wl-summary-exec-action-resend-subr): Run
`wl-summary-resend-hook'.
+2004-09-13 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
+
+ * wl-vars.el (wl-summary-resend-hook): New hook.
+
+ * wl-action.el (wl-summary-exec-action-resend-subr): Run
+ `wl-summary-resend-hook'.
+
2004-09-12 Yuuichi Teranishi <teranisi@gohome.org>
* wl-vars.el (wl-draft-forward-hook): Setup to put forwarded flag.
(goto-char beg)
(when (looking-at "From ")
(replace-match "X-From-Line: ")))
+ (run-hooks 'wl-summary-resend-hook)
;; Send it.
(wl-draft-dispatch-message)
(kill-buffer (current-buffer)))
"A hook called when `wl-summary-forward' is called.
This hook runs on the summary buffer.")
+(defvar wl-summary-resend-hook nil
+ "A hook runs on the resent message buffer before sending process starts.")
+
(defvar wl-mail-setup-hook nil
"A hook called when Draft is prepared.")
(defvar wl-draft-reedit-hook '(wl-draft-remove-text-plain-tag)