src/minibuf.c (Ftest_completion): Silence compiler warning.
This commit is contained in:
parent
36c0a3016e
commit
9cc2810b69
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue