aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorPavel Janík2001-11-06 13:16:43 +0000
committerPavel Janík2001-11-06 13:16:43 +0000
commit44dc78e04abbd8fe6aa72c4a115f67ef907f35ab (patch)
tree2631494020f0bc50f758eaea71a70da656406b06 /src/fns.c
parente154cc44d01eab7e4bc4a2c030ef5ffb55518ee2 (diff)
downloademacs-44dc78e04abbd8fe6aa72c4a115f67ef907f35ab.tar.gz
emacs-44dc78e04abbd8fe6aa72c4a115f67ef907f35ab.zip
(copy_hash_table): Remove unused variable `v'.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index 880886071de..621d19fbbcc 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4151,7 +4151,7 @@ copy_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;