diff options
author | Not Zed <NotZed@Ximian.com> | 2005-03-02 13:23:46 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2005-03-02 13:23:46 +0800 |
commit | 9c26fef2d420b58f8e3699af4c09705f3e9eb65b (patch) | |
tree | bc4c445914a44b7ea43b315edafdafbf53b218ef /mail/e-searching-tokenizer.c | |
parent | 9f9805577b127c40c317e72bbfdd1cd8235b5de2 (diff) | |
download | gsoc2013-evolution-9c26fef2d420b58f8e3699af4c09705f3e9eb65b.tar.gz gsoc2013-evolution-9c26fef2d420b58f8e3699af4c09705f3e9eb65b.tar.zst gsoc2013-evolution-9c26fef2d420b58f8e3699af4c09705f3e9eb65b.zip |
include atkutil.h (message_list_construct): cast warning.
2005-03-01 Not Zed <NotZed@Ximian.com>
* message-list.c: include atkutil.h
(message_list_construct): cast warning.
* mail-session.c (mail_session_set_interactive): remove unused
variable since we can no longer terminate password requests.
* mail-autofilter.c (em_vfolder_rule_from_address): properly
define in header.
* em-utils.c (emu_get_save_filesel): only define filename in the
!gtkfilechooser case.
* em-mailer-prefs.c (restore_labels_clicked): cast for warning.
(em_mailer_prefs_construct): same.
* em-format-html.c (efh_format_header): remove unused variable.
* em-account-editor.c (emae_widget_druid_glade): remove unused
variable.
* importers/mail-importer.h: forward-delcare struct
_MailComponent.
* *c: remove/disable various debug.
svn path=/trunk/; revision=28934
Diffstat (limited to 'mail/e-searching-tokenizer.c')
-rw-r--r-- | mail/e-searching-tokenizer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/e-searching-tokenizer.c b/mail/e-searching-tokenizer.c index 370ab02747..3ace0860c8 100644 --- a/mail/e-searching-tokenizer.c +++ b/mail/e-searching-tokenizer.c @@ -571,7 +571,7 @@ output_match(struct _searcher *s, unsigned int start, unsigned int end) endtoken = find_token(s, end); if (starttoken == NULL || endtoken == NULL) { - printf("Cannot find match history for match %d-%d\n", start, end); + d(printf("Cannot find match history for match %d-%d\n", start, end)); return; } @@ -669,7 +669,7 @@ push_subpending(struct _searcher *s, int offstart, int offend) { /* This is really an assertion, we just ignore the last pending match instead of crashing though */ if (s->submatchp >= s->words) { - printf("ERROR: submatch pending stack overflow\n"); + d(printf("ERROR: submatch pending stack overflow\n")); s->submatchp = s->words-1; } |