Mercurial > emacs
changeset 9460:9f5fef5890c9
(test_completion): Fix reversed condition.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 12 Oct 1994 01:39:10 +0000 |
parents | a1569f00a6a6 |
children | 33942ce702fa |
files | src/minibuf.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/minibuf.c Wed Oct 12 00:48:03 1994 +0000 +++ b/src/minibuf.c Wed Oct 12 01:39:10 1994 +0000 @@ -1065,7 +1065,7 @@ /* 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);