src/minibuf.c (Ftest_completion): Silence compiler warning.

This commit is contained in:
Juanma Barranquero 2013-04-16 04:39:47 +02:00
parent 36c0a3016e
commit 9cc2810b69
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2013-04-16 Juanma Barranquero <lekktu@gmail.com>
* minibuf.c (Ftest_completion): Silence compiler warning.
2013-04-15 Eli Zaretskii <eliz@gnu.org>
* w32fns.c (w32_wnd_proc): Add more assertions to investigate

View file

@ -1799,8 +1799,8 @@ the values STRING, PREDICATE and `lambda'. */)
else if (HASH_TABLE_P (collection))
{
struct Lisp_Hash_Table *h = XHASH_TABLE (collection);
i = hash_lookup (h, string, NULL);
Lisp_Object key = Qnil;
i = hash_lookup (h, string, NULL);
if (i >= 0)
tem = HASH_KEY (h, i);
else