diff --git a/components/codetools/laz2_xmlwrite.pas b/components/codetools/laz2_xmlwrite.pas index 553d45327c..54978a2266 100644 --- a/components/codetools/laz2_xmlwrite.pas +++ b/components/codetools/laz2_xmlwrite.pas @@ -348,7 +348,7 @@ begin '"': Sender.wrtStr(QuotStr); '&': Sender.wrtStr(AmpStr); '<': Sender.wrtStr(ltStr); - // Escape whitespace using CharRefs to be consistent with W3 spec § 3.3.3 + // Escape whitespace using CharRefs to be consistent with W3 spec § 3.3.3 #0..#15: Sender.wrtStr('&#x'+HexChr[ord(s[idx])]+';'); #16..#31: Sender.wrtStr(''+HexChr[ord(s[idx])-16]+';'); else