From 8b00e5233c5218fe6c5dfc9acc09d80c644a0459 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Tue, 5 Jul 2011 14:14:50 +0200 Subject: [PATCH] In threads.xs, remove num_args from ithread_create, as it is unused. It has never been used - it was added unused with commit 680818c0361b180b. --- dist/threads/lib/threads.pm | 2 +- dist/threads/threads.xs | 1 - pod/perldelta.pod | 6 ++++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/dist/threads/lib/threads.pm b/dist/threads/lib/threads.pm index fae72f2..29c9de0 100644 --- a/dist/threads/lib/threads.pm +++ b/dist/threads/lib/threads.pm @@ -5,7 +5,7 @@ use 5.008; use strict; use warnings; -our $VERSION = '1.83'; +our $VERSION = '1.84'; my $XS_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/dist/threads/threads.xs b/dist/threads/threads.xs index 77d0903..1d5b0d2 100644 --- a/dist/threads/threads.xs +++ b/dist/threads/threads.xs @@ -982,7 +982,6 @@ ithread_create(...) SV *thread_exit_only; char *str; int idx; - unsigned int num_args; dMY_POOL; CODE: if ((items >= 2) && SvROK(ST(1)) && SvTYPE(SvRV(ST(1)))==SVt_PVHV) { diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 43b27d8..775ad96 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -196,6 +196,12 @@ L has been upgraded from version 0.1101 to version 0.1200 Added SetStdHandle and GetStdHandle functions +=item * + +L has been upgraded from version 1.83 to 1.84 + +An unused variable was removed from the XS code. + =back =head2 Removed Modules and Pragmata -- 2.7.4