aboutsummaryrefslogtreecommitdiffstats
path: root/filter/vfoldertypes.xml
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-08-06 05:12:14 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-08-06 05:12:14 +0800
commit9c6056e60136cd86eaf58e364eae33bac3f7c6db (patch)
treeb541b3669a69d71f676cfc117dbcac2059e4134c /filter/vfoldertypes.xml
parent8c301288f1ecaa5161fc1b458154b3404e239441 (diff)
downloadgsoc2013-evolution-9c6056e60136cd86eaf58e364eae33bac3f7c6db.tar
gsoc2013-evolution-9c6056e60136cd86eaf58e364eae33bac3f7c6db.tar.gz
gsoc2013-evolution-9c6056e60136cd86eaf58e364eae33bac3f7c6db.tar.bz2
gsoc2013-evolution-9c6056e60136cd86eaf58e364eae33bac3f7c6db.tar.lz
gsoc2013-evolution-9c6056e60136cd86eaf58e364eae33bac3f7c6db.tar.xz
gsoc2013-evolution-9c6056e60136cd86eaf58e364eae33bac3f7c6db.tar.zst
gsoc2013-evolution-9c6056e60136cd86eaf58e364eae33bac3f7c6db.zip
** See bug #42636.
2003-08-05 Not Zed <NotZed@Ximian.com> ** See bug #42636. * vfoldertypes.xml: Fix some of the subject rules, they were missing matching ')'s. 2003-08-01 Not Zed <NotZed@Ximian.com> ** See bug #47208. * filter-code.c (build_code): wrap the expression in a match-all so boolean expressions work properly for folder searches. svn path=/trunk/; revision=22090
Diffstat (limited to 'filter/vfoldertypes.xml')
-rw-r--r--filter/vfoldertypes.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/vfoldertypes.xml b/filter/vfoldertypes.xml
index daa873d184..e60c1780dc 100644
--- a/filter/vfoldertypes.xml
+++ b/filter/vfoldertypes.xml
@@ -139,7 +139,7 @@
<option value="is not">
<title>is not</title>
<code>
- (match-all (not (header-matches "Subject" ${subject}))
+ (match-all (not (header-matches "Subject" ${subject})))
</code>
</option>
<option value="starts with">
@@ -151,7 +151,7 @@
<option value="not starts with">
<title>does not start with</title>
<code>
- (match-all (not (header-starts-with "Subject" ${subject}))
+ (match-all (not (header-starts-with "Subject" ${subject})))
</code>
</option>
<option value="ends with">
@@ -163,7 +163,7 @@
<option value="not ends with">
<title>does not end with</title>
<code>
- (match-all (not (header-ends-with "Subject" ${subject}))
+ (match-all (not (header-ends-with "Subject" ${subject})))
</code>
</option>
</input>