From e87950292dad392f195138d47602461cad7c08c3 Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Mon, 8 Apr 2024 09:15:51 -0700 Subject: [PATCH] Removed extra check during match --- src/modal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modal.c b/src/modal.c index 0737597..d39f3ec 100644 --- a/src/modal.c +++ b/src/modal.c @@ -58,8 +58,8 @@ match(char *p, Rule *r) if(c == '?') { if(!bind(*(++a), b)) return NULL; a++, b = walk(b); + continue; } - if(!*a && spacer(*b)) return b; if(*a != *b) return NULL; a++, b++; }