[DELTA]
3.04 Thu Feb 7 15:53:09 EST 2013 <rjbs@cpan.org>
The module is going to be removed from the core distribution of perl, and will
now warn (under warnings) if loaded from its installed-to-core location.
'Text::Soundex' => {
'MAINTAINER' => 'markm',
- 'DISTRIBUTION' => 'MARKM/Text-Soundex-3.03.tar.gz',
+ 'DISTRIBUTION' => 'RJBS/Text-Soundex-3.04.tar.gz',
'FILES' => q[cpan/Text-Soundex],
'MAP' => {
'' => 'cpan/Text-Soundex/',
Revision history for Perl extension Text::Soundex.
+3.04 Thu Feb 7 15:53:09 EST 2013 <rjbs@cpan.org>
+
+The module is going to be removed from the core distribution of perl, and will
+now warn (under warnings) if loaded from its installed-to-core location.
+
3.02 Sun Feb 02 02:54:00 EST 2003 <mark@mielke.cc>
The U8 type was over-used in 3.00 and 3.01. Now, "U8 *" is used only as a
use strict;
-our $VERSION = '3.03_01';
+use if $] > 5.016, 'deprecate';
+
+our $VERSION = '3.04';
our @EXPORT_OK = qw(soundex soundex_unicode soundex_nara soundex_nara_unicode
$soundex_nocode);
our @EXPORT = qw(soundex soundex_nara $soundex_nocode);
sv_soundex_table['r'] = '6';
}
-static SV *sv_soundex (SV *source)
+static SV *sv_soundex (SV* source)
{
char *source_p;
char *source_end;