Fix an off-by-one error in the g_strescape() docs. (#105431, Phillip
authorMatthias Clasen <maclas@gmx.de>
Mon, 10 Feb 2003 23:56:45 +0000 (23:56 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 10 Feb 2003 23:56:45 +0000 (23:56 +0000)
2003-02-11  Matthias Clasen  <maclas@gmx.de>

* glib/tmpl/string_utils.sgml: Fix an off-by-one error in the
g_strescape() docs.  (#105431, Phillip Vandry)

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

index 300c0f3448236c98bba28fe4ac4d336412071f36..3b143fefa2b692a3be4a193678cc9999d02e311f 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-11  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/tmpl/string_utils.sgml: Fix an off-by-one error in the
+       g_strescape() docs.  (#105431, Phillip Vandry)
+
 2003-02-07  Matthias Clasen  <maclas@gmx.de>
 
        * gobject/tmpl/gtypemodule.sgml: 
index 06d7de703145e48e8bdbccce385fa62d9060e7f1..463b1f873c1461a572dbab7f4546245897492088 100644 (file)
@@ -739,7 +739,7 @@ The standard delimiters, used in g_strdelimit().
 Escapes the special characters '\b', '\f', '\n', '\r', '\t', '\' and
 '&quot;' in the string @source by inserting a '\' before
 them. Additionally all characters in the range 0x01-0x1F (everything
-below SPACE) and in the range 0x80-0xFF (all non-ASCII chars) are
+below SPACE) and in the range 0x7F-0xFF (all non-ASCII chars) are
 replaced with a '\' followed by their octal representation. Characters
 supplied in @exceptions are not escaped.
 </para>