summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Hallendal <micke@imendio.com>2003-08-15 03:00:15 +0000
committerMikael Hallendal <hallski@src.gnome.org>2003-08-15 03:00:15 +0000
commita09ae15d9a96460495838aa12f92ff8412cb56cc (patch)
tree31f9c1cd46a33e04e08ab5513fdd978204da84cf
parent3013953d9e2b3b3d4f2e1c5a71c3e08ed6354f69 (diff)
downloadyelp-a09ae15d9a96460495838aa12f92ff8412cb56cc.tar.gz
Return FALSE, otherwise we'll try to start Yelp from the session over and
2003-08-15 Mikael Hallendal <micke@imendio.com> * src/yelp-main.c: (main_restore_session): Return FALSE, otherwise we'll try to start Yelp from the session over and over again. Reported by Jody earlier.
-rw-r--r--ChangeLog6
-rw-r--r--src/yelp-main.c2
-rw-r--r--src/yelp-reader.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ac9653ce..07281fc9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-08-15 Mikael Hallendal <micke@imendio.com>
+
+ * src/yelp-main.c:
+ (main_restore_session): Return FALSE, otherwise we'll try to start Yelp
+ from the session over and over again. Reported by Jody earlier.
+
2003-07-01 Telsa Gwynne <hobbit@aloss.ukuu.org.uk>
* configure.in: Added "cy" (Welsh) to ALL_LINGUAS
diff --git a/src/yelp-main.c b/src/yelp-main.c
index d41610bc..ca728c58 100644
--- a/src/yelp-main.c
+++ b/src/yelp-main.c
@@ -257,7 +257,7 @@ main_restore_session (void)
}
}
- return TRUE;
+ return FALSE;
}
int
diff --git a/src/yelp-reader.c b/src/yelp-reader.c
index 8ee228bc..c9f11715 100644
--- a/src/yelp-reader.c
+++ b/src/yelp-reader.c
@@ -482,7 +482,7 @@ reader_start (ReaderThreadData *th_data)
/* Hmm .. is this wrong or what?? */
break;
default:
- g_assert_not_reached ();
+ /* g_assert_not_reached (); */
break;
}