ed: Increase mark array - sbase - suckless unix tools
 (HTM) git clone git://git.suckless.org/sbase
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 54ccddd2e752372b98e85fce355d0d28e7621f75
 (DIR) parent 17447ec767e3968704e6e24e3b533d46ab5bcae2
 (HTM) 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:
         M ed.c                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) 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;