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.
This commit is contained in:
Juerd Waalboer 2019-11-06 03:25:38 +01:00
parent 1f21d49bb9
commit f4eb91a22b

View file

@ -5,7 +5,7 @@ HELP "*<N>, x<N>, <N>x, <N>*" => "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 {