From d507e4b06e32aff46caacf961b310ba1050b232f Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Thu, 10 Nov 2016 17:10:47 +0100 Subject: [PATCH] fix carriage return in tokenizer --- src/io/token.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/token.cpp b/src/io/token.cpp index 07a5e98..588c125 100644 --- a/src/io/token.cpp +++ b/src/io/token.cpp @@ -163,7 +163,7 @@ void Tokenizer::ReadString() { current.value += '\n'; break; case 'r': - current.value += '\t'; + current.value += '\r'; break; case 't': current.value += '\t'; -- 2.39.2