* wl-vars.el (wl-draft-send-hook): Changed default value to
authorteranisi <teranisi>
Tue, 31 Oct 2000 01:15:19 +0000 (01:15 +0000)
committerteranisi <teranisi>
Tue, 31 Oct 2000 01:15:19 +0000 (01:15 +0000)
'(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.

13 files changed:
wl/ChangeLog
wl/wl-address.el
wl/wl-demo.el
wl/wl-draft.el
wl/wl-e21.el
wl/wl-folder.el
wl/wl-summary.el
wl/wl-thread.el
wl/wl-util.el
wl/wl-vars.el
wl/wl-version.el
wl/wl-xmas.el
wl/wl.el

index a53fa33..68a3600 100644 (file)
@@ -1,3 +1,33 @@
+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
index 178619b..68126ab 100644 (file)
@@ -1,8 +1,11 @@
 ;;; 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).
index 18349da..2f07451 100644 (file)
@@ -1,8 +1,10 @@
 ;;; 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).
index 1810203..cf609df 100644 (file)
@@ -1,8 +1,10 @@
 ;;; 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).
@@ -1127,7 +1129,9 @@ If FORCE-MSGID, ignore 'wl-insert-message-id'."
   "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?"))
@@ -1429,6 +1433,7 @@ If optional argument is non-nil, current draft buffer is killed"
     (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
@@ -1438,7 +1443,6 @@ If optional argument is non-nil, current draft buffer is killed"
           (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)))
index accef24..70483af 100644 (file)
@@ -1,6 +1,7 @@
 ;;; 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)
 
index 74e56f5..d5e0d54 100644 (file)
@@ -1,8 +1,10 @@
 ;;; 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).
index 3b57282..b7de036 100644 (file)
@@ -1,8 +1,14 @@
 ;;; 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).
index df5c7f1..1dda072 100644 (file)
@@ -1,8 +1,10 @@
 ;;; 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).
index d0606d0..6febe6e 100644 (file)
@@ -1,8 +1,12 @@
 ;;; 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).
index ce892a5..42f8f99 100644 (file)
@@ -1,8 +1,10 @@
 ;;; 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).
@@ -440,7 +442,7 @@ system internal to accord facilities for the Emacs variants.")
   "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.")
index f0e2fc3..4217c59 100644 (file)
@@ -1,8 +1,10 @@
 ;;; 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).
index f4977a7..2eddb57 100644 (file)
@@ -1,8 +1,10 @@
 ;;; 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)
 
index 3f58f0c..2d693f7 100644 (file)
--- a/wl/wl.el
+++ b/wl/wl.el
@@ -1,8 +1,10 @@
 ;;; 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).