]> git.localhorst.tv Git - blank.git/commitdiff
fix carriage return in tokenizer
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 10 Nov 2016 16:10:47 +0000 (17:10 +0100)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Thu, 10 Nov 2016 16:10:47 +0000 (17:10 +0100)
src/io/token.cpp

index 07a5e981cd889d01d5920797ee0a4d63dd0ff604..588c125674b870d126e29147e16402994757a611 100644 (file)
@@ -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';