]> git.eshelyaron.com Git - emacs.git/commitdiff
(test_completion): Fix reversed condition.
authorKarl Heuer <kwzh@gnu.org>
Wed, 12 Oct 1994 01:39:10 +0000 (01:39 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 12 Oct 1994 01:39:10 +0000 (01:39 +0000)
src/minibuf.c

index f24a3d4e369594f7e44e10c26d5c707926a17497..7d1721fa4bf721add7003222e744c3274c2d3ee4 100644 (file)
@@ -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);