summaryrefslogtreecommitdiff
path: root/src/perl
diff options
context:
space:
mode:
Diffstat (limited to 'src/perl')
-rw-r--r--src/perl/irssi-core.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/irssi-core.pl b/src/perl/irssi-core.pl
index 8821e45b..38265a80 100644
--- a/src/perl/irssi-core.pl
+++ b/src/perl/irssi-core.pl
@@ -10,7 +10,7 @@ use Symbol;
$SIG{__WARN__} = sub {
my @msg = @_;
- s/%/%%/g for @msg;
+ s/%%/%%%%/g for @msg;
print @msg;
};