From b373a5c0919c972f69d44785ad74aa37afe113de Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 30 Jul 2022 18:55:09 -0400 Subject: Rename cache{Prefix,Substr} to cache{Complete,Search} --- input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'input.c') diff --git a/input.c b/input.c index 739d889..bcefee5 100644 --- a/input.c +++ b/input.c @@ -333,9 +333,9 @@ static int tabComplete(struct Edit *e, uint id) { tab.suffix = true; } - const char *comp = cachePrefix(&tab.curs, id, tab.pre); + const char *comp = cacheComplete(&tab.curs, id, tab.pre); if (!comp) { - comp = cachePrefix(&tab.curs, id, tab.pre); + comp = cacheComplete(&tab.curs, id, tab.pre); tab.suffix ^= true; } if (!comp) { -- cgit 1.4.1