aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Williams <peterw@src.gnome.org>2000-06-28 03:07:06 +0800
committerPeter Williams <peterw@src.gnome.org>2000-06-28 03:07:06 +0800
commit37a9065a63042dd3ec0c635b5181d963cc8a7493 (patch)
tree350fe660965e77107692f019716f8f9cc4788b61
parent8a22b04d886149645c84e5f0fdb8795308f3d62f (diff)
downloadgsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar
gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.gz
gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.bz2
gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.lz
gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.xz
gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.tar.zst
gsoc2013-evolution-37a9065a63042dd3ec0c635b5181d963cc8a7493.zip
Little teeny fixes
svn path=/trunk/; revision=3764
-rw-r--r--ChangeLog1
-rw-r--r--configure.in1
-rw-r--r--mail/ChangeLog3
-rw-r--r--mail/message-list.c2
4 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0efaa9e3b5..9187b21311 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);