From dfd4b66c48106edfcbdd1b32e733640e2587acbb Mon Sep 17 00:00:00 2001 From: Hans Bolinder Date: Thu, 3 Dec 2009 12:21:55 +0000 Subject: documentation: Fix bugs introduced in the SGML to XML transition In the transition from SGML to XML (several releases ago), bugs were introduced in the documentation, for instance "\n" replaced by newlines. Correct those bugs. Also correct double backslashes. They seem to have been introduced very early in the development of OTP. According to Lars they "solved" a bug in the generation of HTML &c. Now that standard tools are used instead of docbuilder, the bug has become visible. --- system/doc/reference_manual/data_types.xml | 36 +++++++++++++++--------------- 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'system/doc/reference_manual') diff --git a/system/doc/reference_manual/data_types.xml b/system/doc/reference_manual/data_types.xml index c85ac44165..df1c0f8fa8 100644 --- a/system/doc/reference_manual/data_types.xml +++ b/system/doc/reference_manual/data_types.xml @@ -59,7 +59,7 @@ 42 2> $A. 65 -3> $\ . +3> $\n. 10 4> 2#101. 5 @@ -296,68 +296,68 @@ true Description - \\b + \b backspace - \\d + \d delete - \\e + \e escape - \\f + \f form feed - \ + \n newline - \\r + \r carriage return - \\s + \s space - \\t + \t tab - \\v + \v vertical tab - \\XYZ, \\YZ, \\Z + \XYZ, \YZ, \Z character with octal representation XYZ, YZ or Z - \\xXY + \xXY character with hexadecimal representation XY - \\x{X...} + \x{X...} character with hexadecimal representation; X... is one or more hexadecimal characters - \\^a...\\^z

-\\^A...\\^Z
+ \^a...\^z

+\^A...\^Z
control A to control Z
- \\' + \' single quote - \\" + \" double quote - \\\\ + \\ backslash Recognized Escape Sequences. -- cgit v1.2.3