diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index efce7e26b29..57eea05b0fc 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1686,6 +1686,8 @@ the values STRING, PREDICATE and `lambda'. */) | |||
| 1686 | tem = Fassoc_string (string, collection, completion_ignore_case ? Qt : Qnil); | 1686 | tem = Fassoc_string (string, collection, completion_ignore_case ? Qt : Qnil); |
| 1687 | if (NILP (tem)) | 1687 | if (NILP (tem)) |
| 1688 | return Qnil; | 1688 | return Qnil; |
| 1689 | else if (CONSP (tem)) | ||
| 1690 | tem = XCAR (tem); | ||
| 1689 | } | 1691 | } |
| 1690 | else if (VECTORP (collection)) | 1692 | else if (VECTORP (collection)) |
| 1691 | { | 1693 | { |