Point to g_utf8_strreverse() for reversing UTF-8 strings. (#153091, Adam
authorMatthias Clasen <maclas@gmx.de>
Mon, 20 Sep 2004 03:16:32 +0000 (03:16 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 20 Sep 2004 03:16:32 +0000 (03:16 +0000)
Sun Sep 19 23:15:17 2004  Matthias Clasen  <maclas@gmx.de>

* glib/tmpl/patterns.sgml: Point to g_utf8_strreverse() for
reversing UTF-8 strings.  (#153091, Adam Hooper)

docs/reference/ChangeLog
docs/reference/glib/tmpl/patterns.sgml

index b061c59..44cd177 100644 (file)
@@ -1,3 +1,8 @@
+Sun Sep 19 23:15:17 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/tmpl/patterns.sgml: Point to g_utf8_strreverse() for
+       reversing UTF-8 strings.  (#153091, Adam Hooper)
+
 2004-09-18  Matthias Clasen  <mclasen@redhat.com>
 
        * === Released 2.5.3 ===
index c253747..bcaf12d 100644 (file)
@@ -8,11 +8,11 @@ matches strings against patterns containing '*' (wildcard) and '?' (joker).
 <para>
 The <function>g_pattern_match*</function> functions match a string 
 against a pattern containing '*' and '?' wildcards with similar semantics 
-as the standard <function>glob()</function> function: '*' matches an
-arbitrary, possibly empty, string, '?' matches an arbitrary character.
+as the standard glob() function: '*' matches an arbitrary, possibly empty, 
+string, '?' matches an arbitrary character.
 </para>
 <para>
-Note that in contrast to <function>glob()</function>, the '/' character
+Note that in contrast to glob(), the '/' character
 <emphasis>can</emphasis> be matched by the wildcards, there are no
 '[...]' character ranges and '*' and '?' can <emphasis>not</emphasis>
 be escaped to include them literally in a pattern. 
@@ -82,9 +82,9 @@ g_pattern_match().
 </para>
 <para>
 Note also that the reverse of a UTF-8 encoded string can in general 
-<emphasis>not</emphasis> be obtained by <function>g_strreverse()</function>.
+<emphasis>not</emphasis> be obtained by g_strreverse().
 This works only if the string doesn't contain any multibyte characters.
-Glib doesn't currently offer a function to reverse UTF-8 encoded strings.
+Glib offers the g_utf_strreverse() function to reverse UTF-8 encoded strings.
 </para>
 
 @pspec: a #GPatternSpec.