diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 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); |