comparison src/minibuf.c @ 9460:9f5fef5890c9

(test_completion): Fix reversed condition.
author Karl Heuer <kwzh@gnu.org>
date Wed, 12 Oct 1994 01:39:10 +0000
parents a8e59db60df6
children 99d523cdb0ea
comparison
equal deleted inserted replaced
9459:a1569f00a6a6 9460:9f5fef5890c9
1063 else if (VECTORP (Vminibuffer_completion_table)) 1063 else if (VECTORP (Vminibuffer_completion_table))
1064 { 1064 {
1065 /* Bypass intern-soft as that loses for nil */ 1065 /* Bypass intern-soft as that loses for nil */
1066 tem = oblookup (Vminibuffer_completion_table, 1066 tem = oblookup (Vminibuffer_completion_table,
1067 XSTRING (txt)->data, XSTRING (txt)->size); 1067 XSTRING (txt)->data, XSTRING (txt)->size);
1068 if (SYMBOLP (tem)) 1068 if (!SYMBOLP (tem))
1069 return Qnil; 1069 return Qnil;
1070 else if (!NILP (Vminibuffer_completion_predicate)) 1070 else if (!NILP (Vminibuffer_completion_predicate))
1071 return call1 (Vminibuffer_completion_predicate, tem); 1071 return call1 (Vminibuffer_completion_predicate, tem);
1072 else 1072 else
1073 return Qt; 1073 return Qt;