3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Improved codepad.pl

This commit is contained in:
Pragmatic Software 2010-03-28 15:16:34 +00:00
parent 617f98ad5c
commit c93174ac15

View File

@ -77,4 +77,9 @@ $output =~ s/\s+/ /g;
$output =~ s/^\s+//g; $output =~ s/^\s+//g;
$output =~ s/\s+$//g; $output =~ s/\s+$//g;
$output =~ s/ Line 1 ://g;
$output =~ s/ \(first use in this function\)//g;
$output =~ s/error: \(Each undeclared identifier is reported only once.*?\)//g;
$output =~ s/error: (.*?) error/error: $1; error/g;
print "$nick: $output\n"; print "$nick: $output\n";