From 43718ce57c9b097ec4c6a6b46596087bdeedba6e Mon Sep 17 00:00:00 2001 From: teranisi Date: Sat, 19 Feb 2005 04:33:48 +0000 Subject: [PATCH] * NEWS, NEWS.ja: Updated. * elmo/elmo-cache.el: Fixed typo. * elmo/modb-standard.el (elmo-msgdb-unset-flag): Bind inhibit-quit. --- NEWS | 9 +++++++++ NEWS.ja | 9 +++++++++ elmo/ChangeLog | 2 ++ elmo/elmo-cache.el | 2 +- elmo/modb-standard.el | 1 + 5 files changed, 22 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 6b61b30..9f77725 100644 --- a/NEWS +++ b/NEWS @@ -10,6 +10,15 @@ Wanderlust NEWS -- User-visible changes in Wanderlust. ** Now Maildir is usable on Windows systems. Note that it does not conform to the Maildir standard. +** Fixed the problem of the cache flag inconsistency on the filter folder etc. + There was a problem that the summary buffer displays cached messages as + uncached in some folders. + +** Fixed the bug that the new flag cannot be changed in some cases. + +** Fixed the bug that flag are not taken over correctly from Maildir. + Only the flag of the first message was taken over in earlier versions. + ** Fixed the problem in display module for IMAP messages. Now partially fetched messages are displayed correctly. If a message included child messages, their headers were not displayed. diff --git a/NEWS.ja b/NEWS.ja index ed61516..ba5ac1a 100644 --- a/NEWS.ja +++ b/NEWS.ja @@ -10,6 +10,15 @@ Wanderlust NEWS (日本語版) -- User-visible changes in Wanderlust. ** Windows で Maildir が使えるようになりました。 ただし、規格に則っていませんので、UNIX 上の Maildir と互換性がありません。 +** フィルタフォルダ等でのキャッシュマーク不整合の不具合が解消されました。 + キャッシュされてもキャッシュされていない表示となる場合がありましたが + 修正されました。 + +** フラグが新規のまま変更されなくなる場合があるバグの修正。 + +** Maildir で複数メッセージ移動時、フラグが正しく引き継がれないバグの修正。 + 最初のメッセージしかフラグが引き継がれませんでしたが、修正されました。 + ** 入れ子になったメッセージの IMAP による表示時の不具合が解消されました。 入れ子になったメッセージをパートフェッチした場合、ヘッダが表示されない 場合がありましたが、正しく表示されるようになりました。 diff --git a/elmo/ChangeLog b/elmo/ChangeLog index d2d63bf..6afa5ed 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,5 +1,7 @@ 2005-02-19 Yuuichi Teranishi + * modb-standard.el (elmo-msgdb-unset-flag): Bind inhibit-quit. + * elmo-maildir.el (elmo-folder-append-messages): Fix the problem that only the first flag is used. diff --git a/elmo/elmo-cache.el b/elmo/elmo-cache.el index 7a81949..278633c 100644 --- a/elmo/elmo-cache.el +++ b/elmo/elmo-cache.el @@ -140,7 +140,7 @@ (luna-define-method elmo-message-fetch ((folder elmo-cache-folder) number strategy &optional unseen section) - ;; disbable cache process + ;; disable cache process (erase-buffer) (when (elmo-message-fetch-internal folder number strategy section unseen) (when (and (not unseen) diff --git a/elmo/modb-standard.el b/elmo/modb-standard.el index 30fc9a2..73d883f 100644 --- a/elmo/modb-standard.el +++ b/elmo/modb-standard.el @@ -350,6 +350,7 @@ When non-nil, redundunt message-id string are not saved." (modb-standard-flag-map msgdb))) (t (let ((cur-flags (modb-standard-message-flags msgdb number)) + (inhibit-quit t) new-flags diff) (when (memq flag cur-flags) (setq new-flags (delq flag (copy-sequence cur-flags))) -- 1.7.10.4