* NEWS, NEWS.ja: Updated.
authorteranisi <teranisi>
Sat, 19 Feb 2005 04:33:48 +0000 (04:33 +0000)
committerteranisi <teranisi>
Sat, 19 Feb 2005 04:33:48 +0000 (04:33 +0000)
* elmo/elmo-cache.el: Fixed typo.

* elmo/modb-standard.el (elmo-msgdb-unset-flag): Bind inhibit-quit.

NEWS
NEWS.ja
elmo/ChangeLog
elmo/elmo-cache.el
elmo/modb-standard.el

diff --git a/NEWS b/NEWS
index 6b61b30..9f77725 100644 (file)
--- 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 (file)
--- a/NEWS.ja
+++ b/NEWS.ja
@@ -10,6 +10,15 @@ Wanderlust NEWS (\e$BF|K\8lHG\e(B) -- User-visible changes in Wanderlust.
 ** Windows \e$B$G\e(B Maildir \e$B$,;H$($k$h$&$K$J$j$^$7$?!#\e(B
    \e$B$?$@$7!"5,3J$KB'$C$F$$$^$;$s$N$G!"\e(BUNIX \e$B>e$N\e(B Maildir \e$B$H8_49@-$,$"$j$^$;$s!#\e(B
 
+** \e$B%U%#%k%?%U%)%k%@Ey$G$N%-%c%C%7%e%^!<%/IT@09g$NIT6q9g$,2r>C$5$l$^$7$?!#\e(B
+   \e$B%-%c%C%7%e$5$l$F$b%-%c%C%7%e$5$l$F$$$J$$I=<($H$J$k>l9g$,$"$j$^$7$?$,\e(B
+   \e$B=$@5$5$l$^$7$?!#\e(B
+
+** \e$B%U%i%0$,?75,$N$^$^JQ99$5$l$J$/$J$k>l9g$,$"$k%P%0$N=$@5!#\e(B
+
+** Maildir \e$B$GJ#?t%a%C%;!<%80\F0;~!"%U%i%0$,@5$7$/0z$-7Q$,$l$J$$%P%0$N=$@5!#\e(B
+   \e$B:G=i$N%a%C%;!<%8$7$+%U%i%0$,0z$-7Q$,$l$^$;$s$G$7$?$,!"=$@5$5$l$^$7$?!#\e(B
+
 ** \e$BF~$l;R$K$J$C$?%a%C%;!<%8$N\e(B IMAP \e$B$K$h$kI=<(;~$NIT6q9g$,2r>C$5$l$^$7$?!#\e(B
    \e$BF~$l;R$K$J$C$?%a%C%;!<%8$r%Q!<%H%U%'%C%A$7$?>l9g!"%X%C%@$,I=<($5$l$J$$\e(B
    \e$B>l9g$,$"$j$^$7$?$,!"@5$7$/I=<($5$l$k$h$&$K$J$j$^$7$?!#\e(B
index d2d63bf..6afa5ed 100644 (file)
@@ -1,5 +1,7 @@
 2005-02-19  Yuuichi Teranishi  <teranisi@gohome.org>
 
+       * 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.
 
index 7a81949..278633c 100644 (file)
 
 (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)
index 30fc9a2..73d883f 100644 (file)
@@ -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)))