From ef7cc853062b91f30c9c349762b03847158ee5e9 Mon Sep 17 00:00:00 2001 From: Neil Date: Fri, 30 Dec 2022 15:01:32 -0800 Subject: [PATCH] old_set_words not needed --- src/scan_kjv.re.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scan_kjv.re.c b/src/scan_kjv.re.c index 33fb6e0..d32af2c 100644 --- a/src/scan_kjv.re.c +++ b/src/scan_kjv.re.c @@ -145,7 +145,6 @@ static int scan(union date32 date, const char *const buffer, continue; } engage => skip { - const size_t old_set_words = kj->words.set; char citestr[12]; if(!chapter || !verse) { why = "missing information"; goto catch; } if(verse_end && verse_end <= verse) @@ -212,7 +211,8 @@ int main(void) { "set key top left\n" "set grid\n" "unset border\n" - "plot $Data using 1:($3)*100/%zu with steps lw 2 title \"set\", \\\n" + "#set style fill solid 0.1 #pattern 5 (better, but restarts)\n" + "plot $Data using 1:($3)*100/%zu with fillsteps lw 2 title \"set\", \\\n" "$Data using 1:($4)*100/%zu with steps lw 1 title \"cumulative\"\n", kj.words.total, kj.words.total); goto finally;