Browse Source

- fixed expression escaping

Laurent Bedubourg 19 năm trước cách đây
mục cha
commit
eac2088853
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      std/mtwin/templo/Parser.hx

+ 1 - 1
std/mtwin/templo/Parser.hx

@@ -494,7 +494,7 @@ class Parser {
 					
 				case states.string:
 					if (c == "\\" && n == "'"){ 
-						result.add("\\'");
+						result.add("'");
 						skip = true;
 						++i; 
 					}