This commit is contained in:
Behdad Esfahbod 2011-09-15 16:51:22 -04:00
parent 43007aa2d2
commit b7051e8da8

View File

@ -652,13 +652,13 @@ g_unichar_decompose (gunichar ch,
* Performs a single composition step of the * Performs a single composition step of the
* Unicode canonical composition algorithm. * Unicode canonical composition algorithm.
* *
* This function does not perform algorithmic composition * This function includes algorithmic Hangul Jamo composition,
* for Hangul characters, and does not include compatibility * but it is not exactly the inverse of g_unichar_decompose().
* compositions. It does, however, include 'singleton' * No composition can have either of @a or @b equal to zero.
* compositions which replace a character by a single * To be precise, this function composes if and only if
* other character. To obtain these, pass zero for @b. * there exists a Primary Composite P which is canonically
* * equivalent to the sequence <@a,@b>. See the Unicode
* This function includes algorithmic Hangul Jamo composition. * Standard for the definition of Primary Composite.
* *
* If @a and @b do not compose a new character, @ch is set to zero. * If @a and @b do not compose a new character, @ch is set to zero.
* *