1
0
Fork 0
mirror of https://github.com/perlbot/perlbuut synced 2025-06-07 16:45:40 -04:00

Fix some stuff with supereval

This commit is contained in:
Ryan Voots 2017-06-21 17:33:51 -04:00
parent 8804f742bd
commit 056440daf3
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View file

@ -9,3 +9,4 @@ modules.lst
*.log
jail.ext4
var/asn.db
langs/

View file

@ -74,7 +74,7 @@ sub command {
$code = "use strict; ".$code if ($c =~ /s/);
}
$code = "use utf8; ". $code if ($type =~ /^perl(5.(8|10|12|14|16|18|20|22|24|26))?4/);
$code = "use utf8; ". $code if ($type =~ /^perl(5.(8|10|12|14|16|18|20|22|24|26))?$/);
$code =~ s/␤/\n/g;