]> git.eshelyaron.com Git - emacs.git/commitdiff
src/minibuf.c (Ftest_completion): Silence compiler warning.
authorJuanma Barranquero <lekktu@gmail.com>
Tue, 16 Apr 2013 02:39:47 +0000 (04:39 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Tue, 16 Apr 2013 02:39:47 +0000 (04:39 +0200)
src/ChangeLog
src/minibuf.c

index 11b82f57108aac63b600abd8d15e73d1862d20eb..36f015db5fa08b385d271e0cecd23836023badc6 100644 (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
index 4cc1f8d435a32777038f0480b6014825dc24c7bb..b96d27e07421b470ce6ff3461f3d6b080784a45e 100644 (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