diff options
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/filtertypes.xml | 2 | ||||
-rw-r--r-- | mail/searchtypes.xml | 2 | ||||
-rw-r--r-- | mail/vfoldertypes.xml | 2 |
4 files changed, 10 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 16dc7b661d..16407fb6bc 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2005-06-21 Brian Mury <b.mury@ieee.org> + + ** See bug #301466. + + * filtertypes.xml, searchtypes.xml, vfoldertypes.xml: fix the + "match all" case to actually work. + 2005-06-18 Tor Lillqvist <tml@novell.com> * GNOME_Evolution_Mail.server.in.in: Use SOEXT. diff --git a/mail/filtertypes.xml b/mail/filtertypes.xml index 7e05a607d4..0b8e3211de 100644 --- a/mail/filtertypes.xml +++ b/mail/filtertypes.xml @@ -637,7 +637,7 @@ <part name="all"> <title>Match All</title> <code> - (#t) + (match-all #t) </code> </part> diff --git a/mail/searchtypes.xml b/mail/searchtypes.xml index 3893880c50..fb3fde6e9d 100644 --- a/mail/searchtypes.xml +++ b/mail/searchtypes.xml @@ -420,7 +420,7 @@ <part name="all"> <title>Match All</title> <code> - (#t) + (match-all #t) </code> </part> diff --git a/mail/vfoldertypes.xml b/mail/vfoldertypes.xml index 2d2805e175..f41a9e908c 100644 --- a/mail/vfoldertypes.xml +++ b/mail/vfoldertypes.xml @@ -423,7 +423,7 @@ <part name="all"> <title>Match All</title> <code> - (#t) + (match-all #t) </code> </part> |