From: Andrew T. Veliath Date: Tue, 5 Jan 1999 00:33:10 +0000 (+0000) Subject: fix macro to be shorthand of g_array_insert_vals. X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=aaf8f430e081bf7bc6b0bd8b753fcb765bcd00f1;p=dana%2Fcg-glib.git fix macro to be shorthand of g_array_insert_vals. * glib.h (g_array_insert_val): fix macro to be shorthand of g_array_insert_vals. --- diff --git a/ChangeLog b/ChangeLog index ba2cee84..991e6b89 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-01-04 Andrew T. Veliath + + * glib.h (g_array_insert_val): fix macro to be shorthand of + g_array_insert_vals. + Mon Jan 4 15:35:29 PST 1999 Manish Singh * acglib.m4: some echos interpret \n's and some don't. Deal with diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index ba2cee84..991e6b89 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +1999-01-04 Andrew T. Veliath + + * glib.h (g_array_insert_val): fix macro to be shorthand of + g_array_insert_vals. + Mon Jan 4 15:35:29 PST 1999 Manish Singh * acglib.m4: some echos interpret \n's and some don't. Deal with diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index ba2cee84..991e6b89 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +1999-01-04 Andrew T. Veliath + + * glib.h (g_array_insert_val): fix macro to be shorthand of + g_array_insert_vals. + Mon Jan 4 15:35:29 PST 1999 Manish Singh * acglib.m4: some echos interpret \n's and some don't. Deal with diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index ba2cee84..991e6b89 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +1999-01-04 Andrew T. Veliath + + * glib.h (g_array_insert_val): fix macro to be shorthand of + g_array_insert_vals. + Mon Jan 4 15:35:29 PST 1999 Manish Singh * acglib.m4: some echos interpret \n's and some don't. Deal with diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index ba2cee84..991e6b89 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +1999-01-04 Andrew T. Veliath + + * glib.h (g_array_insert_val): fix macro to be shorthand of + g_array_insert_vals. + Mon Jan 4 15:35:29 PST 1999 Manish Singh * acglib.m4: some echos interpret \n's and some don't. Deal with diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index ba2cee84..991e6b89 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +1999-01-04 Andrew T. Veliath + + * glib.h (g_array_insert_val): fix macro to be shorthand of + g_array_insert_vals. + Mon Jan 4 15:35:29 PST 1999 Manish Singh * acglib.m4: some echos interpret \n's and some don't. Deal with diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index ba2cee84..991e6b89 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +1999-01-04 Andrew T. Veliath + + * glib.h (g_array_insert_val): fix macro to be shorthand of + g_array_insert_vals. + Mon Jan 4 15:35:29 PST 1999 Manish Singh * acglib.m4: some echos interpret \n's and some don't. Deal with diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index ba2cee84..991e6b89 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +1999-01-04 Andrew T. Veliath + + * glib.h (g_array_insert_val): fix macro to be shorthand of + g_array_insert_vals. + Mon Jan 4 15:35:29 PST 1999 Manish Singh * acglib.m4: some echos interpret \n's and some don't. Deal with diff --git a/glib.h b/glib.h index dc55a9bb..682dbd4d 100644 --- a/glib.h +++ b/glib.h @@ -1706,7 +1706,7 @@ void g_string_sprintfa (GString *string, #define g_array_append_val(a,v) g_array_append_vals(a,&v,1) #define g_array_prepend_val(a,v) g_array_prepend_vals(a,&v,1) -#define g_array_insert_val(a,i,v) g_array_prepend_vals(a,i,&v,1) +#define g_array_insert_val(a,i,v) g_array_insert_vals(a,i,&v,1) #define g_array_index(a,t,i) (((t*)a->data)[i]) GArray* g_array_new (gboolean zero_terminated, diff --git a/glib/glib.h b/glib/glib.h index dc55a9bb..682dbd4d 100644 --- a/glib/glib.h +++ b/glib/glib.h @@ -1706,7 +1706,7 @@ void g_string_sprintfa (GString *string, #define g_array_append_val(a,v) g_array_append_vals(a,&v,1) #define g_array_prepend_val(a,v) g_array_prepend_vals(a,&v,1) -#define g_array_insert_val(a,i,v) g_array_prepend_vals(a,i,&v,1) +#define g_array_insert_val(a,i,v) g_array_insert_vals(a,i,&v,1) #define g_array_index(a,t,i) (((t*)a->data)[i]) GArray* g_array_new (gboolean zero_terminated,