1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 17:56:21 +00:00

Fixed a note in "ca65.sgml".

String escapes are converted to a target platform's encoding.
This commit is contained in:
Greg King 2019-01-30 12:18:32 -05:00
parent 055c294ac0
commit c37582bb00

View File

@ -2835,7 +2835,6 @@ Here's a list of all control commands and a description, what they do:
Allow C-style backslash escapes within string constants to embed Allow C-style backslash escapes within string constants to embed
special characters. The following escapes are accepted: special characters. The following escapes are accepted:
<itemize> <itemize>
<item><tt>\\</tt> backslash (<tt>$5C</tt>) <item><tt>\\</tt> backslash (<tt>$5C</tt>)
<item><tt>\'</tt> single quote (<tt>$27</tt>) <item><tt>\'</tt> single quote (<tt>$27</tt>)
@ -2846,8 +2845,8 @@ Here's a list of all control commands and a description, what they do:
<item><tt>\xNN</tt> (<tt>$NN</tt>) <item><tt>\xNN</tt> (<tt>$NN</tt>)
</itemize> </itemize>
Note that <tt>\n</tt> maps to ASCII <tt>$0A</tt>, not a platform specific Note that string escapes are converted to platform-specific characters in
line ending character. the same way that other characters are converted.
<tag><tt>ubiquitous_idents</tt><label id="ubiquitous_idents"></tag> <tag><tt>ubiquitous_idents</tt><label id="ubiquitous_idents"></tag>