summaryrefslogtreecommitdiff
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2013-04-16 04:39:47 +0200
committerJuanma Barranquero <lekktu@gmail.com>2013-04-16 04:39:47 +0200
commit9cc2810b69ec36f75feb1e46f7301c41ee5686e1 (patch)
tree80df82e457af3c2f2635f451a38f4ae6145d8731 /src/minibuf.c
parent36c0a3016e88cd380752758379a48d5e942601c4 (diff)
downloademacs-9cc2810b69ec36f75feb1e46f7301c41ee5686e1.tar.gz
src/minibuf.c (Ftest_completion): Silence compiler warning.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 4cc1f8d435a..b96d27e0742 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -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