in reply to Wierd behaiviour of Filter::Util::Call

Some sort of deep doodoo in the XS voodoo. Perhaps the following code?

# Call.XS ~line 130 SAVESPTR(DEFSV) ;/* save $_ */ /* make $_ use our buffer */ DEFSV = sv_2mortal(newSVpv("", 0)) ;

A maybe workaround is to quote uses of $_, which seems to prevent the bug:

use Filter::Util::Call; BEGIN{ filter_add(sub{ my $s = filter_read; my $t = "$_"; $s; }); } print "hello, world\n";

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
"Too many [] have been sedated by an oppressive environment of political correctness and risk aversion."