mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-11-01 08:52:18 +01:00
Fix an off-by-one error in the g_strescape() docs. (#105431, Phillip
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)
This commit is contained in:
committed by
Matthias Clasen
parent
22c05b8990
commit
1e7a4daa3f
@@ -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-01-01 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/tmpl/messages.sgml (g_log_default_handler): Remove note
|
||||
|
||||
@@ -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.
|
||||
</para>
|
||||
|
||||
Reference in New Issue
Block a user