From: Daniel Karbach Date: Thu, 10 Nov 2016 16:10:47 +0000 (+0100) Subject: fix carriage return in tokenizer X-Git-Url: http://git.localhorst.tv/?p=blank.git;a=commitdiff_plain;h=d507e4b06e32aff46caacf961b310ba1050b232f fix carriage return in tokenizer --- 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';