* wl-draft.el (wl-draft): funcall `wl-fcc' if it is a function.
+2000-09-13 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl.el (wl): Initialize plug-related settings before `wl-init'.
+
+ * wl-draft.el (wl-draft): funcall `wl-fcc' if it is a function.
+
2000-09-13 Katsumi Yamaoka <yamaoka@jpl.org>
* wl-folder.el (wl-folder-entity-assign-id): Undo the last change.
(if (or wl-bcc mail-self-blind)
(insert "Bcc: " (or wl-bcc (user-login-name)) "\n"))
(if wl-fcc
- (insert "FCC: " wl-fcc "\n"))
+ (insert "FCC: " (if (functionp wl-fcc) (funcall wl-fcc) wl-fcc) "\n"))
(if wl-organization
(insert "Organization: " wl-organization "\n"))
(and wl-auto-insert-x-face
(interactive "P")
(unless wl-init
(wl-load-profile))
+ (wl-plugged-init (null (get-buffer wl-folder-buffer-name)))
(unwind-protect
(wl-init arg)
- (let ((make (wl-folder arg)))
- (wl-plugged-init make)))
+ (wl-folder arg))
(run-hooks 'wl-hook))
;; Define some autoload functions WL might use.