2000-11-01 Akihiro MOTOKI <motoki@da.jp.nec.com>
authorkaoru <kaoru>
Wed, 1 Nov 2000 22:28:33 +0000 (22:28 +0000)
committerkaoru <kaoru>
Wed, 1 Nov 2000 22:28:33 +0000 (22:28 +0000)
* wl-summary.el (wl-summary-get-mark): Fixed
`wl-summary-buffer-target-mark' check logic.

wl/ChangeLog
wl/wl-summary.el

index 51f8677..79ce66c 100644 (file)
@@ -1,3 +1,8 @@
+2000-11-01  Akihiro MOTOKI  <motoki@da.jp.nec.com>
+
+       * wl-summary.el (wl-summary-get-mark): Fixed
+       `wl-summary-buffer-target-mark' check logic.
+
 2000-11-01  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * wl-folder.el (wl-folder-write-current-folder): Added group
index 66676b6..b2db735 100644 (file)
@@ -3456,7 +3456,7 @@ If optional argument NUMBER is specified, mark message specified by NUMBER."
   (or (and (memq number wl-summary-buffer-delete-list) "D")
       (and (assq number wl-summary-buffer-copy-list) "O")
       (and (assq number wl-summary-buffer-refile-list) "o")
-      (and (assq number wl-summary-buffer-target-mark-list) "*")))
+      (and (memq number wl-summary-buffer-target-mark-list) "*")))
 
 (defsubst wl-summary-reserve-temp-mark-p (mark)
   "Return t if temporal MARK should be reserved."