소스 검색

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

git-svn-id: branches/jvmbackend@18559 -
Jonas Maebe 14 년 전
부모
커밋
0fa1c9bbdd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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]);