aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author2 <NotZed@Ximian.com>2001-09-13 04:53:14 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-09-13 04:53:14 +0800
commit2241b7b81d11784ea7f7c1380ae265a5be624633 (patch)
tree1f7825f9beb190c8e61879fcf60bcea411c9f302
parent0577bd1a603603873628d035fec92ce96d97cef0 (diff)
downloadgsoc2013-evolution-2241b7b81d11784ea7f7c1380ae265a5be624633.tar
gsoc2013-evolution-2241b7b81d11784ea7f7c1380ae265a5be624633.tar.gz
gsoc2013-evolution-2241b7b81d11784ea7f7c1380ae265a5be624633.tar.bz2
gsoc2013-evolution-2241b7b81d11784ea7f7c1380ae265a5be624633.tar.lz
gsoc2013-evolution-2241b7b81d11784ea7f7c1380ae265a5be624633.tar.xz
gsoc2013-evolution-2241b7b81d11784ea7f7c1380ae265a5be624633.tar.zst
gsoc2013-evolution-2241b7b81d11784ea7f7c1380ae265a5be624633.zip
Remove the match-all from the not body-contains, so we can use the new
2001-09-12 <NotZed@Ximian.com> * vfoldertypes.xml: Remove the match-all from the not body-contains, so we can use the new vector not function. svn path=/trunk/; revision=12780
-rw-r--r--filter/ChangeLog5
-rw-r--r--filter/vfoldertypes.xml2
2 files changed, 6 insertions, 1 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog
index 01b487b808..827efa6f0b 100644
--- a/filter/ChangeLog
+++ b/filter/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-12 <NotZed@Ximian.com>
+
+ * vfoldertypes.xml: Remove the match-all from the not
+ body-contains, so we can use the new vector not function.
+
2001-09-10 <NotZed@Ximian.com>
* filter-score.c (format_sexp): Encode the score as an integer
diff --git a/filter/vfoldertypes.xml b/filter/vfoldertypes.xml
index 73625ef25c..7f38eb7834 100644
--- a/filter/vfoldertypes.xml
+++ b/filter/vfoldertypes.xml
@@ -181,7 +181,7 @@
<option value="not contains">
<title>does not contain</title>
<code>
- (match-all (not (body-contains ${word})))
+ (not (body-contains ${word}))
</code>
</option>
</input>