diff options
author | Timo Sirainen <cras@irssi.org> | 2001-12-11 16:44:53 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-12-11 16:44:53 +0000 |
commit | 617123b5d414b9b44159d1fe2a0bc57b0f272f08 (patch) | |
tree | 34bff8ee43e924f0ef85a6732d115afa8a04e2e0 /src/perl/perl-core.c | |
parent | d4ee6fd604f0a94d8a7f42dfcd716768beda1241 (diff) | |
download | irssi-617123b5d414b9b44159d1fe2a0bc57b0f272f08.zip |
I always forget Perl 5.004 doesn't have PL_na .. so, now I've declared for
5.004, and changed all STRLEN n_a code to use PL_na instead.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2238 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/perl-core.c')
-rw-r--r-- | src/perl/perl-core.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/perl/perl-core.c b/src/perl/perl-core.c index d3e0a24a..7af06f89 100644 --- a/src/perl/perl-core.c +++ b/src/perl/perl-core.c @@ -234,9 +234,7 @@ static int perl_script_eval(PERL_SCRIPT_REC *script) error = NULL; if (SvTRUE(ERRSV)) { - STRLEN n_a; - - error = SvPV(ERRSV, n_a); + error = SvPV(ERRSV, PL_na); } else if (retcount > 0) { error = POPp; } |