mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 23:16:14 +01:00
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:
parent
6927b5b477
commit
aaf8f430e0
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
2
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,
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user