comparison src/fns.c @ 40769:fa1546836808

(copy_hash_table): Remove unused variable `v'.
author Pavel Janík <Pavel@Janik.cz>
date Tue, 06 Nov 2001 13:15:29 +0000
parents 95dd892ad5e3
children aa298258434a
comparison
equal deleted inserted replaced
40768:5f84fb94758c 40769:fa1546836808
4149 copy_hash_table (h1) 4149 copy_hash_table (h1)
4150 struct Lisp_Hash_Table *h1; 4150 struct Lisp_Hash_Table *h1;
4151 { 4151 {
4152 Lisp_Object table; 4152 Lisp_Object table;
4153 struct Lisp_Hash_Table *h2; 4153 struct Lisp_Hash_Table *h2;
4154 struct Lisp_Vector *v, *next; 4154 struct Lisp_Vector *next;
4155 4155
4156 h2 = allocate_hash_table (); 4156 h2 = allocate_hash_table ();
4157 next = h2->vec_next; 4157 next = h2->vec_next;
4158 bcopy (h1, h2, sizeof *h2); 4158 bcopy (h1, h2, sizeof *h2);
4159 h2->vec_next = next; 4159 h2->vec_next = next;