From fd623ebbacece4a6ca42d29b0276b517a0905632 Mon Sep 17 00:00:00 2001 From: kaoru Date: Fri, 28 Sep 2001 02:31:31 +0000 Subject: [PATCH] * wl.el (wl-toggle-plugged): Use `not' instead of `null' for boolean value. * wl-draft.el (wl-draft-do-fcc): Ditto. --- wl/ChangeLog | 6 ++++++ wl/wl-draft.el | 2 +- wl/wl.el | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/wl/ChangeLog b/wl/ChangeLog index 56683de..ef3256b 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,9 @@ +2001-09-28 TAKAHASHI Kaoru + + * wl.el (wl-toggle-plugged): Use `not' instead of `null' for + boolean value. + * wl-draft.el (wl-draft-do-fcc): Ditto. + 2001-09-26 Kenichi OKADA * wl-vars.el (wl-fcc-force-as-read): New variable. diff --git a/wl/wl-draft.el b/wl/wl-draft.el index 53aa7be..659ead0 100644 --- a/wl/wl-draft.el +++ b/wl/wl-draft.el @@ -1275,7 +1275,7 @@ If KILL-WHEN-DONE is non-nil, current draft buffer is killed" (if (elmo-folder-append-buffer (wl-folder-get-elmo-folder (eword-decode-string (car fcc-list))) - (null wl-fcc-force-as-read)) + (not wl-fcc-force-as-read)) (wl-draft-write-sendlog 'ok 'fcc nil (car fcc-list) id) (wl-draft-write-sendlog 'failed 'fcc nil (car fcc-list) id)) (setq fcc-list (cdr fcc-list))))) diff --git a/wl/wl.el b/wl/wl.el index b78eceb..92e34c2 100644 --- a/wl/wl.el +++ b/wl/wl.el @@ -94,7 +94,7 @@ (setq wl-plugged t)) ((eq arg 'off) (setq wl-plugged nil)) - (t (setq wl-plugged (null wl-plugged)))) + (t (setq wl-plugged (not wl-plugged)))) (elmo-set-plugged wl-plugged)) (setq elmo-plugged wl-plugged wl-modeline-plug-status wl-plugged) -- 1.7.10.4