* wl-mime.el (wl-mime-setup): Added setting for
authorteranisi <teranisi>
Tue, 8 May 2001 16:31:44 +0000 (16:31 +0000)
committerteranisi <teranisi>
Tue, 8 May 2001 16:31:44 +0000 (16:31 +0000)
`mime-setup-signature-key-alist' to avoid overriding key bind for
`wl-draft-send'.

* wl-e21.el (wl-draft-overload-functions): Don't override key binding
for `wl-draft-send'.
* wl-mule.el (wl-draft-overload-functions): Ditto.
* wl-xmas.el (wl-draft-overload-functions): Ditto.
* wl-draft.el (wl-draft-send): Ditto.

* wl-message.el (wl-message-display-internal):
Fixed typo (elmo-fetch-threshold->elmo-message-fetch-threshold).
(Patch is provided by <kita@coe.nttdata.co.jp>).

* elmo.el (elmo-message-fetch-confirm): Fixed docstring.
(Patch is provided by <kita@coe.nttdata.co.jp>).

elmo/ChangeLog
elmo/elmo.el
wl/ChangeLog
wl/wl-draft.el
wl/wl-e21.el
wl/wl-message.el
wl/wl-mime.el
wl/wl-mule.el
wl/wl-xmas.el

index ef5f815..7232c20 100644 (file)
@@ -1,3 +1,8 @@
+2001-05-08  Yuuichi Teranishi  <teranisi@gohome.org>
+
+       * elmo.el (elmo-message-fetch-confirm): Fixed docstring.
+       (Patch is provided by <kita@coe.nttdata.co.jp>).
+
 2001-05-08  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
 
        * elmo.el (elmo-folder-synchronize): Don't check important mark in
index 353fa53..c790a85 100644 (file)
@@ -50,7 +50,8 @@
   :group 'elmo)
 
 (defcustom elmo-message-fetch-confirm t
-  "Confirm fetching if message size is larger than `elmo-fetch-threshold'.
+  "If non-nil, confirm fetching if message size is larger than
+`elmo-message-fetch-threshold'.
 Otherwise, entire fetching of the message is aborted without confirmation."
   :type 'boolean
   :group 'elmo)
index 34d85d2..2265e19 100644 (file)
@@ -1,3 +1,19 @@
+2001-05-08  Yuuichi Teranishi  <teranisi@gohome.org>
+
+       * wl-mime.el (wl-mime-setup): Added setting for
+       `mime-setup-signature-key-alist' to avoid overriding key bind for
+       `wl-draft-send'.
+
+       * wl-e21.el (wl-draft-overload-functions): Don't override key binding
+       for `wl-draft-send'.
+       * wl-mule.el (wl-draft-overload-functions): Ditto.
+       * wl-xmas.el (wl-draft-overload-functions): Ditto.
+       * wl-draft.el (wl-draft-send): Ditto.
+
+       * wl-message.el (wl-message-display-internal):
+       Fixed typo (elmo-fetch-threshold->elmo-message-fetch-threshold).
+       (Patch is provided by <kita@coe.nttdata.co.jp>).
+
 2001-05-09  Kenichi OKADA  <okada@opaopa.org>
 
        * wl-folder.el (wl-folder-guess-mailing-list-by-refile-rule): Fix.
index e398248..e19857c 100644 (file)
@@ -1118,9 +1118,9 @@ If optional argument is non-nil, current draft buffer is killed"
                         (cdr (car mail-send-actions)))
                (error))
              (setq mail-send-actions (cdr mail-send-actions)))
-           (if (or (eq major-mode 'wl-draft-mode)
-                   (eq major-mode 'mail-mode))
-               (local-set-key "\C-c\C-s" 'wl-draft-send)) ; override
+;;         (if (or (eq major-mode 'wl-draft-mode)
+;;                 (eq major-mode 'mail-mode))
+;;             (local-set-key "\C-c\C-s" 'wl-draft-send)) ; override
            (if wl-draft-verbose-send
                (message (concat (or wl-draft-verbose-msg
                                     mes-string "Sending...")
index 0a171aa..e441e07 100644 (file)
@@ -614,7 +614,7 @@ Special commands:
 
 (defun wl-draft-overload-functions ()
   (wl-mode-line-buffer-identification)
-  (local-set-key "\C-c\C-s" 'wl-draft-send);; override
+;;  (local-set-key "\C-c\C-s" 'wl-draft-send);; override
   (wl-e21-setup-draft-toolbar)
   (wl-draft-overload-menubar))
 
index 2e8747f..d578079 100644 (file)
@@ -452,7 +452,7 @@ Returns non-nil if bottom of message."
           wl-message-ignored-field-list))
        (elmo-message-visible-field-list wl-message-visible-field-list)
        (elmo-message-sorted-field-list wl-message-sort-field-list)
-       (elmo-fetch-threshold wl-fetch-confirm-threshold))
+       (elmo-message-fetch-threshold wl-fetch-confirm-threshold))
     (prog1 
        (if (eq flag 'as-is)
            (let (wl-highlight-x-face-function)
index a51d29c..0702c11 100644 (file)
@@ -333,10 +333,13 @@ By setting following-method as yank-content."
   (set-alist 'mime-header-presentation-method-alist
             'wl-original-message-mode
             (function elmo-mime-insert-header))
+  ;; To avoid overriding wl-draft-mode-map.
+  (unless (assq 'wl-draft-mode mime-setup-signature-key-alist)
+    (setq mime-setup-signature-key-alist
+         (cons '(wl-draft-mode . "\C-c\C-w")
+               mime-setup-signature-key-alist)))
   (add-hook 'elmo-message-text-content-inserted-hook 'wl-highlight-body-all)
   (add-hook 'elmo-message-header-inserted-hook 'wl-highlight-headers))
-  
-  
 
 (require 'product)
 (product-provide (provide 'wl-mime) (require 'wl-version))
index bf29d38..a00456e 100644 (file)
@@ -175,7 +175,7 @@ Special commands:
 
 (defun wl-draft-overload-functions ()
   (wl-mode-line-buffer-identification)
-  (local-set-key "\C-c\C-s" 'wl-draft-send);; override
+;;  (local-set-key "\C-c\C-s" 'wl-draft-send);; override
   (wl-draft-overload-menubar))
 
 ;; for "ja-mule-canna-2.3.mini" on PocketBSD
index fbacd37..7612bcd 100644 (file)
@@ -514,7 +514,7 @@ Special commands:
 
 (defun wl-draft-overload-functions ()
   (wl-mode-line-buffer-identification)
-  (local-set-key "\C-c\C-s" 'wl-draft-send);; override
+  ;; (local-set-key "\C-c\C-s" 'wl-draft-send);; override
   (wl-xmas-setup-draft-toolbar)
   (wl-draft-overload-menubar))