From 44472c88f589bf03900ee246f48ce7ae38b847e8 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 12 Oct 1994 01:39:10 +0000 Subject: [PATCH] (test_completion): Fix reversed condition. --- src/minibuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/minibuf.c b/src/minibuf.c index f24a3d4e369..7d1721fa4bf 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1065,7 +1065,7 @@ test_completion (txt) /* Bypass intern-soft as that loses for nil */ tem = oblookup (Vminibuffer_completion_table, XSTRING (txt)->data, XSTRING (txt)->size); - if (SYMBOLP (tem)) + if (!SYMBOLP (tem)) return Qnil; else if (!NILP (Vminibuffer_completion_predicate)) return call1 (Vminibuffer_completion_predicate, tem); -- 2.39.5