From f4eb91a22b0e37472175616b28c9220463155054 Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Wed, 6 Nov 2019 03:25:38 +0100 Subject: [PATCH] Increase maximum multiplication factor (repeat limit) The limit was mostly imposed because of the actually repeated lines, which would scroll off the screen. Now that the quantity is just displayed as a number, I don't really see any technical reason for a low limit; maybe 200 is still too low. --- plugins/repeat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/repeat b/plugins/repeat index e05b1d0..7742660 100644 --- a/plugins/repeat +++ b/plugins/repeat @@ -5,7 +5,7 @@ HELP "*, x, x, *" => "Repeat previous/next product N times"; my $err_stacked = "Stacked repetition is not supported."; my $err_pfand = "Plugins 'pfand' and 'repeat' cannot be combined."; -my $limit = 24; +my $limit = 200; my $err_limit = "Repetition is limited at $limit items."; sub command {