mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-03 06:32:10 +01:00
increment version to 1.3.4 (binary 0, interface 0).
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org> * configure.in: increment version to 1.3.4 (binary 0, interface 0). Mon Apr 9 18:56:15 2001 Tim Janik <timj@gtk.org> * gclosure.c (g_closure_invoke): only require marshal/meta_marshal if we're valid (about to actually do marshalling).
This commit is contained in:
parent
b49a9d110d
commit
58bfca360d
@ -1,3 +1,7 @@
|
||||
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* configure.in: increment version to 1.3.4 (binary 0, interface 0).
|
||||
|
||||
2001-04-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sv to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* configure.in: increment version to 1.3.4 (binary 0, interface 0).
|
||||
|
||||
2001-04-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sv to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* configure.in: increment version to 1.3.4 (binary 0, interface 0).
|
||||
|
||||
2001-04-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sv to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* configure.in: increment version to 1.3.4 (binary 0, interface 0).
|
||||
|
||||
2001-04-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sv to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* configure.in: increment version to 1.3.4 (binary 0, interface 0).
|
||||
|
||||
2001-04-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sv to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* configure.in: increment version to 1.3.4 (binary 0, interface 0).
|
||||
|
||||
2001-04-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sv to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* configure.in: increment version to 1.3.4 (binary 0, interface 0).
|
||||
|
||||
2001-04-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sv to ALL_LINGUAS.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Mon Apr 9 18:57:44 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* configure.in: increment version to 1.3.4 (binary 0, interface 0).
|
||||
|
||||
2001-04-05 Christian Rose <menthos@menthos.com>
|
||||
|
||||
* configure.in: Added sv to ALL_LINGUAS.
|
||||
|
@ -31,7 +31,7 @@ GLIB_AC_DIVERT_BEFORE_HELP([
|
||||
#
|
||||
GLIB_MAJOR_VERSION=1
|
||||
GLIB_MINOR_VERSION=3
|
||||
GLIB_MICRO_VERSION=3
|
||||
GLIB_MICRO_VERSION=4
|
||||
GLIB_INTERFACE_AGE=0
|
||||
GLIB_BINARY_AGE=0
|
||||
GLIB_VERSION=$GLIB_MAJOR_VERSION.$GLIB_MINOR_VERSION.$GLIB_MICRO_VERSION
|
||||
|
@ -1,3 +1,8 @@
|
||||
Mon Apr 9 18:56:15 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* gclosure.c (g_closure_invoke): only require marshal/meta_marshal if
|
||||
we're valid (about to actually do marshalling).
|
||||
|
||||
Tue Apr 3 20:23:24 2001 Tim Janik <timj@gtk.org>
|
||||
|
||||
* NEWS: updates.
|
||||
|
@ -410,7 +410,6 @@ g_closure_invoke (GClosure *closure,
|
||||
gpointer invocation_hint)
|
||||
{
|
||||
g_return_if_fail (closure != NULL);
|
||||
g_return_if_fail (closure->marshal || closure->meta_marshal);
|
||||
|
||||
if (!closure->is_invalid)
|
||||
{
|
||||
@ -418,6 +417,8 @@ g_closure_invoke (GClosure *closure,
|
||||
gpointer marshal_data;
|
||||
gboolean in_marshal = closure->in_marshal;
|
||||
|
||||
g_return_if_fail (closure->marshal || closure->meta_marshal);
|
||||
|
||||
closure->ref_count += 1; /* preserve floating flag */
|
||||
closure->in_marshal = TRUE;
|
||||
if (closure->meta_marshal)
|
||||
|
Loading…
x
Reference in New Issue
Block a user