From c37582bb00465f7f17cf029543b024ab6a6c7870 Mon Sep 17 00:00:00 2001 From: Greg King Date: Wed, 30 Jan 2019 12:18:32 -0500 Subject: [PATCH] Fixed a note in "ca65.sgml". String escapes are converted to a target platform's encoding. --- doc/ca65.sgml | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/doc/ca65.sgml b/doc/ca65.sgml index e0566fda4..25c46c4c2 100644 --- a/doc/ca65.sgml +++ b/doc/ca65.sgml @@ -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: - - -\\ backslash ($5C) -\' single quote ($27) -\" double quote ($22) -\t tab ($09) -\r carriage return ($0D) -\n newline ($0A) -\xNN ($NN) - - - Note that \n maps to ASCII $0A, not a platform specific - line ending character. + + \\ backslash ($5C) + \' single quote ($27) + \" double quote ($22) + \t tab ($09) + \r carriage return ($0D) + \n newline ($0A) + \xNN ($NN) + + + Note that string escapes are converted to platform-specific characters in + the same way that other characters are converted. ubiquitous_idents -- 2.39.2