Let ^C interrupt only current command's argument prompts

Also, move the sub `abort` outside the infinite loop because it's just
too weird to have a named global function in a loop; the scope of the
outer lexicals is non-obvious.
This commit is contained in:
Juerd Waalboer 2025-01-05 05:30:16 +01:00
parent b396943881
commit 21f35a812e

43
revbank
View file

@ -17,7 +17,7 @@ use RevBank::Messages;
use RevBank::Cart;
use RevBank::Prompt;
our $VERSION = "8.2.0";
our $VERSION = "8.2.2";
our %HELP1 = (
"abort" => "Abort the current transaction",
@ -54,25 +54,40 @@ call_hooks("startup");
my $retry; # reason (text)
my @retry; # (@accepted, $rejected, [@trailing])
my $prompt;
my @plugins;
my $method;
sub abort {
@words = ();
@retry = ();
my $is_interrupt = @_ && $_[0] eq "^C";
print "\n" if $is_interrupt;
if ($is_interrupt and $cart->size and ref $method) {
call_hooks "interrupt", $cart, \@_;
call_hooks "cart_changed", $cart; # XXX ugly; refactor redisplay with instructions
print "Pressing ^C again will also abort.\n";
} else {
print @_, " " unless $is_interrupt;
call_hooks "abort", $cart, \@_;
$cart->empty;
RevBank::FileIO::release_all_locks;
}
no warnings qw(exiting);
redo OUTER;
}
OUTER: for (;;) {
if (not @words) {
call_hooks("cart_changed", $cart) if $cart->changed;
print "\n";
}
my $prompt = "";
my @plugins = RevBank::Plugins->new;
my $method = "command";
sub abort {
print @_, " " if @_;
@words = ();
@retry = ();
call_hooks "abort", $cart, \@_;
$cart->empty;
RevBank::FileIO::release_all_locks;
{ no warnings; redo OUTER; }
}
$prompt = "";
@plugins = RevBank::Plugins->new;
$method = "command";
PROMPT: {
if (not @words) {