
The signatures feature has been "experimental" since Perl 5.20 (May 2014), but expected to stay. After 8 years I'm ready to take the risk :) Have added Perl v5.28 (June 2018) as the minimum requirement, even though the current revbank should work with 5.20, to see if this bothers any users. Perl v5.28 is in Debian "buster", which is now oldstable.
14 lines
283 B
Perl
14 lines
283 B
Perl
#!perl
|
|
|
|
*hook_plugin_fail = *hook_retry = *hook_reject = *hook_invalid_input = sub {
|
|
call_hooks('beep');
|
|
undef;
|
|
};
|
|
|
|
sub hook_abort($class, $cart, $reason, @) {
|
|
return if not $reason or not @$reason;
|
|
return if "@$reason" eq '^C';
|
|
|
|
call_hooks('beep');
|
|
undef;
|
|
}
|