Steve Peters [Thu, 23 Feb 2006 17:42:09 +0000 (17:42 +0000)]
Add test for RT #2166: foreach spuriously autovivifies
p4raw-id: //depot/perl@27287
Steve Peters [Thu, 23 Feb 2006 16:24:19 +0000 (16:24 +0000)]
Converted t/op/pos.t to use test.pl and added TODO test for
RT #1716 - search position reset after 'local' save/restore
p4raw-id: //depot/perl@27286
Jan Dubois [Tue, 21 Feb 2006 12:36:31 +0000 (04:36 -0800)]
Implement ${^WIN32_SLOPPY_STAT}
From: "Jan Dubois" <jand@ActiveState.com>
Message-ID: <
019601c63726$
7fcca200$
6062a8c0@candy>
p4raw-id: //depot/perl@27283
Nicholas Clark [Thu, 23 Feb 2006 13:42:29 +0000 (13:42 +0000)]
Recalculate dstr in Perl_sv_setsv_flags, as dstr may have been upgraded.
p4raw-id: //depot/perl@27282
Nicholas Clark [Thu, 23 Feb 2006 13:07:54 +0000 (13:07 +0000)]
Remove un-needed case in Perl_sv_setsv_flags (sv_upgrade will cover
this one for us).
p4raw-id: //depot/perl@27279
Nicholas Clark [Thu, 23 Feb 2006 11:11:12 +0000 (11:11 +0000)]
Remove get magic from typeglobs. This means that PVGVs holding
typeglobs never need to use SvPVX. This comes at price - typeglobs
were using magic get for their stringificiation, and to pass SvOK(),
so need to make typeglobs SvOK by default (by sucking SVp_SCREAM into
SVf_OK - it's the only flag left), tweak SvSCREAM() to also check
SVp_POK, and teach sv_2[inpu]v how to convert globs.
However, it should free up SvPVX for the next part of the plan to
pointer indirections, and therefore CPU cache pressure.
p4raw-id: //depot/perl@27278
Nicholas Clark [Thu, 23 Feb 2006 00:29:04 +0000 (00:29 +0000)]
Fix the copy sizes for PVFM and PVCV back to sanity.
p4raw-id: //depot/perl@27276
Nicholas Clark [Wed, 22 Feb 2006 23:43:10 +0000 (23:43 +0000)]
Fix typos and a missing bracket.
p4raw-id: //depot/perl@27274
Nicholas Clark [Wed, 22 Feb 2006 22:30:19 +0000 (22:30 +0000)]
Avoid C<study>ing any strings that might change underneath us, such
as tied scalars and scalars with overloaded stringification.
p4raw-id: //depot/perl@27273
Rafael Garcia-Suarez [Wed, 22 Feb 2006 22:09:41 +0000 (22:09 +0000)]
Mark some new study tests as TODO
p4raw-id: //depot/perl@27272
Rafael Garcia-Suarez [Wed, 22 Feb 2006 21:04:33 +0000 (21:04 +0000)]
Add a test for study() on tied scalars, by Andy Lester after
Rick Delaney
p4raw-id: //depot/perl@27271
Jarkko Hietaniemi [Wed, 22 Feb 2006 20:16:00 +0000 (20:16 +0000)]
Turn on match string copying when /e flag is set on a substitution.
Subject: [PATCH] dodge a valgrind error (for maint or blead)
Message-ID: <
43FCB896.7060106@gmail.com>
p4raw-id: //depot/perl@27270
Nicholas Clark [Wed, 22 Feb 2006 18:21:30 +0000 (18:21 +0000)]
sv_dump should report the PV for PVGVs, as it can get set.
(Typeglobs stringify via a call to GET magic, which uses the PV slot.)
p4raw-id: //depot/perl@27269
Nicholas Clark [Wed, 22 Feb 2006 16:50:25 +0000 (16:50 +0000)]
Test warnings for converting globs to other forms.
p4raw-id: //depot/perl@27268
Nicholas Clark [Wed, 22 Feb 2006 00:23:49 +0000 (00:23 +0000)]
Change 24643 made the mistake of assuming that CvCONST can only be true
on XSUBs. Somehow it can also end up on perl subs. Bug spotted by and
test case from Marcus Holland-Moritz.
p4raw-id: //depot/perl@27267
Nicholas Clark [Tue, 21 Feb 2006 20:09:25 +0000 (20:09 +0000)]
Can merge the two arms of Perl_magic_getglob to save space.
p4raw-id: //depot/perl@27265
Nicholas Clark [Tue, 21 Feb 2006 19:04:39 +0000 (19:04 +0000)]
Reorder the SV flags so that SVp_?OK and SVf_?OK occupy 8 contiguous
bits (0x0000XX00). This makes perl 3K smaller with -Os on x86 FreeBSD,
and might also help on other architectures (eg with 8 contiguous bits,
the SvOK() test on ARM won't need an intermediate constant).
p4raw-id: //depot/perl@27264
Steve Peters [Tue, 21 Feb 2006 18:44:21 +0000 (18:44 +0000)]
Additional hints needed to build threaded Perls on NetBSD.
p4raw-id: //depot/perl@27263
Nicholas Clark [Tue, 21 Feb 2006 18:00:57 +0000 (18:00 +0000)]
PL_body_arenas should be set to NULL when the interpreter is cleared.
p4raw-id: //depot/perl@27262
Nicholas Clark [Tue, 21 Feb 2006 16:28:02 +0000 (16:28 +0000)]
Teach B about CVf_ISXSUB
p4raw-id: //depot/perl@27261
Nicholas Clark [Tue, 21 Feb 2006 16:12:37 +0000 (16:12 +0000)]
Goodbye PERL_XSUB_OLDSTYLE.
p4raw-id: //depot/perl@27260
Nicholas Clark [Tue, 21 Feb 2006 15:40:04 +0000 (15:40 +0000)]
Re-order the definitions of the private bits in SvFLAGS by value, so
that we can see where we're already double-booked.
p4raw-id: //depot/perl@27259
Nicholas Clark [Tue, 21 Feb 2006 15:23:21 +0000 (15:23 +0000)]
Document the many uses of SVf_FAKE.
p4raw-id: //depot/perl@27258
Steve Peters [Tue, 21 Feb 2006 15:18:58 +0000 (15:18 +0000)]
Add tests for the previously untested Hash::Util::all_keys().
p4raw-id: //depot/perl@27257
Steve Peters [Tue, 21 Feb 2006 00:43:43 +0000 (00:43 +0000)]
$ExtUtils::MM_Unix::VERSION needs to stay numeric to avoid test
warnings.
p4raw-id: //depot/perl@27256
Joshua ben Jore [Sun, 19 Feb 2006 02:58:10 +0000 (20:58 -0600)]
Patches: B, CGI, ExtUtils::MM_Unix
From: "Joshua ben Jore" <twists@gmail.com>
Message-ID: <dc5c751d0602190058t78d915fv78c6318370307b63@mail.gmail.com>
p4raw-id: //depot/perl@27255
Joshua ben Jore [Mon, 20 Feb 2006 09:50:15 +0000 (03:50 -0600)]
Re: Patches: B, CGI, ExtUtils::MM_Unix
From: "Joshua ben Jore" <twists@gmail.com>
Message-ID: <dc5c751d0602200750j21447031m86ea670b04ac27ed@mail.gmail.com>
Includes changes to increment test count in ext/B/t/concise-xs.t and
uses "no warnings 'once';" in ext/B/t/b.t rather than kludging to
avoid the warning.
p4raw-id: //depot/perl@27254
Yitzchak Scott-Thoennes [Mon, 20 Feb 2006 11:09:33 +0000 (03:09 -0800)]
op/magic failure on cygwin after 1.5.19-4
Message-ID: <
20060220190933.GA1316@efn.org>
p4raw-id: //depot/perl@27252
Nicholas Clark [Mon, 20 Feb 2006 20:32:09 +0000 (20:32 +0000)]
Steal code from maint, and use PERL_ARENA_ROOTS_SIZE to size the arena
arrays, rather than SVt_LAST, so that SVt_LAST can truthfully remain
the number of genuine SV types, unclouded by implementation details.
p4raw-id: //depot/perl@27251
Dominic Dunlop [Mon, 20 Feb 2006 13:46:00 +0000 (13:46 +0000)]
Make SDBM_File work with -Duse64bitall on Darwin (Mac OS X)
Message-Id: <
B699DDDE-EC4E-495D-AFF5-
3D7399332A24@mac.com>
p4raw-id: //depot/perl@27250
Nicholas Clark [Mon, 20 Feb 2006 19:00:22 +0000 (19:00 +0000)]
PVCVs don't need XNVs either.
(And actually remove xcv_depth)
(And fix the copy lengths in bodies_by_type)
p4raw-id: //depot/perl@27249
Dominic Dunlop [Mon, 20 Feb 2006 14:49:00 +0000 (14:49 +0000)]
Trouble with $ENV{CDPATH} after change #27236
Message-Id: <
6393FA5A-6B84-46E9-A557-
DED3BB0AD7EE@mac.com>
p4raw-id: //depot/perl@27248
Nicholas Clark [Mon, 20 Feb 2006 17:48:21 +0000 (17:48 +0000)]
PVFMs don't need CvDEPTH, and PVCVs don't use SvIVX, so moving
xcv_depth into the IV union saves 4(ish) bytes per CV and format.
"ish" because it was a long, but has been changed to I32 (along with
the corresponding field in struct block_sub) so as not to enlarge the
IV union on platforms where sizeof(long) > sizeof(IV), or struct
block_sub where sizeof(long) > sizeof(I32)
p4raw-id: //depot/perl@27247
Nicholas Clark [Mon, 20 Feb 2006 14:01:59 +0000 (14:01 +0000)]
Fix sv_dump to dump formats without the (non-existent) NVX.
p4raw-id: //depot/perl@27245
Nicholas Clark [Mon, 20 Feb 2006 13:42:47 +0000 (13:42 +0000)]
xcv_root and xcv_xsub can also be merged into a union, providing a new
flag is added to denote whether the PVCV is perl or XSUB.
p4raw-id: //depot/perl@27244
Nicholas Clark [Mon, 20 Feb 2006 11:54:38 +0000 (11:54 +0000)]
xcv_start and xcv_xsubany can be merged into a union, as they are never
both needed.
p4raw-id: //depot/perl@27243
Nicholas Clark [Mon, 20 Feb 2006 11:54:03 +0000 (11:54 +0000)]
Need to clear CvXSUBANY() too to turn a constant sub into a prototype.
p4raw-id: //depot/perl@27242
Nicholas Clark [Mon, 20 Feb 2006 10:40:59 +0000 (10:40 +0000)]
Add a new CvISXSUB() macro, for abstracting the test as to whether a
PVCV is perl or XS.
p4raw-id: //depot/perl@27241
Nicholas Clark [Mon, 20 Feb 2006 10:10:11 +0000 (10:10 +0000)]
Abolish BROKEN_UNION_INIT in B::C, as it works around problems in
pre-ANSI C compilers, but pays in code duplication.
p4raw-id: //depot/perl@27240
John E. Malmberg [Mon, 20 Feb 2006 03:43:00 +0000 (03:43 +0000)]
patch@27236 vms glob/readdir/chdir EFS/long filename support
Message-ID: <
43F92CE6.5040704@qsl.net>
p4raw-id: //depot/perl@27239
Rafael Garcia-Suarez [Mon, 20 Feb 2006 09:26:15 +0000 (09:26 +0000)]
More NullXXX macro removal from Andy Lester
p4raw-id: //depot/perl@27238
Rafael Garcia-Suarez [Mon, 20 Feb 2006 08:54:22 +0000 (08:54 +0000)]
Yitzchak points out that the perldiag entry for "Integer overflow in
division" is no longer useful.
p4raw-id: //depot/perl@27237
Nicholas Clark [Mon, 20 Feb 2006 00:36:34 +0000 (00:36 +0000)]
utftaint.t won't be able to run tests with -T if you have
Insecure directory in $ENV{PATH}
so skip them. (Probably this means you have . in your PATH)
p4raw-id: //depot/perl@27236
Nicholas Clark [Mon, 20 Feb 2006 00:21:09 +0000 (00:21 +0000)]
Remove the last (U16) cast for CV depths, missed by change 17835.
p4raw-id: //depot/perl@27235
Nicholas Clark [Mon, 20 Feb 2006 00:02:53 +0000 (00:02 +0000)]
Re-order CV flags to bring the 4 CVf_BUILTIN_ATTRS into adjacent bits,
and make other flag bits that are paired in the code adjacent.
Will produce tighter code on ARM; might help on other platforms too.
p4raw-id: //depot/perl@27234
Nicholas Clark [Sun, 19 Feb 2006 23:59:52 +0000 (23:59 +0000)]
Ministry of Truth removes typo in description of Change 26166.
Change 26166 was correct from the start.
Nothing to see. Move along.
We thank Big Brother for raising the chocolate ration to 20g per week.
p4raw-id: //depot/perl@27233
Nicholas Clark [Sun, 19 Feb 2006 22:35:24 +0000 (22:35 +0000)]
Shave sizeof(NV) bytes from formats, by using the same offset
manoeuvre as PVs, PVIVs, PVAVs and PVHVs.
p4raw-id: //depot/perl@27231
Nicholas Clark [Sun, 19 Feb 2006 20:30:24 +0000 (20:30 +0000)]
AVs and HVs don't have IVXs or NVXs, so assert this too.
p4raw-id: //depot/perl@27230
Nicholas Clark [Sun, 19 Feb 2006 20:10:34 +0000 (20:10 +0000)]
Under -DDEBUGGING, assert that SvIVX, SvUVX and SvNVX aren't being
used on scalars that don't have the memory allocated. Correct
SvSTASH and SvMAGIC to only evaluate the sv argument once.
p4raw-id: //depot/perl@27229
Nicholas Clark [Sun, 19 Feb 2006 18:57:35 +0000 (18:57 +0000)]
To make arithmetic on tainted dualvars work properly requires that
sv_2nv uses SvIVX in preference to SvPVX, if SVp_IOK is true.
p4raw-id: //depot/perl@27228
Nicholas Clark [Sun, 19 Feb 2006 12:14:15 +0000 (12:14 +0000)]
SvROK(sv) will never be true when SvIOKp() or SvNOKp() is true, so the
code inside the if() test in sv_2pv_flags is dead and can be removed.
p4raw-id: //depot/perl@27227
Rafael Garcia-Suarez [Sat, 18 Feb 2006 20:13:51 +0000 (20:13 +0000)]
As Anno Siegel points out, mtime/ctime test should be skipped
on OS X on HFS+.
p4raw-id: //depot/perl@27223
Nicholas Clark [Sat, 18 Feb 2006 19:01:48 +0000 (19:01 +0000)]
save_re_context() and even errsv_save = newSVsv(ERRSV); can turn
PL_tainted back on, so defer turning if off as late as possible.
This gets lib/locale.t working once more.
p4raw-id: //depot/perl@27222
Nicholas Clark [Sat, 18 Feb 2006 18:23:43 +0000 (18:23 +0000)]
Turn of tainting locally inside swash_init(), as the internal
implementation of the regexp engine has nothing to do with user data,
so when and where it happens to call require is agnostic of the current
expression's taintedness.
p4raw-id: //depot/perl@27221
Nicholas Clark [Sat, 18 Feb 2006 18:22:13 +0000 (18:22 +0000)]
Assume that if runperl is called under tainting, that the caller really
really wanted to run perl, so brute force untaint everything.
p4raw-id: //depot/perl@27220
Nicholas Clark [Sat, 18 Feb 2006 17:38:38 +0000 (17:38 +0000)]
Convert utftaint.t to test.pl (from Test.pm) and provide it with
tainted() from taint.t to remove the dependency on Scalar::Util.
(So it will now work with miniperl)
p4raw-id: //depot/perl@27219
Steve Peters [Sat, 18 Feb 2006 12:58:49 +0000 (12:58 +0000)]
Upgrade to Digest-SHA-5.34.
p4raw-id: //depot/perl@27218
Jim Cromie [Mon, 13 Feb 2006 14:12:41 +0000 (07:12 -0700)]
arena-rework : consolidated patch
Message-ID: <
43F0F649.9040205@gmail.com>
Tweaked somewhat to split the arena boolean from the arena_size,
and with the PTE still doubling-up with one of the SV types in the
array.
p4raw-id: //depot/perl@27215
Abe Timmerman [Fri, 17 Feb 2006 23:58:23 +0000 (00:58 +0100)]
Re: Smoke [5.9.4] 27195 FAIL(m) irix 6.2 (IP22/1 cpu)
Message-Id: <
200602172358.23977.abe@ztreet.demon.nl>
Date: Fri, 17 Feb 2006 23:58:23 +0100
p4raw-id: //depot/perl@27214
Jim Cromie [Mon, 13 Feb 2006 14:12:41 +0000 (07:12 -0700)]
The two whitespace changes from
Subject: arena-rework : consolidated patch
Message-ID: <
43F0F649.9040205@gmail.com>
Date: Mon, 13 Feb 2006 14:12:41 -0700
p4raw-id: //depot/perl@27213
Brendan O'Dea [Sat, 11 Feb 2006 00:37:15 +0000 (11:37 +1100)]
Don't add -fPIC if already present.
Subject: [PATCH] 5.8.8: Debian patches
From: "Brendan O'Dea" <bod@debian.org>
Message-ID: <
20060210133715.GA6826@londo.c47.org>
p4raw-id: //depot/perl@27212
Brendan O'Dea [Sat, 11 Feb 2006 00:37:15 +0000 (11:37 +1100)]
Fix precedence.
Subject: [PATCH] 5.8.8: Debian patches
From: "Brendan O'Dea" <bod@debian.org>
Message-ID: <
20060210133715.GA6826@londo.c47.org>
p4raw-id: //depot/perl@27211
Brendan O'Dea [Sat, 11 Feb 2006 00:37:15 +0000 (11:37 +1100)]
Fix quote typo.
Subject: [PATCH] 5.8.8: Debian patches
From: "Brendan O'Dea" <bod@debian.org>
Message-ID: <
20060210133715.GA6826@londo.c47.org>
p4raw-id: //depot/perl@27210
Rafael Garcia-Suarez [Fri, 17 Feb 2006 15:48:59 +0000 (15:48 +0000)]
In TODO: make encoding.pm lexical ?
p4raw-id: //depot/perl@27209
Andy Lester [Sun, 12 Feb 2006 23:04:56 +0000 (17:04 -0600)]
cleaning up perly.c
Message-ID: <
20060213050455.GA27993@petdance.com>
p4raw-id: //depot/perl@27208
Robin Houston [Sun, 27 Nov 2005 00:43:13 +0000 (00:43 +0000)]
Re: Perl_sighandler voodoo (was Re: Smoke [5.8.7] 26127 FAIL(XF) MSWin32 WinXP/.Net SP2 (x86/2 cpu))
Message-ID: <
20051127004313.GA7007@rpc142.cs.man.ac.uk>
Simplification of the code in my_exit_jump() that unwinds context
stacks
p4raw-id: //depot/perl@27207
Yitzchak Scott-Thoennes [Mon, 13 Feb 2006 01:39:25 +0000 (17:39 -0800)]
Re: [perl #38485] use integer; 0x80000000/-1; # coredump
Message-ID: <
20060213093925.GA3476@efn.org>
p4raw-id: //depot/perl@27205
Andy Dougherty [Fri, 3 Feb 2006 11:55:58 +0000 (06:55 -0500)]
Re: how to build with -DPERL_MEM_LOG ?
Message-ID: <Pine.SOC.4.62.
0602031129530.9630@maxwell.phys.lafayette.edu>
p4raw-id: //depot/perl@27204
Merijn Broeren [Wed, 15 Feb 2006 13:51:49 +0000 (14:51 +0100)]
Problem compiling swigged c++ code with 5.8.8
Message-ID: <
20060215125148.GA12535@brugman.iloquent.nl>
p4raw-id: //depot/perl@27203
Steve Peters [Thu, 16 Feb 2006 12:54:08 +0000 (12:54 +0000)]
Upgrade to CGI-3.16, with version bump on CGI.pm for documentation
fixes not yet integrated.
p4raw-id: //depot/perl@27202
Rafael Garcia-Suarez [Thu, 16 Feb 2006 12:47:13 +0000 (12:47 +0000)]
Remove lib/Hash directory when doing make distclean
p4raw-id: //depot/perl@27201
Jan Dubois [Wed, 15 Feb 2006 17:19:29 +0000 (09:19 -0800)]
stat() on Windows doesn't handle trailing slashes/backslashes correctly
From: "Jan Dubois" <jand@ActiveState.com>
Message-ID: <
017901c63297$
08e1e3f0$
2217a8c0@candy>
p4raw-id: //depot/perl@27200
Paul Green [Wed, 15 Feb 2006 11:09:57 +0000 (06:09 -0500)]
[patch] t/lib/warnings/pp_sys
From: "Green, Paul" <Paul.Green@stratus.com>
Message-ID: <
F5F42E77A43DD944B6D664B00A5401CB011A19AF@EXNA.corp.stratus.com>
p4raw-id: //depot/perl@27199
Rafael Garcia-Suarez [Thu, 16 Feb 2006 11:40:42 +0000 (11:40 +0000)]
CPAN::FirstTime can go as well from the untested module list
p4raw-id: //depot/perl@27198
Rafael Garcia-Suarez [Thu, 16 Feb 2006 11:38:00 +0000 (11:38 +0000)]
Pod::Plainer is tested, actually (spotted by chromatic)
p4raw-id: //depot/perl@27197
Yves Orton [Mon, 13 Feb 2006 09:41:37 +0000 (10:41 +0100)]
Make XCOPY not prompt every two seconds when rebuilding on Win32
Message-ID: <9b18b3110602130041q2d64122am5c83392dd75e0413@mail.gmail.com>
p4raw-id: //depot/perl@27195
Gisle Aas [Wed, 15 Feb 2006 15:25:36 +0000 (15:25 +0000)]
Get perl_fini() running on HP-UX again.
It was effectively disabled by change 24667 since
__ux_version is only available under DCE threads
which isn't used when perl is built on HP-UX 11
and later.
p4raw-id: //depot/perl@27194
Rafael Garcia-Suarez [Wed, 15 Feb 2006 13:22:27 +0000 (13:22 +0000)]
Fix to run this test in the core
p4raw-id: //depot/perl@27193
Andreas König [Wed, 15 Feb 2006 09:19:56 +0000 (10:19 +0100)]
[PAUSE] CPAN Upload: A/AN/ANDK/CPAN-1.84.tar.gz
Message-ID: <87oe19owyb.fsf@k75.linux.bogus>
p4raw-id: //depot/perl@27192
H.Merijn Brand [Wed, 15 Feb 2006 09:11:12 +0000 (09:11 +0000)]
Added hints/dragonfly.sh for #27189
p4raw-id: //depot/perl@27190
Robert Sebastian Gerus [Tue, 14 Feb 2006 17:27:52 +0000 (18:27 +0100)]
Patch for perl to compile/work on DragonFlyBSD
Message-ID: <4a1e16420602140827w17fd6595w@mail.gmail.com>
p4raw-id: //depot/perl@27189
John E. Malmberg [Sun, 12 Feb 2006 15:24:58 +0000 (10:24 -0500)]
patch@27162 long path name support in readdir / cando_by_name
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-id: <
43EF999A.1020500@qsl.net>
p4raw-id: //depot/perl@27187
Steve Peters [Wed, 15 Feb 2006 02:55:13 +0000 (02:55 +0000)]
Version bump to go along with change #27185
p4raw-link: @27185 on //depot/perl:
70e28ff32415da9c0786352e034cc6de6db9ec65
p4raw-id: //depot/perl@27186
Abigail [Tue, 14 Feb 2006 23:58:07 +0000 (00:58 +0100)]
Getopt::Long::Configure 'no_getopt_compat'
Message-ID: <
20060214225806.GA4120@abigail.nl>
p4raw-id: //depot/perl@27185
Nicholas Clark [Tue, 14 Feb 2006 23:42:45 +0000 (23:42 +0000)]
Back out change change 10214 (drop SVp_IOK from >> PRIVSHIFT) as it
never felt quite correct, and other parts of the SV conversion
implementation have improved such that the symptoms 10214 covered
over are gone even without it.
p4raw-id: //depot/perl@27184
Steve Peters [Tue, 14 Feb 2006 17:50:06 +0000 (17:50 +0000)]
Upgrade to Time-HiRes-1.87
p4raw-id: //depot/perl@27182
Steve Peters [Tue, 14 Feb 2006 17:41:02 +0000 (17:41 +0000)]
Hash::Util tests should check if Hash::Util has been built, not
List::Util (spotted by Rafael).
p4raw-id: //depot/perl@27181
Yves Orton [Mon, 13 Feb 2006 11:39:33 +0000 (12:39 +0100)]
[Patch] Enhance Hash::Util
Message-ID: <9b18b3110602130239w311d05fcr776ae8333776ca2e@mail.gmail.com>
p4raw-id: //depot/perl@27180
Yitzchak Scott-Thoennes [Sun, 12 Feb 2006 09:18:39 +0000 (01:18 -0800)]
One shouldn't be able to dereference a GLOB as a SCALAR.
Subject: Re: [perl #38484] Data::Dumper only warns on unhandled reference types
Message-ID: <
20060212171839.GA3604@efn.org>
plus regression tests.
p4raw-id: //depot/perl@27179
Rafael Garcia-Suarez [Tue, 14 Feb 2006 10:18:48 +0000 (10:18 +0000)]
Remove a my_perl that slipped in
p4raw-id: //depot/perl@27178
Andy Lester [Mon, 13 Feb 2006 23:46:17 +0000 (17:46 -0600)]
Sun Studio lint patches
Message-ID: <
20060214054617.GA8824@petdance.com>
p4raw-id: //depot/perl@27177
Nicholas Clark [Mon, 13 Feb 2006 21:46:13 +0000 (21:46 +0000)]
Ensure that public I, N and P flags are off when SvTAINT is called on
something that already has taint magic.
p4raw-id: //depot/perl@27176
Andy Lester [Sun, 12 Feb 2006 23:08:48 +0000 (17:08 -0600)]
perldiag.pod patching re: integer overflow
Message-ID: <
20060213050848.GB27993@petdance.com>
p4raw-id: //depot/perl@27174
Stephen McCamant [Wed, 8 Feb 2006 17:48:49 +0000 (09:48 -0800)]
[perl #38346] [PATCH] Re: B::Deparse's bug?
Message-ID: <17386.40833.64309.454938@conquest.OCF.Berkeley.EDU>
p4raw-id: //depot/perl@27173
Steve Hay [Mon, 13 Feb 2006 16:46:14 +0000 (16:46 +0000)]
Teach checkAUTHORS.pl about Changelogs with leading tabs
in the log entries, and fix a malformed log entry in Changes5.005
p4raw-id: //depot/perl@27172
Steve Hay [Mon, 13 Feb 2006 16:03:23 +0000 (16:03 +0000)]
Revert an assert() fix in the light of change #27152
The MinGW problem described here:
http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-01/msg00146.html
was fixed by change #26664. This is no longer relevant in the light of
change #27152, so revert it.
(The other problems with VC++ 6 and BCC, fixed by change #26634, have
not gone away, however.)
p4raw-link: @27152 on //depot/perl:
b0e6ae5b51a7c163ac7cdb0d18b54bb1819f6c13
p4raw-link: @26664 on //depot/perl:
fb9e8e97420770e8f89d9f2196e1b7b0c855e8bb
p4raw-link: @26634 on //depot/perl:
834268b87a8eb670d899a13106c8dfcdfc7c9b66
p4raw-id: //depot/perl@27171
Nicholas Clark [Mon, 13 Feb 2006 15:12:58 +0000 (15:12 +0000)]
All the bits of clone_params.flags need to be initialised, not just
CLONEf_JOIN_IN.
p4raw-id: //depot/perl@27169
Nicholas Clark [Sun, 12 Feb 2006 19:03:47 +0000 (19:03 +0000)]
Fix change 27059 so that it actually works with >16 file descriptors.
With programmers like these, we need Stadler & Waldorf on code review.
p4raw-id: //depot/perl@27166
Nicholas Clark [Sat, 11 Feb 2006 22:52:40 +0000 (22:52 +0000)]
In perldiag.pod add an entry for the error message that change 27155
introduced.
p4raw-id: //depot/perl@27162
Nicholas Clark [Sat, 11 Feb 2006 16:10:22 +0000 (16:10 +0000)]
Remove SOFT_CAST() as it no longer does anything useful.
p4raw-id: //depot/perl@27161