diff options
| author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2026-04-19 17:09:06 +0200 |
|---|---|---|
| committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2026-04-19 17:09:06 +0200 |
| commit | c9f1161ecb323c7872559dd40c56d691dbd5959f (patch) | |
| tree | bc6b974c56d55e11a78cc10bd7da399e54d307cd /src/readline.c | |
| parent | 984ca5a2330ce29b62892321f258d5a0afb0091c (diff) | |
Start working on parsing/scanning.
Too many changes to list them all individually.
Diffstat (limited to 'src/readline.c')
| -rw-r--r-- | src/readline.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]; } |