emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r112302: src/minibuf.c (Ftest_complet


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112302: src/minibuf.c (Ftest_completion): Silence compiler warning.
Date: Tue, 16 Apr 2013 04:39:47 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 112302
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Tue 2013-04-16 04:39:47 +0200
message:
  src/minibuf.c (Ftest_completion): Silence compiler warning.
modified:
  src/ChangeLog
  src/minibuf.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-04-15 07:29:39 +0000
+++ b/src/ChangeLog     2013-04-16 02:39:47 +0000
@@ -1,3 +1,7 @@
+2013-04-16  Juanma Barranquero  <address@hidden>
+
+       * minibuf.c (Ftest_completion): Silence compiler warning.
+
 2013-04-15  Eli Zaretskii  <address@hidden>
 
        * w32fns.c (w32_wnd_proc): Add more assertions to investigate

=== modified file 'src/minibuf.c'
--- a/src/minibuf.c     2013-04-09 20:10:47 +0000
+++ b/src/minibuf.c     2013-04-16 02:39:47 +0000
@@ -1799,8 +1799,8 @@
   else if (HASH_TABLE_P (collection))
     {
       struct Lisp_Hash_Table *h = XHASH_TABLE (collection);
+      Lisp_Object key = Qnil;
       i = hash_lookup (h, string, NULL);
-      Lisp_Object key = Qnil;
       if (i >= 0)
        tem = HASH_KEY (h, i);
       else


reply via email to

[Prev in Thread] Current Thread [Next in Thread]