From 0fa1c9bbdddc034725b4be2039658e73934fdff4 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Sat, 20 Aug 2011 08:10:21 +0000 Subject: [PATCH] * escape #127 under all circumstances (it's not printable) git-svn-id: branches/jvmbackend@18559 - --- compiler/agjasmin.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/agjasmin.pas b/compiler/agjasmin.pas index 2fc94cee6c..ff5b05034f 100644 --- a/compiler/agjasmin.pas +++ b/compiler/agjasmin.pas @@ -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]);