fix macro to be shorthand of g_array_insert_vals.
authorAndrew T. Veliath <andrewtv@src.gnome.org>
Tue, 5 Jan 1999 00:33:10 +0000 (00:33 +0000)
committerAndrew T. Veliath <andrewtv@src.gnome.org>
Tue, 5 Jan 1999 00:33:10 +0000 (00:33 +0000)
* glib.h (g_array_insert_val): fix macro to be shorthand of
g_array_insert_vals.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib.h
glib/glib.h

index ba2cee8..991e6b8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index ba2cee8..991e6b8 100644 (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
index ba2cee8..991e6b8 100644 (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
index ba2cee8..991e6b8 100644 (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
index ba2cee8..991e6b8 100644 (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
index ba2cee8..991e6b8 100644 (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
index ba2cee8..991e6b8 100644 (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
index ba2cee8..991e6b8 100644 (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
diff --git a/glib.h b/glib.h
index dc55a9b..682dbd4 100644 (file)
--- 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,
index dc55a9b..682dbd4 100644 (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,