]> git.sur5r.net Git - cc65/commitdiff
Fixed a note in "ca65.sgml".
authorGreg King <gregdk@users.sf.net>
Wed, 30 Jan 2019 17:18:32 +0000 (12:18 -0500)
committerGreg King <gregdk@users.sf.net>
Wed, 30 Jan 2019 17:18:32 +0000 (12:18 -0500)
String escapes are converted to a target platform's encoding.

doc/ca65.sgml

index e0566fda4ca09cfe6348916dade11cc10ff4ad8f..25c46c4c2604e61cd91d40ae1e02d1a356e1aca4 100644 (file)
@@ -2835,19 +2835,18 @@ Here's a list of all control commands and a description, what they do:
 
     Allow C-style backslash escapes within string constants to embed
     special characters. The following escapes are accepted:
-
-<itemize>
-<item><tt>\\</tt> backslash (<tt>$5C</tt>)
-<item><tt>\'</tt> single quote (<tt>$27</tt>)
-<item><tt>\&quot;</tt> double quote (<tt>$22</tt>)
-<item><tt>\t</tt> tab (<tt>$09</tt>)
-<item><tt>\r</tt> carriage return (<tt>$0D</tt>)
-<item><tt>\n</tt> newline (<tt>$0A</tt>)
-<item><tt>\xNN</tt>  (<tt>$NN</tt>)
-</itemize>
-
-    Note that <tt>\n</tt> maps to ASCII <tt>$0A</tt>, not a platform specific
-    line ending character.
+    <itemize>
+    <item><tt>\\</tt> backslash (<tt>$5C</tt>)
+    <item><tt>\'</tt> single quote (<tt>$27</tt>)
+    <item><tt>\&quot;</tt> double quote (<tt>$22</tt>)
+    <item><tt>\t</tt> tab (<tt>$09</tt>)
+    <item><tt>\r</tt> carriage return (<tt>$0D</tt>)
+    <item><tt>\n</tt> newline (<tt>$0A</tt>)
+    <item><tt>\xNN</tt>  (<tt>$NN</tt>)
+    </itemize>
+
+    Note that string escapes are converted to platform-specific characters in
+    the same way that other characters are converted.
 
   <tag><tt>ubiquitous_idents</tt><label id="ubiquitous_idents"></tag>