Explorar o código

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

git-svn-id: branches/jvmbackend@18559 -
Jonas Maebe %!s(int64=14) %!d(string=hai) anos
pai
achega
0fa1c9bbdd
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      compiler/agjasmin.pas

+ 1 - 1
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]);