diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/message-list.c | 2 |
4 files changed, 5 insertions, 2 deletions
@@ -2,6 +2,7 @@ * configure.in (ctime_r): Check for whether ctime_r takes two (Linux) or three (Solaris) arguments. + (AC_OUTPUT): Don't create notes/Makefile twice. * acconfig.h: Add CTIME_R_THREE_ARGS to the list. diff --git a/configure.in b/configure.in index 16f722714b..84bc67f36c 100644 --- a/configure.in +++ b/configure.in @@ -492,7 +492,6 @@ calendar/cal-client/Makefile calendar/pcs/Makefile calendar/gui/Makefile calendar/gui/dialogs/Makefile -notes/Makefile filter/Makefile notes/Makefile wombat/Makefile diff --git a/mail/ChangeLog b/mail/ChangeLog index 79947c2ebb..94ce9f14f5 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2000-06-27 Peter Williams <peterw@curious-george.helixcode.com> + * message-list.c (mark_msg_seen): Need to return a value + on error. + * main.c (main): Don't start threads or enter threads if there's no threading! Sigh. diff --git a/mail/message-list.c b/mail/message-list.c index cd66d3080e..06d21ae753 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -128,7 +128,7 @@ mark_msg_seen (gpointer data) guint32 flags; if (!ml->selected_uid) - return; + return FALSE; flags = camel_folder_get_message_flags (ml->folder, ml->selected_uid, NULL); |