فهرست منبع

Escape \r as well (#6167)

Kevin Leung 8 سال پیش
والد
کامیت
84e11b28fe
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      std/haxe/macro/Printer.hx

+ 1 - 1
std/haxe/macro/Printer.hx

@@ -76,7 +76,7 @@ class Printer {
 	}
 
 	function escapeString(s:String,delim:String) {
-		return delim + s.replace("\n","\\n").replace("\t","\\t").replace("'","\\'").replace('"',"\\\"") #if sys .replace("\x00","\\x00") #end + delim;
+		return delim + s.replace("\n","\\n").replace("\t","\\t").replace("\r","\\r").replace("'","\\'").replace('"',"\\\"") #if sys .replace("\x00","\\x00") #end + delim;
 	}
 
 	public function printFormatString(s:String) {