mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-10 01:08:36 +02:00
* escape #127 under all circumstances (it's not printable)
git-svn-id: branches/jvmbackend@18559 -
This commit is contained in:
parent
b370314194
commit
0fa1c9bbdd
@ -214,7 +214,7 @@ implementation
|
||||
ord('"'),ord('\'):
|
||||
result:=result+'\'+chr(w[i]);
|
||||
else if (w[i]<32) or
|
||||
(w[i]>127) then
|
||||
(w[i]>=127) then
|
||||
result:=result+'\u'+hexstr(w[i],4)
|
||||
else
|
||||
result:=result+char(w[i]);
|
||||
|
Loading…
Reference in New Issue
Block a user