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.
This commit is contained in:
Andrew T. Veliath 1999-01-05 00:33:10 +00:00
parent 6927b5b477
commit aaf8f430e0
10 changed files with 42 additions and 2 deletions

View File

@ -1,3 +1,8 @@
1999-01-04 Andrew T. Veliath <andrewtv@usa.net>
* 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 <yosh@gimp.org>
* acglib.m4: some echos interpret \n's and some don't. Deal with

View File

@ -1,3 +1,8 @@
1999-01-04 Andrew T. Veliath <andrewtv@usa.net>
* 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 <yosh@gimp.org>
* acglib.m4: some echos interpret \n's and some don't. Deal with

View File

@ -1,3 +1,8 @@
1999-01-04 Andrew T. Veliath <andrewtv@usa.net>
* 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 <yosh@gimp.org>
* acglib.m4: some echos interpret \n's and some don't. Deal with

View File

@ -1,3 +1,8 @@
1999-01-04 Andrew T. Veliath <andrewtv@usa.net>
* 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 <yosh@gimp.org>
* acglib.m4: some echos interpret \n's and some don't. Deal with

View File

@ -1,3 +1,8 @@
1999-01-04 Andrew T. Veliath <andrewtv@usa.net>
* 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 <yosh@gimp.org>
* acglib.m4: some echos interpret \n's and some don't. Deal with

View File

@ -1,3 +1,8 @@
1999-01-04 Andrew T. Veliath <andrewtv@usa.net>
* 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 <yosh@gimp.org>
* acglib.m4: some echos interpret \n's and some don't. Deal with

View File

@ -1,3 +1,8 @@
1999-01-04 Andrew T. Veliath <andrewtv@usa.net>
* 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 <yosh@gimp.org>
* acglib.m4: some echos interpret \n's and some don't. Deal with

View File

@ -1,3 +1,8 @@
1999-01-04 Andrew T. Veliath <andrewtv@usa.net>
* 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 <yosh@gimp.org>
* acglib.m4: some echos interpret \n's and some don't. Deal with

2
glib.h
View File

@ -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,

View File

@ -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,