mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 07:26:15 +01:00
Fix typo (#114375). Also, make the function static.
2003-06-04 Noah Levitt <nlevitt@columbia.edu> * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the function static.
This commit is contained in:
parent
06fa8db569
commit
fef203f9f7
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user