Show unmodified input in error message

This commit is contained in:
Juerd Waalboer 2023-01-30 06:12:23 +01:00
parent 10eeabf707
commit 382940bfc9

View file

@ -194,7 +194,7 @@ OUTER: for (;;) {
redo PROMPT if not @words;
abort if grep $_ eq 'abort', @words;
my $word = shift @words;
my $origword = my $word = shift @words;
push @retry, $word;
PLUGIN: for my $plugin (@plugins) {
@ -248,7 +248,7 @@ OUTER: for (;;) {
call_hooks "plugin_fail", $plugin->id, "Invalid return value";
abort;
}
call_hooks "invalid_input", $cart, $word;
call_hooks "invalid_input", $cart, $origword, $word;
@retry = ();
abort if @words;
redo OUTER;