From c9f1161ecb323c7872559dd40c56d691dbd5959f Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Sun, 19 Apr 2026 17:09:06 +0200 Subject: Start working on parsing/scanning. Too many changes to list them all individually. --- src/readline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/readline.c') diff --git a/src/readline.c b/src/readline.c index bda4df9..f03bbdb 100644 --- a/src/readline.c +++ b/src/readline.c @@ -24,7 +24,6 @@ static struct aplwc *aplwc; static char **completions; -static int completion_index; static char **complete(const char *, int, int); static char *get_completion(const char *, int); @@ -52,5 +51,6 @@ complete(const char *text, int start, int end) static char * get_completion(const char *text, int state) { + (void)text; return completions[state]; } -- cgit v1.2.3