diff options
author | Tim Janik <timj@gtk.org> | 2000-05-12 15:23:16 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 2000-05-12 15:23:16 +0000 |
commit | 1df2ec98cbdc4789418f9652c9c90855c86b9dad (patch) | |
tree | f055b3ff5d2fb11bf6adc2715c0b7db706924fa6 /gasyncqueue.c | |
parent | 397ad5881e972da23eccca1b20bbcfe2e8648f11 (diff) |
added gobject
Fri Apr 28 23:54:35 2000 Tim Janik <timj@gtk.org>
* setup things for a new sub-library libgobject:
* Makefile.am (SUBDIRS): added gobject
* glib-config.in: feature -lgobject.
* configure.in (AC_OUTPUT): generate gobject/Makefile.
* glib.m4 (AM_PATH_GLIB): feature gobject module.
* glib.spec.in: added %{prefix}/lib/libgobject-1.3.so.*
Fri Apr 28 21:41:49 2000 Tim Janik <timj@gtk.org>
* glib.h: added G_STRLOC macro.
G_STRUCT_OFFSET(): signedness corrections.
(G_CSET_DIGITS): list 0-9.
* gscanner.c (g_scanner_config_template): use G_CSET_DIGITS.
* glib.h:
* gstrfuncs.c:
(g_strdown):
(g_strup):
(g_strreverse): return the modified string instead of void, so
calls to these functions can be nested.
(g_strcanon): new function, canonicalizes string according to
a given character set.
Fri Apr 28 19:45:16 2000 Tim Janik <timj@gtk.org>
* gasyncqueue.c (g_async_queue_unref): get rid of an unused variable.
Diffstat (limited to 'gasyncqueue.c')
-rw-r--r-- | gasyncqueue.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gasyncqueue.c b/gasyncqueue.c index 470d2a78f..16ef211ff 100644 --- a/gasyncqueue.c +++ b/gasyncqueue.c @@ -92,8 +92,6 @@ g_async_queue_unref_and_unlock (GAsyncQueue *queue) void g_async_queue_unref (GAsyncQueue *queue) { - gboolean stop; - g_return_if_fail (queue); g_return_if_fail (queue->ref_count > 0); |