summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2006-10-10 14:05:52 +0000
committerSteve Peters <steve@fisharerojo.org>2006-10-10 14:05:52 +0000
commit81a4c762684cf629f6e7986fe1827ecd2af35ba2 (patch)
treed5012988fe9e180fea74743ce44780187ff64036 /ext
parent9fd310093839dd0c2fbbb509e9480f73f3eb736d (diff)
downloadperl-81a4c762684cf629f6e7986fe1827ecd2af35ba2.tar.gz
Update to PathTools-3.22.
p4raw-id: //depot/perl@28983
Diffstat (limited to 'ext')
-rw-r--r--ext/Cwd/Changes7
-rw-r--r--ext/Text/Soundex/Soundex.xs6
2 files changed, 8 insertions, 5 deletions
diff --git a/ext/Cwd/Changes b/ext/Cwd/Changes
index 34c6fc568e..9fb4260489 100644
--- a/ext/Cwd/Changes
+++ b/ext/Cwd/Changes
@@ -1,6 +1,11 @@
Revision history for Perl distribution PathTools.
-3.21 Wed Oct 4 21:13:21 CDT 2006
+
+ - Fixed the t/crossplatform.t test on Win32 (and possibly other
+ volume-aware platforms) now that rel2abs() always adds a drive
+ letter. [Reported by several parties]
+
+3.21 - Wed Oct 4 21:16:43 2006
- Added a bunch of X<> tags to the File::Spec docs to help
podindex. [Gabor Szabo]
diff --git a/ext/Text/Soundex/Soundex.xs b/ext/Text/Soundex/Soundex.xs
index 9f5d809441..6ca8d3406b 100644
--- a/ext/Text/Soundex/Soundex.xs
+++ b/ext/Text/Soundex/Soundex.xs
@@ -25,8 +25,7 @@ static char *soundex_table =
/*ABCDEFGHIJKLMNOPQRSTUVWXYZ*/
"01230120022455012623010202";
-static SV *sv_soundex (source)
- SV *source;
+static SV *sv_soundex (SV *source)
{
char *source_p;
char *source_end;
@@ -77,8 +76,7 @@ static SV *sv_soundex (source)
return SvREFCNT_inc(perl_get_sv("Text::Soundex::nocode", FALSE));
}
-static SV *sv_soundex_utf8 (source)
- SV *source;
+static SV *sv_soundex_utf8 (SV* source)
{
U8 *source_p;
U8 *source_end;