]> git.eshelyaron.com Git - emacs.git/commitdiff
(copy_hash_table): Remove unused variable `v'.
authorPavel Janík <Pavel@Janik.cz>
Tue, 6 Nov 2001 13:16:43 +0000 (13:16 +0000)
committerPavel Janík <Pavel@Janik.cz>
Tue, 6 Nov 2001 13:16:43 +0000 (13:16 +0000)
src/ChangeLog
src/fns.c

index fc4d97d562346ff70e1a4487fa6d3ed26e977d32..f55149f7bd178f912c278ee97b07e2c5b886bdf5 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-06  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
+
+       * fns.c (copy_hash_table): Remove unused variable `v'.
+
 2001-11-05  Richard M. Stallman  <rms@gnu.org>
 
        * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
index 880886071ded368d77448f6effd92b6eebab038f..621d19fbbcc6612b4c5d1e6d3abdc4d145207186 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -4151,7 +4151,7 @@ copy_hash_table (h1)
 {
   Lisp_Object table;
   struct Lisp_Hash_Table *h2;
-  struct Lisp_Vector *v, *next;
+  struct Lisp_Vector *next;
 
   h2 = allocate_hash_table ();
   next = h2->vec_next;