aboutsummaryrefslogtreecommitdiff
path: root/interpreter/Elymas.pm
diff options
context:
space:
mode:
authorDrahflow <drahflow@gmx.de>2013-09-04 01:55:51 +0200
committerDrahflow <drahflow@gmx.de>2013-09-04 01:55:51 +0200
commit3fb7dd375ada97b9413abfecccd8a889c53dc93a (patch)
tree583915d9624b8892519334023282ab99b2ead632 /interpreter/Elymas.pm
parent20efe1efeb3c62b884ccc16fd77e3b4c430c3ed9 (diff)
Minimal HTTP server
Diffstat (limited to 'interpreter/Elymas.pm')
-rw-r--r--interpreter/Elymas.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/interpreter/Elymas.pm b/interpreter/Elymas.pm
index 2a57b55..86416dd 100644
--- a/interpreter/Elymas.pm
+++ b/interpreter/Elymas.pm
@@ -736,6 +736,8 @@ sub tokenize {
$str .= '\\';
} elsif($1 eq 'n') {
$str .= "\n";
+ } elsif($1 eq 'r') {
+ $str .= "\r";
} elsif($1 eq '0') {
$str .= "\0";
} elsif($1 eq '"') {