sbase

suckless unix tools
git clone git://git.suckless.org/sbase
Log | Files | Refs | README | LICENSE

commit 54ccddd2e752372b98e85fce355d0d28e7621f75
parent 17447ec767e3968704e6e24e3b533d46ab5bcae2
Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
Date:   Mon,  3 Nov 2025 13:04:55 +0100

ed: Increase mark array

The mark array had an incorrect size because it lacked a +1
so it didn't have space for the last character of the range.

Diffstat:
Med.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ed.c b/ed.c @@ -49,7 +49,7 @@ static regmatch_t matchs[10]; static String lastre; static int optverbose, optprompt, exstatus, optdiag = 1; -static int marks['z' - 'a']; +static int marks['z' - 'a' + 1]; static int nlines, line1, line2; static int curln, lastln, ocurln, olastln; static jmp_buf savesp;