# HG changeset patch # User Matti Hamalainen # Date 1579532505 -7200 # Node ID 8d057a2459e376cd40da0512660dc6dbd97a60b9 # Parent ba8b44cd313bf2938b85c59109afda393e8052e6 Adjust options help width check, it was off-by-one. diff -r ba8b44cd313b -r 8d057a2459e3 src/dmargs.c --- a/src/dmargs.c Fri Jan 17 22:07:00 2020 +0200 +++ b/src/dmargs.c Mon Jan 20 17:01:45 2020 +0200 @@ -221,7 +221,7 @@ next++, wlen++); // Check if we have too much of text? - if (linelen + wlen >= width) + if (linelen + wlen > width) break; // Print what we have