17 years agoIn struct regexp replace the two arrays of I32s accessed via startp
Nicholas Clark [Mon, 26 Mar 2007 22:52:18 +0000]
In struct regexp replace the two arrays of I32s accessed via startp
and endp with a single array of struct regexp_paren_pair, which has 2
I32 members. PL_regstartp and PL_regendp are replaced with a pointer
to regexp_paren_pair. The regexp swap structure now only has one
member, so abolish it and store the pointer to the swap array directly.
Hopefully keeping the corresponding start and end adjacent in memory
will help with cache coherency.

p4raw-id: //depot/perl@30769

17 years agoadd p55.t MAD tests, and convert renamed mad/nomad into a module
Gerard Goossen [Mon, 26 Mar 2007 21:48:48 +0000]
add p55.t MAD tests, and convert renamed mad/nomad into a module
Subject: Re: [PATCH] p55 tests
Message-ID: <20070322174056.GE24152@ostwald>

p4raw-id: //depot/perl@30768

17 years agoRename mad/nomad to mad/Nomad.pm
Gerard Goossen [Mon, 26 Mar 2007 21:42:48 +0000]
Rename mad/nomad to mad/Nomad.pm

Subject: Re: [PATCH] p55 tests
Message-ID: <20070322174056.GE24152@ostwald>

p4raw-id: //depot/perl@30767

17 years agoMove the declaration of two variables into the only block that uses
Nicholas Clark [Mon, 26 Mar 2007 21:40:12 +0000]
Move the declaration of two variables into the only block that uses
them.

p4raw-id: //depot/perl@30766

17 years agoNit to change 30762 by Gisle.
Rafael Garcia-Suarez [Mon, 26 Mar 2007 14:36:17 +0000]
Nit to change 30762 by Gisle.
Avoids storing the chars removed by 4-arg substr() in void context.

p4raw-id: //depot/perl@30763

17 years agoRe: substr($megabytes, 30) =
Yitzchak Scott-Thoennes [Mon, 12 Feb 2007 22:13:50 +0000]
Re: substr($megabytes, 30) =
From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
Message-ID: <1119.63.226.247.186.1171347230.squirrel@63.226.247.186>

p4raw-id: //depot/perl@30762

17 years agoMake the warning "interpreted as function" a bit less annoying,
Rafael Garcia-Suarez [Mon, 26 Mar 2007 14:21:39 +0000]
Make the warning "interpreted as function" a bit less annoying,
and test it properly

p4raw-id: //depot/perl@30761

17 years agosay() should parse exactly like print()
Rafael Garcia-Suarez [Mon, 26 Mar 2007 13:51:30 +0000]
say() should parse exactly like print()

p4raw-id: //depot/perl@30760

17 years agoRemove the object_compatibility placeholder in the interpreter struct
Rafael Garcia-Suarez [Mon, 26 Mar 2007 11:52:21 +0000]
Remove the object_compatibility placeholder in the interpreter struct

p4raw-id: //depot/perl@30759

17 years agoOn Linux, don't compile with -DTHREADS_HAVE_PIDS if the
Rafael Garcia-Suarez [Mon, 26 Mar 2007 10:09:21 +0000]
On Linux, don't compile with -DTHREADS_HAVE_PIDS if the
kernel uses the NPTL threading model

p4raw-id: //depot/perl@30758

17 years agoSimplify the logic in Perl_re_dup() - copy the structure as 1 block,
Nicholas Clark [Mon, 26 Mar 2007 08:39:43 +0000]
Simplify the logic in Perl_re_dup() - copy the structure as 1 block,
then fix up what differs. Curiously -Os with gcc x86 produces the same
sized object code.

p4raw-id: //depot/perl@30757

17 years agoChange 30753 forgot to remove 2 now unused variables.
Nicholas Clark [Sun, 25 Mar 2007 23:40:00 +0000]
Change 30753 forgot to remove 2 now unused variables.

p4raw-id: //depot/perl@30756

17 years agoLooks like re_dup has been leaking references on 2 SVs for most regexps
Nicholas Clark [Sun, 25 Mar 2007 23:34:58 +0000]
Looks like re_dup has been leaking references on 2 SVs for most regexps
since dot (only to be recovered for certain at thread exit).

p4raw-id: //depot/perl@30755

17 years agoA more efficient copy in Perl_reg_temp_copy()
Nicholas Clark [Sun, 25 Mar 2007 22:32:11 +0000]
A more efficient copy in  Perl_reg_temp_copy()

p4raw-id: //depot/perl@30754

17 years agoRe: The performance problem of 30678
Marcus Holland-Moritz [Sat, 24 Mar 2007 18:55:11 +0000]
Re: The performance problem of 30678
Message-ID: <20070324185511.02f84668@r2d2>
Date: Sat, 24 Mar 2007 18:55:11 +0100

p4raw-id: //depot/perl@30753

17 years agoMake readline() default to *ARGV.
Rafael Garcia-Suarez [Sat, 24 Mar 2007 21:14:22 +0000]
Make readline() default to *ARGV.
Plus MAD fixes.

p4raw-id: //depot/perl@30750

17 years agoNow that readpipe defaults to $_, I should update the prototype table
Rafael Garcia-Suarez [Sat, 24 Mar 2007 16:58:28 +0000]
Now that readpipe defaults to $_, I should update the prototype table
in opcode.pl too.

p4raw-id: //depot/perl@30749

17 years agoMake sure readpipe without argument can be followed by //
Rafael Garcia-Suarez [Sat, 24 Mar 2007 16:51:13 +0000]
Make sure readpipe without argument can be followed by //

p4raw-id: //depot/perl@30748

17 years agoMake readpipe default to $_
Rafael Garcia-Suarez [Sat, 24 Mar 2007 16:46:02 +0000]
Make readpipe default to $_

p4raw-id: //depot/perl@30747

17 years agostartp and endp can allocate their array of I32s from the same block of
Nicholas Clark [Sat, 24 Mar 2007 14:44:28 +0000]
startp and endp can allocate their array of I32s from the same block of
memory, and Copy() and free it as one.
Probably these two pointers to array should merge into single pointer
to an array of structs.

p4raw-id: //depot/perl@30745

17 years agoIt's possible to write the dup of struct reg_substr_datum with a
Nicholas Clark [Fri, 23 Mar 2007 23:32:19 +0000]
It's possible to write the dup of struct reg_substr_datum with a
memcpy() replacing the member by member copy. Curiously gcc's -Os
produces the same sized code, but not all optimisers may manage this.
Also, by reading and re-assigning to the copied data for the sv_dup()s
we hope to avoid any cache misses on the copied from data.

p4raw-id: //depot/perl@30740

17 years agoDon't use PL_na.
Rafael Garcia-Suarez [Fri, 23 Mar 2007 18:25:43 +0000]
Don't use PL_na.

p4raw-id: //depot/perl@30730

17 years ago[perl #41775] Memoize bug (and patch): problem with LIST_CACHE => MERGE
Father Chrysostomos [Sat, 10 Mar 2007 12:18:35 +0000]
[perl #41775] Memoize bug (and patch): problem with LIST_CACHE => MERGE
From: Father Chrysostomos (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-3.6.HEAD-30201-1173557915-1780.41775-75-0@perl.org>

p4raw-id: //depot/perl@30729

17 years agoUpgrade to Devel::PPPort 3.11_01
Marcus Holland-Moritz [Fri, 23 Mar 2007 17:21:15 +0000]
Upgrade to Devel::PPPort 3.11_01

p4raw-id: //depot/perl@30728

17 years agoMove CHECK_WORD in regcomp.c to a more generic memEQs() in handy.h
Nicholas Clark [Fri, 23 Mar 2007 16:55:13 +0000]
Move CHECK_WORD in regcomp.c to a more generic memEQs() in handy.h
and provide memNEs() too.

p4raw-id: //depot/perl@30726

17 years agoSilence compiler warning in util.c
Jerry D. Hedden [Fri, 23 Mar 2007 09:40:02 +0000]
Silence compiler warning in util.c
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <256688.25862.qm@web30215.mail.mud.yahoo.com>

p4raw-id: //depot/perl@30725

17 years agoChange 30080 was wrong to swap the BEGIN test to memEQ
Nicholas Clark [Fri, 23 Mar 2007 16:15:58 +0000]
Change 30080 was wrong to swap the BEGIN test to memEQ

p4raw-id: //depot/perl@30724

17 years agoRe: [perl #41683] [PATCH] v5.8.8 pod2html -- incorrect treatment of non-manual page...
Jari Aalto [Wed, 7 Mar 2007 11:08:24 +0000]
Re: [perl #41683] [PATCH] v5.8.8 pod2html -- incorrect treatment of non-manual page refs like "this(c)"
Message-ID: <87ejo1s9o7.fsf@w2kpicasso.cante.net>

with adjustments to the regexp

p4raw-id: //depot/perl@30722

17 years agoPerlFAQ sync.
Rafael Garcia-Suarez [Fri, 23 Mar 2007 14:33:22 +0000]
PerlFAQ sync.
Also, use a svn checkout done under an English locale, to
avoid having French dates in the headers. Hateful.

p4raw-id: //depot/perl@30721

17 years agoCwd doesn't need ppport.h in core
Jerry D. Hedden [Tue, 20 Mar 2007 13:16:46 +0000]
Cwd doesn't need ppport.h in core
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <196803.14702.qm@web30215.mail.mud.yahoo.com>

p4raw-id: //depot/perl@30718

17 years agosymbol-exports needed for Data::Alias
Matthijs van Duin [Tue, 20 Mar 2007 14:59:15 +0000]
symbol-exports needed for Data::Alias
Message-ID: <20070320135915.GA25192@cds.nl>

p4raw-id: //depot/perl@30716

17 years agoConvert file to proper line-endings
Rafael Garcia-Suarez [Fri, 23 Mar 2007 10:48:41 +0000]
Convert file to proper line-endings

p4raw-id: //depot/perl@30715

17 years agoMissing file in MANIFEST
Rafael Garcia-Suarez [Fri, 23 Mar 2007 10:43:04 +0000]
Missing file in MANIFEST

p4raw-id: //depot/perl@30714

17 years agoFix path of a test file for running in the core
Rafael Garcia-Suarez [Fri, 23 Mar 2007 08:48:33 +0000]
Fix path of a test file for running in the core

p4raw-id: //depot/perl@30713

17 years agoUpgrade to CPAN-1.88_79
Steve Peters [Fri, 23 Mar 2007 03:45:30 +0000]
Upgrade to CPAN-1.88_79

p4raw-id: //depot/perl@30712

17 years agoUpgrade to Test-Simple-0.70
Steve Peters [Fri, 23 Mar 2007 03:36:47 +0000]
Upgrade to Test-Simple-0.70

p4raw-id: //depot/perl@30711

17 years agoRe-sorting the MANIFEST after the mess made of it with the
Steve Peters [Fri, 23 Mar 2007 02:17:50 +0000]
Re-sorting the MANIFEST after the mess made of it with the
Pod-Simple renamings

p4raw-id: //depot/perl@30710

17 years agoPerforce appararently didn't like integrating this file, since
Steve Peters [Fri, 23 Mar 2007 02:06:06 +0000]
Perforce appararently didn't like integrating this file, since
I had done it twice.  It looks like an add will have to do instead.

p4raw-id: //depot/perl@30709

17 years agofix instalhtml and Pod::HTML issues.
Yves Orton [Thu, 22 Mar 2007 19:42:54 +0000]
fix instalhtml and Pod::HTML issues.
Message-ID: <9b18b3110703221142g4955362atffee33d05e30bd27@mail.gmail.com>

Just the changes to installhtml and Pod::HTML in this patch.

p4raw-id: //depot/perl@30708

17 years agoAdditional test file edits needed for Pod-Simple-3.05 that couldn't
Steve Peters [Fri, 23 Mar 2007 01:47:41 +0000]
Additional test file edits needed for Pod-Simple-3.05 that couldn't
be included due to the integrates being performed in the previous
change.

p4raw-id: //depot/perl@30707

17 years agoUpgrade to Pod-Simple-3.05.
Steve Peters [Fri, 23 Mar 2007 01:43:11 +0000]
Upgrade to Pod-Simple-3.05.

p4raw-id: //depot/perl@30706

17 years agoCan use memEQ instead of strnEQ in CHECK_WORD()
Nicholas Clark [Thu, 22 Mar 2007 22:21:54 +0000]
Can use memEQ instead of strnEQ in CHECK_WORD()

p4raw-id: //depot/perl@30700

17 years agoRe: [perl #32687] Encode::is_utf8 on tainted UTF8 string
Rafael Garcia-Suarez [Thu, 16 Nov 2006 17:36:44 +0000]
Re: [perl #32687] Encode::is_utf8 on tainted UTF8 string
Message-ID: <20061116173644.4412f66f@grubert.mandriva.com>

p4raw-id: //depot/perl@30693

17 years agoMake sure Win32CORE.pm gets cleaned up
Steve Hay [Thu, 22 Mar 2007 17:46:43 +0000]
Make sure Win32CORE.pm gets cleaned up

Normally it happens anyway, but sometimes when running 'distclean'
on a half-built source tree it gets left behind.

p4raw-id: //depot/perl@30691

17 years agoMisc. L<> fixes in core docs : don't link to man pages;
Rafael Garcia-Suarez [Thu, 22 Mar 2007 14:45:36 +0000]
Misc. L<> fixes in core docs : don't link to man pages;
provide full urls when linking to web sites.

p4raw-id: //depot/perl@30688

17 years agoFix to threads::shared t/waithires.t
Jerry D. Hedden [Thu, 22 Mar 2007 07:34:23 +0000]
Fix to threads::shared t/waithires.t
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <381102.32342.qm@web30207.mail.mud.yahoo.com>

p4raw-id: //depot/perl@30687

17 years agoFix a broken link and a meaningless phrase in perldebguts
Rafael Garcia-Suarez [Thu, 22 Mar 2007 14:41:17 +0000]
Fix a broken link and a meaningless phrase in perldebguts

p4raw-id: //depot/perl@30686

17 years agoRemove references to perlcc from the core docs.
Rafael Garcia-Suarez [Thu, 22 Mar 2007 14:37:43 +0000]
Remove references to perlcc from the core docs.

p4raw-id: //depot/perl@30685

17 years agoFix internal POD link
Rafael Garcia-Suarez [Thu, 22 Mar 2007 14:25:54 +0000]
Fix internal POD link

p4raw-id: //depot/perl@30684

17 years agoRe-order the flags values for struct refcounted_he to allow the
Nicholas Clark [Thu, 22 Mar 2007 14:00:14 +0000]
Re-order the flags values for struct refcounted_he to allow the
possibility of storing 2 futher types. Add a void * to the union
as it won't increase the size, but may become useful.

p4raw-id: //depot/perl@30683

17 years agoRe: [PATCH] lib/Pod/Html.pm plus a funky UT8-8 regex bug
Jarkko Hietaniemi [Wed, 21 Mar 2007 08:01:14 +0000]
Re: [PATCH] lib/Pod/Html.pm plus a funky UT8-8 regex bug
Message-ID: <46011E8A.1080009@iki.fi>

p4raw-id: //depot/perl@30681

17 years agoregexp refcount is an integer, not a pointer
Rafael Garcia-Suarez [Thu, 22 Mar 2007 09:19:22 +0000]
regexp refcount is an integer, not a pointer

p4raw-id: //depot/perl@30680

17 years agoFix error message for re::regnames_iterinit()
Rafael Garcia-Suarez [Thu, 22 Mar 2007 09:16:37 +0000]
Fix error message for re::regnames_iterinit()

p4raw-id: //depot/perl@30679

17 years agoResolve PL_curpm issues with (??{}) and fix corruption of match results when pattern...
Yves Orton [Wed, 21 Mar 2007 10:39:24 +0000]
Resolve PL_curpm issues with (??{}) and fix corruption of match results when pattern is a qr.
Message-ID: <9b18b3110703210239x540f5ad9mdb41c2ea6229ac31@mail.gmail.com>

plus two follow-up patches (minor tweaks)

p4raw-id: //depot/perl@30678

17 years agothreads 1.61
Jerry D. Hedden [Wed, 21 Mar 2007 13:15:53 +0000]
threads 1.61
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <999680.51877.qm@web30208.mail.mud.yahoo.com>

Fix 'list/array' context - both keywords are supported

p4raw-id: //depot/perl@30677

17 years agofix MAD compilation of C-style for loop
Gerard Goossen [Wed, 21 Mar 2007 19:18:52 +0000]
fix MAD compilation of C-style for loop

Subject:  [PATCH] MAD C-style for loop
Message-Id:  <20070321181852.GD31539@ostwald>

p4raw-id: //depot/perl@30676

17 years agoSilence a couple of warnings caused by change #30672.
Steve Peters [Wed, 21 Mar 2007 23:21:46 +0000]
Silence a couple of warnings caused by change #30672.
p4raw-link: @30672 on //depot/perl: c94db568e030a227855e08f584b1bff860be0cf5

p4raw-id: //depot/perl@30675

17 years agoAdjust test count for 5.8.x
Nicholas Clark [Wed, 21 Mar 2007 22:59:47 +0000]
Adjust test count for 5.8.x

p4raw-id: //depot/perl@30673

17 years agoMake gcc warn in case code is not C++ compatible.
Steve Peters [Wed, 21 Mar 2007 22:44:10 +0000]
Make gcc warn in case code is not C++ compatible.

p4raw-id: //depot/perl@30672

17 years agoOnly use proxy constant subroutines for 5.9.x.
Nicholas Clark [Wed, 21 Mar 2007 22:01:32 +0000]
Only use proxy constant subroutines for 5.9.x.

p4raw-id: //depot/perl@30671

17 years agoChange 30661 could result in undefined variable
Jerry D. Hedden [Wed, 21 Mar 2007 12:47:52 +0000]
Change 30661 could result in undefined variable
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <915076.64236.qm@web30212.mail.mud.yahoo.com>
Date: Wed, 21 Mar 2007 12:47:52 -0700 (PDT)

p4raw-id: //depot/perl@30670

17 years agoAdd some PERL_MEM* defines to the -V output that were missing.
Nicholas Clark [Wed, 21 Mar 2007 19:02:50 +0000]
Add some PERL_MEM* defines to the -V output that were missing.
"Correct" the whitespace on the only inconsistent #ifdef/#endif

p4raw-id: //depot/perl@30667

17 years agoRemove the (sometimes) unused variable from change 30652.
Nicholas Clark [Wed, 21 Mar 2007 16:31:52 +0000]
Remove the (sometimes) unused variable from change 30652.

p4raw-id: //depot/perl@30661

17 years agoPod fix to h2ph from John Morrissey on the Debian bug list.
Steve Peters [Wed, 21 Mar 2007 13:32:22 +0000]
Pod fix to h2ph from John Morrissey on the Debian bug list.

p4raw-id: //depot/perl@30660

17 years agoDon't try to set the NV on a typeglob-in-action. Should cure bug
Nicholas Clark [Wed, 21 Mar 2007 12:53:56 +0000]
Don't try to set the NV on a typeglob-in-action. Should cure bug
41920.

p4raw-id: //depot/perl@30659

17 years agoAVs and HVs never had the NV slot. (Not that this error mattered, as
Nicholas Clark [Wed, 21 Mar 2007 12:20:03 +0000]
AVs and HVs never had the NV slot. (Not that this error mattered, as
you can't upgrade from them, and the only code path that uses the
flag in sv_upgrade isn't reached when upgrading to AVs or HVs)

p4raw-id: //depot/perl@30658

17 years agoSys::Syslog doesn't need ppport.h in core
Jerry D. Hedden [Tue, 20 Mar 2007 13:15:31 +0000]
Sys::Syslog doesn't need ppport.h in core
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <203426.48736.qm@web30214.mail.mud.yahoo.com>

p4raw-id: //depot/perl@30657

17 years agoData::Dumper doesn't need ppport.h in core
Jerry D. Hedden [Tue, 20 Mar 2007 11:48:24 +0000]
Data::Dumper doesn't need ppport.h in core
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <627715.37131.qm@web30212.mail.mud.yahoo.com>

p4raw-id: //depot/perl@30656

17 years agoCompress::Raw::Zlib doesn't need ppport.h in core [REVISED]
Jerry D. Hedden [Tue, 20 Mar 2007 14:05:46 +0000]
Compress::Raw::Zlib doesn't need ppport.h in core [REVISED]
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <855257.38889.qm@web30205.mail.mud.yahoo.com>

p4raw-id: //depot/perl@30655

17 years agoRemove unneeded pragma line from B/t/OptreeCheck.pm
Jerry D. Hedden [Tue, 20 Mar 2007 16:43:02 +0000]
Remove unneeded pragma line from B/t/OptreeCheck.pm
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <376615.72521.qm@web30204.mail.mud.yahoo.com>

p4raw-id: //depot/perl@30654

17 years agoDon't install XS::APItest and XS::Typemap
Rafael Garcia-Suarez [Wed, 21 Mar 2007 08:57:22 +0000]
Don't install XS::APItest and XS::Typemap

p4raw-id: //depot/perl@30653

17 years agoIn safecalloc, use the system calloc() for the non-DEBUGGING case, as
Nicholas Clark [Tue, 20 Mar 2007 23:20:46 +0000]
In safecalloc, use the system calloc() for the non-DEBUGGING case, as
it may be able to memset() to 0 for free.

p4raw-id: //depot/perl@30652

17 years agoRe: ppport.h in core
Jerry D. Hedden [Tue, 20 Mar 2007 09:08:19 +0000]
Re: ppport.h in core
From: "Jerry D. Hedden" <jdhedden@yahoo.com>
Message-ID: <319763.15276.qm@web30202.mail.mud.yahoo.com>

Digest::SHA no longer uses ppport.h

p4raw-id: //depot/perl@30651

17 years agomy email address changed
Michael Stevens [Tue, 20 Mar 2007 15:49:12 +0000]
my email address changed
Message-ID: <20070320154912.GE50318@etla.org>

p4raw-id: //depot/perl@30649

17 years agoMore nits in the PERL5LIB docs, suggested by Andreas.
Rafael Garcia-Suarez [Tue, 20 Mar 2007 11:39:16 +0000]
More nits in the PERL5LIB docs, suggested by Andreas.

p4raw-id: //depot/perl@30648

17 years agofeel the the baß (encoding problems in the regex engine)
Yves Orton [Tue, 20 Mar 2007 01:40:34 +0000]
feel the the baÃ\9f (encoding problems in the regex engine)
Message-ID: <9b18b3110703191740m6bf21942p6521f3016ed8092f@mail.gmail.com>

p4raw-id: //depot/perl@30647

17 years agoBetter wording for the return value of select()
Rafael Garcia-Suarez [Mon, 19 Mar 2007 23:59:54 +0000]
Better wording for the return value of select()
(bug #41907)

p4raw-id: //depot/perl@30646

17 years agoMore adjustments to the PERL5LIB docs by Rick
Rafael Garcia-Suarez [Mon, 19 Mar 2007 23:34:50 +0000]
More adjustments to the PERL5LIB docs by Rick
Delaney and myself

p4raw-id: //depot/perl@30645

17 years agoLet %^H be modifiable in eval-strings (bug #41531),
Rafael Garcia-Suarez [Mon, 19 Mar 2007 23:11:12 +0000]
Let %^H be modifiable in eval-strings (bug #41531),
by adding a meaning for OPf_SPECIAL on OP_CONST.
Patch by Yves Orton.

p4raw-id: //depot/perl@30644

17 years agoRe: Composing @INC from PERL5LIB
Andreas J. Koenig [Mon, 19 Mar 2007 23:35:10 +0000]
Re: Composing @INC from PERL5LIB
Message-ID: <87ircwkgkh.fsf@k75.linux.bogus>

p4raw-id: //depot/perl@30643

17 years agoAdjust timing tolerance in threads tests, by Jerry D. Hedden
Rafael Garcia-Suarez [Mon, 19 Mar 2007 15:42:58 +0000]
Adjust timing tolerance in threads tests, by Jerry D. Hedden

p4raw-id: //depot/perl@30634

17 years agoPerlIO_exportFILE() and PerlIO_releaseFILE() should manage the fd
Nicholas Clark [Mon, 19 Mar 2007 15:17:27 +0000]
PerlIO_exportFILE() and PerlIO_releaseFILE() should manage the fd
reference counts correctly.

p4raw-id: //depot/perl@30633

17 years agoRe: [perl #41691] [PATCH] v5.8.8 pod2html -- Convert RFC links to point ot IETF pages
Jari Aalto [Sat, 17 Mar 2007 11:11:17 +0000]
Re: [perl #41691] [PATCH] v5.8.8 pod2html -- Convert RFC links to point ot IETF pages
Message-ID: <87k5xg9tne.fsf@w2kpicasso.cante.net>

p4raw-id: //depot/perl@30631

17 years agoRe: perlreguts: Copy-editing and wishlist
Marvin Humphrey [Fri, 16 Mar 2007 12:44:55 +0000]
Re: perlreguts: Copy-editing and wishlist
Message-Id: <F6284B08-4B4E-467A-AFB2-8A71154FDD08@rectangular.com>

p4raw-id: //depot/perl@30630

17 years agoUpgrade to version.pm 0.71, by John Peacock
Rafael Garcia-Suarez [Mon, 19 Mar 2007 08:58:08 +0000]
Upgrade to version.pm 0.71, by John Peacock

p4raw-id: //depot/perl@30629

17 years agominor code simplification made possible by change #30627
Dave Mitchell [Mon, 19 Mar 2007 00:00:46 +0000]
minor code simplification made possible by change #30627
p4raw-link: @30627 on //depot/perl: e7cbf6c66722616e50aa4cda71d48adf3ae55201

p4raw-id: //depot/perl@30628

17 years agoWhen restoring localised values, call set only on container magic.
Dave Mitchell [Sun, 18 Mar 2007 23:43:05 +0000]
When restoring localised values, call set only on container magic.
Avoids (among other things), localised pos index being trashed at
scope exit.

p4raw-id: //depot/perl@30627

17 years agomove magic container/value test into separate function
Dave Mitchell [Sun, 18 Mar 2007 23:17:04 +0000]
move magic container/value test into separate function

p4raw-id: //depot/perl@30624

17 years agoThe test case applied in change 29502 really should have gone at the
Nicholas Clark [Sun, 18 Mar 2007 21:14:16 +0000]
The test case applied in change 29502 really should have gone at the
end of the file t/op/re_tests.

p4raw-id: //depot/perl@30618

17 years ago29044 broke Fatal.pm
Andreas J. Koenig [Sun, 18 Mar 2007 09:26:58 +0000]
29044 broke Fatal.pm
Message-ID: <87slc37y99.fsf@k75.linux.bogus>
Date: Sun, 18 Mar 2007 09:26:58 +0100

p4raw-id: //depot/perl@30614

17 years agoPerlIO_importFILE() should increase the reference count on the fd
Nicholas Clark [Sat, 17 Mar 2007 18:42:30 +0000]
PerlIO_importFILE() should increase the reference count on the fd
that it brings into PerlIO managed space. (A long standing problem
reported by Steve Hay)

p4raw-id: //depot/perl@30610

17 years agoperl5db.t: skip test when /dev/tty is not available
Alexey Tourbin [Sat, 17 Mar 2007 19:28:33 +0000]
perl5db.t: skip test when /dev/tty is not available
Message-ID: <20070317162833.GA10670@solemn.turbinal>

p4raw-id: //depot/perl@30609

17 years agoTest case from Karl Chen in RT #41831
Nicholas Clark [Sat, 17 Mar 2007 16:58:00 +0000]
Test case from Karl Chen in RT #41831
(The bug was already fixed in blead, merged to maint, and it seems
better to adapt the sample code rather than add the whole new test)

p4raw-id: //depot/perl@30608

17 years agoRemove the other 4 bits of MAD code designed to abort on local $^L.
Nicholas Clark [Sat, 17 Mar 2007 15:14:38 +0000]
Remove the other 4 bits of MAD code designed to abort on local $^L.

p4raw-id: //depot/perl@30607

17 years agoThe code in newCONDOP can be made visibly simpler by using intermediate
Nicholas Clark [Sat, 17 Mar 2007 13:01:18 +0000]
The code in newCONDOP can be made visibly simpler by using intermediate
variables. It's also 8 bytes smaller with -Os

p4raw-id: //depot/perl@30606

17 years agoUnder -Dmad, free the ops representing the dead code when a branch
Nicholas Clark [Fri, 16 Mar 2007 19:29:04 +0000]
Under -Dmad, free the ops representing the dead code when a branch
conditional value is actually a constant. Previously this was leaking
ops, and more visibly shared hash keys.

p4raw-id: //depot/perl@30605

17 years agoRe: [perl #41691] [PATCH] v5.8.8 pod2html -- Convert RFC links to point ot IETF pages
Jari Aalto [Wed, 14 Mar 2007 21:56:14 +0000]
Re: [perl #41691] [PATCH] v5.8.8 pod2html -- Convert RFC links to point ot IETF pages
Message-ID: <87hcsnbqnl.fsf@w2kpicasso.cante.net>

p4raw-id: //depot/perl@30604

17 years agoRemove the abort() trap, which Larry said was actually only ever
Nicholas Clark [Fri, 16 Mar 2007 08:41:02 +0000]
Remove the abort() trap, which Larry said was actually only ever
intended as a way to enter gdb by using local $^L

p4raw-id: //depot/perl@30603

17 years agoMake sure escaped dots in filenames are preserved when translating
Craig A. Berry [Fri, 16 Mar 2007 01:40:50 +0000]
Make sure escaped dots in filenames are preserved when translating
filenames from VMS to UNIX syntax.

p4raw-id: //depot/perl@30602

17 years agoPatch by Abigail to avoid using $& in diagnostics.pm.
Rafael Garcia-Suarez [Thu, 15 Mar 2007 17:43:43 +0000]
Patch by Abigail to avoid using $& in diagnostics.pm.

p4raw-id: //depot/perl@30601