(copy_hash_table): Remove unused variable `v'.

This commit is contained in:
Pavel Janík 2001-11-06 13:16:43 +00:00
parent e154cc44d0
commit 44dc78e04a
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-11-06 Pavel Jan,Bm(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.

View file

@ -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;