فهرست منبع

- fixed expression escaping

Laurent Bedubourg 19 سال پیش
والد
کامیت
eac2088853
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      std/mtwin/templo/Parser.hx

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

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