* escape #127 under all circumstances (it's not printable)

git-svn-id: branches/jvmbackend@18559 -
This commit is contained in:
Jonas Maebe 2011-08-20 08:10:21 +00:00
parent b370314194
commit 0fa1c9bbdd

View File

@ -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]);