diff options
author | Ailin Nemui <ailin@z30a.localdomain> | 2016-09-22 00:47:34 +0200 |
---|---|---|
committer | Ailin Nemui <ailin@z30a.localdomain> | 2016-09-22 00:48:07 +0200 |
commit | 451c002bc1ea1e4d4ed3fe7097ad605b97aaa956 (patch) | |
tree | 73d207c6ed765674ed7645109d3b437216144241 | |
parent | 6292d96e51ae7e2fad68354f0929178338fdd083 (diff) | |
download | irssi.github.io-451c002bc1ea1e4d4ed3fe7097ad605b97aaa956.zip |
add s flag
by Juerd
-rw-r--r-- | security/sa_patch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/sa_patch.pl b/security/sa_patch.pl index 2194dc7..95c80b4 100644 --- a/security/sa_patch.pl +++ b/security/sa_patch.pl @@ -1,2 +1,2 @@ Irssi::signal_add_first("print text", sub { - for ($_[1]) { $_ .= ' ' if /\cD(?!.....)/ } &Irssi::signal_continue }) + for ($_[1]) { $_ .= ' ' if /\cD(?!.....)/s } &Irssi::signal_continue }) |