Fix typo (#114375). Also, make the function static.
authorNoah Levitt <nlevitt@columbia.edu>
Wed, 4 Jun 2003 20:53:55 +0000 (20:53 +0000)
committerNoah Levitt <nlevitt@src.gnome.org>
Wed, 4 Jun 2003 20:53:55 +0000 (20:53 +0000)
2003-06-04  Noah Levitt  <nlevitt@columbia.edu>

* glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the
function static.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/gunidecomp.c

index aced312..d29f204 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-04  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the
+       function static.
+
 2003-06-03  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * configure.in: Test for pthread_setschedparam. If not existant,
index aced312..d29f204 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-04  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the
+       function static.
+
 2003-06-03  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * configure.in: Test for pthread_setschedparam. If not existant,
index aced312..d29f204 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-04  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the
+       function static.
+
 2003-06-03  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * configure.in: Test for pthread_setschedparam. If not existant,
index aced312..d29f204 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-04  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the
+       function static.
+
 2003-06-03  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * configure.in: Test for pthread_setschedparam. If not existant,
index aced312..d29f204 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-04  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the
+       function static.
+
 2003-06-03  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * configure.in: Test for pthread_setschedparam. If not existant,
index aced312..d29f204 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-04  Noah Levitt  <nlevitt@columbia.edu>
+
+       * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the
+       function static.
+
 2003-06-03  Sebastian Wilhelmi  <seppi@seppi.de>
 
        * configure.in: Test for pthread_setschedparam. If not existant,
index 0d73bd5..24bec04 100644 (file)
@@ -186,7 +186,7 @@ g_unicode_canonical_decomposition (gunichar ch,
 #define COMPOSE_INDEX(Char) \
      (((Char) > (G_UNICODE_LAST_CHAR)) ? 0 : CI((Char) >> 8, (Char) & 0xff))
 
-gboolean
+static gboolean
 combine (gunichar  a,
         gunichar  b,
         gunichar *result)
@@ -218,7 +218,7 @@ combine (gunichar  a,
     }
 
   if (index_a >= COMPOSE_FIRST_START && index_a < COMPOSE_FIRST_SINGLE_START &&
-      index_b >= COMPOSE_SECOND_START && index_a < COMPOSE_SECOND_SINGLE_START)
+      index_b >= COMPOSE_SECOND_START && index_b < COMPOSE_SECOND_SINGLE_START)
     {
       gunichar res = compose_array[index_a - COMPOSE_FIRST_START][index_b - COMPOSE_SECOND_START];