From 21f35a812e6b43f5711b63c61f43a3948a42a7d2 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Sun, 5 Jan 2025 05:30:16 +0100 Subject: [PATCH] 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. --- revbank | 43 +++++++++++++++++++++++++++++-------------- 1 file changed, 29 insertions(+), 14 deletions(-) diff --git a/revbank b/revbank index c62be6c..73b0e7d 100755 --- a/revbank +++ b/revbank @@ -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) {