From 9796402280c8e13b9204a0aa1fd000002803c811 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 10 Feb 2003 23:56:45 +0000 Subject: [PATCH] Fix an off-by-one error in the g_strescape() docs. (#105431, Phillip 2003-02-11 Matthias Clasen * glib/tmpl/string_utils.sgml: Fix an off-by-one error in the g_strescape() docs. (#105431, Phillip Vandry) --- docs/reference/ChangeLog | 5 +++++ docs/reference/glib/tmpl/string_utils.sgml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 300c0f34..3b143fef 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +2003-02-11 Matthias Clasen + + * glib/tmpl/string_utils.sgml: Fix an off-by-one error in the + g_strescape() docs. (#105431, Phillip Vandry) + 2003-02-07 Matthias Clasen * gobject/tmpl/gtypemodule.sgml: diff --git a/docs/reference/glib/tmpl/string_utils.sgml b/docs/reference/glib/tmpl/string_utils.sgml index 06d7de70..463b1f87 100644 --- a/docs/reference/glib/tmpl/string_utils.sgml +++ b/docs/reference/glib/tmpl/string_utils.sgml @@ -739,7 +739,7 @@ The standard delimiters, used in g_strdelimit(). Escapes the special characters '\b', '\f', '\n', '\r', '\t', '\' and '"' 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. -- 2.34.1