diff options
author | Not Zed <NotZed@Ximian.com> | 2001-01-25 10:05:34 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-01-25 10:05:34 +0800 |
commit | 811ce582d40634d1ece0198ed626523f51f8b73d (patch) | |
tree | 074a5d1eb6cbc468d1d8da2e0c972073024ecb34 /mail/folder-browser.c | |
parent | 1a403012d41b1619f4d946921184425b62b322a9 (diff) | |
download | gsoc2013-evolution-811ce582d40634d1ece0198ed626523f51f8b73d.tar.gz gsoc2013-evolution-811ce582d40634d1ece0198ed626523f51f8b73d.tar.zst gsoc2013-evolution-811ce582d40634d1ece0198ed626523f51f8b73d.zip |
Fix the subject match expression, which was missing a closing ).
2001-01-24 Not Zed <NotZed@Ximian.com>
* folder-browser.c (search_string[]): Fix the subject match
expression, which was missing a closing ).
* mail-send-recv.c (do_show_status): Escape any % signs in the
string before setting the format string.
svn path=/trunk/; revision=7797
Diffstat (limited to 'mail/folder-browser.c')
-rw-r--r-- | mail/folder-browser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/folder-browser.c b/mail/folder-browser.c index 700eda72f5..f7f77ffe31 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -252,7 +252,7 @@ static char *search_string[] = { "(match-all (header-contains \"from\" %s)", "(or (body-contains %s) (match-all (header-contains \"Subject\" %s)))", "(body-contains %s)", - "(match-all (header-contains \"Subject\" %s)", + "(match-all (header-contains \"Subject\" %s))", "(match-all (not (body-contains %s)))", "(match-all (not (header-contains \"Subject\" %s)))", }; |