diff options
| author | Karl Heuer | 1994-10-12 01:39:10 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-10-12 01:39:10 +0000 |
| commit | 44472c88f589bf03900ee246f48ce7ae38b847e8 (patch) | |
| tree | 03cd9663c111711e2a05420e1bb6a76a105ecfab /src | |
| parent | e429caa2159278b5aba3d168fd8858d1c665cc3e (diff) | |
| download | emacs-44472c88f589bf03900ee246f48ce7ae38b847e8.tar.gz emacs-44472c88f589bf03900ee246f48ce7ae38b847e8.zip | |
(test_completion): Fix reversed condition.
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); |