diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-09-18 04:20:32 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-09-18 04:20:32 +0800 |
commit | 190d2b0b7ff8c6fef285354ef369c7e8075c76e4 (patch) | |
tree | 7b7f1297dedabc541b42a958e3ed9ca9f2ccf6ec /mail/mail-ops.c | |
parent | 97d6f614ac165f2a8022c425aa1803c043d95be4 (diff) | |
download | gsoc2013-evolution-190d2b0b7ff8c6fef285354ef369c7e8075c76e4.tar.gz gsoc2013-evolution-190d2b0b7ff8c6fef285354ef369c7e8075c76e4.tar.zst gsoc2013-evolution-190d2b0b7ff8c6fef285354ef369c7e8075c76e4.zip |
Use e_strftime_fix_am_pm here which fixes locale issues as well as working
2002-09-17 Jeffrey Stedfast <fejj@ximian.com>
* mail-display.c (mail_display_render): Use e_strftime_fix_am_pm
here which fixes locale issues as well as working around systems
that don't support %P (afaik).
* mail-ops.c (prep_offline_do): Cache important messages too.
svn path=/trunk/; revision=18095
Diffstat (limited to 'mail/mail-ops.c')
-rw-r--r-- | mail/mail-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 705785eac4..45d8c33864 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -2143,7 +2143,7 @@ static void prep_offline_do(struct _mail_msg *mm) if (folder) { if (CAMEL_IS_DISCO_FOLDER(folder)) { camel_disco_folder_prepare_for_offline((CamelDiscoFolder *)folder, - "(match-all (not (system-flag \"Seen\")))", + "(match-all (or (not (system-flag \"Seen\")) (system-flag \"Flagged\")))", &mm->ex); } /* prepare_for_offline should do this? */ |